diff --git a/parse/train/B1x1ma4tDr/B1x1ma4tDr.md b/parse/train/B1x1ma4tDr/B1x1ma4tDr.md new file mode 100644 index 0000000000000000000000000000000000000000..350efe9c2d33dcb206a6ce08b8e03245081ebee2 --- /dev/null +++ b/parse/train/B1x1ma4tDr/B1x1ma4tDr.md @@ -0,0 +1,381 @@ +# DDSP: DIFFERENTIABLE DIGITAL SIGNAL PROCESSING + +Jesse Engel, Lamtharn Hantrakul, Chenjie Gu, & Adam Roberts + +Google Research, Brain Team +Mountain View, CA 94043, USA +{jesseengel,hanoih,gcj,adarob}@google.com + +# ABSTRACT + +Most generative models of audio directly generate samples in one of two domains: time or frequency. While sufficient to express any signal, these representations are inefficient, as they do not utilize existing knowledge of how sound is generated and perceived. A third approach (vocoders/synthesizers) successfully incorporates strong domain knowledge of signal processing and perception, but has been less actively researched due to limited expressivity and difficulty integrating with modern auto-differentiation-based machine learning methods. In this paper, we introduce the Differentiable Digital Signal Processing (DDSP) library, which enables direct integration of classic signal processing elements with deep learning methods. Focusing on audio synthesis, we achieve high-fidelity generation without the need for large autoregressive models or adversarial losses, demonstrating that DDSP enables utilizing strong inductive biases without losing the expressive power of neural networks. Further, we show that combining interpretable modules permits manipulation of each separate model component, with applications such as independent control of pitch and loudness, realistic extrapolation to pitches not seen during training, blind dereverberation of room acoustics, transfer of extracted room acoustics to new environments, and transformation of timbre between disparate sources. In short, DDSP enables an interpretable and modular approach to generative modeling, without sacrificing the benefits of deep learning. The library is publicly available1 and we welcome further contributions from the community and domain experts. + +# 1 INTRODUCTION + +Neural networks are universal function approximators in the asymptotic limit (Hornik et al., 1989), but their practical success is largely due to the use of strong structural priors such as convolution (LeCun et al., 1989), recurrence (Sutskever et al., 2014; Williams & Zipser, 1990; Werbos, 1990), and self-attention (Vaswani et al., 2017). These architectural constraints promote generalization and data efficiency to the extent that they align with the data domain. From this perspective, end-to-end learning relies on structural priors to scale, but the practitioner’s toolbox is limited to functions that can be expressed differentiably. Here, we increase the size of that toolbox by introducing the Differentiable Digital Signal Processing (DDSP) library, which integrates interpretable signal processing elements into modern automatic differentiation software (TensorFlow). While this approach has broad applicability, we highlight its potential in this paper through exploring the example of audio synthesis. + +Objects have a natural tendency to periodically vibrate. Small shape displacements are usually restored with elastic forces that conserve energy (similar to a canonical mass on a spring), leading to harmonic oscillation between kinetic and potential energy (Smith, 2010). Accordingly, human hearing has evolved to be highly sensitive to phase-coherent oscillation, decomposing audio into spectrotemporal responses through the resonant properties of the basilar membrane and tonotopic mappings into the auditory cortex (Moerel et al., 2012; Chi et al., 2005; Theunissen & Elie, 2014). However, neural synthesis models often do not exploit this periodic structure for generation and perception. + +# 1.1 CHALLENGES OF NEURAL AUDIO SYNTHESIS + +As shown in Figure 1, most neural synthesis models generate waveforms directly in the time domain, or from their corresponding Fourier coefficients in the frequency domain. While these representations are general and can represent any waveform, they are not free from bias. This is because they often apply a prior over generating audio with aligned wave packets rather than oscillations. For example, strided convolution models–such as SING (Defossez et al., 2018), MCNN (Arik et al., 2019), and WaveGAN (Donahue et al., 2019)–generate waveforms directly with overlapping frames. Since audio oscillates at many frequencies, all with different periods from the fixed frame hop size, the model must precisely align waveforms between different frames and learn filters to cover all possible phase variations. This challenge is visualized on the left of Figure 1. + +Fourier-based models–such as Tacotron (Wang et al., 2017) and GANSynth (Engel et al., 2019)– also suffer from the phase-alignment problem, as the Short-time Fourier Transform (STFT) is a representation over windowed wave packets. Additionally, they must contend with spectral leakage, where sinusoids at multiple neighboring frequencies and phases must be combined to represent a single sinusoid when Fourier basis frequencies do not perfectly match the audio. This effect can be seen in the middle diagram of Figure 1. + +Autoregressive waveform models–such as WaveNet (Oord et al., 2016), SampleRNN (Mehri et al., 2016), and WaveRNN (Kalchbrenner et al., 2018)–avoid these issues by generating the waveform a single sample at a time. They are not constrained by the bias over generating wave packets and can express arbitrary waveforms. However, they require larger and more data-hungry networks, as they do not take advantage of a bias over oscillation (size comparisons can be found in Table B.6). Furthermore, the use of teacher-forcing during training leads to exposure bias during generation, where errors with feedback can compound. It also makes them incompatible with perceptual losses such as spectral features (Defossez et al., 2018), pretrained models (Dosovitskiy & Brox, 2016), and discriminators (Engel et al., 2019). This adds further inefficiency to these models, as a waveform’s shape does not perfectly correspond to perception. For example, the three waveforms on the right of Figure 1 sound identical (a relative phase offset of the harmonics) but would present different losses to an autoregressive model. + +![](images/ce1f3b59584b9a627b918133ad3040953912b3a4848fa1f6c5f5ee4c06b20c05.jpg) +Figure 1: Challenges of neural audio synthesis. Full description provided in Section 1.1. + +# 1.2 OSCILLATOR MODELS + +Rather than predicting waveforms or Fourier coefficients, a third model class directly generates audio with oscillators. Known as vocoders or synthesizers, these models are physically and perceptually motivated and have a long history of research and applications (Beauchamp, 2007; Morise et al., 2016). These “analysis/synthesis” models use expert knowledge and hand-tuned heuristics to extract synthesis parameters (analysis) that are interpretable (loudness and frequencies) and can be used by the generative algorithm (synthesis). + +Neural networks have been used previously to some success in modeling pre-extracted synthesis parameters (Blaauw & Bonada, 2017; Chandna et al., 2019), but these models fall short of endto-end learning. The analysis parameters must still be tuned by hand and gradients cannot flow through the synthesis procedure. As a result, small errors in parameters can lead to large errors in the audio that cannot propagate back to the network. Crucially, the realism of vocoders is limited by the expressivity of a given analysis/synthesis pair. + +# 1.3 CONTRIBUTIONS + +In this paper, we overcome the limitations outlined above by using the DDSP library to implement fully differentiable synthesizers and audio effects. DDSP models combine the strengths of the above approaches, benefiting from the inductive bias of using oscillators, while retaining the expressive power of neural networks and end-to-end training. + +We demonstrate that models employing DDSP components are capable of generating high-fidelity audio without autoregressive or adversarial losses. Further, we show the interpretability and modularity of these models enable: + +• Independent control over pitch and loudness during synthesis. +• Realistic extrapolation to pitches not seen during training. +• Blind dereverberation of audio through seperate modelling of room acoustics. +• Transfer of extracted room acoustics to new environments. +• Timbre transfer between disparate sources, converting a singing voice into a violin. +• Smaller network sizes than comparable neural synthesizers. + +Audio samples for all examples and figures are provided in the online supplement2. We highly encourage readers to listen to the samples as part of reading the paper. + +# 2 RELATED WORK + +Vocoders. Vocoders come in several varieties. Source-filter/subtractive models are inspired by the human vocal tract and dynamically filter a harmonically rich source signal (Flanagan, 2013), while sinusoidal/additive models generate sound as the combination of a set of time-varying sine waves (McAulay & Quatieri, 1986; Serra & Smith, 1990). Additive models are strictly more expressive than subtractive models but have more parameters as each sinusoid has its own time-varying loudness and frequency. This work builds a differentiable synthesizer off the Harmonic plus Noise model (Serra & Smith, 1990; Beauchamp, 2007): an additive synthesizer combines sinusoids in harmonic (integer) ratios of a fundamental frequency alongside a time-varying filtered noise signal. + +Synthesizers. A separate thread of research has tried to estimate parameters for commercial synthesizers using gradient-free methods (Huang et al., 2014; Hoffman & Cook, 2006). Synthesizer outputs modeled with a variational autoencoder were recently used as a “world model” (Ha & Schmidhuber, 2018) to pass approximate gradients to a controller during learning (Esling et al., 2019). DDSP differs from black-box approaches to modeling existing synthesizers; it is a toolkit of differentiable DSP components for end-to-end learning. + +Neural Source Filter (NSF). Perhaps closest to this work, promising speech synthesis results were recently achieved using a differentiable waveshaping synthesizer (Wang et al., 2019). The NSF can be seen as a specific DDSP model, that uses convolutional waveshaping of a sinusoidal oscillator to create harmonic content, rather than additive synthesis explored in this work. Both works also generate audio in the time domain and impose multi-scale spectrograms losses in the frequency domain. A key contribution of this work is to highlight how these models are part of a common family of techniques and to release a modular library that makes them accessible by leveraging automatic differentiation to easily mix and match components at a high level. + +# 3 DDSP COMPONENTS + +Many DSP operations can be expressed as functions in modern automatic differentiation software. We express core components as feedforward functions, allowing efficient implementation on parallel + +hardware such as GPUs and TPUs, and generation of samples during training. These components include oscillators, envelopes, and filters (linear-time-varying finite-impulse-response, LTV-FIR). 3 + +# 3.1 SPECTRAL MODELING SYNTHESIS + +Here, as an example DDSP model, we implement a differentiable version of Spectral Modeling Synthesis (SMS) Serra & Smith (1990). This model generates sound by combining an additive synthesizer (adding together many sinusoids) with a subtractive synthesizer (filtering white noise). We choose SMS because, despite being parametric, it is a highly expressive model of sound, and has found widespread adoption in tasks as diverse as spectral morphing, time stretching, pitch shifting, source separation, transcription, and even as a general purpose audio codec in MPEG-4 (Tellman et al., 1995; Klapuri et al., 2000; Purnhagen & Meine, 2000). + +As we only consider monophonic sources in these experiments, we use the Harmonic plus Noise model, that further constrains sinusoids to be integer multiples of a fundamental frequency (Beauchamp, 2007). One of the reasons that SMS is more expressive than many other parametric models because it has so many more parameters. For example, in the 4 seconds of $1 6 \mathrm { k H z }$ audio in the datasets considered here, the synthesizer coefficients actually have ${ \sim } 2 . 5$ times more dimensions than the audio waveform itself ((1 amplitude $+ ~ 1 0 0$ harmonics $+ ~ 6 5$ noise band magnitudes) $\ast 1 0 0 0$ timesteps $= 1 6 5 { , } 0 0 0$ dimensions, vs. 64,000 audio samples). This makes them amenable to control by a neural network, as it would be difficult to realistically specify all these parameters by hand. + +# 3.2 HARMONIC OSCILLATOR $/$ ADDITIVE SYNTHESIZER + +At the heart of the synthesis techniques explored in this paper is the sinusoidal oscillator. A bank of oscillators that outputs a signal $x ( n )$ over discrete time steps, $n$ , can be expressed as: + +$$ +x ( n ) = \sum _ { k = 1 } ^ { K } A _ { k } ( n ) \sin ( \phi _ { k } ( n ) ) , +$$ + +where $A _ { k } ( n )$ is the time-varying amplitude of the $k$ -th sinusoidal component and $\phi _ { k } ( n )$ is its instantaneous phase. The phase $\phi _ { k } ( n )$ is obtained by integrating the instantaneous frequency $f _ { k } ( n )$ : + +$$ +\phi _ { k } ( n ) = 2 \pi \sum _ { m = 0 } ^ { n } f _ { k } ( m ) + \phi _ { 0 , k } , +$$ + +where $\phi _ { 0 , k }$ is the initial phase that can be randomized, fixed, or learned. + +For a harmonic oscillator, all the sinusoidal frequencies are harmonic (integer) multiples of a fundamental frequency, $f _ { 0 } ( n )$ , i.e., $f _ { k } ( n ) = k f _ { 0 } ( n )$ , Thus the output of the harmonic oscillator is entirely parameterized by the time-varying fundamental frequency $f _ { 0 } ( n )$ and harmonic amplitudes $A _ { k } ( n )$ . To aid interpretablity we further factorize the harmonic amplitudes: + +$$ +A _ { k } ( n ) = A ( n ) c _ { k } ( n ) . +$$ + +into a global amplitude $A ( n )$ that controls the loudness and a normalized distribution over harmonics $c ( n )$ that determines spectral variations, where $\textstyle \sum _ { k = 0 } ^ { K } c _ { k } ( n ) = 1$ and $c _ { k } ( n ) \geq 0$ . We also constrain both amplitudes and harmonic distribution components to be positive through the use of a modified sigmoid nonlinearity as described in the appendix. Figure 6 provides a graphical example of the additive synthesizer. Audio is provided in our online supplement2. + +# 3.3 ENVELOPES + +The oscillator formulation above requires time-varying amplitudes and frequencies at the audio sample rate, but our neural networks operate at a slower frame rate. For instantaneous frequency upsampling, we found bilinear interpolation to be adequate. However, the amplitudes and harmonic distributions of the additive synthesizer required smoothing to prevent artifacts. We are able to achieve this with a smoothed amplitude envelope by adding overlapping Hamming windows at the center of each frame and scaled by the amplitude. For these experiments we found a 4ms (64 timesteps) hop size and $8 \mathrm { m s }$ frame size ( $50 \%$ overlap) to be responsive to changes while removing artifacts. + +3.4 FILTER DESIGN: FREQUENCY SAMPLING METHOD + +Linear filter design is a cornerstone of many DSP techniques. Standard convolutional layers are equivalent to linear time invariant finite impulse response (LTI-FIR) filters. However, to ensure interpretability and prevent phase distortion, we employ the frequency sampling method to convert network outputs into impulse responses of linear-phase filters. + +Here, we design a neural network to predict the frequency-domain transfer functions of a FIR filter for every output frame. In particular, the neural network outputs a vector $\pmb { H } _ { l }$ (and accordingly $\pmb { h } _ { l } = \mathrm { I D P T } ( \bar { \pmb { H } } _ { l } ) ;$ ) for the $l$ -th frame of the output. We interpret $\pmb { H } _ { l }$ as the frequency-domain transfer function of the corresponding FIR filter. We therefore implement a time-varying FIR filter. + +To apply the time-varying FIR filter to the input, we divide the audio into non-overlapping frames $\mathbf { \Delta } _ { \mathbf { \mathcal { X } } \mathbf { \mathcal { l } } }$ to match the impulse responses $h _ { l }$ . We then perform frame-wise convolution via multiplication of frames in the Fourier domain: $Y _ { l } = H _ { l } X _ { l }$ where $\pmb { X } _ { l } = \mathbf { D } \mathrm { F T } ( \pmb { x } _ { l } )$ and $Y _ { l } = \mathrm { D F T } ( { \pmb y } _ { l } )$ is the output. We recover the frame-wise filtered audio, ${ \pmb y } _ { l } = \mathrm { I D F T } ( { \pmb Y } _ { l } )$ , and then overlap-add the resulting frames with the same hop size and rectangular window used to originally divide the input audio. The hop size is given by dividing the audio into equally spaced frames for each frame of conditioning. For 64000 samples and 250 frames, this corresponds to a hop size of 256. + +In practice, we do not use the neural network output directly as $\pmb { H } _ { l }$ . Instead, we apply a window function $W$ on the network output to compute $\pmb { H } _ { l }$ . The shape and size of the window can be decided independently to control the time-frequency resolution trade-off of the filter. In our experiments, we default to a Hann window of size 257. Without a window, the resolution implicitly defaults to a rectangular window which is not ideal for many cases. We take care to shift the IR to zero-phase (symmetric) form before applying the window and revert to causal form before applying the filter. + +# 3.5 FILTERED NOISE / SUBTRACTIVE SYNTHESIZER + +Natural sounds contain both harmonic and stochastic components. The Harmonic plus Noise model captures this by combining the output of an additive synthesizer with a stream of filtered noise (Serra & Smith, 1990; Beauchamp, 2007). We are able to realize a differentiable filtered noise synthesizer by simply applying the LTV-FIR filter from above to a stream of uniform noise $Y _ { l } = H _ { l } N _ { l }$ where $N _ { l }$ is the DFT of uniform noise in domain [-1, 1]. + +# 3.6 REVERB: LONG IMPULSE RESPONSES + +Room reverbation (reverb) is an essential characteristic of realistic audio, which is usually implicitly modeled by neural synthesis algorithms. In contrast, we gain interpretability by explicitly factorizing the room acoustics into a post-synthesis convolution step. A realistic room impulse response (IR) can be as long as several seconds, corresponding to extremely long convolutional kernel sizes $( \sim 1 0 - 1 0 0 \mathrm { k }$ timesteps). Convolution via matrix multiplication scales as $\mathsf { \bar { O } } ( n ^ { 3 } )$ , which is intractable for such large kernel sizes. Instead, we implement reverb by explicitly performing convolution as multiplication in the frequency domain, which scales as $\mathcal { O } ( n \overset { \cdot } { \log { n } } )$ and does not bottleneck training. + +# 4 EXPERIMENTS + +For empirical verification of this approach, we test two DDSP autoencoder variants–supervised and unsupervised–on two different musical datasets: NSynth (Engel et al., 2017) and a collection of solo violin performances. The supervised DDSP autoencoder is conditioned on fundamental frequency (F0) and loudness features extracted from audio, while the unsupervised DDSP autoencoder learns F0 jointly with the rest of the network. + +![](images/b3faeae273ee3875acc36bee50e5284123271a04e2aaa285692bb408b6dac899.jpg) +Figure 2: Autoencoder architecture. Red components are part of the neural network architecture, green components are the latent representation, and yellow components are deterministic synthesizers and effects. Components with dashed borders are not used in all of our experiments. Namely, $_ z$ is not used in the model trained on solo violin, and reverb is not used in the models trained on NSynth. See the appendix for more detailed diagrams of the neural network components. + +# 4.1 DDSP AUTOENCODER + +DDSP components do not put constraints on the choice of generative model (GAN, VAE, Flow, etc.), but we focus here on a deterministic autoencoder to investigate the strength of DDSP components independent of any particular approach to adversarial training, variational inference, or Jacobian design. Just as autoencoders utilizing convolutional layers outperform fully-connected autoencoders on images, we find DDSP components are able to dramatically improve autoencoder performance in the audio domain. Introducing stochastic latents (such as in GAN, VAE, and Flow models) will likely further improve performance, but we leave that to future work as it is orthogonal to the core question of DDSP component performance that we investigate in this paper. + +In a standard autoencoder, an encoder network $f _ { \mathrm { e n c } } ( \cdot )$ maps the input $_ { \textbf { \em x } }$ to a latent representation $z = f _ { \mathrm { e n c } } ( \pmb { x } )$ and a decoder network $f _ { \mathrm { d e c } } ( \cdot )$ attempts to directly reconstruct the input $\begin{array} { r } { \bar { \hat { \pmb x } } = f _ { \mathrm { d e c } } ( \pmb z ) } \end{array}$ . Our architecture (Figure 2) contrasts with this approach through the use of DDSP components and a decomposed latent representation. + +Encoders: Detailed descriptions of the encoders are given in Section B.1. For the supervised autoencoder, the loudness $l ( t )$ is extracted directly from the audio, a pretrained CREPE model with fixed weights (Kim et al., 2018) is used as an $f ( t )$ encoder to extact the fundamental frequency, and optional encoder extracts a time-varying latent encoding $z ( t )$ of the residual information. For the $z ( t )$ encoder, MFCC coefficients (30 per a frame) are first extracted from the audio, which correspond to the smoothed spectral envelope of harmonics (Beauchamp, 2007), and transformed by a single GRU layer into 16 latent variables per a frame. + +For the unsupervised autoencoder, the pretrained CREPE model is replaced with a Resnet architecture (He et al., 2016) that extracts $f ( t )$ from a mel-scaled log spectrogram of the audio, and is jointly trained with the rest of the network. + +Decoder: A detailed description of the decoder network is given in Section B.2. The decoder network maps the tuple $( f ( \bar { t } ) , l ( t ) , z ( t ) )$ to control parameters for the additive and filtered noise synthesizers described in Section 3. The synthesizers generate audio based on these parameters, and a reconstruction loss between the synthesized and original audio is minimized. The network architecture is chosen to be fairly generic (fully connected, with a single recurrent layer) to demonstrate that it is the DDSP components, and not other modeling decisions, that enables the quality of the work. + +Also unique to our approach, the latent $f ( t )$ is fed directly to the additive synthesizer as it has structural meaning for the synthesizer outside the context of any given dataset. As shown later in Section 5.2, this disentangled representation enables the model to both interpolate within and ex + +
Loudness (L1)F0 (L1)F0 Outliers
Supervised WaveRNN (Hantrakul et al., 2019)0.101.000.07
DDSP Autoencoder Unsupervised0.070.020.003
DDSP Autoencoder0.090.800.04
+ +Table 1: Resynthesis accuracies. Comparison of DDSP models to SOTA WaveRNN model provided the same conditioning information. The supervised DDSP Autoencoder and WaveRNN models use the fundamental frequency from a pretrained CREPE model, while the unsupervised DDSP autoencoder learns to infer the frequency from the audio during training. + +trapolate outside the data distribution. Indeed, recent work support incorporation of strong inductive biases as a prerequisite for learning disentangled representations (Locatello et al., 2018). + +Model Size: Table B.6, compares parameter counts for the DDSP models and comparable models including GANSynth (Engel et al., 2019), WaveRNN (Hantrakul et al., 2019), and a WaveNet Autoencoder (Engel et al., 2017). The DDSP models have the fewest parameters (up to 10 times less), despite no effort to minimize the model size in these experiments. Initial experiments with very small models (240k parameters, $3 0 0 \mathrm { x }$ smaller than a WaveNet Autoencoder) have less realistic outputs than the full models, but still have fairly high quality and are promising for low-latency applications, even on CPU or embedded devices. Audio samples are available in the online supplement2. + +# 4.2 DATASETS + +NSynth: We focus on a smaller subset of the NSynth dataset (Engel et al., 2017) consistent with other work (Engel et al., 2019; Hantrakul et al., 2019). It totals 70,379 examples comprised mostly of strings, brass, woodwinds and mallets with pitch labels within MIDI pitch range 24-84. We employ a 80/20 train/test split shuffling across instrument families. For the NSynth experiments, we use the autoencoder as described above (with the $z ( t )$ encoder). We experiment with both the supervised and unsupervised variants. + +Solo Violin: The NSynth dataset does not capture aspects of a real musical performance. Using the MusOpen royalty free music library, we collected 13 minutes of expressive, solo violin performances4. We purposefully selected pieces from a single performer (John Garner), that were monophonic and shared a consistent room environment to encourage the model to focus on performance. Like NSynth, audio is converted to mono 16kHz and divided into 4 second training examples (64000 samples total). Code to process the audio files into a dataset is available online.5 + +For the solo violin experiments, we use the supervised variant of the autoencoder (without the $z ( t )$ encoder), and add a reverb module to the signal processor chain to account for room reverberation. While the room impulse response could be produced as an output of the decoder, given that the solo violin dataset has a single acoustic environment, we use a single fixed variable (4 second reverb corresponding to 64000 dimensions) for the impulse response. + +# 4.2.1 MULTI-SCALE SPECTRAL LOSS + +The primary objective of the autoencoder is to minimize reconstruction loss. However, for audio waveforms, point-wise loss on the raw waveform is not ideal, as two perceptually identical audio samples may have distinct waveforms, and point-wise similar waveforms may sound very different. + +Instead, we use a multi-scale spectral loss–similar to the multi-resolution spectral amplitude distance in Wang et al. (2019)–defined as follows. Given the original and synthesized audio, we compute their (magnitude) spectrogram $S _ { i }$ and $\hat { S } _ { i }$ , respectively, with a given FFT size $i$ , and define the loss as the + +![](images/f2f0d286056bf63409e00e2505c28e1a83f0f8f4bf3231325c3cd798a3824c35.jpg) +Figure 3: Separate interpolations over loudness, pitch, and timbre. The conditioning features (solid lines) are extracted from two notes and linearly mixed (dark to light coloring). The features of the resynthsized audio (dashed lines) closely follow the conditioning. On the right, the latent vectors, $z ( t )$ , are interpolated, and the spectral centroid of resulting audio (thin solid lines) smoothly varies between the original samples (dark solid lines). + +sum of the L1 difference between $S _ { i }$ and $\hat { S } _ { i }$ as well as the L1 difference between $\log { S _ { i } }$ and $\log { \hat { S } _ { i } }$ . + +$$ +L _ { i } = | | S _ { i } - \hat { S _ { i } } | | _ { 1 } + \alpha | | \log S _ { i } - \log \hat { S } _ { i } | | _ { 1 } . +$$ + +where $\alpha$ is a weighting term set to 1.0 in our experiments. The total reconstruction loss is then the sum of all the spectral losses, $\begin{array} { r } { L _ { \mathrm { r e c o n s t r u c t i o n } } = \sum _ { i } { L _ { i } } } \end{array}$ . In our experiments, we used FFT sizes (2048, 1024, 512, 256, 128, 64), and the neighboring frames in the Short-Time Fourier Transform (STFT) overlap by $7 5 \%$ . Therefore, the $L _ { i }$ ’s cover differences between the original and synthesized audios at different spatial-temporal resolutions. + +# 5 RESULTS + +# 5.1 HIGH-FIDELITY SYNTHESIS + +As shown in Figure 5, the DDSP autoencoder learns to very accurately resynthesize the solo violin dataset. Again, we highly encourage readers to listen to the samples provided in the online supplement2. A full decomposition of the components is provided Figure 5. High-quality neural audio synthesis has previously required very large autoregressive models (Oord et al., 2016; Kalchbrenner et al., 2018) or adversarial loss functions (Engel et al., 2019). While amenable to an adversarial loss, the DDSP autoencoder achieves these results with a straightforward L1 spectrogram loss, a small amount of data, and a relatively simple model. This demonstrates that the model is able to efficiently exploit the bias of the DSP components, while not losing the expressive power of neural networks. + +For the NSynth dataset, we quantitatively compare the quality of DDSP resynthesis with that of a state-of-the-art baseline using WaveRNN (Hantrakul et al., 2019). The models are comparable as they are trained on the same data, provided the same conditioning, and both targeted towards realtime synthesis applications. In Table 1, we compute loudness and fundamental frequency (F0) $L _ { 1 }$ metrics described in Section C of the appendix. Despite the strong performance of the baseline, the supervised DDSP autoencoder still outperforms it, especially in $\mathrm { F 0 ~ } L _ { 1 }$ . This is not unexpected, as the additive synthesizer directly uses the conditioning frequency to synthesize audio. + +The unsupervised DDSP autoencoder must learn to infer its own F0 conditioning signal directly from the audio. As described in Section B.4, we improve optimization by also adding a perceptual loss in the form of a pretrained CREPE network (Kim et al., 2018). While not as accurate as the supervised DDSP version, the model does a fair job at learning to generate sounds with the correct frequencies without supervision, outperforming the supervised WaveRNN model. + +# 5.2 INDEPENDENT CONTROL OF LOUDNESS AND PITCH + +Interpolation: Interpretable structure allows for independent control over generative factors. Each component of the factorized latent variables $( f ( t ) , l ( t ) , z ( t ) )$ independently alters samples along a matching perceptual axis. For example, Figure 3 shows an interpolation between two sound in the loudness conditioning $l ( t )$ . With other variables held constant, loudness of the synthesized audio closely matches the interpolated input. Similarly, the model reliably matches intermediate pitches between a high pitched $f ( t )$ and low pitched $f ( t )$ . In Table C.2 of the appendix, we quantitatively demonstrate how across interpolations, conditioning independently controls the corresponding characteristics of the audio. + +![](images/414209bf77fffcbe6e4b5785b534f765efaa40fc9593c11d89c199f57b09dd0d.jpg) +Figure 4: Timbre transfer from singing voice to violin. F0 and loudness features are extracted from the voice and resynthesized with a DDSP autoencoder trained on solo violin. + +With loudness and pitch explicitly controlled by $( f ( t ) , l ( t ) )$ , the model should use the residual $z ( t )$ to encode timbre. Although architecture and training do not strictly enforce this encoding, we qualitatively demonstrate how varying $_ z$ leads to a smooth change in timbre. In Figure 3, we use the smooth shift in spectral centroid, or “center of mass” of a spectrum, to illustrate this behavior. + +Extrapolation: As described in Section 4.1, $f ( t )$ directly controls the additive synthesizer and has structural meaning outside the context of any given dataset. Beyond interpolating between datapoints, the model can extrapolate to new conditions not seen during training. The rightmost plot of Figure 7 demonstrates this by resynthesizing a clip of solo violin after shifting $f ( t )$ down an octave and outside the range of the training data. The audio remains coherent and resembles a related instrument such as a cello. $f ( t )$ is only modified for the synthesizer, as the decoder is still bounded by the nearby distribution of the training data and produces unrealistic harmonic content if conditioned far outside that distribution. + +# 5.3 DEREVERBERATION AND ACOUSTIC TRANSFER + +Removing reverb in a “blind” setting, where only reverberated audio is available, is a standing problem in acoustics (Naylor & Gaubitch, 2010). However, a benefit of our modular approach to generative modeling is that it becomes possible to completely separate the source audio from the effect of the room. For the solo violin dataset, the DDSP autoencoder is trained with an additional reverb module as shown in Figure 2 and described in Section 3.6. Figure 7 (left) demonstrates that bypassing the reverb module during resynthesis results in completely dereverberated audio, similar to recording in an anechoic chamber. The quality of the approach is limited by the underlying generative model, which is quite high for our autoencoder. Similarly, Figure 7 (center) demonstrates that we can also apply the learned reverb model to new audio, in this case singing, and effectively transfer the acoustic environment of the solo violin recordings. + +# 5.4 TIMBRE TRANSFER + +Figure 4 demonstrates timbre transfer, converting the singing voice of an author into a violin. F0 and loudness features are extracted from the singing voice and the DDSP autoencoder trained on solo violin used for resynthesis. To better match the conditioning features, we first shift the fundamental frequency of the singing up by two octaves to fit a violin’s typical register. Next, we transfer the room acoustics of the violin recording (as described in Section 5.3) to the voice before extracting loudness, to better match the loudness contours of the violin recordings. The resulting audio captures many subtleties of the singing with the timbre and room acoustics of the violin dataset. Note the interesting “breathing” artifacts in the silence corresponding to unvoiced syllables from the singing. + +# 6 CONCLUSION + +The DDSP library fuses classical DSP with deep learning, providing the ability to take advantage of strong inductive biases without losing the expressive power of neural networks and end-to-end + +learning. We encourage contributions from domain experts and look forward to expanding the scope of the DDSP library to a wide range of future applications. + +# REFERENCES + +S. O. Arik, H. Jun, and G. Diamos. Fast spectrogram inversion using multi-head convolutional neural networks. IEEE Signal Processing Letters, 26(1):94–98, Jan 2019. doi: 10.1109/LSP. 2018.2880284. + +James W Beauchamp. Analysis, synthesis, and perception of musical sounds. Springer, 2007. + +Merlijn Blaauw and Jordi Bonada. A neural parametric singing synthesizer modeling timbre and expression from natural songs. Applied Sciences, 7(12):1313, 2017. + +Pritish Chandna, Merlijn Blaauw, Jordi Bonada, and Emilia Gomez. Wgansing: A multi-voice singing voice synthesizer based on the wasserstein-gan. arXiv preprint arXiv:1903.10729, 2019. + +Taishih Chi, Powen Ru, and Shihab A Shamma. Multiresolution spectrotemporal analysis of complex sounds. The Journal of the Acoustical Society of America, 118(2):887–906, 2005. + +Alexandre Defossez, Neil Zeghidour, Nicolas Usunier, Leon Bottou, and Francis Bach. Sing: Symbol-to-instrument neural generator. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 9041–9051. Curran Associates, Inc., 2018. URL http://papers.nips.cc/paper/ 8118-sing-symbol-to-instrument-neural-generator.pdf. + +Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. In International Conference on Learning Representations, 2019. URL https://openreview.net/forum? id $=$ ByMVTsR5KQ. + +Alexey Dosovitskiy and Thomas Brox. Generating images with perceptual similarity metrics based on deep networks. In Advances in neural information processing systems, pp. 658–666, 2016. + +Jesse Engel, Cinjon Resnick, Adam Roberts, Sander Dieleman, Douglas Eck, Karen Simonyan, and Mohammad Norouzi. Neural audio synthesis of musical notes with WaveNet autoencoders. In ICML, 2017. + +Jesse Engel, Kumar Krishna Agrawal, Shuo Chen, Ishaan Gulrajani, Chris Donahue, and Adam Roberts. GANSynth: Adversarial neural audio synthesis. In International Conference on Learning Representations, 2019. URL https://openreview.net/forum?id $\underline { { \underline { { \mathbf { \Pi } } } } }$ H1xQVn09FX. + +Philippe Esling, Naotake Masuda, Adrien Bardet, Romeo Despres, et al. Universal audio synthesizer control with normalizing flows. arXiv preprint arXiv:1907.00971, 2019. + +James L Flanagan. Speech analysis synthesis and perception, volume 3. Springer Science & Business Media, 2013. + +David Ha and Jurgen Schmidhuber. World models. ¨ arXiv preprint arXiv:1803.10122, 2018. + +Lamtharn (Hanoi) Hantrakul, Jesse Engel, Adam Roberts, and Chenjie Gu. Fast and flexible neural audio synthesis. In ISMIR, 2019. + +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. + +Matthew D Hoffman and Perry R Cook. Feature-based synthesis: Mapping acoustic and perceptual features onto synthesis parameters. In ICMC. Citeseer, 2006. + +Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are universal approximators. Neural networks, 2(5):359–366, 1989. + +Cheng-Zhi Anna Huang, David Duvenaud, Kenneth C Arnold, Brenton Partridge, Josiah W Oberholtzer, and Krzysztof Z Gajos. Active learning of intuitive control knobs for synthesizers using gaussian processes. In Proceedings of the 19th international conference on Intelligent User Interfaces, pp. 115–124. ACM, 2014. + +Nal Kalchbrenner, Erich Elsen, Karen Simonyan, Seb Noury, Norman Casagrande, Edward Lockhart, Florian Stimberg, Aaron van den Oord, Sander Dieleman, and Koray Kavukcuoglu. Efficient neural audio synthesis. arXiv preprint arXiv:1802.08435, 2018. + +Jong Wook Kim, Justin Salamon, Peter Li, and Juan Pablo Bello. Crepe: A convolutional representation for pitch estimation. In 2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pp. 161–165. IEEE, 2018. + +Anssi Klapuri, Tuomas Virtanen, and Jan-Markus Holm. Robust multipitch estimation for the analysis and manipulation of polyphonic musical signals. In Proc. COST-G6 Conference on Digital Audio Effects, pp. 233–236, 2000. + +Y. LeCun, B. Boser, J. S. Denker, D. Henderson, R. E. Howard, W. Hubbard, and L. D. Jackel. Backpropagation applied to handwritten zip code recognition. Neural Computation, 1(4):541– 551, 1989. doi: 10.1162/neco.1989.1.4.541. URL https://doi.org/10.1162/neco. 1989.1.4.541. + +Francesco Locatello, Stefan Bauer, Mario Lucic, Sylvain Gelly, Bernhard Scholkopf, and Olivier ¨ Bachem. Challenging common assumptions in the unsupervised learning of disentangled representations. arXiv preprint arXiv:1811.12359, 2018. + +Robert McAulay and Thomas Quatieri. Speech analysis/synthesis based on a sinusoidal representation. IEEE Transactions on Acoustics, Speech, and Signal Processing, 34(4):744–754, 1986. + +Soroush Mehri, Kundan Kumar, Ishaan Gulrajani, Rithesh Kumar, Shubham Jain, Jose Sotelo, Aaron Courville, and Yoshua Bengio. Samplernn: An unconditional end-to-end neural audio generation model. arXiv preprint arXiv:1612.07837, 2016. + +Michelle Moerel, Federico De Martino, and Elia Formisano. Processing of natural sounds in human auditory cortex: tonotopy, spectral tuning, and relation to voice sensitivity. Journal of Neuroscience, 32(41):14205–14216, 2012. + +Masanori Morise, Fumiya Yokomori, and Kenji Ozawa. World: a vocoder-based high-quality speech synthesis system for real-time applications. IEICE TRANSACTIONS on Information and Systems, 99(7):1877–1884, 2016. + +Patrick A Naylor and Nikolay D Gaubitch. Speech dereverberation. Springer Science & Business Media, 2010. + +Aaron van den Oord, Sander Dieleman, Heiga Zen, Karen Simonyan, Oriol Vinyals, Alex Graves, Nal Kalchbrenner, Andrew Senior, and Koray Kavukcuoglu. Wavenet: A generative model for raw audio. arXiv preprint arXiv:1609.03499, 2016. + +Heiko Purnhagen and Nikolaus Meine. Hiln-the mpeg-4 parametric audio coding tools. In 2000 IEEE International Symposium on Circuits and Systems. Emerging Technologies for the 21st Century. Proceedings (IEEE Cat No. 00CH36353), volume 3, pp. 201–204. IEEE, 2000. + +Xavier Serra and Julius Smith. Spectral modeling synthesis: A sound analysis/synthesis system based on a deterministic plus stochastic decomposition. Computer Music Journal, 14(4):12–24, 1990. + +Julius Orion Smith. Physical audio signal processing: For virtual musical instruments and audio effects. W3K publishing, 2010. + +Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks. In Advances in neural information processing systems, pp. 3104–3112, 2014. + +Edwin Tellman, Lippold Haken, and Bryan Holloway. Timbre morphing of sounds with unequal numbers of features. Journal of the Audio Engineering Society, 43(9):678–689, 1995. + +Fred´ eric E Theunissen and Julie E Elie. Neural processing of natural sounds. ´ Nature Reviews Neuroscience, 15(6):355, 2014. +Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information processing systems, pp. 5998–6008, 2017. +Xin Wang, Shinji Takaki, and Junichi Yamagishi. Neural source-filter waveform models for statistical parametric speech synthesis. arXiv preprint arXiv:1904.12088, 2019. +Yuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly, Zongheng Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, et al. Tacotron: Towards end-to-end speech synthesis. In INTERSPEECH, 2017. +P. J. Werbos. Backpropagation through time: what it does and how to do it. Proceedings of the IEEE, 78(10):1550–1560, Oct 1990. doi: 10.1109/5.58337. +Ronald J Williams and David Zipser. Gradient-based learning algorithms for recurrent connectionist networks. College of Computer Science, Northeastern University Boston, MA, 1990. + +A APPENDIX + +![](images/ae69231c516ed09fed6808a0b174b09d4bc195050f2cd9f0a31748d0ba579fdf.jpg) +Figure 5: Decomposition of a clip of solo violin. Audio is visualized with log magnitude spectrograms. Loudness and fundamental frequency signals are extracted from the original audio. The loudness curve does not exhibit clear note segmentations because of the effects of the room acoustics. The DDSP autoencoder takes those conditioning signals and predicts amplitudes, harmonic distributions, and noise magnitudes. Note that the amplitudes are clearly segmented along note boundaries without supervision and that the harmonic and noise distributions are complex and dynamic despite the simple conditioning signals. Finally, the extracted impulse response is applied to the combined audio from the synthesizers to give the full resynthesis audio. + +![](images/855c51131f1c81de60a033cdab15dea61c347a2213820e4eb8131484c53c7d92.jpg) +Figure 6: Diagram of the Additive Synthesizer component. The synthesizer generates audio as a sum of sinusoids at harmonic (integer) multiples of the fundamental frequency. The neural network is then tasked with emitting time-varying synthesizer parameters (fundamental frequency, amplitude, harmonic distribution). In this example linear-frequency log-magnitude spectrograms show how the harmonics initially follow the frequency contours of the fundamental. We then factorize the harmonic amplitudes into an overall amplitude envelope that controls the loudness, and a normalized distribution among the different harmonics that determines spectral variations. + +![](images/3581853ac178f33be8f9520b8d3ecfdb7ccd3ddd4adef98cc5b7a6863db827eb.jpg) +Figure 7: Interpretable generative models enables disentanglement and extrapolation. Spectrograms of audio examples include dereverberation of a clip of solo violin playing (left), transfer of the extracted room response to new audio (center), and transposition below the range of training data (right). + +# B MODEL DETAILS + +# B.1 ENCODERS + +The model has three encoders: $f$ -encoder that outputs fundamental frequency $f ( t )$ , $l$ -encoder that outputs loudness $l ( t )$ , and a $_ { z }$ -encoder that outputs residual vector $z ( t )$ . + +$f$ -encoder: We use a pretrained CREPE pitch detector (Kim et al., 2018) as the $f$ -encoder to extract ground truth fundamental frequencies (F0) from the audio. We used the “large” variant of CREPE, which has SOTA accuracy for monophonic audio samples of musical instruments. For our supervised autoencoder experiments, we fixed the weights of the $f$ -encoder like (Hantrakul et al., 2019), and for our unsupervised autoencoder experiemnts we jointly learn the weights of a resnet model fed log mel spectrograms of the audio. Full details of the resnet architecture are show in Table 2. + +$l$ -encoder: We use identical computational steps to extract loudness as (Hantrakul et al., 2019). Namely, an A-weighting of the power spectrum, which puts greater emphasis on higher frequencies, followed by log scaling. The vector is then centered according to the mean and standard deviation of the dataset. + +$_ z$ -encoder: As shown in Figure 8, the encoder first calculates MFCC’s (Mel Frequency Cepstrum Coefficients) from the audio. MFCC is computed from the log-mel-spectrogram of the audio with a FFT size of 1024, 128 bins of frequency range between $2 0 \mathrm { H z }$ to $8 0 0 0 \mathrm { H z }$ , overlap of $7 5 \%$ . We use only the first 30 MFCCs that correspond to a smoothed spectral envelope. The MFCCs are then passed through a normalization layer (which has learnable shift and scale parameters) and a 512-unit GRU. The GRU outputs (over time) fed to a 512-unit linear layer to obtain $z ( t )$ . The $_ z$ embedding reported in this model has 16 dimensions across 250 time-steps. + +Table 2: Model architecture for the f(t) encoder using a Resnet on log mel spectrograms. Spectrograms have a frame size of 2048 and a hop size of 512, and are upsampled at the end to have the same time resoultion as other latents (4ms per a frame). All convolutions use “same” padding and a temporal stride of 1. Each residual block uses a bottleneck structure (He et al., 2016). The final output is a normalized probablity distribution over 128 frequency values (logarithmically scaled between $8 . 2 \mathrm { H z }$ and $1 3 . 3 \mathrm { k H z }$ (https://www.inspiredacoustics.com/en/MIDI_note numbers_and_center_frequencies)). The finally frequency value is the weighted sum of each frequency by its probability. + +
Residual BlockOutput SizekTimekFreqSFreqkFilters
layer norm + relu1-1
conv111kFilters/4
layer norm + relu=1
conv33SFreqkFilters/4
layer norm + relu--
conv111kFilters
add residual=--=
ResnetOutput SizekTimekFreqSFreqkFilters
LogMelSpectrogram(125,229, 1)1-11
conv2d(125, 115, 64)77264
max pool(125,58, 64)1321
residual block(125,58,128)331128
residual block(125,57, 128)331128
residual block(125,29,256)332256
residual block(125,29,256)331256
residual block(125,29,256)331256
residual block(125,15,512)332512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,8, 1024)3321024
residual block(125, 8,1024)3311024
residual block(125,8, 1024)3311024
dense(125,1, 128)=1281
upsample time(1000, 1, 128)=
softplus and normalize(1000, 1, 128)
+ +# B.2 DECODER + +The decoder’s input is the latent tuple $( f ( t ) , l ( t ) , z ( t ) )$ (250 timesteps). Its outputs are the parameters required by the synthesizers. For example, in the case of the harmonic synthesizer and filtered noise synthesizer setup, the decoder outputs $\mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf \Psi \mathbf { } \mathbf \Psi \mathbf { } \mathbf \mathbf { } \mathbf \Psi \mathbf { } \mathbf \mathbf { } \mathbf \mathbf { } \mathbf \mathbf \Psi \Psi \Psi \mathbf { } \mathbf \mathbf \Psi \Psi \mathbf \Psi \Psi \mathbf \Psi \mathbf { } \mathbf \mathbf \mathbf \Psi \Psi \mathbf \Psi \mathbf \Psi \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \mathbf \Psi \mathbf \mathbf \Psi \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf $ (amplitudes of the harmonics) for the harmonic synthesizer (note that $f ( t )$ is fed directly from the latent), and $\pmb { H }$ (transfer function of the FIR filter) for the filtered noise synthesizer. + +![](images/28fbf2379fdd01d9581cdab52dc4eb847082c1784e65dcbb804b6c4e60115aac.jpg) +Figure 8: Diagram of the $_ { z }$ -encoder. + +As shown in Figure 9, we use a “shared-bottom” architecture, which computes a shared embedding from the latent tuple, and then have one head for each of the $( \pmb { a } ( t ) , \pmb { H } )$ outputs. + +In particular, we apply separate MLPs to each of the $( f ( t ) , l ( t ) , z ( t ) )$ input. The outputs of the MLPs are concatenated and passed to a 512-unit GRU. We concatenate the GRU outputs with the outputs of the $f ( t )$ and $l ( t )$ MLPs (in the channel dimenssion) and pass it through a final MLP and Linear layer to get the decoder outputs. + +![](images/bbcebb94dbb9524aceff36f3d790224d20b0aa25c1c4063781359c32a7a78840.jpg) +Figure 9: Diagram of the decoder for the harmonic synthesizer and the filtered noise synthesizer. + +The MLP architecture, shown in Figure 10, is a standard MLP with a layer normalization (tf.contrib.layers.layer_norm ) before the RELU nonlinearity. In Figure 9, all the MLPs have 3 layers and each layer has 512 units. + +![](images/1e46d3e88077e81097613373fcc5a8b27c7c453ce169bee2d1882e6fb619eebc.jpg) +Figure 10: MLP in the decoder. + +# B.3 TRAINING + +Because all DDSP components are differentiable, the model is differentiable end-to-end. Therefore, we can apply any SGD optimizer to train the model. We used ADAM optimizer with learning rate 0.001 and exponential learning rate decay 0.98 every 10,000 steps. + +# B.4 PERCEPTUAL LOSS + +To help guide the DDSP autoencoder that must predict $f ( t )$ on the NSynth dataset, we also added an additional perceptual loss using pretrained models, such as the CREPE (Kim et al., 2018) pitch estimator and the encoder of the WaveNet autoencoder (Engel et al., 2017). Compared to the L1 loss on the spectrogram, the activations of different layers in these models correlate better with the perceptual quality of the audio. After a large-scale hyperparameter search, we obtained our best results by using the L1 distance between the activations of the small CREPE model’s fifth max pool layer with a weighting of $5 \times 1 0 ^ { - 5 }$ relative to the spectral loss. + +# B.5 SYNTHESIZERS + +Harmonic synthesizer / Additive Synthesis: We use 101 harmonics in the harmonic synthesizer (i.e., $\mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf \Psi \Psi \mathbf { } \mathbf { } \mathbf \mathbf { } \mathbf { } \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf { } \mathbf \Psi \mathbf { } \mathbf \Psi \Psi \mathbf { } \mathbf \Psi \mathbf { } \mathbf \Psi \mathbf { } \mathbf \Psi \mathbf { } \mathbf \Psi \mathbf \Psi \Psi \Psi \mathbf { } \mathbf \mathbf \Psi \Psi \mathbf \Psi \Psi \Psi \mathbf \Psi \Psi \mathbf \Psi \mathbf \Psi \Psi \mathbf \Psi \Psi \mathbf \Psi \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \mathbf \Psi \mathbf \Psi \mathbf \Psi \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \Psi \mathbf \Psi \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \Psi \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \mathbf \Psi \mathbf $ ’s dimension is 101). Amplitude and harmonic distribution parameters are upsampled with overlapping Hamming window envelopes whose frame size is 128 and hop size is 64. Initial phases are all fixed to zero, as neither the spectrogram loss functions or human perception are sensitive to absolute offsets in harmonic phase. We also do not include synthesis elements to model DC components to signals as they are inaudible and not reflected in the spectrogram losses. + +We force the amplitudes, harmonic distributions, and filtered noise magnitudes to be non-negative by applying a sigmoid nonlinearity to network outputs. We find a slight improvement in traning stability by modifying the sigmoid to have a scaled output, larger slope by exponentiating, and threshold at a minimum value: + +$$ +y = 2 . 0 \cdot \mathrm { s i g m o i d } ( x ) ^ { \log 1 0 } + 1 0 ^ { - 7 } +$$ + +Filtered noise synthesizer: We use 65 network output channels as magnitude inputs to the FIR filter of the filtered noise synthesizer. + +B.6 PARAMETER COUNTS + +
ModelParameters
WaveNet Autoencoder (Engel et al.,2017)75M
WaveRNN (Hantrakul et al., 2019)23M
GANSynth (Engel et al., 2019)15M
DDSP Autoencoder (Unsupervised)12M
DDSP Autoencoder (Supervised, NSynth)7M
DDSP Autoencoder (Supervised, Solo Violin)6M
DDSP Autoencoder Tiny (Supervised, Solo Violin)0.24M
+ +Table 3: Parameter counts for different models. All models trained on NSynth dataset except for those marked (Solo Violin). Autoregressive models have the most parameters with GANs requiring less. The DDSP models examined in this paper (which have not been optimized at all for size) require 2 to 3 times less parameters than GANSynth. The unsupervised model has more parameters because of the CREPE (small) $f ( t )$ encoder, and the autoencoder has additional parameters for the $z ( t )$ encoder. Initial experiments with extremely small models (single GRU, 256 units), have slightly less realistic outputs, but still relatively high quality (as can be heard in the supplemental audio). + +# C EVALUATION DETAILS + +# C.1 METRICS + +Loudness $L _ { 1 }$ distance: The loudness vector is extracted from the synthesized audio and $L _ { 1 }$ distance computed against the input’s conditioning loudness vector (ground truth). A better model will produce lower $L _ { 1 }$ distances, indicating input and generated loudness vectors closely match. Note this distance is not back-propagated through the network as a training objective. + +F0 $L _ { 1 }$ distance: The $\mathrm { F 0 ~ } L _ { 1 }$ distance is reported in MIDI space for easier interpretation; an average $\mathrm { F 0 ~ } L _ { 1 }$ of 1.0 corresponds to a semitone difference. We use the same confidence threshold of 0.85 in (Hantrakul et al., 2019) to select portions where there was detectable pitch content, and compute the metric only in these areas. + +F0 Outliers: Pitch tracking using CREPE, like any pitch tracker, is not completely reliable. Instabilities in pitch tracking, such as sudden octave jumps at low volumes, can result errors not due to model performance and need to be accounted for. F0 outliers accounts for pitch tracking imperfections in CREPE (Kim et al., 2018) vs. genuinely bad samples generated by the trained model. CREPE outputs both an F0 value as well as a F0 confidence. Samples with confidences below a threshold of 0.85 in (Hantrakul et al., 2019) are labeled as outliers and usually indicate the sample was mostly noise with no pitch or harmonic component. As the model outputs better quality audio, the number of outliers decrease, thus lower scores indicate better performance. + +# C.2 INTERPOLATION METRICS + +Loudness $L _ { 1 }$ and $\mathrm { F 0 ~ } L _ { 1 }$ are shown for different interpolation tasks in table C.2. In reconstruction, the model is supplied with the standard $( f ( t ) _ { A } , \bar { l } ( t ) _ { A } , z ( t ) _ { A } )$ . Loudness $( L _ { 1 } )$ and F0 $( L _ { 1 } )$ are computed against the ground truth inputs. In loudness interpolation, the model is supplied with $( f ( t ) _ { A } , l ( t ) _ { B } , z ( t ) _ { A } )$ , and Loudness $( L _ { 1 } )$ is calculated using $l ( t ) _ { B }$ as ground truth instead of $( l ( t ) _ { A } )$ . For F0 interpolation, the model is supplied with $( f ( t ) _ { B } , l ( t ) _ { A } , z ( t ) _ { A } )$ and F0 $( L _ { 1 } )$ is calculated using $f ( t ) _ { B }$ as ground truth instead of $f ( t ) _ { A }$ . For $\textsf { Z }$ interpolation, the model is supplied with $( f ( t ) _ { A } , l ( t ) _ { A } , z ( t ) _ { B } )$ . The low and constant Loudness $( L _ { 1 } )$ and F0 $( L _ { 1 } )$ metrics across these interpolations indicate the model is able independently vary these variables without affecting other components. + +Table 4: Loudness and F0 metrics for different interpolation tasks. + +
TaskLoudness (L1)F0 (L1)
Reconstruction0.0420.060
Loudness l(t) interp.0.0610.060
FO f(t) interp.0.0480.070
Zz(t) interp.0.0630.065
+ +# D OTHER NOTES + +# D.1 SINUSOIDAL MODELS + +While unconstrained sinusoidal oscillator banks are strictly more expressive than harmonic oscillators, we restricted ourselves to harmonic synthesizers for the time being to focus the problem domain. However, this is not a fundamental limitation of the technique and perturbations such as inharmonicity can also be incorporated to handle phenomena such as stiff strings (Smith, 2010). + +# D.2 REGULARIZATION + +It is worth mentioning that the modular structure of the synthesizers also makes it possible to define additional losses in terms of different synthesizer outputs and parameters. For example, we may impose an SNR loss to penalize outputs with too much noise if we know the training data consists of mostly clean data. We have not experimented too much with such engineered losses, but we believe they can make training more efficient, even though such engineering methods deviates from the end-to-end training paradigm, \ No newline at end of file diff --git a/parse/train/B1x1ma4tDr/B1x1ma4tDr_content_list.json b/parse/train/B1x1ma4tDr/B1x1ma4tDr_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..61152b87814aa1aadc53643ea508cc0c85fba2d6 --- /dev/null +++ b/parse/train/B1x1ma4tDr/B1x1ma4tDr_content_list.json @@ -0,0 +1,2031 @@ +[ + { + "type": "text", + "text": "DDSP: DIFFERENTIABLE DIGITAL SIGNAL PROCESSING ", + "text_level": 1, + "bbox": [ + 174, + 98, + 756, + 147 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Jesse Engel, Lamtharn Hantrakul, Chenjie Gu, & Adam Roberts ", + "bbox": [ + 184, + 169, + 637, + 184 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Google Research, Brain Team \nMountain View, CA 94043, USA \n{jesseengel,hanoih,gcj,adarob}@google.com ", + "bbox": [ + 186, + 185, + 586, + 226 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 262, + 544, + 277 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Most generative models of audio directly generate samples in one of two domains: time or frequency. While sufficient to express any signal, these representations are inefficient, as they do not utilize existing knowledge of how sound is generated and perceived. A third approach (vocoders/synthesizers) successfully incorporates strong domain knowledge of signal processing and perception, but has been less actively researched due to limited expressivity and difficulty integrating with modern auto-differentiation-based machine learning methods. In this paper, we introduce the Differentiable Digital Signal Processing (DDSP) library, which enables direct integration of classic signal processing elements with deep learning methods. Focusing on audio synthesis, we achieve high-fidelity generation without the need for large autoregressive models or adversarial losses, demonstrating that DDSP enables utilizing strong inductive biases without losing the expressive power of neural networks. Further, we show that combining interpretable modules permits manipulation of each separate model component, with applications such as independent control of pitch and loudness, realistic extrapolation to pitches not seen during training, blind dereverberation of room acoustics, transfer of extracted room acoustics to new environments, and transformation of timbre between disparate sources. In short, DDSP enables an interpretable and modular approach to generative modeling, without sacrificing the benefits of deep learning. The library is publicly available1 and we welcome further contributions from the community and domain experts. ", + "bbox": [ + 233, + 291, + 764, + 580 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 604, + 336, + 621 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Neural networks are universal function approximators in the asymptotic limit (Hornik et al., 1989), but their practical success is largely due to the use of strong structural priors such as convolution (LeCun et al., 1989), recurrence (Sutskever et al., 2014; Williams & Zipser, 1990; Werbos, 1990), and self-attention (Vaswani et al., 2017). These architectural constraints promote generalization and data efficiency to the extent that they align with the data domain. From this perspective, end-to-end learning relies on structural priors to scale, but the practitioner’s toolbox is limited to functions that can be expressed differentiably. Here, we increase the size of that toolbox by introducing the Differentiable Digital Signal Processing (DDSP) library, which integrates interpretable signal processing elements into modern automatic differentiation software (TensorFlow). While this approach has broad applicability, we highlight its potential in this paper through exploring the example of audio synthesis. ", + "bbox": [ + 174, + 636, + 825, + 787 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Objects have a natural tendency to periodically vibrate. Small shape displacements are usually restored with elastic forces that conserve energy (similar to a canonical mass on a spring), leading to harmonic oscillation between kinetic and potential energy (Smith, 2010). Accordingly, human hearing has evolved to be highly sensitive to phase-coherent oscillation, decomposing audio into spectrotemporal responses through the resonant properties of the basilar membrane and tonotopic mappings into the auditory cortex (Moerel et al., 2012; Chi et al., 2005; Theunissen & Elie, 2014). However, neural synthesis models often do not exploit this periodic structure for generation and perception. ", + "bbox": [ + 174, + 794, + 823, + 863 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 145 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 CHALLENGES OF NEURAL AUDIO SYNTHESIS ", + "text_level": 1, + "bbox": [ + 176, + 161, + 532, + 176 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "As shown in Figure 1, most neural synthesis models generate waveforms directly in the time domain, or from their corresponding Fourier coefficients in the frequency domain. While these representations are general and can represent any waveform, they are not free from bias. This is because they often apply a prior over generating audio with aligned wave packets rather than oscillations. For example, strided convolution models–such as SING (Defossez et al., 2018), MCNN (Arik et al., 2019), and WaveGAN (Donahue et al., 2019)–generate waveforms directly with overlapping frames. Since audio oscillates at many frequencies, all with different periods from the fixed frame hop size, the model must precisely align waveforms between different frames and learn filters to cover all possible phase variations. This challenge is visualized on the left of Figure 1. ", + "bbox": [ + 174, + 188, + 825, + 311 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Fourier-based models–such as Tacotron (Wang et al., 2017) and GANSynth (Engel et al., 2019)– also suffer from the phase-alignment problem, as the Short-time Fourier Transform (STFT) is a representation over windowed wave packets. Additionally, they must contend with spectral leakage, where sinusoids at multiple neighboring frequencies and phases must be combined to represent a single sinusoid when Fourier basis frequencies do not perfectly match the audio. This effect can be seen in the middle diagram of Figure 1. ", + "bbox": [ + 174, + 319, + 825, + 401 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Autoregressive waveform models–such as WaveNet (Oord et al., 2016), SampleRNN (Mehri et al., 2016), and WaveRNN (Kalchbrenner et al., 2018)–avoid these issues by generating the waveform a single sample at a time. They are not constrained by the bias over generating wave packets and can express arbitrary waveforms. However, they require larger and more data-hungry networks, as they do not take advantage of a bias over oscillation (size comparisons can be found in Table B.6). Furthermore, the use of teacher-forcing during training leads to exposure bias during generation, where errors with feedback can compound. It also makes them incompatible with perceptual losses such as spectral features (Defossez et al., 2018), pretrained models (Dosovitskiy & Brox, 2016), and discriminators (Engel et al., 2019). This adds further inefficiency to these models, as a waveform’s shape does not perfectly correspond to perception. For example, the three waveforms on the right of Figure 1 sound identical (a relative phase offset of the harmonics) but would present different losses to an autoregressive model. ", + "bbox": [ + 173, + 409, + 825, + 574 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/ce1f3b59584b9a627b918133ad3040953912b3a4848fa1f6c5f5ee4c06b20c05.jpg", + "image_caption": [ + "Figure 1: Challenges of neural audio synthesis. Full description provided in Section 1.1. " + ], + "image_footnote": [], + "bbox": [ + 173, + 585, + 825, + 720 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.2 OSCILLATOR MODELS ", + "text_level": 1, + "bbox": [ + 176, + 752, + 370, + 767 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Rather than predicting waveforms or Fourier coefficients, a third model class directly generates audio with oscillators. Known as vocoders or synthesizers, these models are physically and perceptually motivated and have a long history of research and applications (Beauchamp, 2007; Morise et al., 2016). These “analysis/synthesis” models use expert knowledge and hand-tuned heuristics to extract synthesis parameters (analysis) that are interpretable (loudness and frequencies) and can be used by the generative algorithm (synthesis). ", + "bbox": [ + 174, + 779, + 825, + 861 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Neural networks have been used previously to some success in modeling pre-extracted synthesis parameters (Blaauw & Bonada, 2017; Chandna et al., 2019), but these models fall short of endto-end learning. The analysis parameters must still be tuned by hand and gradients cannot flow through the synthesis procedure. As a result, small errors in parameters can lead to large errors in the audio that cannot propagate back to the network. Crucially, the realism of vocoders is limited by the expressivity of a given analysis/synthesis pair. ", + "bbox": [ + 174, + 868, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "1.3 CONTRIBUTIONS ", + "text_level": 1, + "bbox": [ + 176, + 151, + 333, + 165 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this paper, we overcome the limitations outlined above by using the DDSP library to implement fully differentiable synthesizers and audio effects. DDSP models combine the strengths of the above approaches, benefiting from the inductive bias of using oscillators, while retaining the expressive power of neural networks and end-to-end training. ", + "bbox": [ + 174, + 178, + 825, + 233 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We demonstrate that models employing DDSP components are capable of generating high-fidelity audio without autoregressive or adversarial losses. Further, we show the interpretability and modularity of these models enable: ", + "bbox": [ + 176, + 239, + 821, + 281 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "• Independent control over pitch and loudness during synthesis. \n• Realistic extrapolation to pitches not seen during training. \n• Blind dereverberation of audio through seperate modelling of room acoustics. \n• Transfer of extracted room acoustics to new environments. \n• Timbre transfer between disparate sources, converting a singing voice into a violin. \n• Smaller network sizes than comparable neural synthesizers. ", + "bbox": [ + 217, + 296, + 776, + 397 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Audio samples for all examples and figures are provided in the online supplement2. We highly encourage readers to listen to the samples as part of reading the paper. ", + "bbox": [ + 173, + 411, + 823, + 440 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 462, + 344, + 478 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Vocoders. Vocoders come in several varieties. Source-filter/subtractive models are inspired by the human vocal tract and dynamically filter a harmonically rich source signal (Flanagan, 2013), while sinusoidal/additive models generate sound as the combination of a set of time-varying sine waves (McAulay & Quatieri, 1986; Serra & Smith, 1990). Additive models are strictly more expressive than subtractive models but have more parameters as each sinusoid has its own time-varying loudness and frequency. This work builds a differentiable synthesizer off the Harmonic plus Noise model (Serra & Smith, 1990; Beauchamp, 2007): an additive synthesizer combines sinusoids in harmonic (integer) ratios of a fundamental frequency alongside a time-varying filtered noise signal. ", + "bbox": [ + 174, + 494, + 825, + 606 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Synthesizers. A separate thread of research has tried to estimate parameters for commercial synthesizers using gradient-free methods (Huang et al., 2014; Hoffman & Cook, 2006). Synthesizer outputs modeled with a variational autoencoder were recently used as a “world model” (Ha & Schmidhuber, 2018) to pass approximate gradients to a controller during learning (Esling et al., 2019). DDSP differs from black-box approaches to modeling existing synthesizers; it is a toolkit of differentiable DSP components for end-to-end learning. ", + "bbox": [ + 174, + 612, + 825, + 695 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Neural Source Filter (NSF). Perhaps closest to this work, promising speech synthesis results were recently achieved using a differentiable waveshaping synthesizer (Wang et al., 2019). The NSF can be seen as a specific DDSP model, that uses convolutional waveshaping of a sinusoidal oscillator to create harmonic content, rather than additive synthesis explored in this work. Both works also generate audio in the time domain and impose multi-scale spectrograms losses in the frequency domain. A key contribution of this work is to highlight how these models are part of a common family of techniques and to release a modular library that makes them accessible by leveraging automatic differentiation to easily mix and match components at a high level. ", + "bbox": [ + 174, + 702, + 825, + 813 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 DDSP COMPONENTS ", + "text_level": 1, + "bbox": [ + 176, + 833, + 383, + 851 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Many DSP operations can be expressed as functions in modern automatic differentiation software. We express core components as feedforward functions, allowing efficient implementation on parallel ", + "bbox": [ + 174, + 867, + 823, + 896 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "hardware such as GPUs and TPUs, and generation of samples during training. These components include oscillators, envelopes, and filters (linear-time-varying finite-impulse-response, LTV-FIR). 3 ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 SPECTRAL MODELING SYNTHESIS ", + "text_level": 1, + "bbox": [ + 176, + 148, + 454, + 162 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Here, as an example DDSP model, we implement a differentiable version of Spectral Modeling Synthesis (SMS) Serra & Smith (1990). This model generates sound by combining an additive synthesizer (adding together many sinusoids) with a subtractive synthesizer (filtering white noise). We choose SMS because, despite being parametric, it is a highly expressive model of sound, and has found widespread adoption in tasks as diverse as spectral morphing, time stretching, pitch shifting, source separation, transcription, and even as a general purpose audio codec in MPEG-4 (Tellman et al., 1995; Klapuri et al., 2000; Purnhagen & Meine, 2000). ", + "bbox": [ + 174, + 174, + 825, + 271 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As we only consider monophonic sources in these experiments, we use the Harmonic plus Noise model, that further constrains sinusoids to be integer multiples of a fundamental frequency (Beauchamp, 2007). One of the reasons that SMS is more expressive than many other parametric models because it has so many more parameters. For example, in the 4 seconds of $1 6 \\mathrm { k H z }$ audio in the datasets considered here, the synthesizer coefficients actually have ${ \\sim } 2 . 5$ times more dimensions than the audio waveform itself ((1 amplitude $+ ~ 1 0 0$ harmonics $+ ~ 6 5$ noise band magnitudes) $\\ast 1 0 0 0$ timesteps $= 1 6 5 { , } 0 0 0$ dimensions, vs. 64,000 audio samples). This makes them amenable to control by a neural network, as it would be difficult to realistically specify all these parameters by hand. ", + "bbox": [ + 174, + 277, + 825, + 402 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 HARMONIC OSCILLATOR $/$ ADDITIVE SYNTHESIZER ", + "text_level": 1, + "bbox": [ + 174, + 417, + 575, + 433 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "At the heart of the synthesis techniques explored in this paper is the sinusoidal oscillator. A bank of oscillators that outputs a signal $x ( n )$ over discrete time steps, $n$ , can be expressed as: ", + "bbox": [ + 173, + 444, + 825, + 473 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8189f0a8c83496b77ed6f4363f98ed6c7f40bb280b987e643790218d286552d9.jpg", + "text": "$$\nx ( n ) = \\sum _ { k = 1 } ^ { K } A _ { k } ( n ) \\sin ( \\phi _ { k } ( n ) ) ,\n$$", + "text_format": "latex", + "bbox": [ + 395, + 479, + 601, + 523 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $A _ { k } ( n )$ is the time-varying amplitude of the $k$ -th sinusoidal component and $\\phi _ { k } ( n )$ is its instantaneous phase. The phase $\\phi _ { k } ( n )$ is obtained by integrating the instantaneous frequency $f _ { k } ( n )$ : ", + "bbox": [ + 173, + 529, + 825, + 558 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/fa896847d87570431cc38b9224ca4abe27a8aff48a34596545edbbaff14b57f9.jpg", + "text": "$$\n\\phi _ { k } ( n ) = 2 \\pi \\sum _ { m = 0 } ^ { n } f _ { k } ( m ) + \\phi _ { 0 , k } ,\n$$", + "text_format": "latex", + "bbox": [ + 392, + 564, + 604, + 606 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\phi _ { 0 , k }$ is the initial phase that can be randomized, fixed, or learned. ", + "bbox": [ + 176, + 611, + 643, + 626 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For a harmonic oscillator, all the sinusoidal frequencies are harmonic (integer) multiples of a fundamental frequency, $f _ { 0 } ( n )$ , i.e., $f _ { k } ( n ) = k f _ { 0 } ( n )$ , Thus the output of the harmonic oscillator is entirely parameterized by the time-varying fundamental frequency $f _ { 0 } ( n )$ and harmonic amplitudes $A _ { k } ( n )$ . To aid interpretablity we further factorize the harmonic amplitudes: ", + "bbox": [ + 174, + 631, + 823, + 688 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/3bc8490f22d6c211b143660796b5b285828ea45faf2047dba02b1d9417bbea5e.jpg", + "text": "$$\nA _ { k } ( n ) = A ( n ) c _ { k } ( n ) .\n$$", + "text_format": "latex", + "bbox": [ + 426, + 694, + 571, + 710 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "into a global amplitude $A ( n )$ that controls the loudness and a normalized distribution over harmonics $c ( n )$ that determines spectral variations, where $\\textstyle \\sum _ { k = 0 } ^ { K } c _ { k } ( n ) = 1$ and $c _ { k } ( n ) \\geq 0$ . We also constrain both amplitudes and harmonic distribution components to be positive through the use of a modified sigmoid nonlinearity as described in the appendix. Figure 6 provides a graphical example of the additive synthesizer. Audio is provided in our online supplement2. ", + "bbox": [ + 174, + 717, + 825, + 790 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.3 ENVELOPES ", + "text_level": 1, + "bbox": [ + 174, + 806, + 299, + 820 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The oscillator formulation above requires time-varying amplitudes and frequencies at the audio sample rate, but our neural networks operate at a slower frame rate. For instantaneous frequency upsampling, we found bilinear interpolation to be adequate. However, the amplitudes and harmonic distributions of the additive synthesizer required smoothing to prevent artifacts. We are able to achieve this with a smoothed amplitude envelope by adding overlapping Hamming windows at the center of each frame and scaled by the amplitude. For these experiments we found a 4ms (64 timesteps) hop size and $8 \\mathrm { m s }$ frame size ( $50 \\%$ overlap) to be responsive to changes while removing artifacts. ", + "bbox": [ + 174, + 832, + 823, + 887 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 145 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.4 FILTER DESIGN: FREQUENCY SAMPLING METHOD ", + "bbox": [ + 174, + 171, + 566, + 185 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Linear filter design is a cornerstone of many DSP techniques. Standard convolutional layers are equivalent to linear time invariant finite impulse response (LTI-FIR) filters. However, to ensure interpretability and prevent phase distortion, we employ the frequency sampling method to convert network outputs into impulse responses of linear-phase filters. ", + "bbox": [ + 174, + 200, + 825, + 256 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here, we design a neural network to predict the frequency-domain transfer functions of a FIR filter for every output frame. In particular, the neural network outputs a vector $\\pmb { H } _ { l }$ (and accordingly $\\pmb { h } _ { l } = \\mathrm { I D P T } ( \\bar { \\pmb { H } } _ { l } ) ;$ ) for the $l$ -th frame of the output. We interpret $\\pmb { H } _ { l }$ as the frequency-domain transfer function of the corresponding FIR filter. We therefore implement a time-varying FIR filter. ", + "bbox": [ + 174, + 263, + 825, + 318 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To apply the time-varying FIR filter to the input, we divide the audio into non-overlapping frames $\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } \\mathbf { \\mathcal { l } } }$ to match the impulse responses $h _ { l }$ . We then perform frame-wise convolution via multiplication of frames in the Fourier domain: $Y _ { l } = H _ { l } X _ { l }$ where $\\pmb { X } _ { l } = \\mathbf { D } \\mathrm { F T } ( \\pmb { x } _ { l } )$ and $Y _ { l } = \\mathrm { D F T } ( { \\pmb y } _ { l } )$ is the output. We recover the frame-wise filtered audio, ${ \\pmb y } _ { l } = \\mathrm { I D F T } ( { \\pmb Y } _ { l } )$ , and then overlap-add the resulting frames with the same hop size and rectangular window used to originally divide the input audio. The hop size is given by dividing the audio into equally spaced frames for each frame of conditioning. For 64000 samples and 250 frames, this corresponds to a hop size of 256. ", + "bbox": [ + 174, + 325, + 825, + 422 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In practice, we do not use the neural network output directly as $\\pmb { H } _ { l }$ . Instead, we apply a window function $W$ on the network output to compute $\\pmb { H } _ { l }$ . The shape and size of the window can be decided independently to control the time-frequency resolution trade-off of the filter. In our experiments, we default to a Hann window of size 257. Without a window, the resolution implicitly defaults to a rectangular window which is not ideal for many cases. We take care to shift the IR to zero-phase (symmetric) form before applying the window and revert to causal form before applying the filter. ", + "bbox": [ + 174, + 429, + 825, + 512 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.5 FILTERED NOISE / SUBTRACTIVE SYNTHESIZER ", + "text_level": 1, + "bbox": [ + 174, + 537, + 547, + 551 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Natural sounds contain both harmonic and stochastic components. The Harmonic plus Noise model captures this by combining the output of an additive synthesizer with a stream of filtered noise (Serra & Smith, 1990; Beauchamp, 2007). We are able to realize a differentiable filtered noise synthesizer by simply applying the LTV-FIR filter from above to a stream of uniform noise $Y _ { l } = H _ { l } N _ { l }$ where $N _ { l }$ is the DFT of uniform noise in domain [-1, 1]. ", + "bbox": [ + 174, + 568, + 825, + 637 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.6 REVERB: LONG IMPULSE RESPONSES", + "text_level": 1, + "bbox": [ + 176, + 662, + 473, + 676 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Room reverbation (reverb) is an essential characteristic of realistic audio, which is usually implicitly modeled by neural synthesis algorithms. In contrast, we gain interpretability by explicitly factorizing the room acoustics into a post-synthesis convolution step. A realistic room impulse response (IR) can be as long as several seconds, corresponding to extremely long convolutional kernel sizes $( \\sim 1 0 - 1 0 0 \\mathrm { k }$ timesteps). Convolution via matrix multiplication scales as $\\mathsf { \\bar { O } } ( n ^ { 3 } )$ , which is intractable for such large kernel sizes. Instead, we implement reverb by explicitly performing convolution as multiplication in the frequency domain, which scales as $\\mathcal { O } ( n \\overset { \\cdot } { \\log { n } } )$ and does not bottleneck training. ", + "bbox": [ + 174, + 691, + 825, + 789 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 818, + 326, + 833 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For empirical verification of this approach, we test two DDSP autoencoder variants–supervised and unsupervised–on two different musical datasets: NSynth (Engel et al., 2017) and a collection of solo violin performances. The supervised DDSP autoencoder is conditioned on fundamental frequency (F0) and loudness features extracted from audio, while the unsupervised DDSP autoencoder learns F0 jointly with the rest of the network. ", + "bbox": [ + 174, + 854, + 823, + 922 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/b3faeae273ee3875acc36bee50e5284123271a04e2aaa285692bb408b6dac899.jpg", + "image_caption": [ + "Figure 2: Autoencoder architecture. Red components are part of the neural network architecture, green components are the latent representation, and yellow components are deterministic synthesizers and effects. Components with dashed borders are not used in all of our experiments. Namely, $_ z$ is not used in the model trained on solo violin, and reverb is not used in the models trained on NSynth. See the appendix for more detailed diagrams of the neural network components. " + ], + "image_footnote": [], + "bbox": [ + 176, + 103, + 820, + 286 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 DDSP AUTOENCODER ", + "text_level": 1, + "bbox": [ + 176, + 414, + 370, + 428 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "DDSP components do not put constraints on the choice of generative model (GAN, VAE, Flow, etc.), but we focus here on a deterministic autoencoder to investigate the strength of DDSP components independent of any particular approach to adversarial training, variational inference, or Jacobian design. Just as autoencoders utilizing convolutional layers outperform fully-connected autoencoders on images, we find DDSP components are able to dramatically improve autoencoder performance in the audio domain. Introducing stochastic latents (such as in GAN, VAE, and Flow models) will likely further improve performance, but we leave that to future work as it is orthogonal to the core question of DDSP component performance that we investigate in this paper. ", + "bbox": [ + 174, + 446, + 825, + 558 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In a standard autoencoder, an encoder network $f _ { \\mathrm { e n c } } ( \\cdot )$ maps the input $_ { \\textbf { \\em x } }$ to a latent representation $z = f _ { \\mathrm { e n c } } ( \\pmb { x } )$ and a decoder network $f _ { \\mathrm { d e c } } ( \\cdot )$ attempts to directly reconstruct the input $\\begin{array} { r } { \\bar { \\hat { \\pmb x } } = f _ { \\mathrm { d e c } } ( \\pmb z ) } \\end{array}$ . Our architecture (Figure 2) contrasts with this approach through the use of DDSP components and a decomposed latent representation. ", + "bbox": [ + 174, + 564, + 825, + 619 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Encoders: Detailed descriptions of the encoders are given in Section B.1. For the supervised autoencoder, the loudness $l ( t )$ is extracted directly from the audio, a pretrained CREPE model with fixed weights (Kim et al., 2018) is used as an $f ( t )$ encoder to extact the fundamental frequency, and optional encoder extracts a time-varying latent encoding $z ( t )$ of the residual information. For the $z ( t )$ encoder, MFCC coefficients (30 per a frame) are first extracted from the audio, which correspond to the smoothed spectral envelope of harmonics (Beauchamp, 2007), and transformed by a single GRU layer into 16 latent variables per a frame. ", + "bbox": [ + 174, + 626, + 825, + 723 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the unsupervised autoencoder, the pretrained CREPE model is replaced with a Resnet architecture (He et al., 2016) that extracts $f ( t )$ from a mel-scaled log spectrogram of the audio, and is jointly trained with the rest of the network. ", + "bbox": [ + 176, + 729, + 820, + 771 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Decoder: A detailed description of the decoder network is given in Section B.2. The decoder network maps the tuple $( f ( \\bar { t } ) , l ( t ) , z ( t ) )$ to control parameters for the additive and filtered noise synthesizers described in Section 3. The synthesizers generate audio based on these parameters, and a reconstruction loss between the synthesized and original audio is minimized. The network architecture is chosen to be fairly generic (fully connected, with a single recurrent layer) to demonstrate that it is the DDSP components, and not other modeling decisions, that enables the quality of the work. ", + "bbox": [ + 173, + 779, + 825, + 875 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Also unique to our approach, the latent $f ( t )$ is fed directly to the additive synthesizer as it has structural meaning for the synthesizer outside the context of any given dataset. As shown later in Section 5.2, this disentangled representation enables the model to both interpolate within and ex", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/bd88ff9e47ccff3eb0e42328cb0a8c160fa622e73f91acb33d768d9b8538c122.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Loudness (L1)F0 (L1)F0 Outliers
Supervised WaveRNN (Hantrakul et al., 2019)0.101.000.07
DDSP Autoencoder Unsupervised0.070.020.003
DDSP Autoencoder0.090.800.04
", + "bbox": [ + 228, + 99, + 767, + 188 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 1: Resynthesis accuracies. Comparison of DDSP models to SOTA WaveRNN model provided the same conditioning information. The supervised DDSP Autoencoder and WaveRNN models use the fundamental frequency from a pretrained CREPE model, while the unsupervised DDSP autoencoder learns to infer the frequency from the audio during training. ", + "bbox": [ + 174, + 203, + 825, + 258 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "trapolate outside the data distribution. Indeed, recent work support incorporation of strong inductive biases as a prerequisite for learning disentangled representations (Locatello et al., 2018). ", + "bbox": [ + 176, + 287, + 821, + 315 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Model Size: Table B.6, compares parameter counts for the DDSP models and comparable models including GANSynth (Engel et al., 2019), WaveRNN (Hantrakul et al., 2019), and a WaveNet Autoencoder (Engel et al., 2017). The DDSP models have the fewest parameters (up to 10 times less), despite no effort to minimize the model size in these experiments. Initial experiments with very small models (240k parameters, $3 0 0 \\mathrm { x }$ smaller than a WaveNet Autoencoder) have less realistic outputs than the full models, but still have fairly high quality and are promising for low-latency applications, even on CPU or embedded devices. Audio samples are available in the online supplement2. ", + "bbox": [ + 174, + 323, + 825, + 433 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 454, + 287, + 468 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "NSynth: We focus on a smaller subset of the NSynth dataset (Engel et al., 2017) consistent with other work (Engel et al., 2019; Hantrakul et al., 2019). It totals 70,379 examples comprised mostly of strings, brass, woodwinds and mallets with pitch labels within MIDI pitch range 24-84. We employ a 80/20 train/test split shuffling across instrument families. For the NSynth experiments, we use the autoencoder as described above (with the $z ( t )$ encoder). We experiment with both the supervised and unsupervised variants. ", + "bbox": [ + 174, + 481, + 825, + 564 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Solo Violin: The NSynth dataset does not capture aspects of a real musical performance. Using the MusOpen royalty free music library, we collected 13 minutes of expressive, solo violin performances4. We purposefully selected pieces from a single performer (John Garner), that were monophonic and shared a consistent room environment to encourage the model to focus on performance. Like NSynth, audio is converted to mono 16kHz and divided into 4 second training examples (64000 samples total). Code to process the audio files into a dataset is available online.5 ", + "bbox": [ + 174, + 570, + 825, + 654 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For the solo violin experiments, we use the supervised variant of the autoencoder (without the $z ( t )$ encoder), and add a reverb module to the signal processor chain to account for room reverberation. While the room impulse response could be produced as an output of the decoder, given that the solo violin dataset has a single acoustic environment, we use a single fixed variable (4 second reverb corresponding to 64000 dimensions) for the impulse response. ", + "bbox": [ + 174, + 661, + 823, + 729 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2.1 MULTI-SCALE SPECTRAL LOSS ", + "text_level": 1, + "bbox": [ + 176, + 750, + 442, + 763 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The primary objective of the autoencoder is to minimize reconstruction loss. However, for audio waveforms, point-wise loss on the raw waveform is not ideal, as two perceptually identical audio samples may have distinct waveforms, and point-wise similar waveforms may sound very different. ", + "bbox": [ + 176, + 775, + 825, + 815 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Instead, we use a multi-scale spectral loss–similar to the multi-resolution spectral amplitude distance in Wang et al. (2019)–defined as follows. Given the original and synthesized audio, we compute their (magnitude) spectrogram $S _ { i }$ and $\\hat { S } _ { i }$ , respectively, with a given FFT size $i$ , and define the loss as the ", + "bbox": [ + 174, + 823, + 825, + 867 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/f2f0d286056bf63409e00e2505c28e1a83f0f8f4bf3231325c3cd798a3824c35.jpg", + "image_caption": [ + "Figure 3: Separate interpolations over loudness, pitch, and timbre. The conditioning features (solid lines) are extracted from two notes and linearly mixed (dark to light coloring). The features of the resynthsized audio (dashed lines) closely follow the conditioning. On the right, the latent vectors, $z ( t )$ , are interpolated, and the spectral centroid of resulting audio (thin solid lines) smoothly varies between the original samples (dark solid lines). " + ], + "image_footnote": [], + "bbox": [ + 178, + 103, + 821, + 183 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "sum of the L1 difference between $S _ { i }$ and $\\hat { S } _ { i }$ as well as the L1 difference between $\\log { S _ { i } }$ and $\\log { \\hat { S } _ { i } }$ . ", + "bbox": [ + 171, + 292, + 820, + 309 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/fc2a75c6922a8612960c274a7c544c93dd9219f3d957c450a976e733f97cde88.jpg", + "text": "$$\nL _ { i } = | | S _ { i } - \\hat { S _ { i } } | | _ { 1 } + \\alpha | | \\log S _ { i } - \\log \\hat { S } _ { i } | | _ { 1 } .\n$$", + "text_format": "latex", + "bbox": [ + 357, + 313, + 638, + 332 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "where $\\alpha$ is a weighting term set to 1.0 in our experiments. The total reconstruction loss is then the sum of all the spectral losses, $\\begin{array} { r } { L _ { \\mathrm { r e c o n s t r u c t i o n } } = \\sum _ { i } { L _ { i } } } \\end{array}$ . In our experiments, we used FFT sizes (2048, 1024, 512, 256, 128, 64), and the neighboring frames in the Short-Time Fourier Transform (STFT) overlap by $7 5 \\%$ . Therefore, the $L _ { i }$ ’s cover differences between the original and synthesized audios at different spatial-temporal resolutions. ", + "bbox": [ + 174, + 335, + 825, + 405 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 424, + 281, + 440 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.1 HIGH-FIDELITY SYNTHESIS ", + "text_level": 1, + "bbox": [ + 176, + 455, + 406, + 469 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "As shown in Figure 5, the DDSP autoencoder learns to very accurately resynthesize the solo violin dataset. Again, we highly encourage readers to listen to the samples provided in the online supplement2. A full decomposition of the components is provided Figure 5. High-quality neural audio synthesis has previously required very large autoregressive models (Oord et al., 2016; Kalchbrenner et al., 2018) or adversarial loss functions (Engel et al., 2019). While amenable to an adversarial loss, the DDSP autoencoder achieves these results with a straightforward L1 spectrogram loss, a small amount of data, and a relatively simple model. This demonstrates that the model is able to efficiently exploit the bias of the DSP components, while not losing the expressive power of neural networks. ", + "bbox": [ + 174, + 481, + 825, + 592 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For the NSynth dataset, we quantitatively compare the quality of DDSP resynthesis with that of a state-of-the-art baseline using WaveRNN (Hantrakul et al., 2019). The models are comparable as they are trained on the same data, provided the same conditioning, and both targeted towards realtime synthesis applications. In Table 1, we compute loudness and fundamental frequency (F0) $L _ { 1 }$ metrics described in Section C of the appendix. Despite the strong performance of the baseline, the supervised DDSP autoencoder still outperforms it, especially in $\\mathrm { F 0 ~ } L _ { 1 }$ . This is not unexpected, as the additive synthesizer directly uses the conditioning frequency to synthesize audio. ", + "bbox": [ + 174, + 598, + 825, + 695 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The unsupervised DDSP autoencoder must learn to infer its own F0 conditioning signal directly from the audio. As described in Section B.4, we improve optimization by also adding a perceptual loss in the form of a pretrained CREPE network (Kim et al., 2018). While not as accurate as the supervised DDSP version, the model does a fair job at learning to generate sounds with the correct frequencies without supervision, outperforming the supervised WaveRNN model. ", + "bbox": [ + 174, + 702, + 825, + 771 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 INDEPENDENT CONTROL OF LOUDNESS AND PITCH ", + "text_level": 1, + "bbox": [ + 174, + 787, + 573, + 801 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Interpolation: Interpretable structure allows for independent control over generative factors. Each component of the factorized latent variables $( f ( t ) , l ( t ) , z ( t ) )$ independently alters samples along a matching perceptual axis. For example, Figure 3 shows an interpolation between two sound in the loudness conditioning $l ( t )$ . With other variables held constant, loudness of the synthesized audio closely matches the interpolated input. Similarly, the model reliably matches intermediate pitches between a high pitched $f ( t )$ and low pitched $f ( t )$ . In Table C.2 of the appendix, we quantitatively demonstrate how across interpolations, conditioning independently controls the corresponding characteristics of the audio. ", + "bbox": [ + 174, + 813, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/414209bf77fffcbe6e4b5785b534f765efaa40fc9593c11d89c199f57b09dd0d.jpg", + "image_caption": [ + "Figure 4: Timbre transfer from singing voice to violin. F0 and loudness features are extracted from the voice and resynthesized with a DDSP autoencoder trained on solo violin. " + ], + "image_footnote": [], + "bbox": [ + 176, + 101, + 820, + 266 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "With loudness and pitch explicitly controlled by $( f ( t ) , l ( t ) )$ , the model should use the residual $z ( t )$ to encode timbre. Although architecture and training do not strictly enforce this encoding, we qualitatively demonstrate how varying $_ z$ leads to a smooth change in timbre. In Figure 3, we use the smooth shift in spectral centroid, or “center of mass” of a spectrum, to illustrate this behavior. ", + "bbox": [ + 174, + 337, + 825, + 392 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Extrapolation: As described in Section 4.1, $f ( t )$ directly controls the additive synthesizer and has structural meaning outside the context of any given dataset. Beyond interpolating between datapoints, the model can extrapolate to new conditions not seen during training. The rightmost plot of Figure 7 demonstrates this by resynthesizing a clip of solo violin after shifting $f ( t )$ down an octave and outside the range of the training data. The audio remains coherent and resembles a related instrument such as a cello. $f ( t )$ is only modified for the synthesizer, as the decoder is still bounded by the nearby distribution of the training data and produces unrealistic harmonic content if conditioned far outside that distribution. ", + "bbox": [ + 173, + 398, + 825, + 508 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.3 DEREVERBERATION AND ACOUSTIC TRANSFER ", + "text_level": 1, + "bbox": [ + 174, + 526, + 545, + 540 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Removing reverb in a “blind” setting, where only reverberated audio is available, is a standing problem in acoustics (Naylor & Gaubitch, 2010). However, a benefit of our modular approach to generative modeling is that it becomes possible to completely separate the source audio from the effect of the room. For the solo violin dataset, the DDSP autoencoder is trained with an additional reverb module as shown in Figure 2 and described in Section 3.6. Figure 7 (left) demonstrates that bypassing the reverb module during resynthesis results in completely dereverberated audio, similar to recording in an anechoic chamber. The quality of the approach is limited by the underlying generative model, which is quite high for our autoencoder. Similarly, Figure 7 (center) demonstrates that we can also apply the learned reverb model to new audio, in this case singing, and effectively transfer the acoustic environment of the solo violin recordings. ", + "bbox": [ + 173, + 553, + 825, + 690 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.4 TIMBRE TRANSFER ", + "text_level": 1, + "bbox": [ + 176, + 707, + 349, + 720 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Figure 4 demonstrates timbre transfer, converting the singing voice of an author into a violin. F0 and loudness features are extracted from the singing voice and the DDSP autoencoder trained on solo violin used for resynthesis. To better match the conditioning features, we first shift the fundamental frequency of the singing up by two octaves to fit a violin’s typical register. Next, we transfer the room acoustics of the violin recording (as described in Section 5.3) to the voice before extracting loudness, to better match the loudness contours of the violin recordings. The resulting audio captures many subtleties of the singing with the timbre and room acoustics of the violin dataset. Note the interesting “breathing” artifacts in the silence corresponding to unvoiced syllables from the singing. ", + "bbox": [ + 174, + 733, + 823, + 843 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 864, + 318, + 880 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The DDSP library fuses classical DSP with deep learning, providing the ability to take advantage of strong inductive biases without losing the expressive power of neural networks and end-to-end ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "learning. We encourage contributions from domain experts and look forward to expanding the scope of the DDSP library to a wide range of future applications. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 154, + 287, + 169 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "S. O. Arik, H. Jun, and G. Diamos. Fast spectrogram inversion using multi-head convolutional neural networks. IEEE Signal Processing Letters, 26(1):94–98, Jan 2019. doi: 10.1109/LSP. 2018.2880284. ", + "bbox": [ + 174, + 178, + 825, + 219 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "James W Beauchamp. Analysis, synthesis, and perception of musical sounds. Springer, 2007. ", + "bbox": [ + 169, + 231, + 787, + 247 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Merlijn Blaauw and Jordi Bonada. A neural parametric singing synthesizer modeling timbre and expression from natural songs. Applied Sciences, 7(12):1313, 2017. ", + "bbox": [ + 173, + 257, + 820, + 286 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Pritish Chandna, Merlijn Blaauw, Jordi Bonada, and Emilia Gomez. Wgansing: A multi-voice singing voice synthesizer based on the wasserstein-gan. arXiv preprint arXiv:1903.10729, 2019. ", + "bbox": [ + 173, + 296, + 823, + 325 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Taishih Chi, Powen Ru, and Shihab A Shamma. Multiresolution spectrotemporal analysis of complex sounds. The Journal of the Acoustical Society of America, 118(2):887–906, 2005. ", + "bbox": [ + 173, + 337, + 823, + 366 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexandre Defossez, Neil Zeghidour, Nicolas Usunier, Leon Bottou, and Francis Bach. Sing: Symbol-to-instrument neural generator. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 9041–9051. Curran Associates, Inc., 2018. URL http://papers.nips.cc/paper/ 8118-sing-symbol-to-instrument-neural-generator.pdf. ", + "bbox": [ + 173, + 376, + 825, + 446 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. In International Conference on Learning Representations, 2019. URL https://openreview.net/forum? id $=$ ByMVTsR5KQ. ", + "bbox": [ + 176, + 457, + 823, + 500 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexey Dosovitskiy and Thomas Brox. Generating images with perceptual similarity metrics based on deep networks. In Advances in neural information processing systems, pp. 658–666, 2016. ", + "bbox": [ + 173, + 511, + 823, + 540 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jesse Engel, Cinjon Resnick, Adam Roberts, Sander Dieleman, Douglas Eck, Karen Simonyan, and Mohammad Norouzi. Neural audio synthesis of musical notes with WaveNet autoencoders. In ICML, 2017. ", + "bbox": [ + 173, + 549, + 823, + 592 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jesse Engel, Kumar Krishna Agrawal, Shuo Chen, Ishaan Gulrajani, Chris Donahue, and Adam Roberts. GANSynth: Adversarial neural audio synthesis. In International Conference on Learning Representations, 2019. URL https://openreview.net/forum?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } }$ H1xQVn09FX. ", + "bbox": [ + 174, + 603, + 823, + 647 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Philippe Esling, Naotake Masuda, Adrien Bardet, Romeo Despres, et al. Universal audio synthesizer control with normalizing flows. arXiv preprint arXiv:1907.00971, 2019. ", + "bbox": [ + 173, + 656, + 823, + 685 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "James L Flanagan. Speech analysis synthesis and perception, volume 3. Springer Science & Business Media, 2013. ", + "bbox": [ + 173, + 695, + 823, + 724 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Ha and Jurgen Schmidhuber. World models. ¨ arXiv preprint arXiv:1803.10122, 2018. ", + "bbox": [ + 171, + 736, + 776, + 752 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lamtharn (Hanoi) Hantrakul, Jesse Engel, Adam Roberts, and Chenjie Gu. Fast and flexible neural audio synthesis. In ISMIR, 2019. ", + "bbox": [ + 174, + 762, + 823, + 791 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ", + "bbox": [ + 174, + 801, + 823, + 844 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matthew D Hoffman and Perry R Cook. Feature-based synthesis: Mapping acoustic and perceptual features onto synthesis parameters. In ICMC. Citeseer, 2006. ", + "bbox": [ + 171, + 856, + 823, + 883 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are universal approximators. Neural networks, 2(5):359–366, 1989. ", + "bbox": [ + 176, + 895, + 820, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cheng-Zhi Anna Huang, David Duvenaud, Kenneth C Arnold, Brenton Partridge, Josiah W Oberholtzer, and Krzysztof Z Gajos. Active learning of intuitive control knobs for synthesizers using gaussian processes. In Proceedings of the 19th international conference on Intelligent User Interfaces, pp. 115–124. ACM, 2014. ", + "bbox": [ + 173, + 103, + 825, + 159 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nal Kalchbrenner, Erich Elsen, Karen Simonyan, Seb Noury, Norman Casagrande, Edward Lockhart, Florian Stimberg, Aaron van den Oord, Sander Dieleman, and Koray Kavukcuoglu. Efficient neural audio synthesis. arXiv preprint arXiv:1802.08435, 2018. ", + "bbox": [ + 173, + 167, + 821, + 210 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jong Wook Kim, Justin Salamon, Peter Li, and Juan Pablo Bello. Crepe: A convolutional representation for pitch estimation. In 2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pp. 161–165. IEEE, 2018. ", + "bbox": [ + 171, + 219, + 823, + 262 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Anssi Klapuri, Tuomas Virtanen, and Jan-Markus Holm. Robust multipitch estimation for the analysis and manipulation of polyphonic musical signals. In Proc. COST-G6 Conference on Digital Audio Effects, pp. 233–236, 2000. ", + "bbox": [ + 173, + 270, + 825, + 313 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Y. LeCun, B. Boser, J. S. Denker, D. Henderson, R. E. Howard, W. Hubbard, and L. D. Jackel. Backpropagation applied to handwritten zip code recognition. Neural Computation, 1(4):541– 551, 1989. doi: 10.1162/neco.1989.1.4.541. URL https://doi.org/10.1162/neco. 1989.1.4.541. ", + "bbox": [ + 173, + 321, + 825, + 377 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Francesco Locatello, Stefan Bauer, Mario Lucic, Sylvain Gelly, Bernhard Scholkopf, and Olivier ¨ Bachem. Challenging common assumptions in the unsupervised learning of disentangled representations. arXiv preprint arXiv:1811.12359, 2018. ", + "bbox": [ + 174, + 387, + 823, + 429 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Robert McAulay and Thomas Quatieri. Speech analysis/synthesis based on a sinusoidal representation. IEEE Transactions on Acoustics, Speech, and Signal Processing, 34(4):744–754, 1986. ", + "bbox": [ + 171, + 438, + 823, + 467 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Soroush Mehri, Kundan Kumar, Ishaan Gulrajani, Rithesh Kumar, Shubham Jain, Jose Sotelo, Aaron Courville, and Yoshua Bengio. Samplernn: An unconditional end-to-end neural audio generation model. arXiv preprint arXiv:1612.07837, 2016. ", + "bbox": [ + 176, + 476, + 823, + 518 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Michelle Moerel, Federico De Martino, and Elia Formisano. Processing of natural sounds in human auditory cortex: tonotopy, spectral tuning, and relation to voice sensitivity. Journal of Neuroscience, 32(41):14205–14216, 2012. ", + "bbox": [ + 174, + 526, + 823, + 569 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Masanori Morise, Fumiya Yokomori, and Kenji Ozawa. World: a vocoder-based high-quality speech synthesis system for real-time applications. IEICE TRANSACTIONS on Information and Systems, 99(7):1877–1884, 2016. ", + "bbox": [ + 173, + 578, + 821, + 621 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Patrick A Naylor and Nikolay D Gaubitch. Speech dereverberation. Springer Science & Business Media, 2010. ", + "bbox": [ + 169, + 628, + 825, + 659 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aaron van den Oord, Sander Dieleman, Heiga Zen, Karen Simonyan, Oriol Vinyals, Alex Graves, Nal Kalchbrenner, Andrew Senior, and Koray Kavukcuoglu. Wavenet: A generative model for raw audio. arXiv preprint arXiv:1609.03499, 2016. ", + "bbox": [ + 173, + 666, + 823, + 709 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Heiko Purnhagen and Nikolaus Meine. Hiln-the mpeg-4 parametric audio coding tools. In 2000 IEEE International Symposium on Circuits and Systems. Emerging Technologies for the 21st Century. Proceedings (IEEE Cat No. 00CH36353), volume 3, pp. 201–204. IEEE, 2000. ", + "bbox": [ + 174, + 717, + 823, + 761 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xavier Serra and Julius Smith. Spectral modeling synthesis: A sound analysis/synthesis system based on a deterministic plus stochastic decomposition. Computer Music Journal, 14(4):12–24, 1990. ", + "bbox": [ + 173, + 768, + 825, + 811 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Julius Orion Smith. Physical audio signal processing: For virtual musical instruments and audio effects. W3K publishing, 2010. ", + "bbox": [ + 173, + 820, + 823, + 849 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks. In Advances in neural information processing systems, pp. 3104–3112, 2014. ", + "bbox": [ + 174, + 858, + 821, + 887 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Edwin Tellman, Lippold Haken, and Bryan Holloway. Timbre morphing of sounds with unequal numbers of features. Journal of the Audio Engineering Society, 43(9):678–689, 1995. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Fred´ eric E Theunissen and Julie E Elie. Neural processing of natural sounds. ´ Nature Reviews Neuroscience, 15(6):355, 2014. \nAshish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information processing systems, pp. 5998–6008, 2017. \nXin Wang, Shinji Takaki, and Junichi Yamagishi. Neural source-filter waveform models for statistical parametric speech synthesis. arXiv preprint arXiv:1904.12088, 2019. \nYuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly, Zongheng Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, et al. Tacotron: Towards end-to-end speech synthesis. In INTERSPEECH, 2017. \nP. J. Werbos. Backpropagation through time: what it does and how to do it. Proceedings of the IEEE, 78(10):1550–1560, Oct 1990. doi: 10.1109/5.58337. \nRonald J Williams and David Zipser. Gradient-based learning algorithms for recurrent connectionist networks. College of Computer Science, Northeastern University Boston, MA, 1990. ", + "bbox": [ + 171, + 102, + 826, + 349 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A APPENDIX ", + "bbox": [ + 176, + 102, + 297, + 117 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/ae69231c516ed09fed6808a0b174b09d4bc195050f2cd9f0a31748d0ba579fdf.jpg", + "image_caption": [ + "Figure 5: Decomposition of a clip of solo violin. Audio is visualized with log magnitude spectrograms. Loudness and fundamental frequency signals are extracted from the original audio. The loudness curve does not exhibit clear note segmentations because of the effects of the room acoustics. The DDSP autoencoder takes those conditioning signals and predicts amplitudes, harmonic distributions, and noise magnitudes. Note that the amplitudes are clearly segmented along note boundaries without supervision and that the harmonic and noise distributions are complex and dynamic despite the simple conditioning signals. Finally, the extracted impulse response is applied to the combined audio from the synthesizers to give the full resynthesis audio. " + ], + "image_footnote": [], + "bbox": [ + 186, + 137, + 812, + 633 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/855c51131f1c81de60a033cdab15dea61c347a2213820e4eb8131484c53c7d92.jpg", + "image_caption": [ + "Figure 6: Diagram of the Additive Synthesizer component. The synthesizer generates audio as a sum of sinusoids at harmonic (integer) multiples of the fundamental frequency. The neural network is then tasked with emitting time-varying synthesizer parameters (fundamental frequency, amplitude, harmonic distribution). In this example linear-frequency log-magnitude spectrograms show how the harmonics initially follow the frequency contours of the fundamental. We then factorize the harmonic amplitudes into an overall amplitude envelope that controls the loudness, and a normalized distribution among the different harmonics that determines spectral variations. " + ], + "image_footnote": [], + "bbox": [ + 179, + 102, + 818, + 311 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/3581853ac178f33be8f9520b8d3ecfdb7ccd3ddd4adef98cc5b7a6863db827eb.jpg", + "image_caption": [ + "Figure 7: Interpretable generative models enables disentanglement and extrapolation. Spectrograms of audio examples include dereverberation of a clip of solo violin playing (left), transfer of the extracted room response to new audio (center), and transposition below the range of training data (right). " + ], + "image_footnote": [], + "bbox": [ + 178, + 440, + 821, + 647 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B MODEL DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 747, + 348, + 763 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B.1 ENCODERS ", + "text_level": 1, + "bbox": [ + 174, + 779, + 295, + 794 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The model has three encoders: $f$ -encoder that outputs fundamental frequency $f ( t )$ , $l$ -encoder that outputs loudness $l ( t )$ , and a $_ { z }$ -encoder that outputs residual vector $z ( t )$ . ", + "bbox": [ + 173, + 806, + 823, + 834 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "$f$ -encoder: We use a pretrained CREPE pitch detector (Kim et al., 2018) as the $f$ -encoder to extract ground truth fundamental frequencies (F0) from the audio. We used the “large” variant of CREPE, which has SOTA accuracy for monophonic audio samples of musical instruments. For our supervised autoencoder experiments, we fixed the weights of the $f$ -encoder like (Hantrakul et al., 2019), and for our unsupervised autoencoder experiemnts we jointly learn the weights of a resnet model fed log mel spectrograms of the audio. Full details of the resnet architecture are show in Table 2. ", + "bbox": [ + 174, + 840, + 825, + 922 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "$l$ -encoder: We use identical computational steps to extract loudness as (Hantrakul et al., 2019). Namely, an A-weighting of the power spectrum, which puts greater emphasis on higher frequencies, followed by log scaling. The vector is then centered according to the mean and standard deviation of the dataset. ", + "bbox": [ + 174, + 103, + 825, + 159 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "$_ z$ -encoder: As shown in Figure 8, the encoder first calculates MFCC’s (Mel Frequency Cepstrum Coefficients) from the audio. MFCC is computed from the log-mel-spectrogram of the audio with a FFT size of 1024, 128 bins of frequency range between $2 0 \\mathrm { H z }$ to $8 0 0 0 \\mathrm { H z }$ , overlap of $7 5 \\%$ . We use only the first 30 MFCCs that correspond to a smoothed spectral envelope. The MFCCs are then passed through a normalization layer (which has learnable shift and scale parameters) and a 512-unit GRU. The GRU outputs (over time) fed to a 512-unit linear layer to obtain $z ( t )$ . The $_ z$ embedding reported in this model has 16 dimensions across 250 time-steps. ", + "bbox": [ + 174, + 165, + 825, + 263 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/c92111047211e6624c3c18178c25de728271a9d73876307e26e7198c28563b9e.jpg", + "table_caption": [ + "Table 2: Model architecture for the f(t) encoder using a Resnet on log mel spectrograms. Spectrograms have a frame size of 2048 and a hop size of 512, and are upsampled at the end to have the same time resoultion as other latents (4ms per a frame). All convolutions use “same” padding and a temporal stride of 1. Each residual block uses a bottleneck structure (He et al., 2016). The final output is a normalized probablity distribution over 128 frequency values (logarithmically scaled between $8 . 2 \\mathrm { H z }$ and $1 3 . 3 \\mathrm { k H z }$ (https://www.inspiredacoustics.com/en/MIDI_note numbers_and_center_frequencies)). The finally frequency value is the weighted sum of each frequency by its probability. " + ], + "table_footnote": [], + "table_body": "
Residual BlockOutput SizekTimekFreqSFreqkFilters
layer norm + relu1-1
conv111kFilters/4
layer norm + relu=1
conv33SFreqkFilters/4
layer norm + relu--
conv111kFilters
add residual=--=
ResnetOutput SizekTimekFreqSFreqkFilters
LogMelSpectrogram(125,229, 1)1-11
conv2d(125, 115, 64)77264
max pool(125,58, 64)1321
residual block(125,58,128)331128
residual block(125,57, 128)331128
residual block(125,29,256)332256
residual block(125,29,256)331256
residual block(125,29,256)331256
residual block(125,15,512)332512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,8, 1024)3321024
residual block(125, 8,1024)3311024
residual block(125,8, 1024)3311024
dense(125,1, 128)=1281
upsample time(1000, 1, 128)=
softplus and normalize(1000, 1, 128)
", + "bbox": [ + 223, + 273, + 777, + 685 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.2 DECODER ", + "text_level": 1, + "bbox": [ + 174, + 828, + 287, + 843 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The decoder’s input is the latent tuple $( f ( t ) , l ( t ) , z ( t ) )$ (250 timesteps). Its outputs are the parameters required by the synthesizers. For example, in the case of the harmonic synthesizer and filtered noise synthesizer setup, the decoder outputs $\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf $ (amplitudes of the harmonics) for the harmonic synthesizer (note that $f ( t )$ is fed directly from the latent), and $\\pmb { H }$ (transfer function of the FIR filter) for the filtered noise synthesizer. ", + "bbox": [ + 174, + 853, + 823, + 924 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/28fbf2379fdd01d9581cdab52dc4eb847082c1784e65dcbb804b6c4e60115aac.jpg", + "image_caption": [ + "Figure 8: Diagram of the $_ { z }$ -encoder. " + ], + "image_footnote": [], + "bbox": [ + 240, + 98, + 761, + 222 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "As shown in Figure 9, we use a “shared-bottom” architecture, which computes a shared embedding from the latent tuple, and then have one head for each of the $( \\pmb { a } ( t ) , \\pmb { H } )$ outputs. ", + "bbox": [ + 171, + 276, + 823, + 305 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In particular, we apply separate MLPs to each of the $( f ( t ) , l ( t ) , z ( t ) )$ input. The outputs of the MLPs are concatenated and passed to a 512-unit GRU. We concatenate the GRU outputs with the outputs of the $f ( t )$ and $l ( t )$ MLPs (in the channel dimenssion) and pass it through a final MLP and Linear layer to get the decoder outputs. ", + "bbox": [ + 173, + 311, + 825, + 368 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/bbcebb94dbb9524aceff36f3d790224d20b0aa25c1c4063781359c32a7a78840.jpg", + "image_caption": [ + "Figure 9: Diagram of the decoder for the harmonic synthesizer and the filtered noise synthesizer. " + ], + "image_footnote": [], + "bbox": [ + 173, + 381, + 821, + 545 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The MLP architecture, shown in Figure 10, is a standard MLP with a layer normalization (tf.contrib.layers.layer_norm ) before the RELU nonlinearity. In Figure 9, all the MLPs have 3 layers and each layer has 512 units. ", + "bbox": [ + 173, + 595, + 825, + 638 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/1e46d3e88077e81097613373fcc5a8b27c7c453ce169bee2d1882e6fb619eebc.jpg", + "image_caption": [ + "Figure 10: MLP in the decoder. " + ], + "image_footnote": [], + "bbox": [ + 179, + 652, + 816, + 801 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B.3 TRAINING ", + "text_level": 1, + "bbox": [ + 174, + 854, + 290, + 869 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Because all DDSP components are differentiable, the model is differentiable end-to-end. Therefore, we can apply any SGD optimizer to train the model. We used ADAM optimizer with learning rate 0.001 and exponential learning rate decay 0.98 every 10,000 steps. ", + "bbox": [ + 174, + 882, + 825, + 924 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B.4 PERCEPTUAL LOSS ", + "text_level": 1, + "bbox": [ + 176, + 103, + 348, + 117 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "To help guide the DDSP autoencoder that must predict $f ( t )$ on the NSynth dataset, we also added an additional perceptual loss using pretrained models, such as the CREPE (Kim et al., 2018) pitch estimator and the encoder of the WaveNet autoencoder (Engel et al., 2017). Compared to the L1 loss on the spectrogram, the activations of different layers in these models correlate better with the perceptual quality of the audio. After a large-scale hyperparameter search, we obtained our best results by using the L1 distance between the activations of the small CREPE model’s fifth max pool layer with a weighting of $5 \\times 1 0 ^ { - 5 }$ relative to the spectral loss. ", + "bbox": [ + 173, + 130, + 825, + 227 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.5 SYNTHESIZERS ", + "text_level": 1, + "bbox": [ + 174, + 244, + 323, + 260 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Harmonic synthesizer / Additive Synthesis: We use 101 harmonics in the harmonic synthesizer (i.e., $\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf $ ’s dimension is 101). Amplitude and harmonic distribution parameters are upsampled with overlapping Hamming window envelopes whose frame size is 128 and hop size is 64. Initial phases are all fixed to zero, as neither the spectrogram loss functions or human perception are sensitive to absolute offsets in harmonic phase. We also do not include synthesis elements to model DC components to signals as they are inaudible and not reflected in the spectrogram losses. ", + "bbox": [ + 173, + 271, + 825, + 354 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We force the amplitudes, harmonic distributions, and filtered noise magnitudes to be non-negative by applying a sigmoid nonlinearity to network outputs. We find a slight improvement in traning stability by modifying the sigmoid to have a scaled output, larger slope by exponentiating, and threshold at a minimum value: ", + "bbox": [ + 174, + 361, + 823, + 417 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/95409b8633e035a724bc68d02ab2d1992b50edd4cb5bfa6097ab38f71d0db2b2.jpg", + "text": "$$\ny = 2 . 0 \\cdot \\mathrm { s i g m o i d } ( x ) ^ { \\log 1 0 } + 1 0 ^ { - 7 }\n$$", + "text_format": "latex", + "bbox": [ + 383, + 424, + 614, + 443 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Filtered noise synthesizer: We use 65 network output channels as magnitude inputs to the FIR filter of the filtered noise synthesizer. ", + "bbox": [ + 173, + 458, + 825, + 487 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/29b6ce19f9423b3e8f0838181814129dac7a88c32b963d6b698b95a0e570425f.jpg", + "table_caption": [ + "B.6 PARAMETER COUNTS " + ], + "table_footnote": [], + "table_body": "
ModelParameters
WaveNet Autoencoder (Engel et al.,2017)75M
WaveRNN (Hantrakul et al., 2019)23M
GANSynth (Engel et al., 2019)15M
DDSP Autoencoder (Unsupervised)12M
DDSP Autoencoder (Supervised, NSynth)7M
DDSP Autoencoder (Supervised, Solo Violin)6M
DDSP Autoencoder Tiny (Supervised, Solo Violin)0.24M
", + "bbox": [ + 269, + 537, + 727, + 662 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Table 3: Parameter counts for different models. All models trained on NSynth dataset except for those marked (Solo Violin). Autoregressive models have the most parameters with GANs requiring less. The DDSP models examined in this paper (which have not been optimized at all for size) require 2 to 3 times less parameters than GANSynth. The unsupervised model has more parameters because of the CREPE (small) $f ( t )$ encoder, and the autoencoder has additional parameters for the $z ( t )$ encoder. Initial experiments with extremely small models (single GRU, 256 units), have slightly less realistic outputs, but still relatively high quality (as can be heard in the supplemental audio). ", + "bbox": [ + 173, + 678, + 825, + 776 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C EVALUATION DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 809, + 393, + 825 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C.1 METRICS ", + "text_level": 1, + "bbox": [ + 174, + 842, + 282, + 856 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Loudness $L _ { 1 }$ distance: The loudness vector is extracted from the synthesized audio and $L _ { 1 }$ distance computed against the input’s conditioning loudness vector (ground truth). A better model will produce lower $L _ { 1 }$ distances, indicating input and generated loudness vectors closely match. Note this distance is not back-propagated through the network as a training objective. ", + "bbox": [ + 174, + 868, + 825, + 924 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "F0 $L _ { 1 }$ distance: The $\\mathrm { F 0 ~ } L _ { 1 }$ distance is reported in MIDI space for easier interpretation; an average $\\mathrm { F 0 ~ } L _ { 1 }$ of 1.0 corresponds to a semitone difference. We use the same confidence threshold of 0.85 in (Hantrakul et al., 2019) to select portions where there was detectable pitch content, and compute the metric only in these areas. ", + "bbox": [ + 174, + 103, + 825, + 159 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "F0 Outliers: Pitch tracking using CREPE, like any pitch tracker, is not completely reliable. Instabilities in pitch tracking, such as sudden octave jumps at low volumes, can result errors not due to model performance and need to be accounted for. F0 outliers accounts for pitch tracking imperfections in CREPE (Kim et al., 2018) vs. genuinely bad samples generated by the trained model. CREPE outputs both an F0 value as well as a F0 confidence. Samples with confidences below a threshold of 0.85 in (Hantrakul et al., 2019) are labeled as outliers and usually indicate the sample was mostly noise with no pitch or harmonic component. As the model outputs better quality audio, the number of outliers decrease, thus lower scores indicate better performance. ", + "bbox": [ + 173, + 165, + 825, + 276 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "C.2 INTERPOLATION METRICS ", + "text_level": 1, + "bbox": [ + 176, + 292, + 400, + 308 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Loudness $L _ { 1 }$ and $\\mathrm { F 0 ~ } L _ { 1 }$ are shown for different interpolation tasks in table C.2. In reconstruction, the model is supplied with the standard $( f ( t ) _ { A } , \\bar { l } ( t ) _ { A } , z ( t ) _ { A } )$ . Loudness $( L _ { 1 } )$ and F0 $( L _ { 1 } )$ are computed against the ground truth inputs. In loudness interpolation, the model is supplied with $( f ( t ) _ { A } , l ( t ) _ { B } , z ( t ) _ { A } )$ , and Loudness $( L _ { 1 } )$ is calculated using $l ( t ) _ { B }$ as ground truth instead of $( l ( t ) _ { A } )$ . For F0 interpolation, the model is supplied with $( f ( t ) _ { B } , l ( t ) _ { A } , z ( t ) _ { A } )$ and F0 $( L _ { 1 } )$ is calculated using $f ( t ) _ { B }$ as ground truth instead of $f ( t ) _ { A }$ . For $\\textsf { Z }$ interpolation, the model is supplied with $( f ( t ) _ { A } , l ( t ) _ { A } , z ( t ) _ { B } )$ . The low and constant Loudness $( L _ { 1 } )$ and F0 $( L _ { 1 } )$ metrics across these interpolations indicate the model is able independently vary these variables without affecting other components. ", + "bbox": [ + 173, + 318, + 825, + 443 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/c95d4ee55979ba19b01ae62dfb5a5d8253c9951d7da9f72c9d3948df4ce205b9.jpg", + "table_caption": [ + "Table 4: Loudness and F0 metrics for different interpolation tasks. " + ], + "table_footnote": [], + "table_body": "
TaskLoudness (L1)F0 (L1)
Reconstruction0.0420.060
Loudness l(t) interp.0.0610.060
FO f(t) interp.0.0480.070
Zz(t) interp.0.0630.065
", + "bbox": [ + 323, + 457, + 673, + 536 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "D OTHER NOTES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 328, + 118 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "D.1 SINUSOIDAL MODELS", + "text_level": 1, + "bbox": [ + 176, + 133, + 369, + 147 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "While unconstrained sinusoidal oscillator banks are strictly more expressive than harmonic oscillators, we restricted ourselves to harmonic synthesizers for the time being to focus the problem domain. However, this is not a fundamental limitation of the technique and perturbations such as inharmonicity can also be incorporated to handle phenomena such as stiff strings (Smith, 2010). ", + "bbox": [ + 174, + 159, + 825, + 214 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "D.2 REGULARIZATION ", + "text_level": 1, + "bbox": [ + 176, + 231, + 344, + 246 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "It is worth mentioning that the modular structure of the synthesizers also makes it possible to define additional losses in terms of different synthesizer outputs and parameters. For example, we may impose an SNR loss to penalize outputs with too much noise if we know the training data consists of mostly clean data. We have not experimented too much with such engineered losses, but we believe they can make training more efficient, even though such engineering methods deviates from the end-to-end training paradigm, ", + "bbox": [ + 174, + 257, + 825, + 340 + ], + "page_idx": 18 + } +] \ No newline at end of file diff --git a/parse/train/B1x1ma4tDr/B1x1ma4tDr_middle.json b/parse/train/B1x1ma4tDr/B1x1ma4tDr_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..233917c93fb9ba75664e9fce15cb3eb88c3c4e2b --- /dev/null +++ b/parse/train/B1x1ma4tDr/B1x1ma4tDr_middle.json @@ -0,0 +1,42259 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 463, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 163, + 96 + ], + "score": 1.0, + "content": "DDSP:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 465, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 465, + 118 + ], + "score": 1.0, + "content": "DIFFERENTIABLE DIGITAL SIGNAL PROCESSING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 134, + 390, + 146 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 392, + 148 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 392, + 148 + ], + "score": 1.0, + "content": "Jesse Engel, Lamtharn Hantrakul, Chenjie Gu, & Adam Roberts", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 114, + 147, + 359, + 179 + ], + "lines": [ + { + "bbox": [ + 113, + 146, + 235, + 157 + ], + "spans": [ + { + "bbox": [ + 113, + 146, + 235, + 157 + ], + "score": 1.0, + "content": "Google Research, Brain Team", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 156, + 247, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 156, + 247, + 167 + ], + "score": 1.0, + "content": "Mountain View, CA 94043, USA", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 113, + 167, + 358, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 167, + 358, + 180 + ], + "score": 1.0, + "content": "{jesseengel,hanoih,gcj,adarob}@google.com", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 277, + 207, + 335, + 221 + ], + "spans": [ + { + "bbox": [ + 277, + 207, + 335, + 221 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 231, + 468, + 460 + ], + "lines": [ + { + "bbox": [ + 141, + 231, + 470, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 470, + 244 + ], + "score": 1.0, + "content": "Most generative models of audio directly generate samples in one of two domains:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "score": 1.0, + "content": "time or frequency. While sufficient to express any signal, these representations are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 254, + 470, + 266 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 470, + 266 + ], + "score": 1.0, + "content": "inefficient, as they do not utilize existing knowledge of how sound is generated", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 264, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 264, + 469, + 277 + ], + "score": 1.0, + "content": "and perceived. A third approach (vocoders/synthesizers) successfully incorpo-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "score": 1.0, + "content": "rates strong domain knowledge of signal processing and perception, but has been", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "score": 1.0, + "content": "less actively researched due to limited expressivity and difficulty integrating with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 296, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 470, + 310 + ], + "score": 1.0, + "content": "modern auto-differentiation-based machine learning methods. In this paper, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "score": 1.0, + "content": "introduce the Differentiable Digital Signal Processing (DDSP) library, which en-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 318, + 469, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 318, + 469, + 331 + ], + "score": 1.0, + "content": "ables direct integration of classic signal processing elements with deep learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 470, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 470, + 343 + ], + "score": 1.0, + "content": "methods. Focusing on audio synthesis, we achieve high-fidelity generation with-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 339, + 470, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 354 + ], + "score": 1.0, + "content": "out the need for large autoregressive models or adversarial losses, demonstrating", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 351, + 470, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 351, + 470, + 364 + ], + "score": 1.0, + "content": "that DDSP enables utilizing strong inductive biases without losing the expressive", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 362, + 469, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 362, + 469, + 374 + ], + "score": 1.0, + "content": "power of neural networks. Further, we show that combining interpretable modules", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 373, + 469, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 373, + 469, + 384 + ], + "score": 1.0, + "content": "permits manipulation of each separate model component, with applications such", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "score": 1.0, + "content": "as independent control of pitch and loudness, realistic extrapolation to pitches not", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 395, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 395, + 470, + 406 + ], + "score": 1.0, + "content": "seen during training, blind dereverberation of room acoustics, transfer of extracted", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 406, + 469, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 406, + 469, + 417 + ], + "score": 1.0, + "content": "room acoustics to new environments, and transformation of timbre between dis-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 416, + 470, + 429 + ], + "spans": [ + { + "bbox": [ + 141, + 416, + 470, + 429 + ], + "score": 1.0, + "content": "parate sources. In short, DDSP enables an interpretable and modular approach to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 140, + 426, + 469, + 441 + ], + "spans": [ + { + "bbox": [ + 140, + 426, + 469, + 441 + ], + "score": 1.0, + "content": "generative modeling, without sacrificing the benefits of deep learning. The library", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 140, + 437, + 469, + 451 + ], + "spans": [ + { + "bbox": [ + 140, + 437, + 469, + 451 + ], + "score": 1.0, + "content": "is publicly available1 and we welcome further contributions from the community", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 450, + 225, + 461 + ], + "spans": [ + { + "bbox": [ + 141, + 450, + 225, + 461 + ], + "score": 1.0, + "content": "and domain experts.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 479, + 206, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 208, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 208, + 495 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "Neural networks are universal function approximators in the asymptotic limit (Hornik et al., 1989),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "but their practical success is largely due to the use of strong structural priors such as convolution (Le-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Cun et al., 1989), recurrence (Sutskever et al., 2014; Williams & Zipser, 1990; Werbos, 1990), and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "score": 1.0, + "content": "self-attention (Vaswani et al., 2017). These architectural constraints promote generalization and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 548, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 559 + ], + "score": 1.0, + "content": "data efficiency to the extent that they align with the data domain. From this perspective, end-to-end", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "learning relies on structural priors to scale, but the practitioner’s toolbox is limited to functions that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "can be expressed differentiably. Here, we increase the size of that toolbox by introducing the Differ-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 579, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 505, + 594 + ], + "score": 1.0, + "content": "entiable Digital Signal Processing (DDSP) library, which integrates interpretable signal processing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "score": 1.0, + "content": "elements into modern automatic differentiation software (TensorFlow). While this approach has", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "score": 1.0, + "content": "broad applicability, we highlight its potential in this paper through exploring the example of audio", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 148, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 148, + 625 + ], + "score": 1.0, + "content": "synthesis.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 629, + 504, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "Objects have a natural tendency to periodically vibrate. Small shape displacements are usually", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "score": 1.0, + "content": "restored with elastic forces that conserve energy (similar to a canonical mass on a spring), leading", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "score": 1.0, + "content": "to harmonic oscillation between kinetic and potential energy (Smith, 2010). Accordingly, human", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "score": 1.0, + "content": "hearing has evolved to be highly sensitive to phase-coherent oscillation, decomposing audio into", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "score": 1.0, + "content": "spectrotemporal responses through the resonant properties of the basilar membrane and tonotopic", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 691, + 367, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 690, + 191, + 703 + ], + "spans": [ + { + "bbox": [ + 119, + 690, + 191, + 703 + ], + "score": 1.0, + "content": "1Online Resources:", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 701, + 300, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 300, + 714 + ], + "score": 1.0, + "content": "Code: https://github.com/magenta/ddsp", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 368, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 368, + 723 + ], + "score": 1.0, + "content": "Audio Examples: https://goo.gl/magenta/ddsp-examples", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 333, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 333, + 733 + ], + "score": 1.0, + "content": "Colab Demo: https://goo.gl/magenta/ddsp-demo", + "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, + 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, + 463, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 163, + 96 + ], + "score": 1.0, + "content": "DDSP:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 465, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 465, + 118 + ], + "score": 1.0, + "content": "DIFFERENTIABLE DIGITAL SIGNAL PROCESSING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 134, + 390, + 146 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 392, + 148 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 392, + 148 + ], + "score": 1.0, + "content": "Jesse Engel, Lamtharn Hantrakul, Chenjie Gu, & Adam Roberts", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 111, + 134, + 392, + 148 + ] + }, + { + "type": "list", + "bbox": [ + 114, + 147, + 359, + 179 + ], + "lines": [ + { + "bbox": [ + 113, + 146, + 235, + 157 + ], + "spans": [ + { + "bbox": [ + 113, + 146, + 235, + 157 + ], + "score": 1.0, + "content": "Google Research, Brain Team", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 156, + 247, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 156, + 247, + 167 + ], + "score": 1.0, + "content": "Mountain View, CA 94043, USA", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 167, + 358, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 167, + 358, + 180 + ], + "score": 1.0, + "content": "{jesseengel,hanoih,gcj,adarob}@google.com", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + } + ], + "index": 4, + "bbox_fs": [ + 111, + 146, + 358, + 180 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 277, + 207, + 335, + 221 + ], + "spans": [ + { + "bbox": [ + 277, + 207, + 335, + 221 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 231, + 468, + 460 + ], + "lines": [ + { + "bbox": [ + 141, + 231, + 470, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 470, + 244 + ], + "score": 1.0, + "content": "Most generative models of audio directly generate samples in one of two domains:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "score": 1.0, + "content": "time or frequency. While sufficient to express any signal, these representations are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 254, + 470, + 266 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 470, + 266 + ], + "score": 1.0, + "content": "inefficient, as they do not utilize existing knowledge of how sound is generated", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 264, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 264, + 469, + 277 + ], + "score": 1.0, + "content": "and perceived. A third approach (vocoders/synthesizers) successfully incorpo-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "score": 1.0, + "content": "rates strong domain knowledge of signal processing and perception, but has been", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 286, + 470, + 299 + ], + "score": 1.0, + "content": "less actively researched due to limited expressivity and difficulty integrating with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 296, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 470, + 310 + ], + "score": 1.0, + "content": "modern auto-differentiation-based machine learning methods. In this paper, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 469, + 320 + ], + "score": 1.0, + "content": "introduce the Differentiable Digital Signal Processing (DDSP) library, which en-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 318, + 469, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 318, + 469, + 331 + ], + "score": 1.0, + "content": "ables direct integration of classic signal processing elements with deep learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 470, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 470, + 343 + ], + "score": 1.0, + "content": "methods. Focusing on audio synthesis, we achieve high-fidelity generation with-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 339, + 470, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 354 + ], + "score": 1.0, + "content": "out the need for large autoregressive models or adversarial losses, demonstrating", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 351, + 470, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 351, + 470, + 364 + ], + "score": 1.0, + "content": "that DDSP enables utilizing strong inductive biases without losing the expressive", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 362, + 469, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 362, + 469, + 374 + ], + "score": 1.0, + "content": "power of neural networks. Further, we show that combining interpretable modules", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 373, + 469, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 373, + 469, + 384 + ], + "score": 1.0, + "content": "permits manipulation of each separate model component, with applications such", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 470, + 396 + ], + "score": 1.0, + "content": "as independent control of pitch and loudness, realistic extrapolation to pitches not", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 395, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 395, + 470, + 406 + ], + "score": 1.0, + "content": "seen during training, blind dereverberation of room acoustics, transfer of extracted", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 406, + 469, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 406, + 469, + 417 + ], + "score": 1.0, + "content": "room acoustics to new environments, and transformation of timbre between dis-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 416, + 470, + 429 + ], + "spans": [ + { + "bbox": [ + 141, + 416, + 470, + 429 + ], + "score": 1.0, + "content": "parate sources. In short, DDSP enables an interpretable and modular approach to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 140, + 426, + 469, + 441 + ], + "spans": [ + { + "bbox": [ + 140, + 426, + 469, + 441 + ], + "score": 1.0, + "content": "generative modeling, without sacrificing the benefits of deep learning. The library", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 140, + 437, + 469, + 451 + ], + "spans": [ + { + "bbox": [ + 140, + 437, + 469, + 451 + ], + "score": 1.0, + "content": "is publicly available1 and we welcome further contributions from the community", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 450, + 225, + 461 + ], + "spans": [ + { + "bbox": [ + 141, + 450, + 225, + 461 + ], + "score": 1.0, + "content": "and domain experts.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17, + "bbox_fs": [ + 140, + 231, + 470, + 461 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 479, + 206, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 208, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 208, + 495 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "Neural networks are universal function approximators in the asymptotic limit (Hornik et al., 1989),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "but their practical success is largely due to the use of strong structural priors such as convolution (Le-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "Cun et al., 1989), recurrence (Sutskever et al., 2014; Williams & Zipser, 1990; Werbos, 1990), and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "score": 1.0, + "content": "self-attention (Vaswani et al., 2017). These architectural constraints promote generalization and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 548, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 559 + ], + "score": 1.0, + "content": "data efficiency to the extent that they align with the data domain. From this perspective, end-to-end", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "learning relies on structural priors to scale, but the practitioner’s toolbox is limited to functions that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "can be expressed differentiably. Here, we increase the size of that toolbox by introducing the Differ-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 579, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 505, + 594 + ], + "score": 1.0, + "content": "entiable Digital Signal Processing (DDSP) library, which integrates interpretable signal processing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 603 + ], + "score": 1.0, + "content": "elements into modern automatic differentiation software (TensorFlow). While this approach has", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 615 + ], + "score": 1.0, + "content": "broad applicability, we highlight its potential in this paper through exploring the example of audio", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 148, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 148, + 625 + ], + "score": 1.0, + "content": "synthesis.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 503, + 506, + 625 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 629, + 504, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "Objects have a natural tendency to periodically vibrate. Small shape displacements are usually", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "score": 1.0, + "content": "restored with elastic forces that conserve energy (similar to a canonical mass on a spring), leading", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "score": 1.0, + "content": "to harmonic oscillation between kinetic and potential energy (Smith, 2010). Accordingly, human", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "score": 1.0, + "content": "hearing has evolved to be highly sensitive to phase-coherent oscillation, decomposing audio into", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "score": 1.0, + "content": "spectrotemporal responses through the resonant properties of the basilar membrane and tonotopic", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "mappings into the auditory cortex (Moerel et al., 2012; Chi et al., 2005; Theunissen & Elie, 2014).", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "However, neural synthesis models often do not exploit this periodic structure for generation and", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 154, + 117 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 154, + 117 + ], + "score": 1.0, + "content": "perception.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 628, + 506, + 687 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "mappings into the auditory cortex (Moerel et al., 2012; Chi et al., 2005; Theunissen & Elie, 2014).", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "However, neural synthesis models often do not exploit this periodic structure for generation and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 154, + 117 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 154, + 117 + ], + "score": 1.0, + "content": "perception.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 108, + 128, + 326, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 327, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 327, + 141 + ], + "score": 1.0, + "content": "1.1 CHALLENGES OF NEURAL AUDIO SYNTHESIS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 149, + 505, + 247 + ], + "lines": [ + { + "bbox": [ + 106, + 148, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 505, + 162 + ], + "score": 1.0, + "content": "As shown in Figure 1, most neural synthesis models generate waveforms directly in the time domain,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "or from their corresponding Fourier coefficients in the frequency domain. While these representa-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "score": 1.0, + "content": "tions are general and can represent any waveform, they are not free from bias. This is because they", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "often apply a prior over generating audio with aligned wave packets rather than oscillations. For ex-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 193, + 504, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 504, + 205 + ], + "score": 1.0, + "content": "ample, strided convolution models–such as SING (Defossez et al., 2018), MCNN (Arik et al., 2019),", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "and WaveGAN (Donahue et al., 2019)–generate waveforms directly with overlapping frames. Since", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "audio oscillates at many frequencies, all with different periods from the fixed frame hop size, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "model must precisely align waveforms between different frames and learn filters to cover all possible", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 236, + 381, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 381, + 249 + ], + "score": 1.0, + "content": "phase variations. This challenge is visualized on the left of Figure 1.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "Fourier-based models–such as Tacotron (Wang et al., 2017) and GANSynth (Engel et al., 2019)–", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "also suffer from the phase-alignment problem, as the Short-time Fourier Transform (STFT) is a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 273, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 273, + 506, + 288 + ], + "score": 1.0, + "content": "representation over windowed wave packets. Additionally, they must contend with spectral leakage,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "where sinusoids at multiple neighboring frequencies and phases must be combined to represent a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "single sinusoid when Fourier basis frequencies do not perfectly match the audio. This effect can be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 307, + 267, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 267, + 320 + ], + "score": 1.0, + "content": "seen in the middle diagram of Figure 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "Autoregressive waveform models–such as WaveNet (Oord et al., 2016), SampleRNN (Mehri et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "2016), and WaveRNN (Kalchbrenner et al., 2018)–avoid these issues by generating the waveform", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "a single sample at a time. They are not constrained by the bias over generating wave packets and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "can express arbitrary waveforms. However, they require larger and more data-hungry networks, as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "they do not take advantage of a bias over oscillation (size comparisons can be found in Table B.6).", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "Furthermore, the use of teacher-forcing during training leads to exposure bias during generation,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "where errors with feedback can compound. It also makes them incompatible with perceptual losses", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "such as spectral features (Defossez et al., 2018), pretrained models (Dosovitskiy & Brox, 2016), and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "discriminators (Engel et al., 2019). This adds further inefficiency to these models, as a waveform’s", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "shape does not perfectly correspond to perception. For example, the three waveforms on the right of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "Figure 1 sound identical (a relative phase offset of the harmonics) but would present different losses", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 444, + 218, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 218, + 455 + ], + "score": 1.0, + "content": "to an autoregressive model.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5 + }, + { + "type": "image", + "bbox": [ + 106, + 464, + 505, + 571 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 464, + 505, + 571 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 571 + ], + "score": 0.967, + "type": "image", + "image_path": "ce1f3b59584b9a627b918133ad3040953912b3a4848fa1f6c5f5ee4c06b20c05.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 106, + 464, + 505, + 499.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 106, + 499.6666666666667, + 505, + 535.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 106, + 535.3333333333334, + 505, + 571.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 128, + 577, + 481, + 589 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 576, + 483, + 590 + ], + "spans": [ + { + "bbox": [ + 128, + 576, + 483, + 590 + ], + "score": 1.0, + "content": "Figure 1: Challenges of neural audio synthesis. Full description provided in Section 1.1.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + } + ], + "index": 33.0 + }, + { + "type": "title", + "bbox": [ + 108, + 596, + 227, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 228, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 228, + 609 + ], + "score": 1.0, + "content": "1.2 OSCILLATOR MODELS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 617, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Rather than predicting waveforms or Fourier coefficients, a third model class directly generates", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 642 + ], + "score": 1.0, + "content": "audio with oscillators. Known as vocoders or synthesizers, these models are physically and percep-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "tually motivated and have a long history of research and applications (Beauchamp, 2007; Morise", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "et al., 2016). These “analysis/synthesis” models use expert knowledge and hand-tuned heuristics to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 661, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 672 + ], + "score": 1.0, + "content": "extract synthesis parameters (analysis) that are interpretable (loudness and frequencies) and can be", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 671, + 287, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 287, + 684 + ], + "score": 1.0, + "content": "used by the generative algorithm (synthesis).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Neural networks have been used previously to some success in modeling pre-extracted synthesis", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "parameters (Blaauw & Bonada, 2017; Chandna et al., 2019), but these models fall short of end-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 711, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 722 + ], + "score": 1.0, + "content": "to-end learning. The analysis parameters must still be tuned by hand and gradients cannot flow", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "through the synthesis procedure. As a result, small errors in parameters can lead to large errors in", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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, + 504, + 115 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 104, + 82, + 505, + 117 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 128, + 326, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 327, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 327, + 141 + ], + "score": 1.0, + "content": "1.1 CHALLENGES OF NEURAL AUDIO SYNTHESIS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 149, + 505, + 247 + ], + "lines": [ + { + "bbox": [ + 106, + 148, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 505, + 162 + ], + "score": 1.0, + "content": "As shown in Figure 1, most neural synthesis models generate waveforms directly in the time domain,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "or from their corresponding Fourier coefficients in the frequency domain. While these representa-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 184 + ], + "score": 1.0, + "content": "tions are general and can represent any waveform, they are not free from bias. This is because they", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "often apply a prior over generating audio with aligned wave packets rather than oscillations. For ex-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 193, + 504, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 504, + 205 + ], + "score": 1.0, + "content": "ample, strided convolution models–such as SING (Defossez et al., 2018), MCNN (Arik et al., 2019),", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "and WaveGAN (Donahue et al., 2019)–generate waveforms directly with overlapping frames. Since", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "audio oscillates at many frequencies, all with different periods from the fixed frame hop size, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "model must precisely align waveforms between different frames and learn filters to cover all possible", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 236, + 381, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 381, + 249 + ], + "score": 1.0, + "content": "phase variations. This challenge is visualized on the left of Figure 1.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 148, + 506, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "Fourier-based models–such as Tacotron (Wang et al., 2017) and GANSynth (Engel et al., 2019)–", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "also suffer from the phase-alignment problem, as the Short-time Fourier Transform (STFT) is a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 273, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 273, + 506, + 288 + ], + "score": 1.0, + "content": "representation over windowed wave packets. Additionally, they must contend with spectral leakage,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "where sinusoids at multiple neighboring frequencies and phases must be combined to represent a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "single sinusoid when Fourier basis frequencies do not perfectly match the audio. This effect can be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 307, + 267, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 267, + 320 + ], + "score": 1.0, + "content": "seen in the middle diagram of Figure 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 252, + 506, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "Autoregressive waveform models–such as WaveNet (Oord et al., 2016), SampleRNN (Mehri et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "2016), and WaveRNN (Kalchbrenner et al., 2018)–avoid these issues by generating the waveform", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "a single sample at a time. They are not constrained by the bias over generating wave packets and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "can express arbitrary waveforms. However, they require larger and more data-hungry networks, as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "they do not take advantage of a bias over oscillation (size comparisons can be found in Table B.6).", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "Furthermore, the use of teacher-forcing during training leads to exposure bias during generation,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "where errors with feedback can compound. It also makes them incompatible with perceptual losses", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "such as spectral features (Defossez et al., 2018), pretrained models (Dosovitskiy & Brox, 2016), and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "discriminators (Engel et al., 2019). This adds further inefficiency to these models, as a waveform’s", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "shape does not perfectly correspond to perception. For example, the three waveforms on the right of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "Figure 1 sound identical (a relative phase offset of the harmonics) but would present different losses", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 444, + 218, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 218, + 455 + ], + "score": 1.0, + "content": "to an autoregressive model.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 324, + 506, + 455 + ] + }, + { + "type": "image", + "bbox": [ + 106, + 464, + 505, + 571 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 464, + 505, + 571 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 571 + ], + "score": 0.967, + "type": "image", + "image_path": "ce1f3b59584b9a627b918133ad3040953912b3a4848fa1f6c5f5ee4c06b20c05.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 106, + 464, + 505, + 499.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 106, + 499.6666666666667, + 505, + 535.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 106, + 535.3333333333334, + 505, + 571.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 128, + 577, + 481, + 589 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 576, + 483, + 590 + ], + "spans": [ + { + "bbox": [ + 128, + 576, + 483, + 590 + ], + "score": 1.0, + "content": "Figure 1: Challenges of neural audio synthesis. Full description provided in Section 1.1.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + } + ], + "index": 33.0 + }, + { + "type": "title", + "bbox": [ + 108, + 596, + 227, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 228, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 228, + 609 + ], + "score": 1.0, + "content": "1.2 OSCILLATOR MODELS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 617, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Rather than predicting waveforms or Fourier coefficients, a third model class directly generates", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 642 + ], + "score": 1.0, + "content": "audio with oscillators. Known as vocoders or synthesizers, these models are physically and percep-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "tually motivated and have a long history of research and applications (Beauchamp, 2007; Morise", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "et al., 2016). These “analysis/synthesis” models use expert knowledge and hand-tuned heuristics to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 661, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 672 + ], + "score": 1.0, + "content": "extract synthesis parameters (analysis) that are interpretable (loudness and frequencies) and can be", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 671, + 287, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 287, + 684 + ], + "score": 1.0, + "content": "used by the generative algorithm (synthesis).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 617, + 505, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Neural networks have been used previously to some success in modeling pre-extracted synthesis", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "parameters (Blaauw & Bonada, 2017; Chandna et al., 2019), but these models fall short of end-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 711, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 722 + ], + "score": 1.0, + "content": "to-end learning. The analysis parameters must still be tuned by hand and gradients cannot flow", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "through the synthesis procedure. As a result, small errors in parameters can lead to large errors in", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "the audio that cannot propagate back to the network. Crucially, the realism of vocoders is limited by", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 307, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 307, + 106 + ], + "score": 1.0, + "content": "the expressivity of a given analysis/synthesis pair.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 687, + 505, + 733 + ] + } + ] + }, + { + "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": "the audio that cannot propagate back to the network. Crucially, the realism of vocoders is limited by", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 307, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 307, + 106 + ], + "score": 1.0, + "content": "the expressivity of a given analysis/synthesis pair.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 120, + 204, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 205, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 205, + 132 + ], + "score": 1.0, + "content": "1.3 CONTRIBUTIONS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 153 + ], + "score": 1.0, + "content": "In this paper, we overcome the limitations outlined above by using the DDSP library to implement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "fully differentiable synthesizers and audio effects. DDSP models combine the strengths of the above", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "score": 1.0, + "content": "approaches, benefiting from the inductive bias of using oscillators, while retaining the expressive", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 173, + 309, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 309, + 187 + ], + "score": 1.0, + "content": "power of neural networks and end-to-end training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 190, + 503, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "score": 1.0, + "content": "We demonstrate that models employing DDSP components are capable of generating high-fidelity", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 201, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 504, + 213 + ], + "score": 1.0, + "content": "audio without autoregressive or adversarial losses. Further, we show the interpretability and modu-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 212, + 226, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 226, + 224 + ], + "score": 1.0, + "content": "larity of these models enable:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 133, + 235, + 475, + 315 + ], + "lines": [ + { + "bbox": [ + 132, + 236, + 390, + 247 + ], + "spans": [ + { + "bbox": [ + 132, + 236, + 390, + 247 + ], + "score": 1.0, + "content": "• Independent control over pitch and loudness during synthesis.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 131, + 248, + 375, + 262 + ], + "spans": [ + { + "bbox": [ + 131, + 248, + 375, + 262 + ], + "score": 1.0, + "content": "• Realistic extrapolation to pitches not seen during training.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 134, + 262, + 454, + 275 + ], + "spans": [ + { + "bbox": [ + 134, + 262, + 454, + 275 + ], + "score": 1.0, + "content": "• Blind dereverberation of audio through seperate modelling of room acoustics.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 134, + 276, + 378, + 288 + ], + "spans": [ + { + "bbox": [ + 134, + 279, + 139, + 285 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 140, + 276, + 378, + 288 + ], + "score": 1.0, + "content": "Transfer of extracted room acoustics to new environments.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 131, + 289, + 476, + 303 + ], + "spans": [ + { + "bbox": [ + 131, + 289, + 476, + 303 + ], + "score": 1.0, + "content": "• Timbre transfer between disparate sources, converting a singing voice into a violin.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 131, + 302, + 382, + 316 + ], + "spans": [ + { + "bbox": [ + 131, + 302, + 382, + 316 + ], + "score": 1.0, + "content": "• Smaller network sizes than comparable neural synthesizers.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "score": 1.0, + "content": "Audio samples for all examples and figures are provided in the online supplement2. We highly", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 336, + 388, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 388, + 351 + ], + "score": 1.0, + "content": "encourage readers to listen to the samples as part of reading the paper.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 366, + 211, + 379 + ], + "lines": [ + { + "bbox": [ + 104, + 365, + 213, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 365, + 213, + 382 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "Vocoders. Vocoders come in several varieties. Source-filter/subtractive models are inspired by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "the human vocal tract and dynamically filter a harmonically rich source signal (Flanagan, 2013),", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 413, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 505, + 427 + ], + "score": 1.0, + "content": "while sinusoidal/additive models generate sound as the combination of a set of time-varying sine", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "waves (McAulay & Quatieri, 1986; Serra & Smith, 1990). Additive models are strictly more expres-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "sive than subtractive models but have more parameters as each sinusoid has its own time-varying", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "loudness and frequency. This work builds a differentiable synthesizer off the Harmonic plus Noise", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "model (Serra & Smith, 1990; Beauchamp, 2007): an additive synthesizer combines sinusoids in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 504, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 504, + 481 + ], + "score": 1.0, + "content": "harmonic (integer) ratios of a fundamental frequency alongside a time-varying filtered noise signal.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "Synthesizers. A separate thread of research has tried to estimate parameters for commercial syn-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "thesizers using gradient-free methods (Huang et al., 2014; Hoffman & Cook, 2006). Synthesizer", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "outputs modeled with a variational autoencoder were recently used as a “world model” (Ha &", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 516, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 531 + ], + "score": 1.0, + "content": "Schmidhuber, 2018) to pass approximate gradients to a controller during learning (Esling et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "2019). DDSP differs from black-box approaches to modeling existing synthesizers; it is a toolkit of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 331, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 331, + 553 + ], + "score": 1.0, + "content": "differentiable DSP components for end-to-end learning.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "Neural Source Filter (NSF). Perhaps closest to this work, promising speech synthesis results were", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 504, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 504, + 579 + ], + "score": 1.0, + "content": "recently achieved using a differentiable waveshaping synthesizer (Wang et al., 2019). The NSF can", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "be seen as a specific DDSP model, that uses convolutional waveshaping of a sinusoidal oscillator", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "score": 1.0, + "content": "to create harmonic content, rather than additive synthesis explored in this work. Both works also", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "generate audio in the time domain and impose multi-scale spectrograms losses in the frequency", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "domain. A key contribution of this work is to highlight how these models are part of a common", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "score": 1.0, + "content": "family of techniques and to release a modular library that makes them accessible by leveraging", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 633, + 416, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 416, + 644 + ], + "score": 1.0, + "content": "automatic differentiation to easily mix and match components at a high level.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 108, + 660, + 235, + 674 + ], + "lines": [ + { + "bbox": [ + 104, + 659, + 236, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 236, + 676 + ], + "score": 1.0, + "content": "3 DDSP COMPONENTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 504, + 700 + ], + "score": 1.0, + "content": "Many DSP operations can be expressed as functions in modern automatic differentiation software.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "We express core components as feedforward functions, allowing efficient implementation on parallel", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 722, + 270, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 271, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 271, + 734 + ], + "score": 1.0, + "content": "2https://goo.gl/magenta/ddsp", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 120, + 204, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 205, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 205, + 132 + ], + "score": 1.0, + "content": "1.3 CONTRIBUTIONS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 153 + ], + "score": 1.0, + "content": "In this paper, we overcome the limitations outlined above by using the DDSP library to implement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "fully differentiable synthesizers and audio effects. DDSP models combine the strengths of the above", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "score": 1.0, + "content": "approaches, benefiting from the inductive bias of using oscillators, while retaining the expressive", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 173, + 309, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 309, + 187 + ], + "score": 1.0, + "content": "power of neural networks and end-to-end training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 141, + 505, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 190, + 503, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "score": 1.0, + "content": "We demonstrate that models employing DDSP components are capable of generating high-fidelity", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 201, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 504, + 213 + ], + "score": 1.0, + "content": "audio without autoregressive or adversarial losses. Further, we show the interpretability and modu-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 212, + 226, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 226, + 224 + ], + "score": 1.0, + "content": "larity of these models enable:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 189, + 505, + 224 + ] + }, + { + "type": "list", + "bbox": [ + 133, + 235, + 475, + 315 + ], + "lines": [ + { + "bbox": [ + 132, + 236, + 390, + 247 + ], + "spans": [ + { + "bbox": [ + 132, + 236, + 390, + 247 + ], + "score": 1.0, + "content": "• Independent control over pitch and loudness during synthesis.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 248, + 375, + 262 + ], + "spans": [ + { + "bbox": [ + 131, + 248, + 375, + 262 + ], + "score": 1.0, + "content": "• Realistic extrapolation to pitches not seen during training.", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 134, + 262, + 454, + 275 + ], + "spans": [ + { + "bbox": [ + 134, + 262, + 454, + 275 + ], + "score": 1.0, + "content": "• Blind dereverberation of audio through seperate modelling of room acoustics.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 134, + 276, + 378, + 288 + ], + "spans": [ + { + "bbox": [ + 134, + 279, + 139, + 285 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 140, + 276, + 378, + 288 + ], + "score": 1.0, + "content": "Transfer of extracted room acoustics to new environments.", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 289, + 476, + 303 + ], + "spans": [ + { + "bbox": [ + 131, + 289, + 476, + 303 + ], + "score": 1.0, + "content": "• Timbre transfer between disparate sources, converting a singing voice into a violin.", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 302, + 382, + 316 + ], + "spans": [ + { + "bbox": [ + 131, + 302, + 382, + 316 + ], + "score": 1.0, + "content": "• Smaller network sizes than comparable neural synthesizers.", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 12.5, + "bbox_fs": [ + 131, + 236, + 476, + 316 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "score": 1.0, + "content": "Audio samples for all examples and figures are provided in the online supplement2. We highly", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 336, + 388, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 388, + 351 + ], + "score": 1.0, + "content": "encourage readers to listen to the samples as part of reading the paper.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 325, + 506, + 351 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 366, + 211, + 379 + ], + "lines": [ + { + "bbox": [ + 104, + 365, + 213, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 365, + 213, + 382 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "Vocoders. Vocoders come in several varieties. Source-filter/subtractive models are inspired by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "the human vocal tract and dynamically filter a harmonically rich source signal (Flanagan, 2013),", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 413, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 505, + 427 + ], + "score": 1.0, + "content": "while sinusoidal/additive models generate sound as the combination of a set of time-varying sine", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "waves (McAulay & Quatieri, 1986; Serra & Smith, 1990). Additive models are strictly more expres-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "sive than subtractive models but have more parameters as each sinusoid has its own time-varying", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "loudness and frequency. This work builds a differentiable synthesizer off the Harmonic plus Noise", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "model (Serra & Smith, 1990; Beauchamp, 2007): an additive synthesizer combines sinusoids in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 504, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 504, + 481 + ], + "score": 1.0, + "content": "harmonic (integer) ratios of a fundamental frequency alongside a time-varying filtered noise signal.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 392, + 505, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "Synthesizers. A separate thread of research has tried to estimate parameters for commercial syn-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "thesizers using gradient-free methods (Huang et al., 2014; Hoffman & Cook, 2006). Synthesizer", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "outputs modeled with a variational autoencoder were recently used as a “world model” (Ha &", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 516, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 531 + ], + "score": 1.0, + "content": "Schmidhuber, 2018) to pass approximate gradients to a controller during learning (Esling et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "2019). DDSP differs from black-box approaches to modeling existing synthesizers; it is a toolkit of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 331, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 331, + 553 + ], + "score": 1.0, + "content": "differentiable DSP components for end-to-end learning.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 485, + 506, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "Neural Source Filter (NSF). Perhaps closest to this work, promising speech synthesis results were", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 504, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 504, + 579 + ], + "score": 1.0, + "content": "recently achieved using a differentiable waveshaping synthesizer (Wang et al., 2019). The NSF can", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "be seen as a specific DDSP model, that uses convolutional waveshaping of a sinusoidal oscillator", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 600 + ], + "score": 1.0, + "content": "to create harmonic content, rather than additive synthesis explored in this work. Both works also", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "generate audio in the time domain and impose multi-scale spectrograms losses in the frequency", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "domain. A key contribution of this work is to highlight how these models are part of a common", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "score": 1.0, + "content": "family of techniques and to release a modular library that makes them accessible by leveraging", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 633, + 416, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 416, + 644 + ], + "score": 1.0, + "content": "automatic differentiation to easily mix and match components at a high level.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 556, + 505, + 644 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 660, + 235, + 674 + ], + "lines": [ + { + "bbox": [ + 104, + 659, + 236, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 236, + 676 + ], + "score": 1.0, + "content": "3 DDSP COMPONENTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 504, + 700 + ], + "score": 1.0, + "content": "Many DSP operations can be expressed as functions in modern automatic differentiation software.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "We express core components as feedforward functions, allowing efficient implementation on parallel", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 687, + 505, + 711 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "hardware such as GPUs and TPUs, and generation of samples during training. These components", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 504, + 106 + ], + "score": 1.0, + "content": "include oscillators, envelopes, and filters (linear-time-varying finite-impulse-response, LTV-FIR). 3", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 118, + 278, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 279, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 279, + 131 + ], + "score": 1.0, + "content": "3.1 SPECTRAL MODELING SYNTHESIS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 138, + 505, + 215 + ], + "lines": [ + { + "bbox": [ + 104, + 137, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 137, + 505, + 153 + ], + "score": 1.0, + "content": "Here, as an example DDSP model, we implement a differentiable version of Spectral Modeling", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "Synthesis (SMS) Serra & Smith (1990). This model generates sound by combining an additive", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 161, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 504, + 172 + ], + "score": 1.0, + "content": "synthesizer (adding together many sinusoids) with a subtractive synthesizer (filtering white noise).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 171, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 184 + ], + "score": 1.0, + "content": "We choose SMS because, despite being parametric, it is a highly expressive model of sound, and has", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "score": 1.0, + "content": "found widespread adoption in tasks as diverse as spectral morphing, time stretching, pitch shifting,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "score": 1.0, + "content": "source separation, transcription, and even as a general purpose audio codec in MPEG-4 (Tellman", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 352, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 352, + 216 + ], + "score": 1.0, + "content": "et al., 1995; Klapuri et al., 2000; Purnhagen & Meine, 2000).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "As we only consider monophonic sources in these experiments, we use the Harmonic plus", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "Noise model, that further constrains sinusoids to be integer multiples of a fundamental fre-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "quency (Beauchamp, 2007). One of the reasons that SMS is more expressive than many other", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "parametric models because it has so many more parameters. For example, in the 4 seconds of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 107, + 264, + 135, + 275 + ], + "score": 0.42, + "content": "1 6 \\mathrm { k H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 264, + 457, + 276 + ], + "score": 1.0, + "content": "audio in the datasets considered here, the synthesizer coefficients actually have", + "type": "text" + }, + { + "bbox": [ + 457, + 264, + 479, + 275 + ], + "score": 0.85, + "content": "{ \\sim } 2 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "times", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 363, + 286 + ], + "score": 1.0, + "content": "more dimensions than the audio waveform itself ((1 amplitude", + "type": "text" + }, + { + "bbox": [ + 364, + 275, + 390, + 285 + ], + "score": 0.83, + "content": "+ ~ 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 275, + 436, + 286 + ], + "score": 1.0, + "content": "harmonics", + "type": "text" + }, + { + "bbox": [ + 436, + 275, + 457, + 285 + ], + "score": 0.84, + "content": "+ ~ 6 5", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 275, + 505, + 286 + ], + "score": 1.0, + "content": "noise band", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 158, + 298 + ], + "score": 1.0, + "content": "magnitudes)", + "type": "text" + }, + { + "bbox": [ + 158, + 286, + 187, + 296 + ], + "score": 0.79, + "content": "\\ast 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 285, + 228, + 298 + ], + "score": 1.0, + "content": "timesteps", + "type": "text" + }, + { + "bbox": [ + 228, + 286, + 271, + 296 + ], + "score": 0.8, + "content": "= 1 6 5 { , } 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "dimensions, vs. 64,000 audio samples). This makes them", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "amenable to control by a neural network, as it would be difficult to realistically specify all these", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 309, + 189, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 189, + 319 + ], + "score": 1.0, + "content": "parameters by hand.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 331, + 352, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 353, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 239, + 344 + ], + "score": 1.0, + "content": "3.2 HARMONIC OSCILLATOR", + "type": "text" + }, + { + "bbox": [ + 239, + 333, + 244, + 342 + ], + "score": 0.31, + "content": "/", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 331, + 353, + 344 + ], + "score": 1.0, + "content": "ADDITIVE SYNTHESIZER", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "At the heart of the synthesis techniques explored in this paper is the sinusoidal oscillator. A bank of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 363, + 447, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 232, + 376 + ], + "score": 1.0, + "content": "oscillators that outputs a signal", + "type": "text" + }, + { + "bbox": [ + 233, + 363, + 253, + 375 + ], + "score": 0.92, + "content": "x ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 363, + 353, + 376 + ], + "score": 1.0, + "content": "over discrete time steps,", + "type": "text" + }, + { + "bbox": [ + 353, + 366, + 360, + 373 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 363, + 447, + 376 + ], + "score": 1.0, + "content": ", can be expressed as:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 380, + 368, + 415 + ], + "lines": [ + { + "bbox": [ + 242, + 380, + 368, + 415 + ], + "spans": [ + { + "bbox": [ + 242, + 380, + 368, + 415 + ], + "score": 0.95, + "content": "x ( n ) = \\sum _ { k = 1 } ^ { K } A _ { k } ( n ) \\sin ( \\phi _ { k } ( n ) ) ,", + "type": "interline_equation", + "image_path": "8189f0a8c83496b77ed6f4363f98ed6c7f40bb280b987e643790218d286552d9.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 380, + 368, + 397.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 242, + 397.5, + 368, + 415.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 134, + 432 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 420, + 161, + 432 + ], + "score": 0.93, + "content": "A _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 419, + 313, + 432 + ], + "score": 1.0, + "content": "is the time-varying amplitude of the", + "type": "text" + }, + { + "bbox": [ + 313, + 420, + 320, + 430 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 419, + 441, + 432 + ], + "score": 1.0, + "content": "-th sinusoidal component and", + "type": "text" + }, + { + "bbox": [ + 441, + 420, + 467, + 432 + ], + "score": 0.93, + "content": "\\phi _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "is its in-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 429, + 501, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 227, + 444 + ], + "score": 1.0, + "content": "stantaneous phase. The phase", + "type": "text" + }, + { + "bbox": [ + 227, + 431, + 252, + 443 + ], + "score": 0.93, + "content": "\\phi _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 429, + 471, + 444 + ], + "score": 1.0, + "content": "is obtained by integrating the instantaneous frequency", + "type": "text" + }, + { + "bbox": [ + 471, + 431, + 496, + 443 + ], + "score": 0.92, + "content": "f _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 429, + 501, + 444 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 447, + 370, + 480 + ], + "lines": [ + { + "bbox": [ + 240, + 447, + 370, + 480 + ], + "spans": [ + { + "bbox": [ + 240, + 447, + 370, + 480 + ], + "score": 0.95, + "content": "\\phi _ { k } ( n ) = 2 \\pi \\sum _ { m = 0 } ^ { n } f _ { k } ( m ) + \\phi _ { 0 , k } ,", + "type": "interline_equation", + "image_path": "fa896847d87570431cc38b9224ca4abe27a8aff48a34596545edbbaff14b57f9.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 447, + 370, + 463.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 240, + 463.5, + 370, + 480.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 484, + 394, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 395, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 133, + 497 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 485, + 151, + 497 + ], + "score": 0.91, + "content": "\\phi _ { 0 , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 483, + 395, + 497 + ], + "score": 1.0, + "content": "is the initial phase that can be randomized, fixed, or learned.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 504, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 501, + 504, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 504, + 513 + ], + "score": 1.0, + "content": "For a harmonic oscillator, all the sinusoidal frequencies are harmonic (integer) multiples of a funda-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 180, + 524 + ], + "score": 1.0, + "content": "mental frequency,", + "type": "text" + }, + { + "bbox": [ + 180, + 511, + 204, + 524 + ], + "score": 0.92, + "content": "f _ { 0 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 511, + 225, + 524 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 225, + 511, + 291, + 524 + ], + "score": 0.93, + "content": "f _ { k } ( n ) = k f _ { 0 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 511, + 506, + 524 + ], + "score": 1.0, + "content": ", Thus the output of the harmonic oscillator is entirely", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 343, + 536 + ], + "score": 1.0, + "content": "parameterized by the time-varying fundamental frequency", + "type": "text" + }, + { + "bbox": [ + 344, + 523, + 367, + 535 + ], + "score": 0.93, + "content": "f _ { 0 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 523, + 474, + 536 + ], + "score": 1.0, + "content": "and harmonic amplitudes", + "type": "text" + }, + { + "bbox": [ + 474, + 523, + 501, + 535 + ], + "score": 0.92, + "content": "A _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 523, + 505, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 534, + 378, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 378, + 546 + ], + "score": 1.0, + "content": "To aid interpretablity we further factorize the harmonic amplitudes:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 550, + 350, + 563 + ], + "lines": [ + { + "bbox": [ + 261, + 550, + 350, + 563 + ], + "spans": [ + { + "bbox": [ + 261, + 550, + 350, + 563 + ], + "score": 0.93, + "content": "A _ { k } ( n ) = A ( n ) c _ { k } ( n ) .", + "type": "interline_equation", + "image_path": "3bc8490f22d6c211b143660796b5b285828ea45faf2047dba02b1d9417bbea5e.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 261, + 550, + 350, + 563 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 199, + 581 + ], + "score": 1.0, + "content": "into a global amplitude", + "type": "text" + }, + { + "bbox": [ + 199, + 568, + 221, + 580 + ], + "score": 0.92, + "content": "A ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "that controls the loudness and a normalized distribution over harmonics", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 579, + 507, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 581, + 126, + 593 + ], + "score": 0.91, + "content": "c ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 579, + 296, + 597 + ], + "score": 1.0, + "content": "that determines spectral variations, where", + "type": "text" + }, + { + "bbox": [ + 296, + 579, + 366, + 594 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { k = 0 } ^ { K } c _ { k } ( n ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 579, + 384, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 384, + 581, + 427, + 594 + ], + "score": 0.94, + "content": "c _ { k } ( n ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 579, + 507, + 597 + ], + "score": 1.0, + "content": ". We also constrain", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "both amplitudes and harmonic distribution components to be positive through the use of a modified", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "sigmoid nonlinearity as described in the appendix. Figure 6 provides a graphical example of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 613, + 373, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 373, + 627 + ], + "score": 1.0, + "content": "additive synthesizer. Audio is provided in our online supplement2.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 107, + 639, + 183, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 185, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 185, + 651 + ], + "score": 1.0, + "content": "3.3 ENVELOPES", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "The oscillator formulation above requires time-varying amplitudes and frequencies at the audio sam-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "ple rate, but our neural networks operate at a slower frame rate. For instantaneous frequency upsam-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "score": 1.0, + "content": "pling, we found bilinear interpolation to be adequate. However, the amplitudes and harmonic distri-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 506, + 704 + ], + "score": 1.0, + "content": "butions of the additive synthesizer required smoothing to prevent artifacts. We are able to achieve", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 712, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "3We have implemented further components such as wavetable synthesizers and non-sinusoidal oscillators,", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 424, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 424, + 732 + ], + "score": 1.0, + "content": "but focus here on components used in the experiments and leave the rest as future work.", + "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, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "hardware such as GPUs and TPUs, and generation of samples during training. These components", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 504, + 106 + ], + "score": 1.0, + "content": "include oscillators, envelopes, and filters (linear-time-varying finite-impulse-response, LTV-FIR). 3", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 118, + 278, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 279, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 279, + 131 + ], + "score": 1.0, + "content": "3.1 SPECTRAL MODELING SYNTHESIS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 138, + 505, + 215 + ], + "lines": [ + { + "bbox": [ + 104, + 137, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 137, + 505, + 153 + ], + "score": 1.0, + "content": "Here, as an example DDSP model, we implement a differentiable version of Spectral Modeling", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "Synthesis (SMS) Serra & Smith (1990). This model generates sound by combining an additive", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 161, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 504, + 172 + ], + "score": 1.0, + "content": "synthesizer (adding together many sinusoids) with a subtractive synthesizer (filtering white noise).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 171, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 184 + ], + "score": 1.0, + "content": "We choose SMS because, despite being parametric, it is a highly expressive model of sound, and has", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "score": 1.0, + "content": "found widespread adoption in tasks as diverse as spectral morphing, time stretching, pitch shifting,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "score": 1.0, + "content": "source separation, transcription, and even as a general purpose audio codec in MPEG-4 (Tellman", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 352, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 352, + 216 + ], + "score": 1.0, + "content": "et al., 1995; Klapuri et al., 2000; Purnhagen & Meine, 2000).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 137, + 505, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "As we only consider monophonic sources in these experiments, we use the Harmonic plus", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "Noise model, that further constrains sinusoids to be integer multiples of a fundamental fre-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "quency (Beauchamp, 2007). One of the reasons that SMS is more expressive than many other", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "parametric models because it has so many more parameters. For example, in the 4 seconds of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 107, + 264, + 135, + 275 + ], + "score": 0.42, + "content": "1 6 \\mathrm { k H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 264, + 457, + 276 + ], + "score": 1.0, + "content": "audio in the datasets considered here, the synthesizer coefficients actually have", + "type": "text" + }, + { + "bbox": [ + 457, + 264, + 479, + 275 + ], + "score": 0.85, + "content": "{ \\sim } 2 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "times", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 363, + 286 + ], + "score": 1.0, + "content": "more dimensions than the audio waveform itself ((1 amplitude", + "type": "text" + }, + { + "bbox": [ + 364, + 275, + 390, + 285 + ], + "score": 0.83, + "content": "+ ~ 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 275, + 436, + 286 + ], + "score": 1.0, + "content": "harmonics", + "type": "text" + }, + { + "bbox": [ + 436, + 275, + 457, + 285 + ], + "score": 0.84, + "content": "+ ~ 6 5", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 275, + 505, + 286 + ], + "score": 1.0, + "content": "noise band", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 158, + 298 + ], + "score": 1.0, + "content": "magnitudes)", + "type": "text" + }, + { + "bbox": [ + 158, + 286, + 187, + 296 + ], + "score": 0.79, + "content": "\\ast 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 285, + 228, + 298 + ], + "score": 1.0, + "content": "timesteps", + "type": "text" + }, + { + "bbox": [ + 228, + 286, + 271, + 296 + ], + "score": 0.8, + "content": "= 1 6 5 { , } 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "dimensions, vs. 64,000 audio samples). This makes them", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "amenable to control by a neural network, as it would be difficult to realistically specify all these", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 309, + 189, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 189, + 319 + ], + "score": 1.0, + "content": "parameters by hand.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 221, + 506, + 319 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 331, + 352, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 353, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 239, + 344 + ], + "score": 1.0, + "content": "3.2 HARMONIC OSCILLATOR", + "type": "text" + }, + { + "bbox": [ + 239, + 333, + 244, + 342 + ], + "score": 0.31, + "content": "/", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 331, + 353, + 344 + ], + "score": 1.0, + "content": "ADDITIVE SYNTHESIZER", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "At the heart of the synthesis techniques explored in this paper is the sinusoidal oscillator. A bank of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 363, + 447, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 232, + 376 + ], + "score": 1.0, + "content": "oscillators that outputs a signal", + "type": "text" + }, + { + "bbox": [ + 233, + 363, + 253, + 375 + ], + "score": 0.92, + "content": "x ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 363, + 353, + 376 + ], + "score": 1.0, + "content": "over discrete time steps,", + "type": "text" + }, + { + "bbox": [ + 353, + 366, + 360, + 373 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 363, + 447, + 376 + ], + "score": 1.0, + "content": ", can be expressed as:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 351, + 505, + 376 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 380, + 368, + 415 + ], + "lines": [ + { + "bbox": [ + 242, + 380, + 368, + 415 + ], + "spans": [ + { + "bbox": [ + 242, + 380, + 368, + 415 + ], + "score": 0.95, + "content": "x ( n ) = \\sum _ { k = 1 } ^ { K } A _ { k } ( n ) \\sin ( \\phi _ { k } ( n ) ) ,", + "type": "interline_equation", + "image_path": "8189f0a8c83496b77ed6f4363f98ed6c7f40bb280b987e643790218d286552d9.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 380, + 368, + 397.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 242, + 397.5, + 368, + 415.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 134, + 432 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 420, + 161, + 432 + ], + "score": 0.93, + "content": "A _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 419, + 313, + 432 + ], + "score": 1.0, + "content": "is the time-varying amplitude of the", + "type": "text" + }, + { + "bbox": [ + 313, + 420, + 320, + 430 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 419, + 441, + 432 + ], + "score": 1.0, + "content": "-th sinusoidal component and", + "type": "text" + }, + { + "bbox": [ + 441, + 420, + 467, + 432 + ], + "score": 0.93, + "content": "\\phi _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "is its in-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 429, + 501, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 227, + 444 + ], + "score": 1.0, + "content": "stantaneous phase. The phase", + "type": "text" + }, + { + "bbox": [ + 227, + 431, + 252, + 443 + ], + "score": 0.93, + "content": "\\phi _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 429, + 471, + 444 + ], + "score": 1.0, + "content": "is obtained by integrating the instantaneous frequency", + "type": "text" + }, + { + "bbox": [ + 471, + 431, + 496, + 443 + ], + "score": 0.92, + "content": "f _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 429, + 501, + 444 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 419, + 505, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 447, + 370, + 480 + ], + "lines": [ + { + "bbox": [ + 240, + 447, + 370, + 480 + ], + "spans": [ + { + "bbox": [ + 240, + 447, + 370, + 480 + ], + "score": 0.95, + "content": "\\phi _ { k } ( n ) = 2 \\pi \\sum _ { m = 0 } ^ { n } f _ { k } ( m ) + \\phi _ { 0 , k } ,", + "type": "interline_equation", + "image_path": "fa896847d87570431cc38b9224ca4abe27a8aff48a34596545edbbaff14b57f9.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 447, + 370, + 463.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 240, + 463.5, + 370, + 480.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 484, + 394, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 395, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 133, + 497 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 485, + 151, + 497 + ], + "score": 0.91, + "content": "\\phi _ { 0 , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 483, + 395, + 497 + ], + "score": 1.0, + "content": "is the initial phase that can be randomized, fixed, or learned.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 483, + 395, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 504, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 501, + 504, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 504, + 513 + ], + "score": 1.0, + "content": "For a harmonic oscillator, all the sinusoidal frequencies are harmonic (integer) multiples of a funda-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 180, + 524 + ], + "score": 1.0, + "content": "mental frequency,", + "type": "text" + }, + { + "bbox": [ + 180, + 511, + 204, + 524 + ], + "score": 0.92, + "content": "f _ { 0 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 511, + 225, + 524 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 225, + 511, + 291, + 524 + ], + "score": 0.93, + "content": "f _ { k } ( n ) = k f _ { 0 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 511, + 506, + 524 + ], + "score": 1.0, + "content": ", Thus the output of the harmonic oscillator is entirely", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 343, + 536 + ], + "score": 1.0, + "content": "parameterized by the time-varying fundamental frequency", + "type": "text" + }, + { + "bbox": [ + 344, + 523, + 367, + 535 + ], + "score": 0.93, + "content": "f _ { 0 } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 523, + 474, + 536 + ], + "score": 1.0, + "content": "and harmonic amplitudes", + "type": "text" + }, + { + "bbox": [ + 474, + 523, + 501, + 535 + ], + "score": 0.92, + "content": "A _ { k } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 523, + 505, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 534, + 378, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 378, + 546 + ], + "score": 1.0, + "content": "To aid interpretablity we further factorize the harmonic amplitudes:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 501, + 506, + 546 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 550, + 350, + 563 + ], + "lines": [ + { + "bbox": [ + 261, + 550, + 350, + 563 + ], + "spans": [ + { + "bbox": [ + 261, + 550, + 350, + 563 + ], + "score": 0.93, + "content": "A _ { k } ( n ) = A ( n ) c _ { k } ( n ) .", + "type": "interline_equation", + "image_path": "3bc8490f22d6c211b143660796b5b285828ea45faf2047dba02b1d9417bbea5e.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 261, + 550, + 350, + 563 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 199, + 581 + ], + "score": 1.0, + "content": "into a global amplitude", + "type": "text" + }, + { + "bbox": [ + 199, + 568, + 221, + 580 + ], + "score": 0.92, + "content": "A ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "that controls the loudness and a normalized distribution over harmonics", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 579, + 507, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 581, + 126, + 593 + ], + "score": 0.91, + "content": "c ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 579, + 296, + 597 + ], + "score": 1.0, + "content": "that determines spectral variations, where", + "type": "text" + }, + { + "bbox": [ + 296, + 579, + 366, + 594 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { k = 0 } ^ { K } c _ { k } ( n ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 579, + 384, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 384, + 581, + 427, + 594 + ], + "score": 0.94, + "content": "c _ { k } ( n ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 579, + 507, + 597 + ], + "score": 1.0, + "content": ". We also constrain", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "both amplitudes and harmonic distribution components to be positive through the use of a modified", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "sigmoid nonlinearity as described in the appendix. Figure 6 provides a graphical example of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 613, + 373, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 373, + 627 + ], + "score": 1.0, + "content": "additive synthesizer. Audio is provided in our online supplement2.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 567, + 507, + 627 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 639, + 183, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 185, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 185, + 651 + ], + "score": 1.0, + "content": "3.3 ENVELOPES", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "The oscillator formulation above requires time-varying amplitudes and frequencies at the audio sam-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "ple rate, but our neural networks operate at a slower frame rate. For instantaneous frequency upsam-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "score": 1.0, + "content": "pling, we found bilinear interpolation to be adequate. However, the amplitudes and harmonic distri-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 506, + 704 + ], + "score": 1.0, + "content": "butions of the additive synthesizer required smoothing to prevent artifacts. We are able to achieve", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "this with a smoothed amplitude envelope by adding overlapping Hamming windows at the center of", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "score": 1.0, + "content": "each frame and scaled by the amplitude. For these experiments we found a 4ms (64 timesteps) hop", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 480, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 141, + 117 + ], + "score": 1.0, + "content": "size and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 141, + 105, + 162, + 115 + ], + "score": 0.32, + "content": "8 \\mathrm { m s }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 162, + 104, + 210, + 117 + ], + "score": 1.0, + "content": "frame size (", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 210, + 104, + 230, + 115 + ], + "score": 0.83, + "content": "50 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 230, + 104, + 480, + 117 + ], + "score": 1.0, + "content": "overlap) to be responsive to changes while removing artifacts.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 658, + 506, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "this with a smoothed amplitude envelope by adding overlapping Hamming windows at the center of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "score": 1.0, + "content": "each frame and scaled by the amplitude. For these experiments we found a 4ms (64 timesteps) hop", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 480, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 141, + 117 + ], + "score": 1.0, + "content": "size and", + "type": "text" + }, + { + "bbox": [ + 141, + 105, + 162, + 115 + ], + "score": 0.32, + "content": "8 \\mathrm { m s }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 104, + 210, + 117 + ], + "score": 1.0, + "content": "frame size (", + "type": "text" + }, + { + "bbox": [ + 210, + 104, + 230, + 115 + ], + "score": 0.83, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 104, + 480, + 117 + ], + "score": 1.0, + "content": "overlap) to be responsive to changes while removing artifacts.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 136, + 347, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 348, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 348, + 149 + ], + "score": 1.0, + "content": "3.4 FILTER DESIGN: FREQUENCY SAMPLING METHOD", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "Linear filter design is a cornerstone of many DSP techniques. Standard convolutional layers are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "equivalent to linear time invariant finite impulse response (LTI-FIR) filters. However, to ensure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "interpretability and prevent phase distortion, we employ the frequency sampling method to convert", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 192, + 356, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 356, + 204 + ], + "score": 1.0, + "content": "network outputs into impulse responses of linear-phase filters.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "Here, we design a neural network to predict the frequency-domain transfer functions of a FIR filter", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 417, + 232 + ], + "score": 1.0, + "content": "for every output frame. In particular, the neural network outputs a vector", + "type": "text" + }, + { + "bbox": [ + 417, + 220, + 432, + 231 + ], + "score": 0.87, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "(and accordingly", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 175, + 242 + ], + "score": 0.91, + "content": "\\pmb { h } _ { l } = \\mathrm { I D P T } ( \\bar { \\pmb { H } } _ { l } ) ;", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 231, + 206, + 243 + ], + "score": 1.0, + "content": ") for the", + "type": "text" + }, + { + "bbox": [ + 207, + 231, + 211, + 240 + ], + "score": 0.5, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 231, + 356, + 243 + ], + "score": 1.0, + "content": "-th frame of the output. We interpret", + "type": "text" + }, + { + "bbox": [ + 357, + 231, + 370, + 241 + ], + "score": 0.88, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "as the frequency-domain transfer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 241, + 470, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 470, + 254 + ], + "score": 1.0, + "content": "function of the corresponding FIR filter. We therefore implement a time-varying FIR filter.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 504, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 493, + 272 + ], + "score": 1.0, + "content": "To apply the time-varying FIR filter to the input, we divide the audio into non-overlapping frames", + "type": "text" + }, + { + "bbox": [ + 493, + 261, + 504, + 269 + ], + "score": 0.81, + "content": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } \\mathbf { \\mathcal { l } } }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 235, + 282 + ], + "score": 1.0, + "content": "to match the impulse responses", + "type": "text" + }, + { + "bbox": [ + 235, + 269, + 246, + 280 + ], + "score": 0.86, + "content": "h _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 269, + 505, + 282 + ], + "score": 1.0, + "content": ". We then perform frame-wise convolution via multiplication of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 229, + 293 + ], + "score": 1.0, + "content": "frames in the Fourier domain:", + "type": "text" + }, + { + "bbox": [ + 229, + 280, + 279, + 291 + ], + "score": 0.92, + "content": "Y _ { l } = H _ { l } X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 279, + 307, + 293 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 308, + 280, + 370, + 291 + ], + "score": 0.92, + "content": "\\pmb { X } _ { l } = \\mathbf { D } \\mathrm { F T } ( \\pmb { x } _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 279, + 389, + 293 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 389, + 280, + 449, + 291 + ], + "score": 0.93, + "content": "Y _ { l } = \\mathrm { D F T } ( { \\pmb y } _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "is the output.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 272, + 304 + ], + "score": 1.0, + "content": "We recover the frame-wise filtered audio,", + "type": "text" + }, + { + "bbox": [ + 272, + 291, + 335, + 303 + ], + "score": 0.92, + "content": "{ \\pmb y } _ { l } = \\mathrm { I D F T } ( { \\pmb Y } _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 290, + 505, + 304 + ], + "score": 1.0, + "content": ", and then overlap-add the resulting frames", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 315 + ], + "score": 1.0, + "content": "with the same hop size and rectangular window used to originally divide the input audio. The hop", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "size is given by dividing the audio into equally spaced frames for each frame of conditioning. For", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 386, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 386, + 336 + ], + "score": 1.0, + "content": "64000 samples and 250 frames, this corresponds to a hop size of 256.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 368, + 352 + ], + "score": 1.0, + "content": "In practice, we do not use the neural network output directly as", + "type": "text" + }, + { + "bbox": [ + 369, + 340, + 382, + 351 + ], + "score": 0.88, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 341, + 505, + 352 + ], + "score": 1.0, + "content": ". Instead, we apply a window", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 142, + 363 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 351, + 155, + 361 + ], + "score": 0.46, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 351, + 291, + 363 + ], + "score": 1.0, + "content": "on the network output to compute", + "type": "text" + }, + { + "bbox": [ + 291, + 351, + 305, + 362 + ], + "score": 0.87, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 351, + 505, + 363 + ], + "score": 1.0, + "content": ". The shape and size of the window can be decided", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "independently to control the time-frequency resolution trade-off of the filter. In our experiments, we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "score": 1.0, + "content": "default to a Hann window of size 257. Without a window, the resolution implicitly defaults to a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "rectangular window which is not ideal for many cases. We take care to shift the IR to zero-phase", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 500, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 500, + 407 + ], + "score": 1.0, + "content": "(symmetric) form before applying the window and revert to causal form before applying the filter.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 107, + 426, + 335, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 336, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 336, + 439 + ], + "score": 1.0, + "content": "3.5 FILTERED NOISE / SUBTRACTIVE SYNTHESIZER", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 461 + ], + "score": 1.0, + "content": "Natural sounds contain both harmonic and stochastic components. The Harmonic plus Noise model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "captures this by combining the output of an additive synthesizer with a stream of filtered noise (Serra", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "& Smith, 1990; Beauchamp, 2007). We are able to realize a differentiable filtered noise synthesizer", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 426, + 495 + ], + "score": 1.0, + "content": "by simply applying the LTV-FIR filter from above to a stream of uniform noise", + "type": "text" + }, + { + "bbox": [ + 427, + 482, + 477, + 493 + ], + "score": 0.92, + "content": "Y _ { l } = H _ { l } N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 493, + 307, + 506 + ], + "spans": [ + { + "bbox": [ + 107, + 493, + 120, + 504 + ], + "score": 0.86, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 493, + 307, + 506 + ], + "score": 1.0, + "content": "is the DFT of uniform noise in domain [-1, 1].", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 108, + 525, + 290, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 291, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 291, + 537 + ], + "score": 1.0, + "content": "3.6 REVERB: LONG IMPULSE RESPONSES", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 504, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 504, + 561 + ], + "score": 1.0, + "content": "Room reverbation (reverb) is an essential characteristic of realistic audio, which is usually implicitly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "modeled by neural synthesis algorithms. In contrast, we gain interpretability by explicitly factoriz-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "ing the room acoustics into a post-synthesis convolution step. A realistic room impulse response", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "(IR) can be as long as several seconds, corresponding to extremely long convolutional kernel sizes", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 109, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 109, + 592, + 153, + 603 + ], + "score": 0.64, + "content": "( \\sim 1 0 - 1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 592, + 392, + 604 + ], + "score": 1.0, + "content": "timesteps). Convolution via matrix multiplication scales as", + "type": "text" + }, + { + "bbox": [ + 393, + 591, + 420, + 604 + ], + "score": 0.92, + "content": "\\mathsf { \\bar { O } } ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 592, + 505, + 604 + ], + "score": 1.0, + "content": ", which is intractable", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "score": 1.0, + "content": "for such large kernel sizes. Instead, we implement reverb by explicitly performing convolution as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 328, + 627 + ], + "score": 1.0, + "content": "multiplication in the frequency domain, which scales as", + "type": "text" + }, + { + "bbox": [ + 328, + 613, + 373, + 626 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n \\overset { \\cdot } { \\log { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "and does not bottleneck training.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 108, + 648, + 200, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 201, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 201, + 663 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "For empirical verification of this approach, we test two DDSP autoencoder variants–supervised and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "unsupervised–on two different musical datasets: NSynth (Engel et al., 2017) and a collection of solo", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "score": 1.0, + "content": "violin performances. The supervised DDSP autoencoder is conditioned on fundamental frequency", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(F0) and loudness features extracted from audio, while the unsupervised DDSP autoencoder learns", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 263, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 263, + 733 + ], + "score": 1.0, + "content": "F0 jointly with the rest of the network.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 115 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 136, + 347, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 348, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 348, + 149 + ], + "score": 1.0, + "content": "3.4 FILTER DESIGN: FREQUENCY SAMPLING METHOD", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 135, + 348, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "Linear filter design is a cornerstone of many DSP techniques. Standard convolutional layers are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "equivalent to linear time invariant finite impulse response (LTI-FIR) filters. However, to ensure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "interpretability and prevent phase distortion, we employ the frequency sampling method to convert", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 192, + 356, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 356, + 204 + ], + "score": 1.0, + "content": "network outputs into impulse responses of linear-phase filters.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 159, + 506, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "Here, we design a neural network to predict the frequency-domain transfer functions of a FIR filter", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 417, + 232 + ], + "score": 1.0, + "content": "for every output frame. In particular, the neural network outputs a vector", + "type": "text" + }, + { + "bbox": [ + 417, + 220, + 432, + 231 + ], + "score": 0.87, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "(and accordingly", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 175, + 242 + ], + "score": 0.91, + "content": "\\pmb { h } _ { l } = \\mathrm { I D P T } ( \\bar { \\pmb { H } } _ { l } ) ;", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 231, + 206, + 243 + ], + "score": 1.0, + "content": ") for the", + "type": "text" + }, + { + "bbox": [ + 207, + 231, + 211, + 240 + ], + "score": 0.5, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 231, + 356, + 243 + ], + "score": 1.0, + "content": "-th frame of the output. We interpret", + "type": "text" + }, + { + "bbox": [ + 357, + 231, + 370, + 241 + ], + "score": 0.88, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "as the frequency-domain transfer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 241, + 470, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 470, + 254 + ], + "score": 1.0, + "content": "function of the corresponding FIR filter. We therefore implement a time-varying FIR filter.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 208, + 506, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 504, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 493, + 272 + ], + "score": 1.0, + "content": "To apply the time-varying FIR filter to the input, we divide the audio into non-overlapping frames", + "type": "text" + }, + { + "bbox": [ + 493, + 261, + 504, + 269 + ], + "score": 0.81, + "content": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } \\mathbf { \\mathcal { l } } }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 235, + 282 + ], + "score": 1.0, + "content": "to match the impulse responses", + "type": "text" + }, + { + "bbox": [ + 235, + 269, + 246, + 280 + ], + "score": 0.86, + "content": "h _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 269, + 505, + 282 + ], + "score": 1.0, + "content": ". We then perform frame-wise convolution via multiplication of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 229, + 293 + ], + "score": 1.0, + "content": "frames in the Fourier domain:", + "type": "text" + }, + { + "bbox": [ + 229, + 280, + 279, + 291 + ], + "score": 0.92, + "content": "Y _ { l } = H _ { l } X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 279, + 307, + 293 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 308, + 280, + 370, + 291 + ], + "score": 0.92, + "content": "\\pmb { X } _ { l } = \\mathbf { D } \\mathrm { F T } ( \\pmb { x } _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 279, + 389, + 293 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 389, + 280, + 449, + 291 + ], + "score": 0.93, + "content": "Y _ { l } = \\mathrm { D F T } ( { \\pmb y } _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "is the output.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 272, + 304 + ], + "score": 1.0, + "content": "We recover the frame-wise filtered audio,", + "type": "text" + }, + { + "bbox": [ + 272, + 291, + 335, + 303 + ], + "score": 0.92, + "content": "{ \\pmb y } _ { l } = \\mathrm { I D F T } ( { \\pmb Y } _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 290, + 505, + 304 + ], + "score": 1.0, + "content": ", and then overlap-add the resulting frames", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 315 + ], + "score": 1.0, + "content": "with the same hop size and rectangular window used to originally divide the input audio. The hop", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "size is given by dividing the audio into equally spaced frames for each frame of conditioning. For", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 386, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 386, + 336 + ], + "score": 1.0, + "content": "64000 samples and 250 frames, this corresponds to a hop size of 256.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 257, + 506, + 336 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 368, + 352 + ], + "score": 1.0, + "content": "In practice, we do not use the neural network output directly as", + "type": "text" + }, + { + "bbox": [ + 369, + 340, + 382, + 351 + ], + "score": 0.88, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 341, + 505, + 352 + ], + "score": 1.0, + "content": ". Instead, we apply a window", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 142, + 363 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 351, + 155, + 361 + ], + "score": 0.46, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 351, + 291, + 363 + ], + "score": 1.0, + "content": "on the network output to compute", + "type": "text" + }, + { + "bbox": [ + 291, + 351, + 305, + 362 + ], + "score": 0.87, + "content": "\\pmb { H } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 351, + 505, + 363 + ], + "score": 1.0, + "content": ". The shape and size of the window can be decided", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "independently to control the time-frequency resolution trade-off of the filter. In our experiments, we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 385 + ], + "score": 1.0, + "content": "default to a Hann window of size 257. Without a window, the resolution implicitly defaults to a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "rectangular window which is not ideal for many cases. We take care to shift the IR to zero-phase", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 500, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 500, + 407 + ], + "score": 1.0, + "content": "(symmetric) form before applying the window and revert to causal form before applying the filter.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 340, + 506, + 407 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 426, + 335, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 336, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 336, + 439 + ], + "score": 1.0, + "content": "3.5 FILTERED NOISE / SUBTRACTIVE SYNTHESIZER", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 461 + ], + "score": 1.0, + "content": "Natural sounds contain both harmonic and stochastic components. The Harmonic plus Noise model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "captures this by combining the output of an additive synthesizer with a stream of filtered noise (Serra", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "& Smith, 1990; Beauchamp, 2007). We are able to realize a differentiable filtered noise synthesizer", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 426, + 495 + ], + "score": 1.0, + "content": "by simply applying the LTV-FIR filter from above to a stream of uniform noise", + "type": "text" + }, + { + "bbox": [ + 427, + 482, + 477, + 493 + ], + "score": 0.92, + "content": "Y _ { l } = H _ { l } N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 493, + 307, + 506 + ], + "spans": [ + { + "bbox": [ + 107, + 493, + 120, + 504 + ], + "score": 0.86, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 493, + 307, + 506 + ], + "score": 1.0, + "content": "is the DFT of uniform noise in domain [-1, 1].", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 450, + 505, + 506 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 525, + 290, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 291, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 291, + 537 + ], + "score": 1.0, + "content": "3.6 REVERB: LONG IMPULSE RESPONSES", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 504, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 504, + 561 + ], + "score": 1.0, + "content": "Room reverbation (reverb) is an essential characteristic of realistic audio, which is usually implicitly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "modeled by neural synthesis algorithms. In contrast, we gain interpretability by explicitly factoriz-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "ing the room acoustics into a post-synthesis convolution step. A realistic room impulse response", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "(IR) can be as long as several seconds, corresponding to extremely long convolutional kernel sizes", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 109, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 109, + 592, + 153, + 603 + ], + "score": 0.64, + "content": "( \\sim 1 0 - 1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 592, + 392, + 604 + ], + "score": 1.0, + "content": "timesteps). Convolution via matrix multiplication scales as", + "type": "text" + }, + { + "bbox": [ + 393, + 591, + 420, + 604 + ], + "score": 0.92, + "content": "\\mathsf { \\bar { O } } ( n ^ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 592, + 505, + 604 + ], + "score": 1.0, + "content": ", which is intractable", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "score": 1.0, + "content": "for such large kernel sizes. Instead, we implement reverb by explicitly performing convolution as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 328, + 627 + ], + "score": 1.0, + "content": "multiplication in the frequency domain, which scales as", + "type": "text" + }, + { + "bbox": [ + 328, + 613, + 373, + 626 + ], + "score": 0.93, + "content": "\\mathcal { O } ( n \\overset { \\cdot } { \\log { n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "and does not bottleneck training.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 549, + 506, + 627 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 648, + 200, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 201, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 201, + 663 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "For empirical verification of this approach, we test two DDSP autoencoder variants–supervised and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "unsupervised–on two different musical datasets: NSynth (Engel et al., 2017) and a collection of solo", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "score": 1.0, + "content": "violin performances. The supervised DDSP autoencoder is conditioned on fundamental frequency", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(F0) and loudness features extracted from audio, while the unsupervised DDSP autoencoder learns", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 263, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 263, + 733 + ], + "score": 1.0, + "content": "F0 jointly with the rest of the network.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 677, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 82, + 502, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 82, + 502, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 82, + 502, + 227 + ], + "spans": [ + { + "bbox": [ + 108, + 82, + 502, + 227 + ], + "score": 0.973, + "type": "image", + "image_path": "b3faeae273ee3875acc36bee50e5284123271a04e2aaa285692bb408b6dac899.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 82, + 502, + 130.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 130.33333333333334, + 502, + 178.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 178.66666666666669, + 502, + 227.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 238, + 505, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "Figure 2: Autoencoder architecture. Red components are part of the neural network architecture,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "green components are the latent representation, and yellow components are deterministic synthesiz-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "score": 1.0, + "content": "ers and effects. Components with dashed borders are not used in all of our experiments. Namely,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 114, + 281 + ], + "score": 0.71, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "is not used in the model trained on solo violin, and reverb is not used in the models trained on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 281, + 464, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 464, + 295 + ], + "score": 1.0, + "content": "NSynth. See the appendix for more detailed diagrams of the neural network components.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 227, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 229, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 229, + 340 + ], + "score": 1.0, + "content": "4.1 DDSP AUTOENCODER", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "DDSP components do not put constraints on the choice of generative model (GAN, VAE, Flow, etc.),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "but we focus here on a deterministic autoencoder to investigate the strength of DDSP components", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "independent of any particular approach to adversarial training, variational inference, or Jacobian", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 386, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 400 + ], + "score": 1.0, + "content": "design. Just as autoencoders utilizing convolutional layers outperform fully-connected autoencoders", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "on images, we find DDSP components are able to dramatically improve autoencoder performance", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "in the audio domain. Introducing stochastic latents (such as in GAN, VAE, and Flow models) will", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "likely further improve performance, but we leave that to future work as it is orthogonal to the core", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 431, + 412, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 412, + 443 + ], + "score": 1.0, + "content": "question of DDSP component performance that we investigate in this paper.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 300, + 460 + ], + "score": 1.0, + "content": "In a standard autoencoder, an encoder network", + "type": "text" + }, + { + "bbox": [ + 300, + 447, + 327, + 459 + ], + "score": 0.91, + "content": "f _ { \\mathrm { e n c } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 446, + 392, + 460 + ], + "score": 1.0, + "content": "maps the input", + "type": "text" + }, + { + "bbox": [ + 392, + 450, + 400, + 457 + ], + "score": 0.73, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "to a latent representation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 158, + 470 + ], + "score": 0.93, + "content": "z = f _ { \\mathrm { e n c } } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 458, + 254, + 471 + ], + "score": 1.0, + "content": "and a decoder network", + "type": "text" + }, + { + "bbox": [ + 255, + 458, + 281, + 470 + ], + "score": 0.92, + "content": "f _ { \\mathrm { d e c } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 458, + 450, + 471 + ], + "score": 1.0, + "content": "attempts to directly reconstruct the input", + "type": "text" + }, + { + "bbox": [ + 450, + 458, + 501, + 470 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { \\hat { \\pmb x } } = f _ { \\mathrm { d e c } } ( \\pmb z ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 458, + 505, + 471 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "Our architecture (Figure 2) contrasts with this approach through the use of DDSP components and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 480, + 252, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 252, + 492 + ], + "score": 1.0, + "content": "a decomposed latent representation.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Encoders: Detailed descriptions of the encoders are given in Section B.1. For the supervised au-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 205, + 519 + ], + "score": 1.0, + "content": "toencoder, the loudness", + "type": "text" + }, + { + "bbox": [ + 205, + 507, + 220, + 519 + ], + "score": 0.84, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "is extracted directly from the audio, a pretrained CREPE model with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 288, + 530 + ], + "score": 1.0, + "content": "fixed weights (Kim et al., 2018) is used as an", + "type": "text" + }, + { + "bbox": [ + 288, + 518, + 306, + 530 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 519, + 505, + 530 + ], + "score": 1.0, + "content": "encoder to extact the fundamental frequency, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 337, + 541 + ], + "score": 1.0, + "content": "optional encoder extracts a time-varying latent encoding", + "type": "text" + }, + { + "bbox": [ + 338, + 529, + 356, + 541 + ], + "score": 0.92, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "of the residual information. For the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 125, + 552 + ], + "score": 0.9, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "encoder, MFCC coefficients (30 per a frame) are first extracted from the audio, which corre-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "spond to the smoothed spectral envelope of harmonics (Beauchamp, 2007), and transformed by a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 561, + 322, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 322, + 575 + ], + "score": 1.0, + "content": "single GRU layer into 16 latent variables per a frame.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 108, + 578, + 502, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 504, + 591 + ], + "score": 1.0, + "content": "For the unsupervised autoencoder, the pretrained CREPE model is replaced with a Resnet architec-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 590, + 504, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 240, + 602 + ], + "score": 1.0, + "content": "ture (He et al., 2016) that extracts", + "type": "text" + }, + { + "bbox": [ + 241, + 590, + 259, + 601 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 590, + 504, + 602 + ], + "score": 1.0, + "content": "from a mel-scaled log spectrogram of the audio, and is jointly", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 600, + 251, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 251, + 611 + ], + "score": 1.0, + "content": "trained with the rest of the network.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 629 + ], + "score": 1.0, + "content": "Decoder: A detailed description of the decoder network is given in Section B.2. The decoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 207, + 640 + ], + "score": 1.0, + "content": "network maps the tuple", + "type": "text" + }, + { + "bbox": [ + 207, + 628, + 273, + 640 + ], + "score": 0.92, + "content": "( f ( \\bar { t } ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "to control parameters for the additive and filtered noise", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "synthesizers described in Section 3. The synthesizers generate audio based on these parameters, and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 650, + 504, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 504, + 661 + ], + "score": 1.0, + "content": "a reconstruction loss between the synthesized and original audio is minimized. The network archi-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "tecture is chosen to be fairly generic (fully connected, with a single recurrent layer) to demonstrate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "that it is the DDSP components, and not other modeling decisions, that enables the quality of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 682, + 133, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 133, + 694 + ], + "score": 1.0, + "content": "work.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 273, + 711 + ], + "score": 1.0, + "content": "Also unique to our approach, the latent", + "type": "text" + }, + { + "bbox": [ + 274, + 699, + 292, + 711 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "is fed directly to the additive synthesizer as it has", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "structural meaning for the synthesizer outside the context of any given dataset. As shown later in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Section 5.2, this disentangled representation enables the model to both interpolate within and ex-", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "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 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": [ + 108, + 82, + 502, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 82, + 502, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 82, + 502, + 227 + ], + "spans": [ + { + "bbox": [ + 108, + 82, + 502, + 227 + ], + "score": 0.973, + "type": "image", + "image_path": "b3faeae273ee3875acc36bee50e5284123271a04e2aaa285692bb408b6dac899.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 82, + 502, + 130.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 130.33333333333334, + 502, + 178.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 178.66666666666669, + 502, + 227.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 238, + 505, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "Figure 2: Autoencoder architecture. Red components are part of the neural network architecture,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "green components are the latent representation, and yellow components are deterministic synthesiz-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "score": 1.0, + "content": "ers and effects. Components with dashed borders are not used in all of our experiments. Namely,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 114, + 281 + ], + "score": 0.71, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "is not used in the model trained on solo violin, and reverb is not used in the models trained on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 281, + 464, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 464, + 295 + ], + "score": 1.0, + "content": "NSynth. See the appendix for more detailed diagrams of the neural network components.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 227, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 229, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 229, + 340 + ], + "score": 1.0, + "content": "4.1 DDSP AUTOENCODER", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "DDSP components do not put constraints on the choice of generative model (GAN, VAE, Flow, etc.),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "but we focus here on a deterministic autoencoder to investigate the strength of DDSP components", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "independent of any particular approach to adversarial training, variational inference, or Jacobian", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 386, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 400 + ], + "score": 1.0, + "content": "design. Just as autoencoders utilizing convolutional layers outperform fully-connected autoencoders", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "on images, we find DDSP components are able to dramatically improve autoencoder performance", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "in the audio domain. Introducing stochastic latents (such as in GAN, VAE, and Flow models) will", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "likely further improve performance, but we leave that to future work as it is orthogonal to the core", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 431, + 412, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 412, + 443 + ], + "score": 1.0, + "content": "question of DDSP component performance that we investigate in this paper.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 353, + 506, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 300, + 460 + ], + "score": 1.0, + "content": "In a standard autoencoder, an encoder network", + "type": "text" + }, + { + "bbox": [ + 300, + 447, + 327, + 459 + ], + "score": 0.91, + "content": "f _ { \\mathrm { e n c } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 446, + 392, + 460 + ], + "score": 1.0, + "content": "maps the input", + "type": "text" + }, + { + "bbox": [ + 392, + 450, + 400, + 457 + ], + "score": 0.73, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "to a latent representation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 158, + 470 + ], + "score": 0.93, + "content": "z = f _ { \\mathrm { e n c } } ( \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 458, + 254, + 471 + ], + "score": 1.0, + "content": "and a decoder network", + "type": "text" + }, + { + "bbox": [ + 255, + 458, + 281, + 470 + ], + "score": 0.92, + "content": "f _ { \\mathrm { d e c } } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 458, + 450, + 471 + ], + "score": 1.0, + "content": "attempts to directly reconstruct the input", + "type": "text" + }, + { + "bbox": [ + 450, + 458, + 501, + 470 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { \\hat { \\pmb x } } = f _ { \\mathrm { d e c } } ( \\pmb z ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 458, + 505, + 471 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "Our architecture (Figure 2) contrasts with this approach through the use of DDSP components and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 480, + 252, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 252, + 492 + ], + "score": 1.0, + "content": "a decomposed latent representation.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 446, + 506, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Encoders: Detailed descriptions of the encoders are given in Section B.1. For the supervised au-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 205, + 519 + ], + "score": 1.0, + "content": "toencoder, the loudness", + "type": "text" + }, + { + "bbox": [ + 205, + 507, + 220, + 519 + ], + "score": 0.84, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "is extracted directly from the audio, a pretrained CREPE model with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 288, + 530 + ], + "score": 1.0, + "content": "fixed weights (Kim et al., 2018) is used as an", + "type": "text" + }, + { + "bbox": [ + 288, + 518, + 306, + 530 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 519, + 505, + 530 + ], + "score": 1.0, + "content": "encoder to extact the fundamental frequency, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 337, + 541 + ], + "score": 1.0, + "content": "optional encoder extracts a time-varying latent encoding", + "type": "text" + }, + { + "bbox": [ + 338, + 529, + 356, + 541 + ], + "score": 0.92, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "of the residual information. For the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 125, + 552 + ], + "score": 0.9, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "encoder, MFCC coefficients (30 per a frame) are first extracted from the audio, which corre-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "spond to the smoothed spectral envelope of harmonics (Beauchamp, 2007), and transformed by a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 561, + 322, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 322, + 575 + ], + "score": 1.0, + "content": "single GRU layer into 16 latent variables per a frame.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 496, + 506, + 575 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 578, + 502, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 504, + 591 + ], + "score": 1.0, + "content": "For the unsupervised autoencoder, the pretrained CREPE model is replaced with a Resnet architec-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 590, + 504, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 240, + 602 + ], + "score": 1.0, + "content": "ture (He et al., 2016) that extracts", + "type": "text" + }, + { + "bbox": [ + 241, + 590, + 259, + 601 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 590, + 504, + 602 + ], + "score": 1.0, + "content": "from a mel-scaled log spectrogram of the audio, and is jointly", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 600, + 251, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 251, + 611 + ], + "score": 1.0, + "content": "trained with the rest of the network.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 578, + 504, + 611 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 629 + ], + "score": 1.0, + "content": "Decoder: A detailed description of the decoder network is given in Section B.2. The decoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 207, + 640 + ], + "score": 1.0, + "content": "network maps the tuple", + "type": "text" + }, + { + "bbox": [ + 207, + 628, + 273, + 640 + ], + "score": 0.92, + "content": "( f ( \\bar { t } ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "to control parameters for the additive and filtered noise", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "synthesizers described in Section 3. The synthesizers generate audio based on these parameters, and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 650, + 504, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 504, + 661 + ], + "score": 1.0, + "content": "a reconstruction loss between the synthesized and original audio is minimized. The network archi-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "tecture is chosen to be fairly generic (fully connected, with a single recurrent layer) to demonstrate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "that it is the DDSP components, and not other modeling decisions, that enables the quality of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 682, + 133, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 133, + 694 + ], + "score": 1.0, + "content": "work.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 617, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 273, + 711 + ], + "score": 1.0, + "content": "Also unique to our approach, the latent", + "type": "text" + }, + { + "bbox": [ + 274, + 699, + 292, + 711 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "is fed directly to the additive synthesizer as it has", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "structural meaning for the synthesizer outside the context of any given dataset. As shown later in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Section 5.2, this disentangled representation enables the model to both interpolate within and ex-", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 140, + 79, + 470, + 149 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 140, + 79, + 470, + 149 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 79, + 470, + 149 + ], + "spans": [ + { + "bbox": [ + 140, + 79, + 470, + 149 + ], + "score": 0.979, + "html": "
Loudness (L1)F0 (L1)F0 Outliers
Supervised WaveRNN (Hantrakul et al., 2019)0.101.000.07
DDSP Autoencoder Unsupervised0.070.020.003
DDSP Autoencoder0.090.800.04
", + "type": "table", + "image_path": "bd88ff9e47ccff3eb0e42328cb0a8c160fa622e73f91acb33d768d9b8538c122.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 140, + 79, + 470, + 102.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 140, + 102.33333333333333, + 470, + 125.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 140, + 125.66666666666666, + 470, + 149.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 161, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "Table 1: Resynthesis accuracies. Comparison of DDSP models to SOTA WaveRNN model provided", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "the same conditioning information. The supervised DDSP Autoencoder and WaveRNN models", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "score": 1.0, + "content": "use the fundamental frequency from a pretrained CREPE model, while the unsupervised DDSP", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 193, + 398, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 398, + 208 + ], + "score": 1.0, + "content": "autoencoder learns to infer the frequency from the audio during training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 228, + 503, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "trapolate outside the data distribution. Indeed, recent work support incorporation of strong inductive", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 239, + 462, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 462, + 252 + ], + "score": 1.0, + "content": "biases as a prerequisite for learning disentangled representations (Locatello et al., 2018).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 255, + 504, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 504, + 269 + ], + "score": 1.0, + "content": "Model Size: Table B.6, compares parameter counts for the DDSP models and comparable mod-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "els including GANSynth (Engel et al., 2019), WaveRNN (Hantrakul et al., 2019), and a WaveNet", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "Autoencoder (Engel et al., 2017). The DDSP models have the fewest parameters (up to 10 times", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "less), despite no effort to minimize the model size in these experiments. Initial experiments with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 255, + 312 + ], + "score": 1.0, + "content": "very small models (240k parameters,", + "type": "text" + }, + { + "bbox": [ + 256, + 300, + 277, + 311 + ], + "score": 0.66, + "content": "3 0 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "smaller than a WaveNet Autoencoder) have less realistic", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 309, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 325 + ], + "score": 1.0, + "content": "outputs than the full models, but still have fairly high quality and are promising for low-latency", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "score": 1.0, + "content": "applications, even on CPU or embedded devices. Audio samples are available in the online supple-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 332, + 135, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 135, + 343 + ], + "score": 1.0, + "content": "ment2.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 360, + 176, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 177, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 177, + 373 + ], + "score": 1.0, + "content": "4.2 DATASETS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "NSynth: We focus on a smaller subset of the NSynth dataset (Engel et al., 2017) consistent with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 391, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 406 + ], + "score": 1.0, + "content": "other work (Engel et al., 2019; Hantrakul et al., 2019). It totals 70,379 examples comprised mostly", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "of strings, brass, woodwinds and mallets with pitch labels within MIDI pitch range 24-84. We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "score": 1.0, + "content": "employ a 80/20 train/test split shuffling across instrument families. For the NSynth experiments,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 322, + 439 + ], + "score": 1.0, + "content": "we use the autoencoder as described above (with the", + "type": "text" + }, + { + "bbox": [ + 322, + 425, + 341, + 437 + ], + "score": 0.91, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 425, + 506, + 439 + ], + "score": 1.0, + "content": "encoder). We experiment with both the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 437, + 260, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 260, + 449 + ], + "score": 1.0, + "content": "supervised and unsupervised variants.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "score": 1.0, + "content": "Solo Violin: The NSynth dataset does not capture aspects of a real musical performance. Using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 464, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 504, + 476 + ], + "score": 1.0, + "content": "the MusOpen royalty free music library, we collected 13 minutes of expressive, solo violin perfor-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "mances4. We purposefully selected pieces from a single performer (John Garner), that were mono-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "phonic and shared a consistent room environment to encourage the model to focus on performance.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Like NSynth, audio is converted to mono 16kHz and divided into 4 second training examples (64000", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 429, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 429, + 519 + ], + "score": 1.0, + "content": "samples total). Code to process the audio files into a dataset is available online.5", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 485, + 537 + ], + "score": 1.0, + "content": "For the solo violin experiments, we use the supervised variant of the autoencoder (without the", + "type": "text" + }, + { + "bbox": [ + 485, + 524, + 504, + 536 + ], + "score": 0.89, + "content": "z ( t )", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "encoder), and add a reverb module to the signal processor chain to account for room reverberation.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 559 + ], + "score": 1.0, + "content": "While the room impulse response could be produced as an output of the decoder, given that the solo", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "violin dataset has a single acoustic environment, we use a single fixed variable (4 second reverb", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 567, + 357, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 357, + 580 + ], + "score": 1.0, + "content": "corresponding to 64000 dimensions) for the impulse response.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 594, + 271, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 593, + 272, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 272, + 606 + ], + "score": 1.0, + "content": "4.2.1 MULTI-SCALE SPECTRAL LOSS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 108, + 614, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "The primary objective of the autoencoder is to minimize reconstruction loss. However, for audio", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 624, + 504, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 504, + 636 + ], + "score": 1.0, + "content": "waveforms, point-wise loss on the raw waveform is not ideal, as two perceptually identical audio", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "samples may have distinct waveforms, and point-wise similar waveforms may sound very different.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 652, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 666 + ], + "score": 1.0, + "content": "Instead, we use a multi-scale spectral loss–similar to the multi-resolution spectral amplitude distance", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 663, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 505, + 676 + ], + "score": 1.0, + "content": "in Wang et al. (2019)–defined as follows. Given the original and synthesized audio, we compute their", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 674, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 209, + 688 + ], + "score": 1.0, + "content": "(magnitude) spectrogram", + "type": "text" + }, + { + "bbox": [ + 209, + 676, + 220, + 687 + ], + "score": 0.86, + "content": "S _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 675, + 238, + 688 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 674, + 249, + 687 + ], + "score": 0.89, + "content": "\\hat { S } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 675, + 394, + 688 + ], + "score": 1.0, + "content": ", respectively, with a given FFT size", + "type": "text" + }, + { + "bbox": [ + 394, + 677, + 399, + 686 + ], + "score": 0.48, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 675, + 505, + 688 + ], + "score": 1.0, + "content": ", and define the loss as the", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 700, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "4Five pieces by John Garner (II. Double, III. Corrente, IV. Double Presto, VI. Double, VIII. Double) from", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 710, + 439, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 439, + 722 + ], + "score": 1.0, + "content": "https://musopen.org/music/13574-violin-partita-no-1-bwv-1002/", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 720, + 292, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 292, + 734 + ], + "score": 1.0, + "content": "5https://github.com/magenta/ddsp", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 140, + 79, + 470, + 149 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 140, + 79, + 470, + 149 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 79, + 470, + 149 + ], + "spans": [ + { + "bbox": [ + 140, + 79, + 470, + 149 + ], + "score": 0.979, + "html": "
Loudness (L1)F0 (L1)F0 Outliers
Supervised WaveRNN (Hantrakul et al., 2019)0.101.000.07
DDSP Autoencoder Unsupervised0.070.020.003
DDSP Autoencoder0.090.800.04
", + "type": "table", + "image_path": "bd88ff9e47ccff3eb0e42328cb0a8c160fa622e73f91acb33d768d9b8538c122.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 140, + 79, + 470, + 102.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 140, + 102.33333333333333, + 470, + 125.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 140, + 125.66666666666666, + 470, + 149.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 161, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "Table 1: Resynthesis accuracies. Comparison of DDSP models to SOTA WaveRNN model provided", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "the same conditioning information. The supervised DDSP Autoencoder and WaveRNN models", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "score": 1.0, + "content": "use the fundamental frequency from a pretrained CREPE model, while the unsupervised DDSP", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 193, + 398, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 398, + 208 + ], + "score": 1.0, + "content": "autoencoder learns to infer the frequency from the audio during training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 162, + 505, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 228, + 503, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "trapolate outside the data distribution. Indeed, recent work support incorporation of strong inductive", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 239, + 462, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 462, + 252 + ], + "score": 1.0, + "content": "biases as a prerequisite for learning disentangled representations (Locatello et al., 2018).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 228, + 505, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 255, + 504, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 504, + 269 + ], + "score": 1.0, + "content": "Model Size: Table B.6, compares parameter counts for the DDSP models and comparable mod-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "els including GANSynth (Engel et al., 2019), WaveRNN (Hantrakul et al., 2019), and a WaveNet", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "Autoencoder (Engel et al., 2017). The DDSP models have the fewest parameters (up to 10 times", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "less), despite no effort to minimize the model size in these experiments. Initial experiments with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 255, + 312 + ], + "score": 1.0, + "content": "very small models (240k parameters,", + "type": "text" + }, + { + "bbox": [ + 256, + 300, + 277, + 311 + ], + "score": 0.66, + "content": "3 0 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "smaller than a WaveNet Autoencoder) have less realistic", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 309, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 325 + ], + "score": 1.0, + "content": "outputs than the full models, but still have fairly high quality and are promising for low-latency", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "score": 1.0, + "content": "applications, even on CPU or embedded devices. Audio samples are available in the online supple-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 332, + 135, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 135, + 343 + ], + "score": 1.0, + "content": "ment2.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 255, + 505, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 360, + 176, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 177, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 177, + 373 + ], + "score": 1.0, + "content": "4.2 DATASETS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "NSynth: We focus on a smaller subset of the NSynth dataset (Engel et al., 2017) consistent with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 391, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 406 + ], + "score": 1.0, + "content": "other work (Engel et al., 2019; Hantrakul et al., 2019). It totals 70,379 examples comprised mostly", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "of strings, brass, woodwinds and mallets with pitch labels within MIDI pitch range 24-84. We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "score": 1.0, + "content": "employ a 80/20 train/test split shuffling across instrument families. For the NSynth experiments,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 322, + 439 + ], + "score": 1.0, + "content": "we use the autoencoder as described above (with the", + "type": "text" + }, + { + "bbox": [ + 322, + 425, + 341, + 437 + ], + "score": 0.91, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 425, + 506, + 439 + ], + "score": 1.0, + "content": "encoder). We experiment with both the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 437, + 260, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 260, + 449 + ], + "score": 1.0, + "content": "supervised and unsupervised variants.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 381, + 506, + 449 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "score": 1.0, + "content": "Solo Violin: The NSynth dataset does not capture aspects of a real musical performance. Using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 464, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 504, + 476 + ], + "score": 1.0, + "content": "the MusOpen royalty free music library, we collected 13 minutes of expressive, solo violin perfor-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "mances4. We purposefully selected pieces from a single performer (John Garner), that were mono-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "phonic and shared a consistent room environment to encourage the model to focus on performance.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Like NSynth, audio is converted to mono 16kHz and divided into 4 second training examples (64000", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 429, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 429, + 519 + ], + "score": 1.0, + "content": "samples total). Code to process the audio files into a dataset is available online.5", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 451, + 506, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 485, + 537 + ], + "score": 1.0, + "content": "For the solo violin experiments, we use the supervised variant of the autoencoder (without the", + "type": "text" + }, + { + "bbox": [ + 485, + 524, + 504, + 536 + ], + "score": 0.89, + "content": "z ( t )", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "encoder), and add a reverb module to the signal processor chain to account for room reverberation.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 559 + ], + "score": 1.0, + "content": "While the room impulse response could be produced as an output of the decoder, given that the solo", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "violin dataset has a single acoustic environment, we use a single fixed variable (4 second reverb", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 567, + 357, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 357, + 580 + ], + "score": 1.0, + "content": "corresponding to 64000 dimensions) for the impulse response.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 522, + 506, + 580 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 594, + 271, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 593, + 272, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 272, + 606 + ], + "score": 1.0, + "content": "4.2.1 MULTI-SCALE SPECTRAL LOSS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 108, + 614, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "The primary objective of the autoencoder is to minimize reconstruction loss. However, for audio", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 624, + 504, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 504, + 636 + ], + "score": 1.0, + "content": "waveforms, point-wise loss on the raw waveform is not ideal, as two perceptually identical audio", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "samples may have distinct waveforms, and point-wise similar waveforms may sound very different.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 614, + 505, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 652, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 666 + ], + "score": 1.0, + "content": "Instead, we use a multi-scale spectral loss–similar to the multi-resolution spectral amplitude distance", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 663, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 505, + 676 + ], + "score": 1.0, + "content": "in Wang et al. (2019)–defined as follows. Given the original and synthesized audio, we compute their", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 674, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 209, + 688 + ], + "score": 1.0, + "content": "(magnitude) spectrogram", + "type": "text" + }, + { + "bbox": [ + 209, + 676, + 220, + 687 + ], + "score": 0.86, + "content": "S _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 675, + 238, + 688 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 674, + 249, + 687 + ], + "score": 0.89, + "content": "\\hat { S } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 675, + 394, + 688 + ], + "score": 1.0, + "content": ", respectively, with a given FFT size", + "type": "text" + }, + { + "bbox": [ + 394, + 677, + 399, + 686 + ], + "score": 0.48, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 675, + 505, + 688 + ], + "score": 1.0, + "content": ", and define the loss as the", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 651, + 505, + 688 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 82, + 503, + 145 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 82, + 503, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 82, + 503, + 145 + ], + "spans": [ + { + "bbox": [ + 109, + 82, + 503, + 145 + ], + "score": 0.937, + "type": "image", + "image_path": "f2f0d286056bf63409e00e2505c28e1a83f0f8f4bf3231325c3cd798a3824c35.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 82, + 503, + 103.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 103.0, + 503, + 124.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 124.0, + 503, + 145.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 159, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "Figure 3: Separate interpolations over loudness, pitch, and timbre. The conditioning features (solid", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 171, + 504, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 181 + ], + "score": 1.0, + "content": "lines) are extracted from two notes and linearly mixed (dark to light coloring). The features of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 180, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 180, + 506, + 196 + ], + "score": 1.0, + "content": "resynthsized audio (dashed lines) closely follow the conditioning. On the right, the latent vectors,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 124, + 205 + ], + "score": 0.92, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 192, + 505, + 206 + ], + "score": 1.0, + "content": ", are interpolated, and the spectral centroid of resulting audio (thin solid lines) smoothly varies", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 203, + 297, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 297, + 217 + ], + "score": 1.0, + "content": "between the original samples (dark solid lines).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 105, + 232, + 502, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 503, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 243, + 247 + ], + "score": 1.0, + "content": "sum of the L1 difference between", + "type": "text" + }, + { + "bbox": [ + 243, + 234, + 253, + 245 + ], + "score": 0.88, + "content": "S _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 231, + 271, + 247 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 232, + 282, + 245 + ], + "score": 0.9, + "content": "\\hat { S } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 231, + 431, + 247 + ], + "score": 1.0, + "content": "as well as the L1 difference between", + "type": "text" + }, + { + "bbox": [ + 432, + 234, + 456, + 245 + ], + "score": 0.87, + "content": "\\log { S _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 231, + 474, + 247 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 475, + 232, + 500, + 245 + ], + "score": 0.9, + "content": "\\log { \\hat { S } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 231, + 503, + 247 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 248, + 391, + 263 + ], + "lines": [ + { + "bbox": [ + 219, + 248, + 391, + 263 + ], + "spans": [ + { + "bbox": [ + 219, + 248, + 391, + 263 + ], + "score": 0.91, + "content": "L _ { i } = | | S _ { i } - \\hat { S _ { i } } | | _ { 1 } + \\alpha | | \\log S _ { i } - \\log \\hat { S } _ { i } | | _ { 1 } .", + "type": "interline_equation", + "image_path": "fc2a75c6922a8612960c274a7c544c93dd9219f3d957c450a976e733f97cde88.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 219, + 248, + 391, + 263 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 133, + 278 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 269, + 141, + 276 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "is a weighting term set to 1.0 in our experiments. The total reconstruction loss is then the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 227, + 291 + ], + "score": 1.0, + "content": "sum of all the spectral losses,", + "type": "text" + }, + { + "bbox": [ + 227, + 277, + 315, + 290 + ], + "score": 0.91, + "content": "\\begin{array} { r } { L _ { \\mathrm { r e c o n s t r u c t i o n } } = \\sum _ { i } { L _ { i } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 276, + 506, + 291 + ], + "score": 1.0, + "content": ". In our experiments, we used FFT sizes (2048,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "1024, 512, 256, 128, 64), and the neighboring frames in the Short-Time Fourier Transform (STFT)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 151, + 312 + ], + "score": 1.0, + "content": "overlap by", + "type": "text" + }, + { + "bbox": [ + 151, + 299, + 171, + 309 + ], + "score": 0.87, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 298, + 235, + 312 + ], + "score": 1.0, + "content": ". Therefore, the", + "type": "text" + }, + { + "bbox": [ + 235, + 299, + 246, + 310 + ], + "score": 0.9, + "content": "L _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "’s cover differences between the original and synthesized audios", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 309, + 268, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 268, + 323 + ], + "score": 1.0, + "content": "at different spatial-temporal resolutions.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 336, + 172, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 174, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 174, + 352 + ], + "score": 1.0, + "content": "5 RESULTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 361, + 249, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 250, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 250, + 373 + ], + "score": 1.0, + "content": "5.1 HIGH-FIDELITY SYNTHESIS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "As shown in Figure 5, the DDSP autoencoder learns to very accurately resynthesize the solo violin", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 393, + 504, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 504, + 405 + ], + "score": 1.0, + "content": "dataset. Again, we highly encourage readers to listen to the samples provided in the online supple-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "score": 1.0, + "content": "ment2. A full decomposition of the components is provided Figure 5. High-quality neural audio", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "synthesis has previously required very large autoregressive models (Oord et al., 2016; Kalchbrenner", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "et al., 2018) or adversarial loss functions (Engel et al., 2019). While amenable to an adversarial loss,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "the DDSP autoencoder achieves these results with a straightforward L1 spectrogram loss, a small", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 447, + 504, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 504, + 459 + ], + "score": 1.0, + "content": "amount of data, and a relatively simple model. This demonstrates that the model is able to efficiently", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 458, + 501, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 501, + 470 + ], + "score": 1.0, + "content": "exploit the bias of the DSP components, while not losing the expressive power of neural networks.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "For the NSynth dataset, we quantitatively compare the quality of DDSP resynthesis with that of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "score": 1.0, + "content": "a state-of-the-art baseline using WaveRNN (Hantrakul et al., 2019). The models are comparable", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "as they are trained on the same data, provided the same conditioning, and both targeted towards", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "realtime synthesis applications. In Table 1, we compute loudness and fundamental frequency (F0)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 107, + 518, + 119, + 529 + ], + "score": 0.87, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "metrics described in Section C of the appendix. Despite the strong performance of the baseline,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 379, + 541 + ], + "score": 1.0, + "content": "the supervised DDSP autoencoder still outperforms it, especially in", + "type": "text" + }, + { + "bbox": [ + 379, + 529, + 405, + 540 + ], + "score": 0.81, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 529, + 505, + 541 + ], + "score": 1.0, + "content": ". This is not unexpected,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 539, + 457, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 457, + 553 + ], + "score": 1.0, + "content": "as the additive synthesizer directly uses the conditioning frequency to synthesize audio.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "score": 1.0, + "content": "The unsupervised DDSP autoencoder must learn to infer its own F0 conditioning signal directly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "from the audio. As described in Section B.4, we improve optimization by also adding a perceptual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "loss in the form of a pretrained CREPE network (Kim et al., 2018). While not as accurate as the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "supervised DDSP version, the model does a fair job at learning to generate sounds with the correct", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 600, + 434, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 434, + 612 + ], + "score": 1.0, + "content": "frequencies without supervision, outperforming the supervised WaveRNN model.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 624, + 351, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 352, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 352, + 636 + ], + "score": 1.0, + "content": "5.2 INDEPENDENT CONTROL OF LOUDNESS AND PITCH", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Interpolation: Interpretable structure allows for independent control over generative factors. Each", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 286, + 668 + ], + "score": 1.0, + "content": "component of the factorized latent variables", + "type": "text" + }, + { + "bbox": [ + 287, + 655, + 353, + 668 + ], + "score": 0.92, + "content": "( f ( t ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "independently alters samples along a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "matching perceptual axis. For example, Figure 3 shows an interpolation between two sound in the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 198, + 690 + ], + "score": 1.0, + "content": "loudness conditioning", + "type": "text" + }, + { + "bbox": [ + 198, + 677, + 214, + 689 + ], + "score": 0.88, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 677, + 505, + 690 + ], + "score": 1.0, + "content": ". With other variables held constant, loudness of the synthesized audio", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "closely matches the interpolated input. Similarly, the model reliably matches intermediate pitches", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 202, + 712 + ], + "score": 1.0, + "content": "between a high pitched", + "type": "text" + }, + { + "bbox": [ + 203, + 699, + 221, + 711 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 698, + 289, + 712 + ], + "score": 1.0, + "content": "and low pitched", + "type": "text" + }, + { + "bbox": [ + 289, + 699, + 307, + 711 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ". In Table C.2 of the appendix, we quantitatively", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "demonstrate how across interpolations, conditioning independently controls the corresponding char-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 201, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 201, + 732 + ], + "score": 1.0, + "content": "acteristics of the audio.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 82, + 503, + 145 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 82, + 503, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 82, + 503, + 145 + ], + "spans": [ + { + "bbox": [ + 109, + 82, + 503, + 145 + ], + "score": 0.937, + "type": "image", + "image_path": "f2f0d286056bf63409e00e2505c28e1a83f0f8f4bf3231325c3cd798a3824c35.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 82, + 503, + 103.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 103.0, + 503, + 124.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 124.0, + 503, + 145.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 159, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "Figure 3: Separate interpolations over loudness, pitch, and timbre. The conditioning features (solid", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 171, + 504, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 181 + ], + "score": 1.0, + "content": "lines) are extracted from two notes and linearly mixed (dark to light coloring). The features of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 180, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 180, + 506, + 196 + ], + "score": 1.0, + "content": "resynthsized audio (dashed lines) closely follow the conditioning. On the right, the latent vectors,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 124, + 205 + ], + "score": 0.92, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 192, + 505, + 206 + ], + "score": 1.0, + "content": ", are interpolated, and the spectral centroid of resulting audio (thin solid lines) smoothly varies", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 203, + 297, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 297, + 217 + ], + "score": 1.0, + "content": "between the original samples (dark solid lines).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 105, + 232, + 502, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 503, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 243, + 247 + ], + "score": 1.0, + "content": "sum of the L1 difference between", + "type": "text" + }, + { + "bbox": [ + 243, + 234, + 253, + 245 + ], + "score": 0.88, + "content": "S _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 231, + 271, + 247 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 232, + 282, + 245 + ], + "score": 0.9, + "content": "\\hat { S } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 231, + 431, + 247 + ], + "score": 1.0, + "content": "as well as the L1 difference between", + "type": "text" + }, + { + "bbox": [ + 432, + 234, + 456, + 245 + ], + "score": 0.87, + "content": "\\log { S _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 231, + 474, + 247 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 475, + 232, + 500, + 245 + ], + "score": 0.9, + "content": "\\log { \\hat { S } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 231, + 503, + 247 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 231, + 503, + 247 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 248, + 391, + 263 + ], + "lines": [ + { + "bbox": [ + 219, + 248, + 391, + 263 + ], + "spans": [ + { + "bbox": [ + 219, + 248, + 391, + 263 + ], + "score": 0.91, + "content": "L _ { i } = | | S _ { i } - \\hat { S _ { i } } | | _ { 1 } + \\alpha | | \\log S _ { i } - \\log \\hat { S } _ { i } | | _ { 1 } .", + "type": "interline_equation", + "image_path": "fc2a75c6922a8612960c274a7c544c93dd9219f3d957c450a976e733f97cde88.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 219, + 248, + 391, + 263 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 133, + 278 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 269, + 141, + 276 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "is a weighting term set to 1.0 in our experiments. The total reconstruction loss is then the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 227, + 291 + ], + "score": 1.0, + "content": "sum of all the spectral losses,", + "type": "text" + }, + { + "bbox": [ + 227, + 277, + 315, + 290 + ], + "score": 0.91, + "content": "\\begin{array} { r } { L _ { \\mathrm { r e c o n s t r u c t i o n } } = \\sum _ { i } { L _ { i } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 276, + 506, + 291 + ], + "score": 1.0, + "content": ". In our experiments, we used FFT sizes (2048,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "1024, 512, 256, 128, 64), and the neighboring frames in the Short-Time Fourier Transform (STFT)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 151, + 312 + ], + "score": 1.0, + "content": "overlap by", + "type": "text" + }, + { + "bbox": [ + 151, + 299, + 171, + 309 + ], + "score": 0.87, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 298, + 235, + 312 + ], + "score": 1.0, + "content": ". Therefore, the", + "type": "text" + }, + { + "bbox": [ + 235, + 299, + 246, + 310 + ], + "score": 0.9, + "content": "L _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "’s cover differences between the original and synthesized audios", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 309, + 268, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 268, + 323 + ], + "score": 1.0, + "content": "at different spatial-temporal resolutions.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 266, + 506, + 323 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 336, + 172, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 174, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 174, + 352 + ], + "score": 1.0, + "content": "5 RESULTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 361, + 249, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 250, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 250, + 373 + ], + "score": 1.0, + "content": "5.1 HIGH-FIDELITY SYNTHESIS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "As shown in Figure 5, the DDSP autoencoder learns to very accurately resynthesize the solo violin", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 393, + 504, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 504, + 405 + ], + "score": 1.0, + "content": "dataset. Again, we highly encourage readers to listen to the samples provided in the online supple-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "score": 1.0, + "content": "ment2. A full decomposition of the components is provided Figure 5. High-quality neural audio", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "synthesis has previously required very large autoregressive models (Oord et al., 2016; Kalchbrenner", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "et al., 2018) or adversarial loss functions (Engel et al., 2019). While amenable to an adversarial loss,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "the DDSP autoencoder achieves these results with a straightforward L1 spectrogram loss, a small", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 447, + 504, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 504, + 459 + ], + "score": 1.0, + "content": "amount of data, and a relatively simple model. This demonstrates that the model is able to efficiently", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 458, + 501, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 501, + 470 + ], + "score": 1.0, + "content": "exploit the bias of the DSP components, while not losing the expressive power of neural networks.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 381, + 506, + 470 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "For the NSynth dataset, we quantitatively compare the quality of DDSP resynthesis with that of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "score": 1.0, + "content": "a state-of-the-art baseline using WaveRNN (Hantrakul et al., 2019). The models are comparable", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "as they are trained on the same data, provided the same conditioning, and both targeted towards", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "realtime synthesis applications. In Table 1, we compute loudness and fundamental frequency (F0)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 107, + 518, + 119, + 529 + ], + "score": 0.87, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "metrics described in Section C of the appendix. Despite the strong performance of the baseline,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 379, + 541 + ], + "score": 1.0, + "content": "the supervised DDSP autoencoder still outperforms it, especially in", + "type": "text" + }, + { + "bbox": [ + 379, + 529, + 405, + 540 + ], + "score": 0.81, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 529, + 505, + 541 + ], + "score": 1.0, + "content": ". This is not unexpected,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 539, + 457, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 457, + 553 + ], + "score": 1.0, + "content": "as the additive synthesizer directly uses the conditioning frequency to synthesize audio.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 473, + 506, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "score": 1.0, + "content": "The unsupervised DDSP autoencoder must learn to infer its own F0 conditioning signal directly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "from the audio. As described in Section B.4, we improve optimization by also adding a perceptual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "loss in the form of a pretrained CREPE network (Kim et al., 2018). While not as accurate as the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "supervised DDSP version, the model does a fair job at learning to generate sounds with the correct", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 600, + 434, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 434, + 612 + ], + "score": 1.0, + "content": "frequencies without supervision, outperforming the supervised WaveRNN model.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 556, + 506, + 612 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 624, + 351, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 352, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 352, + 636 + ], + "score": 1.0, + "content": "5.2 INDEPENDENT CONTROL OF LOUDNESS AND PITCH", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Interpolation: Interpretable structure allows for independent control over generative factors. Each", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 286, + 668 + ], + "score": 1.0, + "content": "component of the factorized latent variables", + "type": "text" + }, + { + "bbox": [ + 287, + 655, + 353, + 668 + ], + "score": 0.92, + "content": "( f ( t ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "independently alters samples along a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "matching perceptual axis. For example, Figure 3 shows an interpolation between two sound in the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 198, + 690 + ], + "score": 1.0, + "content": "loudness conditioning", + "type": "text" + }, + { + "bbox": [ + 198, + 677, + 214, + 689 + ], + "score": 0.88, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 677, + 505, + 690 + ], + "score": 1.0, + "content": ". With other variables held constant, loudness of the synthesized audio", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "closely matches the interpolated input. Similarly, the model reliably matches intermediate pitches", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 202, + 712 + ], + "score": 1.0, + "content": "between a high pitched", + "type": "text" + }, + { + "bbox": [ + 203, + 699, + 221, + 711 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 698, + 289, + 712 + ], + "score": 1.0, + "content": "and low pitched", + "type": "text" + }, + { + "bbox": [ + 289, + 699, + 307, + 711 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ". In Table C.2 of the appendix, we quantitatively", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "demonstrate how across interpolations, conditioning independently controls the corresponding char-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 201, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 201, + 732 + ], + "score": 1.0, + "content": "acteristics of the audio.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 644, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 502, + 211 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 502, + 211 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 502, + 211 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 502, + 211 + ], + "score": 0.972, + "type": "image", + "image_path": "414209bf77fffcbe6e4b5785b534f765efaa40fc9593c11d89c199f57b09dd0d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 502, + 123.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 123.66666666666666, + 502, + 167.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 167.33333333333331, + 502, + 210.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 224, + 503, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "Figure 4: Timbre transfer from singing voice to violin. F0 and loudness features are extracted from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 235, + 414, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 414, + 246 + ], + "score": 1.0, + "content": "the voice and resynthesized with a DDSP autoencoder trained on solo violin.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 301, + 280 + ], + "score": 1.0, + "content": "With loudness and pitch explicitly controlled by", + "type": "text" + }, + { + "bbox": [ + 301, + 267, + 345, + 279 + ], + "score": 0.92, + "content": "( f ( t ) , l ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 266, + 485, + 280 + ], + "score": 1.0, + "content": ", the model should use the residual", + "type": "text" + }, + { + "bbox": [ + 485, + 267, + 504, + 279 + ], + "score": 0.9, + "content": "z ( t )", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "to encode timbre. Although architecture and training do not strictly enforce this encoding, we qual-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 247, + 302 + ], + "score": 1.0, + "content": "itatively demonstrate how varying", + "type": "text" + }, + { + "bbox": [ + 247, + 290, + 255, + 299 + ], + "score": 0.73, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "leads to a smooth change in timbre. In Figure 3, we use the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 299, + 482, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 482, + 312 + ], + "score": 1.0, + "content": "smooth shift in spectral centroid, or “center of mass” of a spectrum, to illustrate this behavior.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 296, + 329 + ], + "score": 1.0, + "content": "Extrapolation: As described in Section 4.1,", + "type": "text" + }, + { + "bbox": [ + 297, + 316, + 315, + 329 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "directly controls the additive synthesizer and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 325, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 325, + 506, + 342 + ], + "score": 1.0, + "content": "has structural meaning outside the context of any given dataset. Beyond interpolating between", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "datapoints, the model can extrapolate to new conditions not seen during training. The rightmost", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 460, + 361 + ], + "score": 1.0, + "content": "plot of Figure 7 demonstrates this by resynthesizing a clip of solo violin after shifting", + "type": "text" + }, + { + "bbox": [ + 460, + 349, + 479, + 361 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "down", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "an octave and outside the range of the training data. The audio remains coherent and resembles a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 248, + 383 + ], + "score": 1.0, + "content": "related instrument such as a cello.", + "type": "text" + }, + { + "bbox": [ + 248, + 371, + 267, + 383 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "is only modified for the synthesizer, as the decoder is still", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "score": 1.0, + "content": "bounded by the nearby distribution of the training data and produces unrealistic harmonic content if", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 392, + 269, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 269, + 406 + ], + "score": 1.0, + "content": "conditioned far outside that distribution.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 417, + 334, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 335, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 335, + 430 + ], + "score": 1.0, + "content": "5.3 DEREVERBERATION AND ACOUSTIC TRANSFER", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Removing reverb in a “blind” setting, where only reverberated audio is available, is a standing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 449, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 461 + ], + "score": 1.0, + "content": "problem in acoustics (Naylor & Gaubitch, 2010). However, a benefit of our modular approach to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "generative modeling is that it becomes possible to completely separate the source audio from the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "score": 1.0, + "content": "effect of the room. For the solo violin dataset, the DDSP autoencoder is trained with an additional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "reverb module as shown in Figure 2 and described in Section 3.6. Figure 7 (left) demonstrates that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "bypassing the reverb module during resynthesis results in completely dereverberated audio, similar", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 501, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 104, + 501, + 506, + 517 + ], + "score": 1.0, + "content": "to recording in an anechoic chamber. The quality of the approach is limited by the underlying", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 513, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 506, + 527 + ], + "score": 1.0, + "content": "generative model, which is quite high for our autoencoder. Similarly, Figure 7 (center) demonstrates", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "that we can also apply the learned reverb model to new audio, in this case singing, and effectively", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 535, + 359, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 359, + 549 + ], + "score": 1.0, + "content": "transfer the acoustic environment of the solo violin recordings.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 560, + 214, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 216, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 216, + 572 + ], + "score": 1.0, + "content": "5.4 TIMBRE TRANSFER", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 504, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "Figure 4 demonstrates timbre transfer, converting the singing voice of an author into a violin. F0 and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "loudness features are extracted from the singing voice and the DDSP autoencoder trained on solo", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "violin used for resynthesis. To better match the conditioning features, we first shift the fundamental", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 614, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 626 + ], + "score": 1.0, + "content": "frequency of the singing up by two octaves to fit a violin’s typical register. Next, we transfer the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "room acoustics of the violin recording (as described in Section 5.3) to the voice before extracting", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "loudness, to better match the loudness contours of the violin recordings. The resulting audio captures", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "many subtleties of the singing with the timbre and room acoustics of the violin dataset. Note the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 656, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 671 + ], + "score": 1.0, + "content": "interesting “breathing” artifacts in the silence corresponding to unvoiced syllables from the singing.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 195, + 697 + ], + "lines": [ + { + "bbox": [ + 104, + 682, + 197, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 682, + 197, + 700 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "The DDSP library fuses classical DSP with deep learning, providing the ability to take advantage", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "of strong inductive biases without losing the expressive power of neural networks and end-to-end", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 80, + 502, + 211 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 80, + 502, + 211 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 502, + 211 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 502, + 211 + ], + "score": 0.972, + "type": "image", + "image_path": "414209bf77fffcbe6e4b5785b534f765efaa40fc9593c11d89c199f57b09dd0d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 502, + 123.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 123.66666666666666, + 502, + 167.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 167.33333333333331, + 502, + 210.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 224, + 503, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "Figure 4: Timbre transfer from singing voice to violin. F0 and loudness features are extracted from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 235, + 414, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 414, + 246 + ], + "score": 1.0, + "content": "the voice and resynthesized with a DDSP autoencoder trained on solo violin.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 301, + 280 + ], + "score": 1.0, + "content": "With loudness and pitch explicitly controlled by", + "type": "text" + }, + { + "bbox": [ + 301, + 267, + 345, + 279 + ], + "score": 0.92, + "content": "( f ( t ) , l ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 266, + 485, + 280 + ], + "score": 1.0, + "content": ", the model should use the residual", + "type": "text" + }, + { + "bbox": [ + 485, + 267, + 504, + 279 + ], + "score": 0.9, + "content": "z ( t )", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "to encode timbre. Although architecture and training do not strictly enforce this encoding, we qual-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 247, + 302 + ], + "score": 1.0, + "content": "itatively demonstrate how varying", + "type": "text" + }, + { + "bbox": [ + 247, + 290, + 255, + 299 + ], + "score": 0.73, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "leads to a smooth change in timbre. In Figure 3, we use the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 299, + 482, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 482, + 312 + ], + "score": 1.0, + "content": "smooth shift in spectral centroid, or “center of mass” of a spectrum, to illustrate this behavior.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 266, + 506, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 296, + 329 + ], + "score": 1.0, + "content": "Extrapolation: As described in Section 4.1,", + "type": "text" + }, + { + "bbox": [ + 297, + 316, + 315, + 329 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "directly controls the additive synthesizer and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 325, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 104, + 325, + 506, + 342 + ], + "score": 1.0, + "content": "has structural meaning outside the context of any given dataset. Beyond interpolating between", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "datapoints, the model can extrapolate to new conditions not seen during training. The rightmost", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 460, + 361 + ], + "score": 1.0, + "content": "plot of Figure 7 demonstrates this by resynthesizing a clip of solo violin after shifting", + "type": "text" + }, + { + "bbox": [ + 460, + 349, + 479, + 361 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "down", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "an octave and outside the range of the training data. The audio remains coherent and resembles a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 248, + 383 + ], + "score": 1.0, + "content": "related instrument such as a cello.", + "type": "text" + }, + { + "bbox": [ + 248, + 371, + 267, + 383 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "is only modified for the synthesizer, as the decoder is still", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "score": 1.0, + "content": "bounded by the nearby distribution of the training data and produces unrealistic harmonic content if", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 392, + 269, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 269, + 406 + ], + "score": 1.0, + "content": "conditioned far outside that distribution.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 316, + 506, + 406 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 417, + 334, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 335, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 335, + 430 + ], + "score": 1.0, + "content": "5.3 DEREVERBERATION AND ACOUSTIC TRANSFER", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Removing reverb in a “blind” setting, where only reverberated audio is available, is a standing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 449, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 461 + ], + "score": 1.0, + "content": "problem in acoustics (Naylor & Gaubitch, 2010). However, a benefit of our modular approach to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "generative modeling is that it becomes possible to completely separate the source audio from the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "score": 1.0, + "content": "effect of the room. For the solo violin dataset, the DDSP autoencoder is trained with an additional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "reverb module as shown in Figure 2 and described in Section 3.6. Figure 7 (left) demonstrates that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "bypassing the reverb module during resynthesis results in completely dereverberated audio, similar", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 501, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 104, + 501, + 506, + 517 + ], + "score": 1.0, + "content": "to recording in an anechoic chamber. The quality of the approach is limited by the underlying", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 513, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 506, + 527 + ], + "score": 1.0, + "content": "generative model, which is quite high for our autoencoder. Similarly, Figure 7 (center) demonstrates", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "that we can also apply the learned reverb model to new audio, in this case singing, and effectively", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 535, + 359, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 359, + 549 + ], + "score": 1.0, + "content": "transfer the acoustic environment of the solo violin recordings.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 437, + 506, + 549 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 560, + 214, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 216, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 216, + 572 + ], + "score": 1.0, + "content": "5.4 TIMBRE TRANSFER", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 504, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "Figure 4 demonstrates timbre transfer, converting the singing voice of an author into a violin. F0 and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "loudness features are extracted from the singing voice and the DDSP autoencoder trained on solo", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "violin used for resynthesis. To better match the conditioning features, we first shift the fundamental", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 614, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 626 + ], + "score": 1.0, + "content": "frequency of the singing up by two octaves to fit a violin’s typical register. Next, we transfer the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "room acoustics of the violin recording (as described in Section 5.3) to the voice before extracting", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "loudness, to better match the loudness contours of the violin recordings. The resulting audio captures", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "many subtleties of the singing with the timbre and room acoustics of the violin dataset. Note the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 656, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 671 + ], + "score": 1.0, + "content": "interesting “breathing” artifacts in the silence corresponding to unvoiced syllables from the singing.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 581, + 506, + 671 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 195, + 697 + ], + "lines": [ + { + "bbox": [ + 104, + 682, + 197, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 682, + 197, + 700 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "The DDSP library fuses classical DSP with deep learning, providing the ability to take advantage", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "of strong inductive biases without losing the expressive power of neural networks and end-to-end", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "learning. We encourage contributions from domain experts and look forward to expanding the scope", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 343, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 343, + 106 + ], + "score": 1.0, + "content": "of the DDSP library to a wide range of future applications.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 107, + 122, + 176, + 134 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 176, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 176, + 135 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "score": 1.0, + "content": "S. O. Arik, H. Jun, and G. Diamos. Fast spectrogram inversion using multi-head convolutional", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 152, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 163 + ], + "score": 1.0, + "content": "neural networks. IEEE Signal Processing Letters, 26(1):94–98, Jan 2019. doi: 10.1109/LSP.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 163, + 179, + 174 + ], + "spans": [ + { + "bbox": [ + 116, + 163, + 179, + 174 + ], + "score": 1.0, + "content": "2018.2880284.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 104, + 183, + 482, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 482, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 482, + 197 + ], + "score": 1.0, + "content": "James W Beauchamp. Analysis, synthesis, and perception of musical sounds. Springer, 2007.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 502, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "Merlijn Blaauw and Jordi Bonada. A neural parametric singing synthesizer modeling timbre and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 215, + 389, + 227 + ], + "spans": [ + { + "bbox": [ + 116, + 215, + 389, + 227 + ], + "score": 1.0, + "content": "expression from natural songs. Applied Sciences, 7(12):1313, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 504, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "Pritish Chandna, Merlijn Blaauw, Jordi Bonada, and Emilia Gomez. Wgansing: A multi-voice", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 246, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 504, + 259 + ], + "score": 1.0, + "content": "singing voice synthesizer based on the wasserstein-gan. arXiv preprint arXiv:1903.10729, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "Taishih Chi, Powen Ru, and Shihab A Shamma. Multiresolution spectrotemporal analysis of com-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 278, + 465, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 278, + 465, + 290 + ], + "score": 1.0, + "content": "plex sounds. The Journal of the Acoustical Society of America, 118(2):887–906, 2005.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "score": 1.0, + "content": "Alexandre Defossez, Neil Zeghidour, Nicolas Usunier, Leon Bottou, and Francis Bach. Sing:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "Symbol-to-instrument neural generator. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "pp. 9041–9051. Curran Associates, Inc., 2018. URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 343, + 429, + 354 + ], + "spans": [ + { + "bbox": [ + 116, + 343, + 429, + 354 + ], + "score": 1.0, + "content": "8118-sing-symbol-to-instrument-neural-generator.pdf.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 108, + 362, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 107, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 107, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. In International", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 117, + 374, + 504, + 386 + ], + "spans": [ + { + "bbox": [ + 117, + 374, + 504, + 386 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019. URL https://openreview.net/forum?", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 384, + 199, + 397 + ], + "spans": [ + { + "bbox": [ + 116, + 384, + 129, + 397 + ], + "score": 1.0, + "content": "id", + "type": "text" + }, + { + "bbox": [ + 129, + 386, + 136, + 394 + ], + "score": 0.51, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 384, + 199, + 397 + ], + "score": 1.0, + "content": "ByMVTsR5KQ.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 504, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy and Thomas Brox. Generating images with perceptual similarity metrics based", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 416, + 493, + 428 + ], + "spans": [ + { + "bbox": [ + 115, + 416, + 493, + 428 + ], + "score": 1.0, + "content": "on deep networks. In Advances in neural information processing systems, pp. 658–666, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "Jesse Engel, Cinjon Resnick, Adam Roberts, Sander Dieleman, Douglas Eck, Karen Simonyan, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 117, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "Mohammad Norouzi. Neural audio synthesis of musical notes with WaveNet autoencoders. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 457, + 171, + 469 + ], + "spans": [ + { + "bbox": [ + 116, + 457, + 171, + 469 + ], + "score": 1.0, + "content": "ICML, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 504, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Jesse Engel, Kumar Krishna Agrawal, Shuo Chen, Ishaan Gulrajani, Chris Donahue, and Adam", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "Roberts. GANSynth: Adversarial neural audio synthesis. In International Conference on Learn-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 434, + 513 + ], + "score": 1.0, + "content": "ing Representations, 2019. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 435, + 502, + 441, + 510 + ], + "score": 0.39, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "H1xQVn09FX.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "score": 1.0, + "content": "Philippe Esling, Naotake Masuda, Adrien Bardet, Romeo Despres, et al. Universal audio synthesizer", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 532, + 407, + 544 + ], + "spans": [ + { + "bbox": [ + 115, + 532, + 407, + 544 + ], + "score": 1.0, + "content": "control with normalizing flows. arXiv preprint arXiv:1907.00971, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "James L Flanagan. Speech analysis synthesis and perception, volume 3. Springer Science & Busi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 563, + 192, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 563, + 192, + 574 + ], + "score": 1.0, + "content": "ness Media, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 105, + 583, + 475, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 477, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 477, + 597 + ], + "score": 1.0, + "content": "David Ha and Jurgen Schmidhuber. World models. ¨ arXiv preprint arXiv:1803.10122, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 504, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "Lamtharn (Hanoi) Hantrakul, Jesse Engel, Adam Roberts, and Chenjie Gu. Fast and flexible neural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 615, + 250, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 250, + 627 + ], + "score": 1.0, + "content": "audio synthesis. In ISMIR, 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 650 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 645, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 645, + 505, + 660 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 656, + 182, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 182, + 670 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "Matthew D Hoffman and Perry R Cook. Feature-based synthesis: Mapping acoustic and perceptual", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 689, + 362, + 701 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 362, + 701 + ], + "score": 1.0, + "content": "features onto synthesis parameters. In ICMC. Citeseer, 2006.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "score": 1.0, + "content": "Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are uni-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 721, + 362, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 362, + 732 + ], + "score": 1.0, + "content": "versal approximators. Neural networks, 2(5):359–366, 1989.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "learning. We encourage contributions from domain experts and look forward to expanding the scope", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 343, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 343, + 106 + ], + "score": 1.0, + "content": "of the DDSP library to a wide range of future applications.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 122, + 176, + 134 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 176, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 176, + 135 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 154 + ], + "score": 1.0, + "content": "S. O. Arik, H. Jun, and G. Diamos. Fast spectrogram inversion using multi-head convolutional", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 152, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 163 + ], + "score": 1.0, + "content": "neural networks. IEEE Signal Processing Letters, 26(1):94–98, Jan 2019. doi: 10.1109/LSP.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 163, + 179, + 174 + ], + "spans": [ + { + "bbox": [ + 116, + 163, + 179, + 174 + ], + "score": 1.0, + "content": "2018.2880284.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 140, + 506, + 174 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 183, + 482, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 482, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 482, + 197 + ], + "score": 1.0, + "content": "James W Beauchamp. Analysis, synthesis, and perception of musical sounds. Springer, 2007.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 183, + 482, + 197 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 502, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "Merlijn Blaauw and Jordi Bonada. A neural parametric singing synthesizer modeling timbre and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 215, + 389, + 227 + ], + "spans": [ + { + "bbox": [ + 116, + 215, + 389, + 227 + ], + "score": 1.0, + "content": "expression from natural songs. Applied Sciences, 7(12):1313, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 203, + 505, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 504, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "Pritish Chandna, Merlijn Blaauw, Jordi Bonada, and Emilia Gomez. Wgansing: A multi-voice", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 246, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 504, + 259 + ], + "score": 1.0, + "content": "singing voice synthesizer based on the wasserstein-gan. arXiv preprint arXiv:1903.10729, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 235, + 505, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "Taishih Chi, Powen Ru, and Shihab A Shamma. Multiresolution spectrotemporal analysis of com-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 278, + 465, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 278, + 465, + 290 + ], + "score": 1.0, + "content": "plex sounds. The Journal of the Acoustical Society of America, 118(2):887–906, 2005.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 266, + 505, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "score": 1.0, + "content": "Alexandre Defossez, Neil Zeghidour, Nicolas Usunier, Leon Bottou, and Francis Bach. Sing:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "Symbol-to-instrument neural generator. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "pp. 9041–9051. Curran Associates, Inc., 2018. URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 343, + 429, + 354 + ], + "spans": [ + { + "bbox": [ + 116, + 343, + 429, + 354 + ], + "score": 1.0, + "content": "8118-sing-symbol-to-instrument-neural-generator.pdf.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 297, + 505, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 362, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 107, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 107, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. In International", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 117, + 374, + 504, + 386 + ], + "spans": [ + { + "bbox": [ + 117, + 374, + 504, + 386 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019. URL https://openreview.net/forum?", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 384, + 199, + 397 + ], + "spans": [ + { + "bbox": [ + 116, + 384, + 129, + 397 + ], + "score": 1.0, + "content": "id", + "type": "text" + }, + { + "bbox": [ + 129, + 386, + 136, + 394 + ], + "score": 0.51, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 384, + 199, + 397 + ], + "score": 1.0, + "content": "ByMVTsR5KQ.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 107, + 362, + 505, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 504, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy and Thomas Brox. Generating images with perceptual similarity metrics based", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 416, + 493, + 428 + ], + "spans": [ + { + "bbox": [ + 115, + 416, + 493, + 428 + ], + "score": 1.0, + "content": "on deep networks. In Advances in neural information processing systems, pp. 658–666, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 405, + 505, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "Jesse Engel, Cinjon Resnick, Adam Roberts, Sander Dieleman, Douglas Eck, Karen Simonyan, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 117, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "Mohammad Norouzi. Neural audio synthesis of musical notes with WaveNet autoencoders. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 457, + 171, + 469 + ], + "spans": [ + { + "bbox": [ + 116, + 457, + 171, + 469 + ], + "score": 1.0, + "content": "ICML, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 435, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 504, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Jesse Engel, Kumar Krishna Agrawal, Shuo Chen, Ishaan Gulrajani, Chris Donahue, and Adam", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "Roberts. GANSynth: Adversarial neural audio synthesis. In International Conference on Learn-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 434, + 513 + ], + "score": 1.0, + "content": "ing Representations, 2019. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 435, + 502, + 441, + 510 + ], + "score": 0.39, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "H1xQVn09FX.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 478, + 505, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "score": 1.0, + "content": "Philippe Esling, Naotake Masuda, Adrien Bardet, Romeo Despres, et al. Universal audio synthesizer", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 532, + 407, + 544 + ], + "spans": [ + { + "bbox": [ + 115, + 532, + 407, + 544 + ], + "score": 1.0, + "content": "control with normalizing flows. arXiv preprint arXiv:1907.00971, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 520, + 505, + 544 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "James L Flanagan. Speech analysis synthesis and perception, volume 3. Springer Science & Busi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 563, + 192, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 563, + 192, + 574 + ], + "score": 1.0, + "content": "ness Media, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 552, + 505, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 583, + 475, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 477, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 477, + 597 + ], + "score": 1.0, + "content": "David Ha and Jurgen Schmidhuber. World models. ¨ arXiv preprint arXiv:1803.10122, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 583, + 477, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 504, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "Lamtharn (Hanoi) Hantrakul, Jesse Engel, Adam Roberts, and Chenjie Gu. Fast and flexible neural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 615, + 250, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 250, + 627 + ], + "score": 1.0, + "content": "audio synthesis. In ISMIR, 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 604, + 505, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 650 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 645, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 645, + 505, + 660 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 656, + 182, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 182, + 670 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 634, + 505, + 670 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "Matthew D Hoffman and Perry R Cook. Feature-based synthesis: Mapping acoustic and perceptual", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 689, + 362, + 701 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 362, + 701 + ], + "score": 1.0, + "content": "features onto synthesis parameters. In ICMC. Citeseer, 2006.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 678, + 505, + 701 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "score": 1.0, + "content": "Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are uni-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 721, + 362, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 362, + 732 + ], + "score": 1.0, + "content": "versal approximators. Neural networks, 2(5):359–366, 1989.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 708, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Cheng-Zhi Anna Huang, David Duvenaud, Kenneth C Arnold, Brenton Partridge, Josiah W Ober-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "holtzer, and Krzysztof Z Gajos. Active learning of intuitive control knobs for synthesizers using", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "gaussian processes. In Proceedings of the 19th international conference on Intelligent User In-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 260, + 126 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 260, + 126 + ], + "score": 1.0, + "content": "terfaces, pp. 115–124. ACM, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 503, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Erich Elsen, Karen Simonyan, Seb Noury, Norman Casagrande, Edward Lock-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "hart, Florian Stimberg, Aaron van den Oord, Sander Dieleman, and Koray Kavukcuoglu. Efficient", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 156, + 373, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 156, + 373, + 167 + ], + "score": 1.0, + "content": "neural audio synthesis. arXiv preprint arXiv:1802.08435, 2018.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 174, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "Jong Wook Kim, Justin Salamon, Peter Li, and Juan Pablo Bello. Crepe: A convolutional repre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "sentation for pitch estimation. In 2018 IEEE International Conference on Acoustics, Speech and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 196, + 340, + 208 + ], + "spans": [ + { + "bbox": [ + 117, + 196, + 340, + 208 + ], + "score": 1.0, + "content": "Signal Processing (ICASSP), pp. 161–165. IEEE, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 214, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "Anssi Klapuri, Tuomas Virtanen, and Jan-Markus Holm. Robust multipitch estimation for the anal-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 506, + 239 + ], + "score": 1.0, + "content": "ysis and manipulation of polyphonic musical signals. In Proc. COST-G6 Conference on Digital", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 236, + 253, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 236, + 253, + 249 + ], + "score": 1.0, + "content": "Audio Effects, pp. 233–236, 2000.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "Y. LeCun, B. Boser, J. S. Denker, D. Henderson, R. E. Howard, W. Hubbard, and L. D. Jackel.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "Backpropagation applied to handwritten zip code recognition. Neural Computation, 1(4):541–", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 277, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 115, + 277, + 504, + 289 + ], + "score": 1.0, + "content": "551, 1989. doi: 10.1162/neco.1989.1.4.541. URL https://doi.org/10.1162/neco.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 289, + 193, + 299 + ], + "spans": [ + { + "bbox": [ + 116, + 289, + 193, + 299 + ], + "score": 1.0, + "content": "1989.1.4.541.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 307, + 504, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "Francesco Locatello, Stefan Bauer, Mario Lucic, Sylvain Gelly, Bernhard Scholkopf, and Olivier ¨", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "Bachem. Challenging common assumptions in the unsupervised learning of disentangled repre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 329, + 324, + 340 + ], + "spans": [ + { + "bbox": [ + 116, + 329, + 324, + 340 + ], + "score": 1.0, + "content": "sentations. arXiv preprint arXiv:1811.12359, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 347, + 504, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "score": 1.0, + "content": "Robert McAulay and Thomas Quatieri. Speech analysis/synthesis based on a sinusoidal representa-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 357, + 487, + 371 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 487, + 371 + ], + "score": 1.0, + "content": "tion. IEEE Transactions on Acoustics, Speech, and Signal Processing, 34(4):744–754, 1986.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 377, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "Soroush Mehri, Kundan Kumar, Ishaan Gulrajani, Rithesh Kumar, Shubham Jain, Jose Sotelo,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 116, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Samplernn: An unconditional end-to-end neural audio", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 399, + 354, + 411 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 354, + 411 + ], + "score": 1.0, + "content": "generation model. arXiv preprint arXiv:1612.07837, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Michelle Moerel, Federico De Martino, and Elia Formisano. Processing of natural sounds in human", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 116, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "auditory cortex: tonotopy, spectral tuning, and relation to voice sensitivity. Journal of Neuro-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 440, + 265, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 265, + 451 + ], + "score": 1.0, + "content": "science, 32(41):14205–14216, 2012.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "Masanori Morise, Fumiya Yokomori, and Kenji Ozawa. World: a vocoder-based high-quality speech", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 468, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 468, + 506, + 483 + ], + "score": 1.0, + "content": "synthesis system for real-time applications. IEICE TRANSACTIONS on Information and Systems,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 479, + 216, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 479, + 216, + 492 + ], + "score": 1.0, + "content": "99(7):1877–1884, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 104, + 498, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "Patrick A Naylor and Nikolay D Gaubitch. Speech dereverberation. Springer Science & Business", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 509, + 172, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 509, + 172, + 522 + ], + "score": 1.0, + "content": "Media, 2010.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 504, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "Aaron van den Oord, Sander Dieleman, Heiga Zen, Karen Simonyan, Oriol Vinyals, Alex Graves,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Andrew Senior, and Koray Kavukcuoglu. Wavenet: A generative model for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 551, + 324, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 324, + 563 + ], + "score": 1.0, + "content": "raw audio. arXiv preprint arXiv:1609.03499, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 504, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "Heiko Purnhagen and Nikolaus Meine. Hiln-the mpeg-4 parametric audio coding tools. In 2000", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 580, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 115, + 580, + 506, + 593 + ], + "score": 1.0, + "content": "IEEE International Symposium on Circuits and Systems. Emerging Technologies for the 21st Cen-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 591, + 455, + 603 + ], + "spans": [ + { + "bbox": [ + 117, + 591, + 455, + 603 + ], + "score": 1.0, + "content": "tury. Proceedings (IEEE Cat No. 00CH36353), volume 3, pp. 201–204. IEEE, 2000.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "score": 1.0, + "content": "Xavier Serra and Julius Smith. Spectral modeling synthesis: A sound analysis/synthesis system", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 621, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 116, + 621, + 505, + 632 + ], + "score": 1.0, + "content": "based on a deterministic plus stochastic decomposition. Computer Music Journal, 14(4):12–24,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 631, + 142, + 643 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 142, + 643 + ], + "score": 1.0, + "content": "1990.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "Julius Orion Smith. Physical audio signal processing: For virtual musical instruments and audio", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 661, + 244, + 674 + ], + "spans": [ + { + "bbox": [ + 116, + 661, + 244, + 674 + ], + "score": 1.0, + "content": "effects. W3K publishing, 2010.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 504, + 693 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 690, + 427, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 427, + 704 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Edwin Tellman, Lippold Haken, and Bryan Holloway. Timbre morphing of sounds with unequal", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "score": 1.0, + "content": "numbers of features. Journal of the Audio Engineering Society, 43(9):678–689, 1995.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Cheng-Zhi Anna Huang, David Duvenaud, Kenneth C Arnold, Brenton Partridge, Josiah W Ober-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "holtzer, and Krzysztof Z Gajos. Active learning of intuitive control knobs for synthesizers using", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "gaussian processes. In Proceedings of the 19th international conference on Intelligent User In-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 260, + 126 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 260, + 126 + ], + "score": 1.0, + "content": "terfaces, pp. 115–124. ACM, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 82, + 506, + 126 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 503, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Erich Elsen, Karen Simonyan, Seb Noury, Norman Casagrande, Edward Lock-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "hart, Florian Stimberg, Aaron van den Oord, Sander Dieleman, and Koray Kavukcuoglu. Efficient", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 156, + 373, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 156, + 373, + 167 + ], + "score": 1.0, + "content": "neural audio synthesis. arXiv preprint arXiv:1802.08435, 2018.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 133, + 505, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 174, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "Jong Wook Kim, Justin Salamon, Peter Li, and Juan Pablo Bello. Crepe: A convolutional repre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "sentation for pitch estimation. In 2018 IEEE International Conference on Acoustics, Speech and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 196, + 340, + 208 + ], + "spans": [ + { + "bbox": [ + 117, + 196, + 340, + 208 + ], + "score": 1.0, + "content": "Signal Processing (ICASSP), pp. 161–165. IEEE, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 174, + 505, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 214, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "Anssi Klapuri, Tuomas Virtanen, and Jan-Markus Holm. Robust multipitch estimation for the anal-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 506, + 239 + ], + "score": 1.0, + "content": "ysis and manipulation of polyphonic musical signals. In Proc. COST-G6 Conference on Digital", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 236, + 253, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 236, + 253, + 249 + ], + "score": 1.0, + "content": "Audio Effects, pp. 233–236, 2000.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 215, + 506, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "Y. LeCun, B. Boser, J. S. Denker, D. Henderson, R. E. Howard, W. Hubbard, and L. D. Jackel.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "Backpropagation applied to handwritten zip code recognition. Neural Computation, 1(4):541–", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 277, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 115, + 277, + 504, + 289 + ], + "score": 1.0, + "content": "551, 1989. doi: 10.1162/neco.1989.1.4.541. URL https://doi.org/10.1162/neco.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 289, + 193, + 299 + ], + "spans": [ + { + "bbox": [ + 116, + 289, + 193, + 299 + ], + "score": 1.0, + "content": "1989.1.4.541.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 255, + 505, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 307, + 504, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "Francesco Locatello, Stefan Bauer, Mario Lucic, Sylvain Gelly, Bernhard Scholkopf, and Olivier ¨", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "Bachem. Challenging common assumptions in the unsupervised learning of disentangled repre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 329, + 324, + 340 + ], + "spans": [ + { + "bbox": [ + 116, + 329, + 324, + 340 + ], + "score": 1.0, + "content": "sentations. arXiv preprint arXiv:1811.12359, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 307, + 505, + 340 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 347, + 504, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "score": 1.0, + "content": "Robert McAulay and Thomas Quatieri. Speech analysis/synthesis based on a sinusoidal representa-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 357, + 487, + 371 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 487, + 371 + ], + "score": 1.0, + "content": "tion. IEEE Transactions on Acoustics, Speech, and Signal Processing, 34(4):744–754, 1986.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 346, + 505, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 377, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "Soroush Mehri, Kundan Kumar, Ishaan Gulrajani, Rithesh Kumar, Shubham Jain, Jose Sotelo,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 116, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Samplernn: An unconditional end-to-end neural audio", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 399, + 354, + 411 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 354, + 411 + ], + "score": 1.0, + "content": "generation model. arXiv preprint arXiv:1612.07837, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 377, + 505, + 411 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Michelle Moerel, Federico De Martino, and Elia Formisano. Processing of natural sounds in human", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 116, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "auditory cortex: tonotopy, spectral tuning, and relation to voice sensitivity. Journal of Neuro-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 440, + 265, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 265, + 451 + ], + "score": 1.0, + "content": "science, 32(41):14205–14216, 2012.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 417, + 505, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "Masanori Morise, Fumiya Yokomori, and Kenji Ozawa. World: a vocoder-based high-quality speech", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 468, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 468, + 506, + 483 + ], + "score": 1.0, + "content": "synthesis system for real-time applications. IEICE TRANSACTIONS on Information and Systems,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 479, + 216, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 479, + 216, + 492 + ], + "score": 1.0, + "content": "99(7):1877–1884, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 458, + 506, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 498, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "Patrick A Naylor and Nikolay D Gaubitch. Speech dereverberation. Springer Science & Business", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 509, + 172, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 509, + 172, + 522 + ], + "score": 1.0, + "content": "Media, 2010.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 498, + 505, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 504, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "Aaron van den Oord, Sander Dieleman, Heiga Zen, Karen Simonyan, Oriol Vinyals, Alex Graves,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Andrew Senior, and Koray Kavukcuoglu. Wavenet: A generative model for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 551, + 324, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 324, + 563 + ], + "score": 1.0, + "content": "raw audio. arXiv preprint arXiv:1609.03499, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 527, + 506, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 504, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "Heiko Purnhagen and Nikolaus Meine. Hiln-the mpeg-4 parametric audio coding tools. In 2000", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 580, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 115, + 580, + 506, + 593 + ], + "score": 1.0, + "content": "IEEE International Symposium on Circuits and Systems. Emerging Technologies for the 21st Cen-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 591, + 455, + 603 + ], + "spans": [ + { + "bbox": [ + 117, + 591, + 455, + 603 + ], + "score": 1.0, + "content": "tury. Proceedings (IEEE Cat No. 00CH36353), volume 3, pp. 201–204. IEEE, 2000.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 569, + 506, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 623 + ], + "score": 1.0, + "content": "Xavier Serra and Julius Smith. Spectral modeling synthesis: A sound analysis/synthesis system", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 621, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 116, + 621, + 505, + 632 + ], + "score": 1.0, + "content": "based on a deterministic plus stochastic decomposition. Computer Music Journal, 14(4):12–24,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 631, + 142, + 643 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 142, + 643 + ], + "score": 1.0, + "content": "1990.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 608, + 505, + 643 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "Julius Orion Smith. Physical audio signal processing: For virtual musical instruments and audio", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 661, + 244, + 674 + ], + "spans": [ + { + "bbox": [ + 116, + 661, + 244, + 674 + ], + "score": 1.0, + "content": "effects. W3K publishing, 2010.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 649, + 506, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 504, + 693 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 690, + 427, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 427, + 704 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 680, + 504, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Edwin Tellman, Lippold Haken, and Bryan Holloway. Timbre morphing of sounds with unequal", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "score": 1.0, + "content": "numbers of features. Journal of the Audio Engineering Society, 43(9):678–689, 1995.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 506, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Fred´ eric E Theunissen and Julie E Elie. Neural processing of natural sounds. ´ Nature Reviews", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 245, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 245, + 106 + ], + "score": 1.0, + "content": "Neuroscience, 15(6):355, 2014.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 286, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 286, + 147 + ], + "score": 1.0, + "content": "processing systems, pp. 5998–6008, 2017.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "score": 1.0, + "content": "Xin Wang, Shinji Takaki, and Junichi Yamagishi. Neural source-filter waveform models for statisti-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 410, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 410, + 177 + ], + "score": 1.0, + "content": "cal parametric speech synthesis. arXiv preprint arXiv:1904.12088, 2019.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "Yuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 192, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 192, + 506, + 208 + ], + "score": 1.0, + "content": "Zongheng Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, et al. Tacotron: Towards end-to-end", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 205, + 294, + 217 + ], + "spans": [ + { + "bbox": [ + 116, + 205, + 294, + 217 + ], + "score": 1.0, + "content": "speech synthesis. In INTERSPEECH, 2017.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 222, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 506, + 237 + ], + "score": 1.0, + "content": "P. J. Werbos. Backpropagation through time: what it does and how to do it. Proceedings of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 234, + 356, + 246 + ], + "spans": [ + { + "bbox": [ + 116, + 234, + 356, + 246 + ], + "score": 1.0, + "content": "IEEE, 78(10):1550–1560, Oct 1990. doi: 10.1109/5.58337.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "score": 1.0, + "content": "Ronald J Williams and David Zipser. Gradient-based learning algorithms for recurrent connection-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 264, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 470, + 277 + ], + "score": 1.0, + "content": "ist networks. College of Computer Science, Northeastern University Boston, MA, 1990.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 6.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, + 81, + 506, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Fred´ eric E Theunissen and Julie E Elie. Neural processing of natural sounds. ´ Nature Reviews", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 93, + 245, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 245, + 106 + ], + "score": 1.0, + "content": "Neuroscience, 15(6):355, 2014.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 286, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 286, + 147 + ], + "score": 1.0, + "content": "processing systems, pp. 5998–6008, 2017.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 506, + 167 + ], + "score": 1.0, + "content": "Xin Wang, Shinji Takaki, and Junichi Yamagishi. Neural source-filter waveform models for statisti-", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 164, + 410, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 410, + 177 + ], + "score": 1.0, + "content": "cal parametric speech synthesis. arXiv preprint arXiv:1904.12088, 2019.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "Yuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly,", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 192, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 192, + 506, + 208 + ], + "score": 1.0, + "content": "Zongheng Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, et al. Tacotron: Towards end-to-end", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 205, + 294, + 217 + ], + "spans": [ + { + "bbox": [ + 116, + 205, + 294, + 217 + ], + "score": 1.0, + "content": "speech synthesis. In INTERSPEECH, 2017.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 222, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 506, + 237 + ], + "score": 1.0, + "content": "P. J. Werbos. Backpropagation through time: what it does and how to do it. Proceedings of the", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 234, + 356, + 246 + ], + "spans": [ + { + "bbox": [ + 116, + 234, + 356, + 246 + ], + "score": 1.0, + "content": "IEEE, 78(10):1550–1560, Oct 1990. doi: 10.1109/5.58337.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "score": 1.0, + "content": "Ronald J Williams and David Zipser. Gradient-based learning algorithms for recurrent connection-", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 264, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 470, + 277 + ], + "score": 1.0, + "content": "ist networks. College of Computer Science, Northeastern University Boston, MA, 1990.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 81, + 506, + 277 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 81, + 182, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 114, + 109, + 497, + 502 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 109, + 497, + 502 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 109, + 497, + 502 + ], + "spans": [ + { + "bbox": [ + 114, + 109, + 497, + 502 + ], + "score": 0.976, + "type": "image", + "image_path": "ae69231c516ed09fed6808a0b174b09d4bc195050f2cd9f0a31748d0ba579fdf.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 114, + 109, + 497, + 240.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 240.0, + 497, + 371.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 114, + 371.0, + 497, + 502.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 516, + 506, + 604 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "Figure 5: Decomposition of a clip of solo violin. Audio is visualized with log magnitude spec-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "trograms. Loudness and fundamental frequency signals are extracted from the original audio. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "loudness curve does not exhibit clear note segmentations because of the effects of the room acous-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "tics. The DDSP autoencoder takes those conditioning signals and predicts amplitudes, harmonic", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "distributions, and noise magnitudes. Note that the amplitudes are clearly segmented along note", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 570, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 585 + ], + "score": 1.0, + "content": "boundaries without supervision and that the harmonic and noise distributions are complex and dy-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "namic despite the simple conditioning signals. Finally, the extracted impulse response is applied to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 592, + 409, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 409, + 605 + ], + "score": 1.0, + "content": "the combined audio from the synthesizers to give the full resynthesis audio.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + } + ], + "index": 4.75 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 81, + 182, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 79, + 184, + 96 + ] + }, + { + "type": "image", + "bbox": [ + 114, + 109, + 497, + 502 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 109, + 497, + 502 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 109, + 497, + 502 + ], + "spans": [ + { + "bbox": [ + 114, + 109, + 497, + 502 + ], + "score": 0.976, + "type": "image", + "image_path": "ae69231c516ed09fed6808a0b174b09d4bc195050f2cd9f0a31748d0ba579fdf.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 114, + 109, + 497, + 240.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 240.0, + 497, + 371.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 114, + 371.0, + 497, + 502.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 516, + 506, + 604 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "Figure 5: Decomposition of a clip of solo violin. Audio is visualized with log magnitude spec-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "trograms. Loudness and fundamental frequency signals are extracted from the original audio. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "loudness curve does not exhibit clear note segmentations because of the effects of the room acous-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "tics. The DDSP autoencoder takes those conditioning signals and predicts amplitudes, harmonic", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "distributions, and noise magnitudes. Note that the amplitudes are clearly segmented along note", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 570, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 585 + ], + "score": 1.0, + "content": "boundaries without supervision and that the harmonic and noise distributions are complex and dy-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "namic despite the simple conditioning signals. Finally, the extracted impulse response is applied to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 592, + 409, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 409, + 605 + ], + "score": 1.0, + "content": "the combined audio from the synthesizers to give the full resynthesis audio.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + } + ], + "index": 4.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 81, + 501, + 247 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 81, + 501, + 247 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 81, + 501, + 247 + ], + "spans": [ + { + "bbox": [ + 110, + 81, + 501, + 247 + ], + "score": 0.975, + "type": "image", + "image_path": "855c51131f1c81de60a033cdab15dea61c347a2213820e4eb8131484c53c7d92.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 81, + 501, + 136.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 136.33333333333334, + 501, + 191.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 191.66666666666669, + 501, + 247.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 260, + 505, + 337 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "Figure 6: Diagram of the Additive Synthesizer component. The synthesizer generates audio as a sum", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "score": 1.0, + "content": "of sinusoids at harmonic (integer) multiples of the fundamental frequency. The neural network is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "then tasked with emitting time-varying synthesizer parameters (fundamental frequency, amplitude,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "harmonic distribution). In this example linear-frequency log-magnitude spectrograms show how", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "the harmonics initially follow the frequency contours of the fundamental. We then factorize the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "harmonic amplitudes into an overall amplitude envelope that controls the loudness, and a normalized", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 326, + 421, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 421, + 338 + ], + "score": 1.0, + "content": "distribution among the different harmonics that determines spectral variations.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "image", + "bbox": [ + 109, + 349, + 503, + 513 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 349, + 503, + 513 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 349, + 503, + 513 + ], + "spans": [ + { + "bbox": [ + 109, + 349, + 503, + 513 + ], + "score": 0.973, + "type": "image", + "image_path": "3581853ac178f33be8f9520b8d3ecfdb7ccd3ddd4adef98cc5b7a6863db827eb.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 109, + 349, + 503, + 403.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 109, + 403.6666666666667, + 503, + 458.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 109, + 458.33333333333337, + 503, + 513.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 528, + 505, + 572 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "Figure 7: Interpretable generative models enables disentanglement and extrapolation. Spectrograms", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "of audio examples include dereverberation of a clip of solo violin playing (left), transfer of the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "score": 1.0, + "content": "extracted room response to new audio (center), and transposition below the range of training data", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 560, + 137, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 137, + 574 + ], + "score": 1.0, + "content": "(right).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 12.75 + }, + { + "type": "title", + "bbox": [ + 108, + 592, + 213, + 605 + ], + "lines": [ + { + "bbox": [ + 104, + 590, + 215, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 215, + 607 + ], + "score": 1.0, + "content": "B MODEL DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 617, + 181, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 182, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 182, + 630 + ], + "score": 1.0, + "content": "B.1 ENCODERS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 639, + 504, + 661 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 234, + 651 + ], + "score": 1.0, + "content": "The model has three encoders:", + "type": "text" + }, + { + "bbox": [ + 234, + 639, + 241, + 650 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 637, + 424, + 651 + ], + "score": 1.0, + "content": "-encoder that outputs fundamental frequency", + "type": "text" + }, + { + "bbox": [ + 424, + 639, + 442, + 651 + ], + "score": 0.88, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 637, + 446, + 651 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 447, + 639, + 451, + 649 + ], + "score": 0.52, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "-encoder that", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 648, + 396, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 176, + 663 + ], + "score": 1.0, + "content": "outputs loudness", + "type": "text" + }, + { + "bbox": [ + 176, + 650, + 191, + 662 + ], + "score": 0.89, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 648, + 219, + 663 + ], + "score": 1.0, + "content": ", and a", + "type": "text" + }, + { + "bbox": [ + 219, + 651, + 226, + 659 + ], + "score": 0.76, + "content": "_ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 648, + 373, + 663 + ], + "score": 1.0, + "content": "-encoder that outputs residual vector", + "type": "text" + }, + { + "bbox": [ + 373, + 650, + 391, + 662 + ], + "score": 0.92, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 648, + 396, + 663 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 107, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 107, + 667, + 114, + 678 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 666, + 423, + 679 + ], + "score": 1.0, + "content": "-encoder: We use a pretrained CREPE pitch detector (Kim et al., 2018) as the", + "type": "text" + }, + { + "bbox": [ + 423, + 667, + 430, + 678 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "-encoder to extract", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "ground truth fundamental frequencies (F0) from the audio. We used the “large” variant of CREPE,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "which has SOTA accuracy for monophonic audio samples of musical instruments. For our super-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 344, + 711 + ], + "score": 1.0, + "content": "vised autoencoder experiments, we fixed the weights of the", + "type": "text" + }, + { + "bbox": [ + 344, + 700, + 351, + 711 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "-encoder like (Hantrakul et al., 2019),", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and for our unsupervised autoencoder experiemnts we jointly learn the weights of a resnet model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 720, + 495, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 495, + 733 + ], + "score": 1.0, + "content": "fed log mel spectrograms of the audio. Full details of the resnet architecture are show in Table 2.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.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, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 81, + 501, + 247 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 81, + 501, + 247 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 81, + 501, + 247 + ], + "spans": [ + { + "bbox": [ + 110, + 81, + 501, + 247 + ], + "score": 0.975, + "type": "image", + "image_path": "855c51131f1c81de60a033cdab15dea61c347a2213820e4eb8131484c53c7d92.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 81, + 501, + 136.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 136.33333333333334, + 501, + 191.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 191.66666666666669, + 501, + 247.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 260, + 505, + 337 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "Figure 6: Diagram of the Additive Synthesizer component. The synthesizer generates audio as a sum", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 285 + ], + "score": 1.0, + "content": "of sinusoids at harmonic (integer) multiples of the fundamental frequency. The neural network is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "then tasked with emitting time-varying synthesizer parameters (fundamental frequency, amplitude,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "harmonic distribution). In this example linear-frequency log-magnitude spectrograms show how", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "the harmonics initially follow the frequency contours of the fundamental. We then factorize the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "harmonic amplitudes into an overall amplitude envelope that controls the loudness, and a normalized", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 326, + 421, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 421, + 338 + ], + "score": 1.0, + "content": "distribution among the different harmonics that determines spectral variations.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "image", + "bbox": [ + 109, + 349, + 503, + 513 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 349, + 503, + 513 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 349, + 503, + 513 + ], + "spans": [ + { + "bbox": [ + 109, + 349, + 503, + 513 + ], + "score": 0.973, + "type": "image", + "image_path": "3581853ac178f33be8f9520b8d3ecfdb7ccd3ddd4adef98cc5b7a6863db827eb.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 109, + 349, + 503, + 403.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 109, + 403.6666666666667, + 503, + 458.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 109, + 458.33333333333337, + 503, + 513.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 528, + 505, + 572 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "Figure 7: Interpretable generative models enables disentanglement and extrapolation. Spectrograms", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "of audio examples include dereverberation of a clip of solo violin playing (left), transfer of the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "score": 1.0, + "content": "extracted room response to new audio (center), and transposition below the range of training data", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 560, + 137, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 137, + 574 + ], + "score": 1.0, + "content": "(right).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 12.75 + }, + { + "type": "title", + "bbox": [ + 108, + 592, + 213, + 605 + ], + "lines": [ + { + "bbox": [ + 104, + 590, + 215, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 215, + 607 + ], + "score": 1.0, + "content": "B MODEL DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 617, + 181, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 182, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 182, + 630 + ], + "score": 1.0, + "content": "B.1 ENCODERS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 639, + 504, + 661 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 234, + 651 + ], + "score": 1.0, + "content": "The model has three encoders:", + "type": "text" + }, + { + "bbox": [ + 234, + 639, + 241, + 650 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 637, + 424, + 651 + ], + "score": 1.0, + "content": "-encoder that outputs fundamental frequency", + "type": "text" + }, + { + "bbox": [ + 424, + 639, + 442, + 651 + ], + "score": 0.88, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 637, + 446, + 651 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 447, + 639, + 451, + 649 + ], + "score": 0.52, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "-encoder that", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 648, + 396, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 176, + 663 + ], + "score": 1.0, + "content": "outputs loudness", + "type": "text" + }, + { + "bbox": [ + 176, + 650, + 191, + 662 + ], + "score": 0.89, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 648, + 219, + 663 + ], + "score": 1.0, + "content": ", and a", + "type": "text" + }, + { + "bbox": [ + 219, + 651, + 226, + 659 + ], + "score": 0.76, + "content": "_ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 648, + 373, + 663 + ], + "score": 1.0, + "content": "-encoder that outputs residual vector", + "type": "text" + }, + { + "bbox": [ + 373, + 650, + 391, + 662 + ], + "score": 0.92, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 648, + 396, + 663 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 637, + 505, + 663 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 107, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 107, + 667, + 114, + 678 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 666, + 423, + 679 + ], + "score": 1.0, + "content": "-encoder: We use a pretrained CREPE pitch detector (Kim et al., 2018) as the", + "type": "text" + }, + { + "bbox": [ + 423, + 667, + 430, + 678 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "-encoder to extract", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "ground truth fundamental frequencies (F0) from the audio. We used the “large” variant of CREPE,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "which has SOTA accuracy for monophonic audio samples of musical instruments. For our super-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 344, + 711 + ], + "score": 1.0, + "content": "vised autoencoder experiments, we fixed the weights of the", + "type": "text" + }, + { + "bbox": [ + 344, + 700, + 351, + 711 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "-encoder like (Hantrakul et al., 2019),", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and for our unsupervised autoencoder experiemnts we jointly learn the weights of a resnet model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 720, + 495, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 495, + 733 + ], + "score": 1.0, + "content": "fed log mel spectrograms of the audio. Full details of the resnet architecture are show in Table 2.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 666, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 111, + 92 + ], + "score": 0.55, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "-encoder: We use identical computational steps to extract loudness as (Hantrakul et al., 2019).", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Namely, an A-weighting of the power spectrum, which puts greater emphasis on higher frequencies,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "followed by log scaling. The vector is then centered according to the mean and standard deviation", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 164, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 164, + 126 + ], + "score": 1.0, + "content": "of the dataset.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 114, + 142 + ], + "score": 0.63, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "-encoder: As shown in Figure 8, the encoder first calculates MFCC’s (Mel Frequency Cepstrum", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "Coefficients) from the audio. MFCC is computed from the log-mel-spectrogram of the audio with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 345, + 167 + ], + "score": 1.0, + "content": "a FFT size of 1024, 128 bins of frequency range between", + "type": "text" + }, + { + "bbox": [ + 345, + 154, + 369, + 164 + ], + "score": 0.61, + "content": "2 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 153, + 381, + 167 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 381, + 154, + 414, + 164 + ], + "score": 0.54, + "content": "8 0 0 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 153, + 463, + 167 + ], + "score": 1.0, + "content": ", overlap of", + "type": "text" + }, + { + "bbox": [ + 463, + 154, + 483, + 164 + ], + "score": 0.88, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 153, + 506, + 167 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "use only the first 30 MFCCs that correspond to a smoothed spectral envelope. The MFCCs are then", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 188 + ], + "score": 1.0, + "content": "passed through a normalization layer (which has learnable shift and scale parameters) and a 512-unit", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 408, + 200 + ], + "score": 1.0, + "content": "GRU. The GRU outputs (over time) fed to a 512-unit linear layer to obtain", + "type": "text" + }, + { + "bbox": [ + 408, + 186, + 426, + 198 + ], + "score": 0.91, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 185, + 449, + 200 + ], + "score": 1.0, + "content": ". The", + "type": "text" + }, + { + "bbox": [ + 450, + 188, + 457, + 196 + ], + "score": 0.78, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 185, + 506, + 200 + ], + "score": 1.0, + "content": "embedding", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 196, + 363, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 363, + 211 + ], + "score": 1.0, + "content": "reported in this model has 16 dimensions across 250 time-steps.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "table", + "bbox": [ + 137, + 217, + 476, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 137, + 217, + 476, + 543 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 217, + 476, + 543 + ], + "spans": [ + { + "bbox": [ + 137, + 217, + 476, + 543 + ], + "score": 0.983, + "html": "
Residual BlockOutput SizekTimekFreqSFreqkFilters
layer norm + relu1-1
conv111kFilters/4
layer norm + relu=1
conv33SFreqkFilters/4
layer norm + relu--
conv111kFilters
add residual=--=
ResnetOutput SizekTimekFreqSFreqkFilters
LogMelSpectrogram(125,229, 1)1-11
conv2d(125, 115, 64)77264
max pool(125,58, 64)1321
residual block(125,58,128)331128
residual block(125,57, 128)331128
residual block(125,29,256)332256
residual block(125,29,256)331256
residual block(125,29,256)331256
residual block(125,15,512)332512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,8, 1024)3321024
residual block(125, 8,1024)3311024
residual block(125,8, 1024)3311024
dense(125,1, 128)=1281
upsample time(1000, 1, 128)=
softplus and normalize(1000, 1, 128)
", + "type": "table", + "image_path": "c92111047211e6624c3c18178c25de728271a9d73876307e26e7198c28563b9e.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 137, + 217, + 476, + 325.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 137, + 325.6666666666667, + 476, + 434.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 137, + 434.33333333333337, + 476, + 543.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 551, + 505, + 640 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "Table 2: Model architecture for the f(t) encoder using a Resnet on log mel spectrograms. Spectro-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "grams have a frame size of 2048 and a hop size of 512, and are upsampled at the end to have the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "same time resoultion as other latents (4ms per a frame). All convolutions use “same” padding and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "a temporal stride of 1. Each residual block uses a bottleneck structure (He et al., 2016). The final", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "output is a normalized probablity distribution over 128 frequency values (logarithmically scaled be-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 606, + 501, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 133, + 619 + ], + "score": 1.0, + "content": "tween", + "type": "text" + }, + { + "bbox": [ + 134, + 606, + 160, + 617 + ], + "score": 0.64, + "content": "8 . 2 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 606, + 180, + 619 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 606, + 217, + 617 + ], + "score": 0.71, + "content": "1 3 . 3 \\mathrm { k H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 606, + 501, + 619 + ], + "score": 1.0, + "content": "(https://www.inspiredacoustics.com/en/MIDI_note", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "score": 1.0, + "content": "numbers_and_center_frequencies)). The finally frequency value is the weighted sum of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 628, + 242, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 242, + 640 + ], + "score": 1.0, + "content": "each frequency by its probability.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + } + ], + "index": 14.75 + }, + { + "type": "title", + "bbox": [ + 107, + 656, + 176, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 177, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 177, + 669 + ], + "score": 1.0, + "content": "B.2 DECODER", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 260, + 690 + ], + "score": 1.0, + "content": "The decoder’s input is the latent tuple", + "type": "text" + }, + { + "bbox": [ + 260, + 677, + 326, + 689 + ], + "score": 0.91, + "content": "( f ( t ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "(250 timesteps). Its outputs are the parame-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "ters required by the synthesizers. For example, in the case of the harmonic synthesizer and filtered", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 288, + 711 + ], + "score": 1.0, + "content": "noise synthesizer setup, the decoder outputs", + "type": "text" + }, + { + "bbox": [ + 289, + 699, + 307, + 711 + ], + "score": 0.92, + "content": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "(amplitudes of the harmonics) for the harmonic", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 194, + 723 + ], + "score": 1.0, + "content": "synthesizer (note that", + "type": "text" + }, + { + "bbox": [ + 194, + 710, + 212, + 721 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 709, + 353, + 723 + ], + "score": 1.0, + "content": "is fed directly from the latent), and", + "type": "text" + }, + { + "bbox": [ + 353, + 710, + 365, + 720 + ], + "score": 0.8, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "(transfer function of the FIR filter)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 721, + 239, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 239, + 732 + ], + "score": 1.0, + "content": "for the filtered noise synthesizer.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 111, + 92 + ], + "score": 0.55, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "-encoder: We use identical computational steps to extract loudness as (Hantrakul et al., 2019).", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Namely, an A-weighting of the power spectrum, which puts greater emphasis on higher frequencies,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "followed by log scaling. The vector is then centered according to the mean and standard deviation", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 164, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 164, + 126 + ], + "score": 1.0, + "content": "of the dataset.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 505, + 126 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 114, + 142 + ], + "score": 0.63, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "-encoder: As shown in Figure 8, the encoder first calculates MFCC’s (Mel Frequency Cepstrum", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "Coefficients) from the audio. MFCC is computed from the log-mel-spectrogram of the audio with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 345, + 167 + ], + "score": 1.0, + "content": "a FFT size of 1024, 128 bins of frequency range between", + "type": "text" + }, + { + "bbox": [ + 345, + 154, + 369, + 164 + ], + "score": 0.61, + "content": "2 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 153, + 381, + 167 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 381, + 154, + 414, + 164 + ], + "score": 0.54, + "content": "8 0 0 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 153, + 463, + 167 + ], + "score": 1.0, + "content": ", overlap of", + "type": "text" + }, + { + "bbox": [ + 463, + 154, + 483, + 164 + ], + "score": 0.88, + "content": "7 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 153, + 506, + 167 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "use only the first 30 MFCCs that correspond to a smoothed spectral envelope. The MFCCs are then", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 188 + ], + "score": 1.0, + "content": "passed through a normalization layer (which has learnable shift and scale parameters) and a 512-unit", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 408, + 200 + ], + "score": 1.0, + "content": "GRU. The GRU outputs (over time) fed to a 512-unit linear layer to obtain", + "type": "text" + }, + { + "bbox": [ + 408, + 186, + 426, + 198 + ], + "score": 0.91, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 185, + 449, + 200 + ], + "score": 1.0, + "content": ". The", + "type": "text" + }, + { + "bbox": [ + 450, + 188, + 457, + 196 + ], + "score": 0.78, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 185, + 506, + 200 + ], + "score": 1.0, + "content": "embedding", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 196, + 363, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 363, + 211 + ], + "score": 1.0, + "content": "reported in this model has 16 dimensions across 250 time-steps.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 131, + 506, + 211 + ] + }, + { + "type": "table", + "bbox": [ + 137, + 217, + 476, + 543 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 137, + 217, + 476, + 543 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 217, + 476, + 543 + ], + "spans": [ + { + "bbox": [ + 137, + 217, + 476, + 543 + ], + "score": 0.983, + "html": "
Residual BlockOutput SizekTimekFreqSFreqkFilters
layer norm + relu1-1
conv111kFilters/4
layer norm + relu=1
conv33SFreqkFilters/4
layer norm + relu--
conv111kFilters
add residual=--=
ResnetOutput SizekTimekFreqSFreqkFilters
LogMelSpectrogram(125,229, 1)1-11
conv2d(125, 115, 64)77264
max pool(125,58, 64)1321
residual block(125,58,128)331128
residual block(125,57, 128)331128
residual block(125,29,256)332256
residual block(125,29,256)331256
residual block(125,29,256)331256
residual block(125,15,512)332512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,8, 1024)3321024
residual block(125, 8,1024)3311024
residual block(125,8, 1024)3311024
dense(125,1, 128)=1281
upsample time(1000, 1, 128)=
softplus and normalize(1000, 1, 128)
", + "type": "table", + "image_path": "c92111047211e6624c3c18178c25de728271a9d73876307e26e7198c28563b9e.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 137, + 217, + 476, + 325.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 137, + 325.6666666666667, + 476, + 434.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 137, + 434.33333333333337, + 476, + 543.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 551, + 505, + 640 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "Table 2: Model architecture for the f(t) encoder using a Resnet on log mel spectrograms. Spectro-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "grams have a frame size of 2048 and a hop size of 512, and are upsampled at the end to have the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "same time resoultion as other latents (4ms per a frame). All convolutions use “same” padding and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "a temporal stride of 1. Each residual block uses a bottleneck structure (He et al., 2016). The final", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "output is a normalized probablity distribution over 128 frequency values (logarithmically scaled be-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 606, + 501, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 133, + 619 + ], + "score": 1.0, + "content": "tween", + "type": "text" + }, + { + "bbox": [ + 134, + 606, + 160, + 617 + ], + "score": 0.64, + "content": "8 . 2 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 606, + 180, + 619 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 606, + 217, + 617 + ], + "score": 0.71, + "content": "1 3 . 3 \\mathrm { k H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 606, + 501, + 619 + ], + "score": 1.0, + "content": "(https://www.inspiredacoustics.com/en/MIDI_note", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 629 + ], + "score": 1.0, + "content": "numbers_and_center_frequencies)). The finally frequency value is the weighted sum of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 628, + 242, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 242, + 640 + ], + "score": 1.0, + "content": "each frequency by its probability.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + } + ], + "index": 14.75 + }, + { + "type": "title", + "bbox": [ + 107, + 656, + 176, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 177, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 177, + 669 + ], + "score": 1.0, + "content": "B.2 DECODER", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 260, + 690 + ], + "score": 1.0, + "content": "The decoder’s input is the latent tuple", + "type": "text" + }, + { + "bbox": [ + 260, + 677, + 326, + 689 + ], + "score": 0.91, + "content": "( f ( t ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "(250 timesteps). Its outputs are the parame-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "ters required by the synthesizers. For example, in the case of the harmonic synthesizer and filtered", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 288, + 711 + ], + "score": 1.0, + "content": "noise synthesizer setup, the decoder outputs", + "type": "text" + }, + { + "bbox": [ + 289, + 699, + 307, + 711 + ], + "score": 0.92, + "content": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "(amplitudes of the harmonics) for the harmonic", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 194, + 723 + ], + "score": 1.0, + "content": "synthesizer (note that", + "type": "text" + }, + { + "bbox": [ + 194, + 710, + 212, + 721 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 709, + 353, + 723 + ], + "score": 1.0, + "content": "is fed directly from the latent), and", + "type": "text" + }, + { + "bbox": [ + 353, + 710, + 365, + 720 + ], + "score": 0.8, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "(transfer function of the FIR filter)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 721, + 239, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 239, + 732 + ], + "score": 1.0, + "content": "for the filtered noise synthesizer.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 677, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 78, + 466, + 176 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 78, + 466, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 78, + 466, + 176 + ], + "spans": [ + { + "bbox": [ + 147, + 78, + 466, + 176 + ], + "score": 0.967, + "type": "image", + "image_path": "28fbf2379fdd01d9581cdab52dc4eb847082c1784e65dcbb804b6c4e60115aac.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 78, + 466, + 110.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 110.66666666666666, + 466, + 143.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 143.33333333333331, + 466, + 175.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 232, + 186, + 379, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 185, + 379, + 200 + ], + "spans": [ + { + "bbox": [ + 231, + 185, + 334, + 200 + ], + "score": 1.0, + "content": "Figure 8: Diagram of the", + "type": "text" + }, + { + "bbox": [ + 334, + 188, + 342, + 196 + ], + "score": 0.74, + "content": "_ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 185, + 379, + 200 + ], + "score": 1.0, + "content": "-encoder.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 105, + 219, + 504, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "score": 1.0, + "content": "As shown in Figure 9, we use a “shared-bottom” architecture, which computes a shared embedding", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 230, + 425, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 349, + 243 + ], + "score": 1.0, + "content": "from the latent tuple, and then have one head for each of the", + "type": "text" + }, + { + "bbox": [ + 349, + 230, + 390, + 243 + ], + "score": 0.93, + "content": "( \\pmb { a } ( t ) , \\pmb { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 230, + 425, + 243 + ], + "score": 1.0, + "content": "outputs.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 328, + 261 + ], + "score": 1.0, + "content": "In particular, we apply separate MLPs to each of the", + "type": "text" + }, + { + "bbox": [ + 329, + 247, + 394, + 259 + ], + "score": 0.92, + "content": "( f ( t ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 246, + 505, + 261 + ], + "score": 1.0, + "content": "input. The outputs of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "MLPs are concatenated and passed to a 512-unit GRU. We concatenate the GRU outputs with the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 164, + 282 + ], + "score": 1.0, + "content": "outputs of the", + "type": "text" + }, + { + "bbox": [ + 164, + 269, + 183, + 281 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 269, + 201, + 282 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 201, + 269, + 217, + 281 + ], + "score": 0.58, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "MLPs (in the channel dimenssion) and pass it through a final MLP and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 280, + 265, + 293 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 265, + 293 + ], + "score": 1.0, + "content": "Linear layer to get the decoder outputs.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "image", + "bbox": [ + 106, + 302, + 503, + 432 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 302, + 503, + 432 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 302, + 503, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 503, + 432 + ], + "score": 0.971, + "type": "image", + "image_path": "bbcebb94dbb9524aceff36f3d790224d20b0aa25c1c4063781359c32a7a78840.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 106, + 302, + 503, + 345.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 345.3333333333333, + 503, + 388.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 388.66666666666663, + 503, + 431.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 442, + 498, + 455 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 440, + 500, + 457 + ], + "spans": [ + { + "bbox": [ + 110, + 440, + 500, + 457 + ], + "score": 1.0, + "content": "Figure 9: Diagram of the decoder for the harmonic synthesizer and the filtered noise synthesizer.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "The MLP architecture, shown in Figure 10, is a standard MLP with a layer normalization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "(tf.contrib.layers.layer_norm ) before the RELU nonlinearity. In Figure 9, all the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 494, + 306, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 306, + 506 + ], + "score": 1.0, + "content": "MLPs have 3 layers and each layer has 512 units.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "image", + "bbox": [ + 110, + 517, + 500, + 635 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 517, + 500, + 635 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 110, + 517, + 500, + 635 + ], + "spans": [ + { + "bbox": [ + 110, + 517, + 500, + 635 + ], + "score": 0.965, + "type": "image", + "image_path": "1e46d3e88077e81097613373fcc5a8b27c7c453ce169bee2d1882e6fb619eebc.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 110, + 517, + 500, + 556.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 110, + 556.3333333333334, + 500, + 595.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 110, + 595.6666666666667, + 500, + 635.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 241, + 644, + 370, + 656 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 241, + 643, + 370, + 657 + ], + "spans": [ + { + "bbox": [ + 241, + 643, + 370, + 657 + ], + "score": 1.0, + "content": "Figure 10: MLP in the decoder.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + } + ], + "index": 19.0 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 178, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 178, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 178, + 690 + ], + "score": 1.0, + "content": "B.3 TRAINING", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Because all DDSP components are differentiable, the model is differentiable end-to-end. Therefore,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "we can apply any SGD optimizer to train the model. We used ADAM optimizer with learning rate", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 720, + 374, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 374, + 734 + ], + "score": 1.0, + "content": "0.001 and exponential learning rate decay 0.98 every 10,000 steps.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 78, + 466, + 176 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 78, + 466, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 78, + 466, + 176 + ], + "spans": [ + { + "bbox": [ + 147, + 78, + 466, + 176 + ], + "score": 0.967, + "type": "image", + "image_path": "28fbf2379fdd01d9581cdab52dc4eb847082c1784e65dcbb804b6c4e60115aac.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 78, + 466, + 110.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 110.66666666666666, + 466, + 143.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 143.33333333333331, + 466, + 175.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 232, + 186, + 379, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 185, + 379, + 200 + ], + "spans": [ + { + "bbox": [ + 231, + 185, + 334, + 200 + ], + "score": 1.0, + "content": "Figure 8: Diagram of the", + "type": "text" + }, + { + "bbox": [ + 334, + 188, + 342, + 196 + ], + "score": 0.74, + "content": "_ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 185, + 379, + 200 + ], + "score": 1.0, + "content": "-encoder.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 105, + 219, + 504, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 233 + ], + "score": 1.0, + "content": "As shown in Figure 9, we use a “shared-bottom” architecture, which computes a shared embedding", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 230, + 425, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 349, + 243 + ], + "score": 1.0, + "content": "from the latent tuple, and then have one head for each of the", + "type": "text" + }, + { + "bbox": [ + 349, + 230, + 390, + 243 + ], + "score": 0.93, + "content": "( \\pmb { a } ( t ) , \\pmb { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 230, + 425, + 243 + ], + "score": 1.0, + "content": "outputs.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 218, + 505, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 328, + 261 + ], + "score": 1.0, + "content": "In particular, we apply separate MLPs to each of the", + "type": "text" + }, + { + "bbox": [ + 329, + 247, + 394, + 259 + ], + "score": 0.92, + "content": "( f ( t ) , l ( t ) , z ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 246, + 505, + 261 + ], + "score": 1.0, + "content": "input. The outputs of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "MLPs are concatenated and passed to a 512-unit GRU. We concatenate the GRU outputs with the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 164, + 282 + ], + "score": 1.0, + "content": "outputs of the", + "type": "text" + }, + { + "bbox": [ + 164, + 269, + 183, + 281 + ], + "score": 0.92, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 269, + 201, + 282 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 201, + 269, + 217, + 281 + ], + "score": 0.58, + "content": "l ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "MLPs (in the channel dimenssion) and pass it through a final MLP and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 280, + 265, + 293 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 265, + 293 + ], + "score": 1.0, + "content": "Linear layer to get the decoder outputs.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 246, + 506, + 293 + ] + }, + { + "type": "image", + "bbox": [ + 106, + 302, + 503, + 432 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 302, + 503, + 432 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 302, + 503, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 503, + 432 + ], + "score": 0.971, + "type": "image", + "image_path": "bbcebb94dbb9524aceff36f3d790224d20b0aa25c1c4063781359c32a7a78840.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 106, + 302, + 503, + 345.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 345.3333333333333, + 503, + 388.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 388.66666666666663, + 503, + 431.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 442, + 498, + 455 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 440, + 500, + 457 + ], + "spans": [ + { + "bbox": [ + 110, + 440, + 500, + 457 + ], + "score": 1.0, + "content": "Figure 9: Diagram of the decoder for the harmonic synthesizer and the filtered noise synthesizer.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "The MLP architecture, shown in Figure 10, is a standard MLP with a layer normalization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "(tf.contrib.layers.layer_norm ) before the RELU nonlinearity. In Figure 9, all the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 494, + 306, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 306, + 506 + ], + "score": 1.0, + "content": "MLPs have 3 layers and each layer has 512 units.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 471, + 505, + 506 + ] + }, + { + "type": "image", + "bbox": [ + 110, + 517, + 500, + 635 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 517, + 500, + 635 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 110, + 517, + 500, + 635 + ], + "spans": [ + { + "bbox": [ + 110, + 517, + 500, + 635 + ], + "score": 0.965, + "type": "image", + "image_path": "1e46d3e88077e81097613373fcc5a8b27c7c453ce169bee2d1882e6fb619eebc.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 110, + 517, + 500, + 556.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 110, + 556.3333333333334, + 500, + 595.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 110, + 595.6666666666667, + 500, + 635.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 241, + 644, + 370, + 656 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 241, + 643, + 370, + 657 + ], + "spans": [ + { + "bbox": [ + 241, + 643, + 370, + 657 + ], + "score": 1.0, + "content": "Figure 10: MLP in the decoder.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + } + ], + "index": 19.0 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 178, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 178, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 178, + 690 + ], + "score": 1.0, + "content": "B.3 TRAINING", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Because all DDSP components are differentiable, the model is differentiable end-to-end. Therefore,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "we can apply any SGD optimizer to train the model. We used ADAM optimizer with learning rate", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 720, + 374, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 374, + 734 + ], + "score": 1.0, + "content": "0.001 and exponential learning rate decay 0.98 every 10,000 steps.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 698, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 213, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 215, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 215, + 95 + ], + "score": 1.0, + "content": "B.4 PERCEPTUAL LOSS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 103, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 330, + 116 + ], + "score": 1.0, + "content": "To help guide the DDSP autoencoder that must predict", + "type": "text" + }, + { + "bbox": [ + 331, + 103, + 349, + 115 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 102, + 505, + 116 + ], + "score": 1.0, + "content": "on the NSynth dataset, we also added", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "an additional perceptual loss using pretrained models, such as the CREPE (Kim et al., 2018) pitch", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 504, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 504, + 137 + ], + "score": 1.0, + "content": "estimator and the encoder of the WaveNet autoencoder (Engel et al., 2017). Compared to the L1", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "loss on the spectrogram, the activations of different layers in these models correlate better with the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 146, + 507, + 160 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 507, + 160 + ], + "score": 1.0, + "content": "perceptual quality of the audio. After a large-scale hyperparameter search, we obtained our best", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 170 + ], + "score": 1.0, + "content": "results by using the L1 distance between the activations of the small CREPE model’s fifth max pool", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 168, + 360, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 209, + 181 + ], + "score": 1.0, + "content": "layer with a weighting of", + "type": "text" + }, + { + "bbox": [ + 209, + 168, + 248, + 179 + ], + "score": 0.92, + "content": "5 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 169, + 360, + 181 + ], + "score": 1.0, + "content": "relative to the spectral loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 107, + 194, + 198, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 200, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 200, + 207 + ], + "score": 1.0, + "content": "B.5 SYNTHESIZERS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 229 + ], + "score": 1.0, + "content": "Harmonic synthesizer / Additive Synthesis: We use 101 harmonics in the harmonic synthesizer", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 127, + 240 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + }, + { + "bbox": [ + 127, + 227, + 145, + 239 + ], + "score": 0.9, + "content": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "’s dimension is 101). Amplitude and harmonic distribution parameters are upsampled with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "overlapping Hamming window envelopes whose frame size is 128 and hop size is 64. Initial phases", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "are all fixed to zero, as neither the spectrogram loss functions or human perception are sensitive", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "to absolute offsets in harmonic phase. We also do not include synthesis elements to model DC", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 456, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 456, + 284 + ], + "score": 1.0, + "content": "components to signals as they are inaudible and not reflected in the spectrogram losses.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "We force the amplitudes, harmonic distributions, and filtered noise magnitudes to be non-negative", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 297, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 312 + ], + "score": 1.0, + "content": "by applying a sigmoid nonlinearity to network outputs. We find a slight improvement in traning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "stability by modifying the sigmoid to have a scaled output, larger slope by exponentiating, and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 320, + 231, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 231, + 331 + ], + "score": 1.0, + "content": "threshold at a minimum value:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 336, + 376, + 351 + ], + "lines": [ + { + "bbox": [ + 235, + 336, + 376, + 351 + ], + "spans": [ + { + "bbox": [ + 235, + 336, + 376, + 351 + ], + "score": 0.91, + "content": "y = 2 . 0 \\cdot \\mathrm { s i g m o i d } ( x ) ^ { \\log 1 0 } + 1 0 ^ { - 7 }", + "type": "interline_equation", + "image_path": "95409b8633e035a724bc68d02ab2d1992b50edd4cb5bfa6097ab38f71d0db2b2.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 235, + 336, + 376, + 351 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 505, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "score": 1.0, + "content": "Filtered noise synthesizer: We use 65 network output channels as magnitude inputs to the FIR filter", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 375, + 235, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 235, + 387 + ], + "score": 1.0, + "content": "of the filtered noise synthesizer.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "table", + "bbox": [ + 165, + 426, + 445, + 525 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 401, + 225, + 412 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 399, + 226, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 226, + 414 + ], + "score": 1.0, + "content": "B.6 PARAMETER COUNTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "table_body", + "bbox": [ + 165, + 426, + 445, + 525 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 426, + 445, + 525 + ], + "spans": [ + { + "bbox": [ + 165, + 426, + 445, + 525 + ], + "score": 0.981, + "html": "
ModelParameters
WaveNet Autoencoder (Engel et al.,2017)75M
WaveRNN (Hantrakul et al., 2019)23M
GANSynth (Engel et al., 2019)15M
DDSP Autoencoder (Unsupervised)12M
DDSP Autoencoder (Supervised, NSynth)7M
DDSP Autoencoder (Supervised, Solo Violin)6M
DDSP Autoencoder Tiny (Supervised, Solo Violin)0.24M
", + "type": "table", + "image_path": "29b6ce19f9423b3e8f0838181814129dac7a88c32b963d6b698b95a0e570425f.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 165, + 426, + 445, + 459.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 165, + 459.0, + 445, + 492.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 165, + 492.0, + 445, + 525.0 + ], + "spans": [], + "index": 25 + } + ] + } + ], + "index": 23.0 + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "Table 3: Parameter counts for different models. All models trained on NSynth dataset except for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "score": 1.0, + "content": "those marked (Solo Violin). Autoregressive models have the most parameters with GANs requiring", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "less. The DDSP models examined in this paper (which have not been optimized at all for size)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "require 2 to 3 times less parameters than GANSynth. The unsupervised model has more parameters", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 231, + 594 + ], + "score": 1.0, + "content": "because of the CREPE (small)", + "type": "text" + }, + { + "bbox": [ + 231, + 581, + 250, + 594 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "encoder, and the autoencoder has additional parameters for the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 124, + 604 + ], + "score": 0.9, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "encoder. Initial experiments with extremely small models (single GRU, 256 units), have slightly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 603, + 492, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 492, + 615 + ], + "score": 1.0, + "content": "less realistic outputs, but still relatively high quality (as can be heard in the supplemental audio).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 107, + 641, + 241, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 640, + 243, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 243, + 657 + ], + "score": 1.0, + "content": "C EVALUATION DETAILS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 173, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 175, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 175, + 680 + ], + "score": 1.0, + "content": "C.1 METRICS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 150, + 700 + ], + "score": 1.0, + "content": "Loudness", + "type": "text" + }, + { + "bbox": [ + 150, + 688, + 163, + 699 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 688, + 473, + 700 + ], + "score": 1.0, + "content": "distance: The loudness vector is extracted from the synthesized audio and", + "type": "text" + }, + { + "bbox": [ + 473, + 689, + 486, + 699 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "dis-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "tance computed against the input’s conditioning loudness vector (ground truth). A better model will", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 167, + 723 + ], + "score": 1.0, + "content": "produce lower", + "type": "text" + }, + { + "bbox": [ + 167, + 710, + 180, + 721 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "distances, indicating input and generated loudness vectors closely match. Note", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 427, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 427, + 734 + ], + "score": 1.0, + "content": "this distance is not back-propagated through the network as a training objective.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 108, + 82, + 213, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 215, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 215, + 95 + ], + "score": 1.0, + "content": "B.4 PERCEPTUAL LOSS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 103, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 330, + 116 + ], + "score": 1.0, + "content": "To help guide the DDSP autoencoder that must predict", + "type": "text" + }, + { + "bbox": [ + 331, + 103, + 349, + 115 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 102, + 505, + 116 + ], + "score": 1.0, + "content": "on the NSynth dataset, we also added", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "an additional perceptual loss using pretrained models, such as the CREPE (Kim et al., 2018) pitch", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 504, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 504, + 137 + ], + "score": 1.0, + "content": "estimator and the encoder of the WaveNet autoencoder (Engel et al., 2017). Compared to the L1", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "loss on the spectrogram, the activations of different layers in these models correlate better with the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 146, + 507, + 160 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 507, + 160 + ], + "score": 1.0, + "content": "perceptual quality of the audio. After a large-scale hyperparameter search, we obtained our best", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 170 + ], + "score": 1.0, + "content": "results by using the L1 distance between the activations of the small CREPE model’s fifth max pool", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 168, + 360, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 209, + 181 + ], + "score": 1.0, + "content": "layer with a weighting of", + "type": "text" + }, + { + "bbox": [ + 209, + 168, + 248, + 179 + ], + "score": 0.92, + "content": "5 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 169, + 360, + 181 + ], + "score": 1.0, + "content": "relative to the spectral loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 102, + 507, + 181 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 194, + 198, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 200, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 200, + 207 + ], + "score": 1.0, + "content": "B.5 SYNTHESIZERS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 229 + ], + "score": 1.0, + "content": "Harmonic synthesizer / Additive Synthesis: We use 101 harmonics in the harmonic synthesizer", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 127, + 240 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + }, + { + "bbox": [ + 127, + 227, + 145, + 239 + ], + "score": 0.9, + "content": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "’s dimension is 101). Amplitude and harmonic distribution parameters are upsampled with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "overlapping Hamming window envelopes whose frame size is 128 and hop size is 64. Initial phases", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "are all fixed to zero, as neither the spectrogram loss functions or human perception are sensitive", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "to absolute offsets in harmonic phase. We also do not include synthesis elements to model DC", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 456, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 456, + 284 + ], + "score": 1.0, + "content": "components to signals as they are inaudible and not reflected in the spectrogram losses.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 215, + 506, + 284 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "We force the amplitudes, harmonic distributions, and filtered noise magnitudes to be non-negative", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 297, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 312 + ], + "score": 1.0, + "content": "by applying a sigmoid nonlinearity to network outputs. We find a slight improvement in traning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "stability by modifying the sigmoid to have a scaled output, larger slope by exponentiating, and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 320, + 231, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 231, + 331 + ], + "score": 1.0, + "content": "threshold at a minimum value:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 286, + 506, + 331 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 336, + 376, + 351 + ], + "lines": [ + { + "bbox": [ + 235, + 336, + 376, + 351 + ], + "spans": [ + { + "bbox": [ + 235, + 336, + 376, + 351 + ], + "score": 0.91, + "content": "y = 2 . 0 \\cdot \\mathrm { s i g m o i d } ( x ) ^ { \\log 1 0 } + 1 0 ^ { - 7 }", + "type": "interline_equation", + "image_path": "95409b8633e035a724bc68d02ab2d1992b50edd4cb5bfa6097ab38f71d0db2b2.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 235, + 336, + 376, + 351 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 505, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 377 + ], + "score": 1.0, + "content": "Filtered noise synthesizer: We use 65 network output channels as magnitude inputs to the FIR filter", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 375, + 235, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 235, + 387 + ], + "score": 1.0, + "content": "of the filtered noise synthesizer.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 362, + 506, + 387 + ] + }, + { + "type": "table", + "bbox": [ + 165, + 426, + 445, + 525 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 401, + 225, + 412 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 399, + 226, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 226, + 414 + ], + "score": 1.0, + "content": "B.6 PARAMETER COUNTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "table_body", + "bbox": [ + 165, + 426, + 445, + 525 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 426, + 445, + 525 + ], + "spans": [ + { + "bbox": [ + 165, + 426, + 445, + 525 + ], + "score": 0.981, + "html": "
ModelParameters
WaveNet Autoencoder (Engel et al.,2017)75M
WaveRNN (Hantrakul et al., 2019)23M
GANSynth (Engel et al., 2019)15M
DDSP Autoencoder (Unsupervised)12M
DDSP Autoencoder (Supervised, NSynth)7M
DDSP Autoencoder (Supervised, Solo Violin)6M
DDSP Autoencoder Tiny (Supervised, Solo Violin)0.24M
", + "type": "table", + "image_path": "29b6ce19f9423b3e8f0838181814129dac7a88c32b963d6b698b95a0e570425f.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 165, + 426, + 445, + 459.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 165, + 459.0, + 445, + 492.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 165, + 492.0, + 445, + 525.0 + ], + "spans": [], + "index": 25 + } + ] + } + ], + "index": 23.0 + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "Table 3: Parameter counts for different models. All models trained on NSynth dataset except for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "score": 1.0, + "content": "those marked (Solo Violin). Autoregressive models have the most parameters with GANs requiring", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "less. The DDSP models examined in this paper (which have not been optimized at all for size)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "require 2 to 3 times less parameters than GANSynth. The unsupervised model has more parameters", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 231, + 594 + ], + "score": 1.0, + "content": "because of the CREPE (small)", + "type": "text" + }, + { + "bbox": [ + 231, + 581, + 250, + 594 + ], + "score": 0.91, + "content": "f ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "encoder, and the autoencoder has additional parameters for the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 124, + 604 + ], + "score": 0.9, + "content": "z ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "encoder. Initial experiments with extremely small models (single GRU, 256 units), have slightly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 603, + 492, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 492, + 615 + ], + "score": 1.0, + "content": "less realistic outputs, but still relatively high quality (as can be heard in the supplemental audio).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 537, + 506, + 615 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 641, + 241, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 640, + 243, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 243, + 657 + ], + "score": 1.0, + "content": "C EVALUATION DETAILS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 173, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 175, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 175, + 680 + ], + "score": 1.0, + "content": "C.1 METRICS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 150, + 700 + ], + "score": 1.0, + "content": "Loudness", + "type": "text" + }, + { + "bbox": [ + 150, + 688, + 163, + 699 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 688, + 473, + 700 + ], + "score": 1.0, + "content": "distance: The loudness vector is extracted from the synthesized audio and", + "type": "text" + }, + { + "bbox": [ + 473, + 689, + 486, + 699 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "dis-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "tance computed against the input’s conditioning loudness vector (ground truth). A better model will", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 167, + 723 + ], + "score": 1.0, + "content": "produce lower", + "type": "text" + }, + { + "bbox": [ + 167, + 710, + 180, + 721 + ], + "score": 0.88, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "distances, indicating input and generated loudness vectors closely match. Note", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 427, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 427, + 734 + ], + "score": 1.0, + "content": "this distance is not back-propagated through the network as a training objective.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 688, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 119, + 96 + ], + "score": 1.0, + "content": "F0", + "type": "text" + }, + { + "bbox": [ + 120, + 83, + 132, + 93 + ], + "score": 0.83, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 82, + 192, + 96 + ], + "score": 1.0, + "content": "distance: The", + "type": "text" + }, + { + "bbox": [ + 193, + 83, + 218, + 93 + ], + "score": 0.74, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "distance is reported in MIDI space for easier interpretation; an average", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 132, + 104 + ], + "score": 0.45, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "of 1.0 corresponds to a semitone difference. We use the same confidence threshold of 0.85", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "in (Hantrakul et al., 2019) to select portions where there was detectable pitch content, and compute", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 228, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 228, + 127 + ], + "score": 1.0, + "content": "the metric only in these areas.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "F0 Outliers: Pitch tracking using CREPE, like any pitch tracker, is not completely reliable. In-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "stabilities in pitch tracking, such as sudden octave jumps at low volumes, can result errors not due", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "to model performance and need to be accounted for. F0 outliers accounts for pitch tracking imper-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "fections in CREPE (Kim et al., 2018) vs. genuinely bad samples generated by the trained model.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 188 + ], + "score": 1.0, + "content": "CREPE outputs both an F0 value as well as a F0 confidence. Samples with confidences below a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "threshold of 0.85 in (Hantrakul et al., 2019) are labeled as outliers and usually indicate the sample", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "was mostly noise with no pitch or harmonic component. As the model outputs better quality audio,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 423, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 423, + 220 + ], + "score": 1.0, + "content": "the number of outliers decrease, thus lower scores indicate better performance.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 108, + 232, + 245, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 246, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 246, + 245 + ], + "score": 1.0, + "content": "C.2 INTERPOLATION METRICS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 148, + 266 + ], + "score": 1.0, + "content": "Loudness", + "type": "text" + }, + { + "bbox": [ + 148, + 254, + 161, + 264 + ], + "score": 0.89, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 252, + 181, + 266 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 253, + 208, + 264 + ], + "score": 0.72, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "are shown for different interpolation tasks in table C.2. In reconstruc-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 503, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 295, + 277 + ], + "score": 1.0, + "content": "tion, the model is supplied with the standard", + "type": "text" + }, + { + "bbox": [ + 296, + 264, + 381, + 276 + ], + "score": 0.93, + "content": "( f ( t ) _ { A } , \\bar { l } ( t ) _ { A } , z ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 264, + 431, + 277 + ], + "score": 1.0, + "content": ". Loudness", + "type": "text" + }, + { + "bbox": [ + 432, + 264, + 450, + 275 + ], + "score": 0.84, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 264, + 486, + 277 + ], + "score": 1.0, + "content": "and F0", + "type": "text" + }, + { + "bbox": [ + 486, + 264, + 503, + 275 + ], + "score": 0.61, + "content": "( L _ { 1 } )", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "are computed against the ground truth inputs. In loudness interpolation, the model is supplied", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 128, + 298 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 129, + 285, + 215, + 298 + ], + "score": 0.93, + "content": "( f ( t ) _ { A } , l ( t ) _ { B } , z ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 285, + 281, + 298 + ], + "score": 1.0, + "content": ", and Loudness", + "type": "text" + }, + { + "bbox": [ + 281, + 286, + 300, + 297 + ], + "score": 0.87, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 285, + 382, + 298 + ], + "score": 1.0, + "content": "is calculated using", + "type": "text" + }, + { + "bbox": [ + 383, + 286, + 405, + 297 + ], + "score": 0.89, + "content": "l ( t ) _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "as ground truth instead", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 295, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 104, + 295, + 118, + 310 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 119, + 297, + 147, + 308 + ], + "score": 0.91, + "content": "( l ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 295, + 354, + 310 + ], + "score": 1.0, + "content": ". For F0 interpolation, the model is supplied with", + "type": "text" + }, + { + "bbox": [ + 355, + 297, + 441, + 309 + ], + "score": 0.91, + "content": "( f ( t ) _ { B } , l ( t ) _ { A } , z ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 295, + 476, + 310 + ], + "score": 1.0, + "content": "and F0", + "type": "text" + }, + { + "bbox": [ + 476, + 297, + 493, + 308 + ], + "score": 0.48, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 295, + 506, + 310 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 174, + 320 + ], + "score": 1.0, + "content": "calculated using", + "type": "text" + }, + { + "bbox": [ + 174, + 308, + 199, + 319 + ], + "score": 0.91, + "content": "f ( t ) _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 307, + 306, + 320 + ], + "score": 1.0, + "content": "as ground truth instead of", + "type": "text" + }, + { + "bbox": [ + 306, + 308, + 330, + 319 + ], + "score": 0.92, + "content": "f ( t ) _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 307, + 352, + 320 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 352, + 308, + 360, + 317 + ], + "score": 0.57, + "content": "\\textsf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "interpolation, the model is supplied", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 127, + 331 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 318, + 214, + 330 + ], + "score": 0.91, + "content": "( f ( t ) _ { A } , l ( t ) _ { A } , z ( t ) _ { B } )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 318, + 350, + 331 + ], + "score": 1.0, + "content": ". The low and constant Loudness", + "type": "text" + }, + { + "bbox": [ + 350, + 319, + 369, + 329 + ], + "score": 0.82, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 318, + 402, + 331 + ], + "score": 1.0, + "content": "and F0", + "type": "text" + }, + { + "bbox": [ + 402, + 319, + 420, + 330 + ], + "score": 0.64, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "metrics across these", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "interpolations indicate the model is able independently vary these variables without affecting other", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 341, + 159, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 159, + 353 + ], + "score": 1.0, + "content": "components.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17 + }, + { + "type": "table", + "bbox": [ + 198, + 362, + 412, + 425 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 198, + 362, + 412, + 425 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 198, + 362, + 412, + 425 + ], + "spans": [ + { + "bbox": [ + 198, + 362, + 412, + 425 + ], + "score": 0.978, + "html": "
TaskLoudness (L1)F0 (L1)
Reconstruction0.0420.060
Loudness l(t) interp.0.0610.060
FO f(t) interp.0.0480.070
Zz(t) interp.0.0630.065
", + "type": "table", + "image_path": "c95d4ee55979ba19b01ae62dfb5a5d8253c9951d7da9f72c9d3948df4ce205b9.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 362, + 412, + 377.75 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 198, + 377.75, + 412, + 393.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 198, + 393.5, + 412, + 409.25 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 198, + 409.25, + 412, + 425.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 172, + 437, + 438, + 450 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 171, + 435, + 439, + 452 + ], + "spans": [ + { + "bbox": [ + 171, + 435, + 439, + 452 + ], + "score": 1.0, + "content": "Table 4: Loudness and F0 metrics for different interpolation tasks.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 24.75 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 119, + 96 + ], + "score": 1.0, + "content": "F0", + "type": "text" + }, + { + "bbox": [ + 120, + 83, + 132, + 93 + ], + "score": 0.83, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 82, + 192, + 96 + ], + "score": 1.0, + "content": "distance: The", + "type": "text" + }, + { + "bbox": [ + 193, + 83, + 218, + 93 + ], + "score": 0.74, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "distance is reported in MIDI space for easier interpretation; an average", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 132, + 104 + ], + "score": 0.45, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "of 1.0 corresponds to a semitone difference. We use the same confidence threshold of 0.85", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "in (Hantrakul et al., 2019) to select portions where there was detectable pitch content, and compute", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 228, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 228, + 127 + ], + "score": 1.0, + "content": "the metric only in these areas.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "F0 Outliers: Pitch tracking using CREPE, like any pitch tracker, is not completely reliable. In-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "stabilities in pitch tracking, such as sudden octave jumps at low volumes, can result errors not due", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "to model performance and need to be accounted for. F0 outliers accounts for pitch tracking imper-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "fections in CREPE (Kim et al., 2018) vs. genuinely bad samples generated by the trained model.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 188 + ], + "score": 1.0, + "content": "CREPE outputs both an F0 value as well as a F0 confidence. Samples with confidences below a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "threshold of 0.85 in (Hantrakul et al., 2019) are labeled as outliers and usually indicate the sample", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "was mostly noise with no pitch or harmonic component. As the model outputs better quality audio,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 423, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 423, + 220 + ], + "score": 1.0, + "content": "the number of outliers decrease, thus lower scores indicate better performance.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 131, + 506, + 220 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 232, + 245, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 246, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 246, + 245 + ], + "score": 1.0, + "content": "C.2 INTERPOLATION METRICS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 148, + 266 + ], + "score": 1.0, + "content": "Loudness", + "type": "text" + }, + { + "bbox": [ + 148, + 254, + 161, + 264 + ], + "score": 0.89, + "content": "L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 252, + 181, + 266 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 181, + 253, + 208, + 264 + ], + "score": 0.72, + "content": "\\mathrm { F 0 ~ } L _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "are shown for different interpolation tasks in table C.2. In reconstruc-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 503, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 295, + 277 + ], + "score": 1.0, + "content": "tion, the model is supplied with the standard", + "type": "text" + }, + { + "bbox": [ + 296, + 264, + 381, + 276 + ], + "score": 0.93, + "content": "( f ( t ) _ { A } , \\bar { l } ( t ) _ { A } , z ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 264, + 431, + 277 + ], + "score": 1.0, + "content": ". Loudness", + "type": "text" + }, + { + "bbox": [ + 432, + 264, + 450, + 275 + ], + "score": 0.84, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 264, + 486, + 277 + ], + "score": 1.0, + "content": "and F0", + "type": "text" + }, + { + "bbox": [ + 486, + 264, + 503, + 275 + ], + "score": 0.61, + "content": "( L _ { 1 } )", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "are computed against the ground truth inputs. In loudness interpolation, the model is supplied", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 128, + 298 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 129, + 285, + 215, + 298 + ], + "score": 0.93, + "content": "( f ( t ) _ { A } , l ( t ) _ { B } , z ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 285, + 281, + 298 + ], + "score": 1.0, + "content": ", and Loudness", + "type": "text" + }, + { + "bbox": [ + 281, + 286, + 300, + 297 + ], + "score": 0.87, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 285, + 382, + 298 + ], + "score": 1.0, + "content": "is calculated using", + "type": "text" + }, + { + "bbox": [ + 383, + 286, + 405, + 297 + ], + "score": 0.89, + "content": "l ( t ) _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "as ground truth instead", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 295, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 104, + 295, + 118, + 310 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 119, + 297, + 147, + 308 + ], + "score": 0.91, + "content": "( l ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 295, + 354, + 310 + ], + "score": 1.0, + "content": ". For F0 interpolation, the model is supplied with", + "type": "text" + }, + { + "bbox": [ + 355, + 297, + 441, + 309 + ], + "score": 0.91, + "content": "( f ( t ) _ { B } , l ( t ) _ { A } , z ( t ) _ { A } )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 295, + 476, + 310 + ], + "score": 1.0, + "content": "and F0", + "type": "text" + }, + { + "bbox": [ + 476, + 297, + 493, + 308 + ], + "score": 0.48, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 295, + 506, + 310 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 174, + 320 + ], + "score": 1.0, + "content": "calculated using", + "type": "text" + }, + { + "bbox": [ + 174, + 308, + 199, + 319 + ], + "score": 0.91, + "content": "f ( t ) _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 307, + 306, + 320 + ], + "score": 1.0, + "content": "as ground truth instead of", + "type": "text" + }, + { + "bbox": [ + 306, + 308, + 330, + 319 + ], + "score": 0.92, + "content": "f ( t ) _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 307, + 352, + 320 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 352, + 308, + 360, + 317 + ], + "score": 0.57, + "content": "\\textsf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "interpolation, the model is supplied", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 127, + 331 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 318, + 214, + 330 + ], + "score": 0.91, + "content": "( f ( t ) _ { A } , l ( t ) _ { A } , z ( t ) _ { B } )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 318, + 350, + 331 + ], + "score": 1.0, + "content": ". The low and constant Loudness", + "type": "text" + }, + { + "bbox": [ + 350, + 319, + 369, + 329 + ], + "score": 0.82, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 318, + 402, + 331 + ], + "score": 1.0, + "content": "and F0", + "type": "text" + }, + { + "bbox": [ + 402, + 319, + 420, + 330 + ], + "score": 0.64, + "content": "( L _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "metrics across these", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "score": 1.0, + "content": "interpolations indicate the model is able independently vary these variables without affecting other", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 341, + 159, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 159, + 353 + ], + "score": 1.0, + "content": "components.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 252, + 506, + 353 + ] + }, + { + "type": "table", + "bbox": [ + 198, + 362, + 412, + 425 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 198, + 362, + 412, + 425 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 198, + 362, + 412, + 425 + ], + "spans": [ + { + "bbox": [ + 198, + 362, + 412, + 425 + ], + "score": 0.978, + "html": "
TaskLoudness (L1)F0 (L1)
Reconstruction0.0420.060
Loudness l(t) interp.0.0610.060
FO f(t) interp.0.0480.070
Zz(t) interp.0.0630.065
", + "type": "table", + "image_path": "c95d4ee55979ba19b01ae62dfb5a5d8253c9951d7da9f72c9d3948df4ce205b9.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 362, + 412, + 377.75 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 198, + 377.75, + 412, + 393.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 198, + 393.5, + 412, + 409.25 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 198, + 409.25, + 412, + 425.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 172, + 437, + 438, + 450 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 171, + 435, + 439, + 452 + ], + "spans": [ + { + "bbox": [ + 171, + 435, + 439, + 452 + ], + "score": 1.0, + "content": "Table 4: Loudness and F0 metrics for different interpolation tasks.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 24.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 201, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 203, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 203, + 96 + ], + "score": 1.0, + "content": "D OTHER NOTES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 106, + 226, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 227, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 227, + 118 + ], + "score": 1.0, + "content": "D.1 SINUSOIDAL MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 126, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "While unconstrained sinusoidal oscillator banks are strictly more expressive than harmonic oscil-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "lators, we restricted ourselves to harmonic synthesizers for the time being to focus the problem", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 160 + ], + "score": 1.0, + "content": "domain. However, this is not a fundamental limitation of the technique and perturbations such as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 491, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 491, + 171 + ], + "score": 1.0, + "content": "inharmonicity can also be incorporated to handle phenomena such as stiff strings (Smith, 2010).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 108, + 183, + 211, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 213, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 213, + 196 + ], + "score": 1.0, + "content": "D.2 REGULARIZATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "It is worth mentioning that the modular structure of the synthesizers also makes it possible to define", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 215, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 504, + 228 + ], + "score": 1.0, + "content": "additional losses in terms of different synthesizer outputs and parameters. For example, we may", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "impose an SNR loss to penalize outputs with too much noise if we know the training data consists", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "of mostly clean data. We have not experimented too much with such engineered losses, but we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "score": 1.0, + "content": "believe they can make training more efficient, even though such engineering methods deviates from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 258, + 243, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 243, + 271 + ], + "score": 1.0, + "content": "the end-to-end training paradigm,", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 301, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 201, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 203, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 203, + 96 + ], + "score": 1.0, + "content": "D OTHER NOTES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 106, + 226, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 227, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 227, + 118 + ], + "score": 1.0, + "content": "D.1 SINUSOIDAL MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 126, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "While unconstrained sinusoidal oscillator banks are strictly more expressive than harmonic oscil-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "lators, we restricted ourselves to harmonic synthesizers for the time being to focus the problem", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 160 + ], + "score": 1.0, + "content": "domain. However, this is not a fundamental limitation of the technique and perturbations such as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 491, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 491, + 171 + ], + "score": 1.0, + "content": "inharmonicity can also be incorporated to handle phenomena such as stiff strings (Smith, 2010).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 126, + 505, + 171 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 183, + 211, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 213, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 213, + 196 + ], + "score": 1.0, + "content": "D.2 REGULARIZATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "It is worth mentioning that the modular structure of the synthesizers also makes it possible to define", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 215, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 504, + 228 + ], + "score": 1.0, + "content": "additional losses in terms of different synthesizer outputs and parameters. For example, we may", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "impose an SNR loss to penalize outputs with too much noise if we know the training data consists", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "of mostly clean data. We have not experimented too much with such engineered losses, but we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "score": 1.0, + "content": "believe they can make training more efficient, even though such engineering methods deviates from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 258, + 243, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 243, + 271 + ], + "score": 1.0, + "content": "the end-to-end training paradigm,", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 204, + 505, + 271 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/B1x1ma4tDr/B1x1ma4tDr_model.json b/parse/train/B1x1ma4tDr/B1x1ma4tDr_model.json new file mode 100644 index 0000000000000000000000000000000000000000..1f9441058e262cbf403f822d9e065fb5fb7a93b4 --- /dev/null +++ b/parse/train/B1x1ma4tDr/B1x1ma4tDr_model.json @@ -0,0 +1,20087 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 644, + 1302, + 644, + 1302, + 1278, + 398, + 1278 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1400, + 1404, + 1400, + 1404, + 1734, + 298, + 1734 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1749, + 1402, + 1749, + 1402, + 1902, + 298, + 1902 + ], + "score": 0.969 + }, + { + "category_id": 0, + "poly": [ + 299, + 218, + 1287, + 218, + 1287, + 325, + 299, + 325 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 296, + 1922, + 1021, + 1922, + 1021, + 2034, + 296, + 2034 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 302, + 1333, + 573, + 1333, + 573, + 1368, + 302, + 1368 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 773, + 578, + 927, + 578, + 927, + 612, + 773, + 612 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.69 + }, + { + "category_id": 1, + "poly": [ + 315, + 374, + 1085, + 374, + 1085, + 408, + 315, + 408 + ], + "score": 0.654 + }, + { + "category_id": 1, + "poly": [ + 317, + 410, + 998, + 410, + 998, + 498, + 317, + 498 + ], + "score": 0.648 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 215.0, + 455.0, + 215.0, + 455.0, + 269.0, + 292.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 271.0, + 1293.0, + 271.0, + 1293.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1919.0, + 533.0, + 1919.0, + 533.0, + 1953.0, + 332.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1948.0, + 835.0, + 1948.0, + 835.0, + 1984.0, + 295.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1024.0, + 1975.0, + 1024.0, + 2011.0, + 295.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 925.0, + 2003.0, + 925.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1330.0, + 579.0, + 1330.0, + 579.0, + 1377.0, + 294.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 577.0, + 932.0, + 577.0, + 932.0, + 615.0, + 770.0, + 615.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, + 2088.0, + 861.0, + 2088.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 644.0, + 1306.0, + 644.0, + 1306.0, + 678.0, + 393.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 674.0, + 1305.0, + 674.0, + 1305.0, + 710.0, + 394.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 706.0, + 1306.0, + 706.0, + 1306.0, + 741.0, + 393.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 736.0, + 1305.0, + 736.0, + 1305.0, + 770.0, + 394.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 766.0, + 1306.0, + 766.0, + 1306.0, + 801.0, + 392.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 795.0, + 1306.0, + 795.0, + 1306.0, + 831.0, + 393.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 824.0, + 1307.0, + 824.0, + 1307.0, + 862.0, + 392.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 855.0, + 1305.0, + 855.0, + 1305.0, + 890.0, + 394.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 886.0, + 1305.0, + 886.0, + 1305.0, + 922.0, + 393.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 917.0, + 1306.0, + 917.0, + 1306.0, + 953.0, + 394.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 942.0, + 1306.0, + 942.0, + 1306.0, + 985.0, + 392.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 975.0, + 1306.0, + 975.0, + 1306.0, + 1013.0, + 393.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1007.0, + 1305.0, + 1007.0, + 1305.0, + 1041.0, + 392.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1038.0, + 1305.0, + 1038.0, + 1305.0, + 1069.0, + 393.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1068.0, + 1306.0, + 1068.0, + 1306.0, + 1101.0, + 394.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1099.0, + 1306.0, + 1099.0, + 1306.0, + 1129.0, + 393.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1129.0, + 1305.0, + 1129.0, + 1305.0, + 1159.0, + 393.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1158.0, + 1306.0, + 1158.0, + 1306.0, + 1192.0, + 392.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1186.0, + 1305.0, + 1186.0, + 1305.0, + 1225.0, + 391.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1216.0, + 1305.0, + 1216.0, + 1305.0, + 1254.0, + 391.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1250.0, + 627.0, + 1250.0, + 627.0, + 1283.0, + 394.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1399.0, + 1404.0, + 1399.0, + 1404.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1430.0, + 1405.0, + 1430.0, + 1405.0, + 1467.0, + 293.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 1405.0, + 1460.0, + 1405.0, + 1496.0, + 293.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1493.0, + 1406.0, + 1493.0, + 1406.0, + 1528.0, + 294.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1524.0, + 1404.0, + 1524.0, + 1404.0, + 1555.0, + 296.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1585.0, + 292.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1583.0, + 1404.0, + 1583.0, + 1404.0, + 1616.0, + 293.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1610.0, + 1405.0, + 1610.0, + 1405.0, + 1651.0, + 291.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1642.0, + 1404.0, + 1642.0, + 1404.0, + 1677.0, + 294.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1672.0, + 1405.0, + 1672.0, + 1405.0, + 1710.0, + 293.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1703.0, + 413.0, + 1703.0, + 413.0, + 1738.0, + 292.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 1404.0, + 1746.0, + 1404.0, + 1786.0, + 294.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1774.0, + 1406.0, + 1774.0, + 1406.0, + 1819.0, + 291.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1807.0, + 1406.0, + 1807.0, + 1406.0, + 1848.0, + 292.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1839.0, + 1406.0, + 1839.0, + 1406.0, + 1877.0, + 292.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1869.0, + 1407.0, + 1869.0, + 1407.0, + 1909.0, + 292.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 374.0, + 1089.0, + 374.0, + 1089.0, + 413.0, + 309.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 407.0, + 653.0, + 407.0, + 653.0, + 438.0, + 314.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 435.0, + 688.0, + 435.0, + 688.0, + 466.0, + 311.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 466.0, + 997.0, + 466.0, + 997.0, + 502.0, + 314.0, + 502.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 900, + 1405, + 900, + 1405, + 1264, + 297, + 1264 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 414, + 1404, + 414, + 1404, + 688, + 298, + 688 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 703, + 1404, + 703, + 1404, + 886, + 298, + 886 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1714, + 1403, + 1714, + 1403, + 1897, + 298, + 1897 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1913, + 1401, + 1913, + 1401, + 2034, + 299, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 297, + 1290, + 1405, + 1290, + 1405, + 1588, + 297, + 1588 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1401, + 229, + 1401, + 322, + 299, + 322 + ], + "score": 0.958 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 4, + "poly": [ + 358, + 1604, + 1338, + 1604, + 1338, + 1637, + 358, + 1637 + ], + "score": 0.884 + }, + { + "category_id": 0, + "poly": [ + 300, + 358, + 906, + 358, + 906, + 389, + 300, + 389 + ], + "score": 0.821 + }, + { + "category_id": 0, + "poly": [ + 300, + 1658, + 632, + 1658, + 632, + 1689, + 300, + 1689 + ], + "score": 0.743 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.709 + }, + { + "category_id": 1, + "poly": [ + 300, + 1658, + 632, + 1658, + 632, + 1689, + 300, + 1689 + ], + "score": 0.161 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.121 + }, + { + "category_id": 13, + "poly": [ + 1205, + 1533, + 1232, + 1533, + 1232, + 1557, + 1205, + 1557 + ], + "score": 0.45, + "latex": "\\ ! =" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1305.0, + 984.0, + 1305.0, + 984.0, + 1476.0, + 716.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1308.0, + 1379.0, + 1308.0, + 1379.0, + 1360.0, + 1213.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1377.0, + 859.0, + 1377.0, + 859.0, + 1386.0, + 838.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1382.0, + 884.0, + 1382.0, + 884.0, + 1395.0, + 875.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1399.0, + 927.0, + 1399.0, + 927.0, + 1417.0, + 898.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1499.0, + 588.0, + 1499.0, + 588.0, + 1534.0, + 363.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1499.0, + 977.0, + 1499.0, + 977.0, + 1534.0, + 720.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1500.0, + 1307.0, + 1500.0, + 1307.0, + 1532.0, + 1137.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1527.0, + 573.0, + 1527.0, + 573.0, + 1566.0, + 377.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1530.0, + 944.0, + 1530.0, + 944.0, + 1565.0, + 752.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1531.0, + 1204.0, + 1531.0, + 1204.0, + 1562.0, + 1090.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1531.0, + 1354.0, + 1531.0, + 1354.0, + 1562.0, + 1233.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1558.0, + 554.0, + 1558.0, + 554.0, + 1587.0, + 395.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1558.0, + 944.0, + 1558.0, + 944.0, + 1589.0, + 750.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1557.0, + 1327.0, + 1557.0, + 1327.0, + 1588.0, + 1117.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.25, + 1355.0, + 899.25, + 1355.0, + 899.25, + 1414.0, + 801.25, + 1414.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": [ + 356.0, + 1602.0, + 1343.0, + 1602.0, + 1343.0, + 1641.0, + 356.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 354.0, + 910.0, + 354.0, + 910.0, + 394.0, + 294.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1655.0, + 634.0, + 1655.0, + 634.0, + 1694.0, + 296.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 901.0, + 1403.0, + 901.0, + 1403.0, + 935.0, + 295.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 930.0, + 1405.0, + 930.0, + 1405.0, + 966.0, + 294.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 962.0, + 1405.0, + 962.0, + 1405.0, + 996.0, + 294.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 991.0, + 1405.0, + 991.0, + 1405.0, + 1029.0, + 292.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1022.0, + 1403.0, + 1022.0, + 1403.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1051.0, + 1405.0, + 1051.0, + 1405.0, + 1087.0, + 292.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1081.0, + 1405.0, + 1081.0, + 1405.0, + 1117.0, + 294.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1111.0, + 1405.0, + 1111.0, + 1405.0, + 1145.0, + 294.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1140.0, + 1407.0, + 1140.0, + 1407.0, + 1176.0, + 292.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1170.0, + 1408.0, + 1170.0, + 1408.0, + 1208.0, + 294.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1237.0, + 294.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1234.0, + 607.0, + 1234.0, + 607.0, + 1266.0, + 292.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 413.0, + 1405.0, + 413.0, + 1405.0, + 451.0, + 295.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 444.0, + 1406.0, + 444.0, + 1406.0, + 482.0, + 293.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 476.0, + 1405.0, + 476.0, + 1405.0, + 512.0, + 293.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 506.0, + 1404.0, + 506.0, + 1404.0, + 542.0, + 294.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 538.0, + 1402.0, + 538.0, + 1402.0, + 570.0, + 296.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 564.0, + 1404.0, + 564.0, + 1404.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 598.0, + 1404.0, + 598.0, + 1404.0, + 630.0, + 296.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 628.0, + 1404.0, + 628.0, + 1404.0, + 660.0, + 296.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 656.0, + 1061.0, + 656.0, + 1061.0, + 693.0, + 294.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 736.0, + 294.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 1408.0, + 731.0, + 1408.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 760.0, + 1408.0, + 760.0, + 1408.0, + 802.0, + 291.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 793.0, + 1408.0, + 793.0, + 1408.0, + 829.0, + 294.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 824.0, + 1405.0, + 824.0, + 1405.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 854.0, + 742.0, + 854.0, + 742.0, + 889.0, + 293.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1715.0, + 1404.0, + 1715.0, + 1404.0, + 1750.0, + 294.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1741.0, + 1403.0, + 1741.0, + 1403.0, + 1785.0, + 292.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1775.0, + 1405.0, + 1775.0, + 1405.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1806.0, + 1405.0, + 1806.0, + 1405.0, + 1841.0, + 294.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1837.0, + 1405.0, + 1837.0, + 1405.0, + 1869.0, + 293.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1866.0, + 799.0, + 1866.0, + 799.0, + 1902.0, + 296.0, + 1902.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, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1403.0, + 1975.0, + 1403.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2005.0, + 1405.0, + 2005.0, + 1405.0, + 2037.0, + 297.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1402.0, + 228.0, + 1402.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 290.0, + 428.0, + 290.0, + 428.0, + 326.0, + 291.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1655.0, + 634.0, + 1655.0, + 634.0, + 1694.0, + 296.0, + 1694.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1545, + 1404, + 1545, + 1404, + 1789, + 298, + 1789 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1090, + 1404, + 1090, + 1404, + 1335, + 298, + 1335 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1349, + 1403, + 1349, + 1403, + 1532, + 298, + 1532 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 370, + 653, + 1321, + 653, + 1321, + 877, + 370, + 877 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 392, + 1403, + 392, + 1403, + 515, + 298, + 515 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 529, + 1399, + 529, + 1399, + 621, + 300, + 621 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 297, + 908, + 1402, + 908, + 1402, + 971, + 297, + 971 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1401, + 229, + 1401, + 292, + 296, + 292 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1400, + 1911, + 1400, + 1973, + 299, + 1973 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 300, + 1018, + 588, + 1018, + 588, + 1054, + 300, + 1054 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 333, + 2006, + 750, + 2006, + 750, + 2034, + 333, + 2034 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 1836, + 653, + 1836, + 653, + 1874, + 300, + 1874 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 300, + 334, + 567, + 334, + 567, + 365, + 300, + 365 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.645 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.449 + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1015.0, + 594.0, + 1015.0, + 594.0, + 1062.0, + 290.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1999.0, + 754.0, + 1999.0, + 754.0, + 2041.0, + 329.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1833.0, + 657.0, + 1833.0, + 657.0, + 1880.0, + 291.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 331.0, + 571.0, + 331.0, + 571.0, + 369.0, + 295.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1545.0, + 1404.0, + 1545.0, + 1404.0, + 1581.0, + 293.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1576.0, + 1402.0, + 1576.0, + 1402.0, + 1610.0, + 294.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1608.0, + 1404.0, + 1608.0, + 1404.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1640.0, + 1404.0, + 1640.0, + 1404.0, + 1669.0, + 294.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1665.0, + 1404.0, + 1665.0, + 1404.0, + 1705.0, + 292.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 1404.0, + 1698.0, + 1404.0, + 1731.0, + 294.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1724.0, + 1405.0, + 1724.0, + 1405.0, + 1766.0, + 292.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1760.0, + 1156.0, + 1760.0, + 1156.0, + 1790.0, + 296.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1089.0, + 1404.0, + 1089.0, + 1404.0, + 1126.0, + 295.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1120.0, + 1404.0, + 1120.0, + 1404.0, + 1156.0, + 293.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1149.0, + 1404.0, + 1149.0, + 1404.0, + 1187.0, + 295.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1181.0, + 1405.0, + 1181.0, + 1405.0, + 1218.0, + 294.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1209.0, + 1405.0, + 1209.0, + 1405.0, + 1251.0, + 292.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1276.0, + 294.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1272.0, + 1405.0, + 1272.0, + 1405.0, + 1306.0, + 294.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 1402.0, + 1304.0, + 1402.0, + 1337.0, + 294.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1348.0, + 1405.0, + 1348.0, + 1405.0, + 1384.0, + 296.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1407.0, + 1379.0, + 1407.0, + 1414.0, + 294.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1405.0, + 1405.0, + 1405.0, + 1405.0, + 1444.0, + 292.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1435.0, + 1407.0, + 1435.0, + 1407.0, + 1476.0, + 292.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1467.0, + 1408.0, + 1467.0, + 1408.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 921.0, + 1497.0, + 921.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 656.0, + 1085.0, + 656.0, + 1085.0, + 687.0, + 367.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 690.0, + 1044.0, + 690.0, + 1044.0, + 729.0, + 366.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 729.0, + 1262.0, + 729.0, + 1262.0, + 765.0, + 373.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 777.0, + 388.0, + 777.0, + 388.0, + 792.0, + 373.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 767.0, + 1050.0, + 767.0, + 1050.0, + 801.0, + 390.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 804.0, + 1323.0, + 804.0, + 1323.0, + 842.0, + 365.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 841.0, + 1062.0, + 841.0, + 1062.0, + 880.0, + 365.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 394.0, + 1405.0, + 394.0, + 1405.0, + 427.0, + 293.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 422.0, + 1405.0, + 422.0, + 1405.0, + 457.0, + 293.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 455.0, + 1405.0, + 455.0, + 1405.0, + 488.0, + 292.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 483.0, + 859.0, + 483.0, + 859.0, + 521.0, + 292.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 527.0, + 1403.0, + 527.0, + 1403.0, + 567.0, + 294.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 561.0, + 1402.0, + 561.0, + 1402.0, + 594.0, + 295.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 591.0, + 630.0, + 591.0, + 630.0, + 624.0, + 296.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 903.0, + 1406.0, + 903.0, + 1406.0, + 946.0, + 292.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 936.0, + 1079.0, + 936.0, + 1079.0, + 976.0, + 293.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 854.0, + 261.0, + 854.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1909.0, + 1401.0, + 1909.0, + 1401.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1976.0, + 297.0, + 1976.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 385, + 1404, + 385, + 1404, + 599, + 298, + 599 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1578, + 1403, + 1578, + 1403, + 1740, + 298, + 1740 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 613, + 1403, + 613, + 1403, + 888, + 298, + 888 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1391, + 1402, + 1391, + 1402, + 1515, + 298, + 1515 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1831, + 1402, + 1831, + 1402, + 1955, + 298, + 1955 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 669, + 1248, + 1031, + 1248, + 1031, + 1334, + 669, + 1334 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 672, + 1060, + 1025, + 1060, + 1025, + 1151, + 672, + 1151 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 295, + 1166, + 1403, + 1166, + 1403, + 1230, + 295, + 1230 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1401, + 229, + 1401, + 292, + 296, + 292 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 979, + 1405, + 979, + 1405, + 1042, + 297, + 1042 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 728, + 1528, + 970, + 1528, + 970, + 1567, + 728, + 1567 + ], + "score": 0.938 + }, + { + "category_id": 2, + "poly": [ + 296, + 1978, + 1403, + 1978, + 1403, + 2034, + 296, + 2034 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 300, + 1345, + 1097, + 1345, + 1097, + 1379, + 300, + 1379 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 298, + 922, + 980, + 922, + 980, + 955, + 298, + 955 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 301, + 328, + 773, + 328, + 773, + 360, + 301, + 360 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 299, + 1775, + 509, + 1775, + 509, + 1807, + 299, + 1807 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1090, + 1400, + 1090, + 1400, + 1120, + 1366, + 1120 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1271, + 1400, + 1271, + 1400, + 1301, + 1366, + 1301 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1533, + 1399, + 1533, + 1399, + 1562, + 1366, + 1562 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.782 + }, + { + "category_id": 14, + "poly": [ + 668, + 1243, + 1029, + 1243, + 1029, + 1335, + 668, + 1335 + ], + "score": 0.95, + "latex": "\\phi _ { k } ( n ) = 2 \\pi \\sum _ { m = 0 } ^ { n } f _ { k } ( m ) + \\phi _ { 0 , k } ," + }, + { + "category_id": 14, + "poly": [ + 674, + 1056, + 1023, + 1056, + 1023, + 1153, + 674, + 1153 + ], + "score": 0.95, + "latex": "x ( n ) = \\sum _ { k = 1 } ^ { K } A _ { k } ( n ) \\sin ( \\phi _ { k } ( n ) ) ," + }, + { + "category_id": 13, + "poly": [ + 1068, + 1615, + 1187, + 1615, + 1187, + 1650, + 1068, + 1650 + ], + "score": 0.94, + "latex": "c _ { k } ( n ) \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 627, + 1422, + 809, + 1422, + 809, + 1456, + 627, + 1456 + ], + "score": 0.93, + "latex": "f _ { k } ( n ) = k f _ { 0 } ( n )" + }, + { + "category_id": 14, + "poly": [ + 727, + 1528, + 973, + 1528, + 973, + 1566, + 727, + 1566 + ], + "score": 0.93, + "latex": "A _ { k } ( n ) = A ( n ) c _ { k } ( n ) ." + }, + { + "category_id": 13, + "poly": [ + 1227, + 1167, + 1298, + 1167, + 1298, + 1201, + 1227, + 1201 + ], + "score": 0.93, + "latex": "\\phi _ { k } ( n )" + }, + { + "category_id": 13, + "poly": [ + 632, + 1198, + 702, + 1198, + 702, + 1231, + 632, + 1231 + ], + "score": 0.93, + "latex": "\\phi _ { k } ( n )" + }, + { + "category_id": 13, + "poly": [ + 824, + 1610, + 1017, + 1610, + 1017, + 1651, + 824, + 1651 + ], + "score": 0.93, + "latex": "\\textstyle \\sum _ { k = 0 } ^ { K } c _ { k } ( n ) = 1" + }, + { + "category_id": 13, + "poly": [ + 956, + 1453, + 1022, + 1453, + 1022, + 1487, + 956, + 1487 + ], + "score": 0.93, + "latex": "f _ { 0 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 374, + 1168, + 449, + 1168, + 449, + 1200, + 374, + 1200 + ], + "score": 0.93, + "latex": "A _ { k } ( n )" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1453, + 1393, + 1453, + 1393, + 1487, + 1318, + 1487 + ], + "score": 0.92, + "latex": "A _ { k } ( n )" + }, + { + "category_id": 13, + "poly": [ + 555, + 1579, + 616, + 1579, + 616, + 1613, + 555, + 1613 + ], + "score": 0.92, + "latex": "A ( n )" + }, + { + "category_id": 13, + "poly": [ + 648, + 1011, + 703, + 1011, + 703, + 1044, + 648, + 1044 + ], + "score": 0.92, + "latex": "x ( n )" + }, + { + "category_id": 13, + "poly": [ + 1311, + 1198, + 1379, + 1198, + 1379, + 1231, + 1311, + 1231 + ], + "score": 0.92, + "latex": "f _ { k } ( n )" + }, + { + "category_id": 13, + "poly": [ + 501, + 1422, + 567, + 1422, + 567, + 1456, + 501, + 1456 + ], + "score": 0.92, + "latex": "f _ { 0 } ( n )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1348, + 422, + 1348, + 422, + 1381, + 372, + 1381 + ], + "score": 0.91, + "latex": "\\phi _ { 0 , k }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1616, + 350, + 1616, + 350, + 1649, + 298, + 1649 + ], + "score": 0.91, + "latex": "c ( n )" + }, + { + "category_id": 13, + "poly": [ + 1272, + 735, + 1333, + 735, + 1333, + 764, + 1272, + 764 + ], + "score": 0.85, + "latex": "{ \\sim } 2 . 5" + }, + { + "category_id": 13, + "poly": [ + 1213, + 766, + 1271, + 766, + 1271, + 794, + 1213, + 794 + ], + "score": 0.84, + "latex": "+ ~ 6 5" + }, + { + "category_id": 13, + "poly": [ + 871, + 1169, + 889, + 1169, + 889, + 1195, + 871, + 1195 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1012, + 765, + 1085, + 765, + 1085, + 794, + 1012, + 794 + ], + "score": 0.83, + "latex": "+ ~ 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 635, + 795, + 755, + 795, + 755, + 824, + 635, + 824 + ], + "score": 0.8, + "latex": "= 1 6 5 { , } 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 441, + 795, + 522, + 795, + 522, + 824, + 441, + 824 + ], + "score": 0.79, + "latex": "\\ast 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 982, + 1018, + 1001, + 1018, + 1001, + 1038, + 982, + 1038 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 298, + 735, + 376, + 735, + 376, + 764, + 298, + 764 + ], + "score": 0.42, + "latex": "1 6 \\mathrm { k H z }" + }, + { + "category_id": 13, + "poly": [ + 665, + 925, + 679, + 925, + 679, + 952, + 665, + 952 + ], + "score": 0.31, + "latex": "/" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2011.0, + 328.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1179.0, + 2004.0, + 1179.0, + 2034.0, + 295.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 921.0, + 664.0, + 921.0, + 664.0, + 957.0, + 295.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 921.0, + 983.0, + 921.0, + 983.0, + 957.0, + 680.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 328.0, + 777.0, + 328.0, + 777.0, + 364.0, + 295.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 514.0, + 1772.0, + 514.0, + 1811.0, + 294.0, + 1811.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, + 382.0, + 1405.0, + 382.0, + 1405.0, + 425.0, + 291.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 416.0, + 1404.0, + 416.0, + 1404.0, + 450.0, + 296.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 449.0, + 1402.0, + 449.0, + 1402.0, + 480.0, + 296.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 475.0, + 1404.0, + 475.0, + 1404.0, + 512.0, + 295.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 503.0, + 1405.0, + 503.0, + 1405.0, + 544.0, + 292.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 539.0, + 1405.0, + 539.0, + 1405.0, + 572.0, + 292.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 568.0, + 980.0, + 568.0, + 980.0, + 602.0, + 293.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1577.0, + 554.0, + 1577.0, + 554.0, + 1614.0, + 293.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1577.0, + 1405.0, + 1577.0, + 1405.0, + 1614.0, + 617.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1609.0, + 297.0, + 1609.0, + 297.0, + 1660.0, + 292.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1609.0, + 823.0, + 1609.0, + 823.0, + 1660.0, + 351.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1609.0, + 1067.0, + 1609.0, + 1067.0, + 1660.0, + 1018.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1609.0, + 1409.0, + 1609.0, + 1409.0, + 1660.0, + 1188.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1645.0, + 1403.0, + 1645.0, + 1403.0, + 1679.0, + 294.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1675.0, + 1405.0, + 1675.0, + 1405.0, + 1712.0, + 293.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1704.0, + 1037.0, + 1704.0, + 1037.0, + 1744.0, + 293.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 614.0, + 1405.0, + 614.0, + 1405.0, + 650.0, + 294.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 645.0, + 1404.0, + 645.0, + 1404.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 674.0, + 1408.0, + 674.0, + 1408.0, + 711.0, + 292.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 702.0, + 1408.0, + 702.0, + 1408.0, + 740.0, + 292.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 734.0, + 297.0, + 734.0, + 297.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 734.0, + 1271.0, + 734.0, + 1271.0, + 769.0, + 377.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 734.0, + 1405.0, + 734.0, + 1405.0, + 769.0, + 1334.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 765.0, + 1011.0, + 765.0, + 1011.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 765.0, + 1212.0, + 765.0, + 1212.0, + 797.0, + 1086.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 765.0, + 1404.0, + 765.0, + 1404.0, + 797.0, + 1272.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 793.0, + 440.0, + 793.0, + 440.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 793.0, + 634.0, + 793.0, + 634.0, + 830.0, + 523.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 793.0, + 1405.0, + 793.0, + 1405.0, + 830.0, + 756.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 1405.0, + 823.0, + 1405.0, + 860.0, + 294.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 859.0, + 526.0, + 859.0, + 526.0, + 887.0, + 293.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1402.0, + 1392.0, + 1402.0, + 1425.0, + 294.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1422.0, + 500.0, + 1422.0, + 500.0, + 1456.0, + 292.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1422.0, + 626.0, + 1422.0, + 626.0, + 1456.0, + 568.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1422.0, + 1406.0, + 1422.0, + 1406.0, + 1456.0, + 810.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1453.0, + 955.0, + 1453.0, + 955.0, + 1489.0, + 292.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1453.0, + 1317.0, + 1453.0, + 1317.0, + 1489.0, + 1023.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1453.0, + 1404.0, + 1453.0, + 1404.0, + 1489.0, + 1394.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1485.0, + 1051.0, + 1485.0, + 1051.0, + 1517.0, + 296.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1830.0, + 1404.0, + 1830.0, + 1404.0, + 1867.0, + 294.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1863.0, + 1404.0, + 1863.0, + 1404.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1894.0, + 1404.0, + 1894.0, + 1404.0, + 1927.0, + 294.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1925.0, + 1406.0, + 1925.0, + 1406.0, + 1957.0, + 296.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1166.0, + 373.0, + 1166.0, + 373.0, + 1202.0, + 295.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1166.0, + 870.0, + 1166.0, + 870.0, + 1202.0, + 450.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1166.0, + 1226.0, + 1166.0, + 1226.0, + 1202.0, + 890.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1166.0, + 1403.0, + 1166.0, + 1403.0, + 1202.0, + 1299.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1194.0, + 631.0, + 1194.0, + 631.0, + 1235.0, + 292.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1194.0, + 1310.0, + 1194.0, + 1310.0, + 1235.0, + 703.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1194.0, + 1394.0, + 1194.0, + 1394.0, + 1235.0, + 1380.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 1401.0, + 257.0, + 1401.0, + 295.0, + 292.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1013.0, + 295.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1011.0, + 647.0, + 1011.0, + 647.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1011.0, + 981.0, + 1011.0, + 981.0, + 1045.0, + 704.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1011.0, + 1242.0, + 1011.0, + 1242.0, + 1045.0, + 1002.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1343.0, + 371.0, + 1343.0, + 371.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1343.0, + 1098.0, + 1343.0, + 1098.0, + 1382.0, + 423.0, + 1382.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 717, + 1403, + 717, + 1403, + 931, + 298, + 931 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1523, + 1404, + 1523, + 1404, + 1738, + 298, + 1738 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 946, + 1404, + 946, + 1404, + 1128, + 299, + 1128 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1250, + 1404, + 1250, + 1404, + 1403, + 299, + 1403 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 581, + 1403, + 581, + 1403, + 702, + 299, + 702 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1881, + 1402, + 1881, + 1402, + 2033, + 299, + 2033 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 444, + 1403, + 444, + 1403, + 565, + 298, + 565 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1404, + 229, + 1404, + 322, + 299, + 322 + ], + "score": 0.959 + }, + { + "category_id": 0, + "poly": [ + 300, + 1802, + 557, + 1802, + 557, + 1836, + 300, + 1836 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 299, + 1184, + 932, + 1184, + 932, + 1216, + 299, + 1216 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 301, + 1459, + 808, + 1459, + 808, + 1490, + 301, + 1490 + ], + "score": 0.793 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 298, + 378, + 966, + 378, + 966, + 410, + 298, + 410 + ], + "score": 0.594 + }, + { + "category_id": 0, + "poly": [ + 298, + 378, + 966, + 378, + 966, + 410, + 298, + 410 + ], + "score": 0.352 + }, + { + "category_id": 1, + "poly": [ + 301, + 1459, + 808, + 1459, + 808, + 1490, + 301, + 1490 + ], + "score": 0.109 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.094 + }, + { + "category_id": 13, + "poly": [ + 913, + 1705, + 1037, + 1705, + 1037, + 1739, + 913, + 1739 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( n \\overset { \\cdot } { \\log { n } } )" + }, + { + "category_id": 13, + "poly": [ + 1083, + 779, + 1248, + 779, + 1248, + 811, + 1083, + 811 + ], + "score": 0.93, + "latex": "Y _ { l } = \\mathrm { D F T } ( { \\pmb y } _ { l } )" + }, + { + "category_id": 13, + "poly": [ + 856, + 779, + 1030, + 779, + 1030, + 811, + 856, + 811 + ], + "score": 0.92, + "latex": "\\pmb { X } _ { l } = \\mathbf { D } \\mathrm { F T } ( \\pmb { x } _ { l } )" + }, + { + "category_id": 13, + "poly": [ + 1187, + 1341, + 1326, + 1341, + 1326, + 1372, + 1187, + 1372 + ], + "score": 0.92, + "latex": "Y _ { l } = H _ { l } N _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1644, + 1167, + 1644, + 1167, + 1679, + 1092, + 1679 + ], + "score": 0.92, + "latex": "\\mathsf { \\bar { O } } ( n ^ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 638, + 779, + 776, + 779, + 776, + 810, + 638, + 810 + ], + "score": 0.92, + "latex": "Y _ { l } = H _ { l } X _ { l }" + }, + { + "category_id": 13, + "poly": [ + 758, + 810, + 931, + 810, + 931, + 842, + 758, + 842 + ], + "score": 0.92, + "latex": "{ \\pmb y } _ { l } = \\mathrm { I D F T } ( { \\pmb Y } _ { l } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 641, + 487, + 641, + 487, + 674, + 297, + 674 + ], + "score": 0.91, + "latex": "\\pmb { h } _ { l } = \\mathrm { I D P T } ( \\bar { \\pmb { H } } _ { l } ) ;" + }, + { + "category_id": 13, + "poly": [ + 992, + 642, + 1030, + 642, + 1030, + 672, + 992, + 672 + ], + "score": 0.88, + "latex": "\\pmb { H } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 947, + 1062, + 947, + 1062, + 977, + 1025, + 977 + ], + "score": 0.88, + "latex": "\\pmb { H } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1161, + 612, + 1200, + 612, + 1200, + 642, + 1161, + 642 + ], + "score": 0.87, + "latex": "\\pmb { H } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 810, + 977, + 848, + 977, + 848, + 1007, + 810, + 1007 + ], + "score": 0.87, + "latex": "\\pmb { H } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 655, + 749, + 685, + 749, + 685, + 779, + 655, + 779 + ], + "score": 0.86, + "latex": "h _ { l }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1372, + 335, + 1372, + 335, + 1402, + 298, + 1402 + ], + "score": 0.86, + "latex": "N _ { l }" + }, + { + "category_id": 13, + "poly": [ + 585, + 291, + 639, + 291, + 639, + 320, + 585, + 320 + ], + "score": 0.83, + "latex": "50 \\%" + }, + { + "category_id": 13, + "poly": [ + 1371, + 725, + 1400, + 725, + 1400, + 749, + 1371, + 749 + ], + "score": 0.81, + "latex": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } \\mathbf { \\mathcal { l } } }" + }, + { + "category_id": 13, + "poly": [ + 304, + 1646, + 425, + 1646, + 425, + 1676, + 304, + 1676 + ], + "score": 0.64, + "latex": "( \\sim 1 0 - 1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 575, + 643, + 587, + 643, + 587, + 669, + 575, + 669 + ], + "score": 0.5, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 396, + 977, + 433, + 977, + 433, + 1005, + 396, + 1005 + ], + "score": 0.46, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 394, + 292, + 451, + 292, + 451, + 320, + 394, + 320 + ], + "score": 0.32, + "latex": "8 \\mathrm { m s }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1799.0, + 561.0, + 1799.0, + 561.0, + 1842.0, + 293.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1184.0, + 936.0, + 1184.0, + 936.0, + 1220.0, + 295.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1458.0, + 811.0, + 1458.0, + 811.0, + 1493.0, + 295.0, + 1493.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": [ + 295.0, + 377.0, + 969.0, + 377.0, + 969.0, + 414.0, + 295.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 715.0, + 1370.0, + 715.0, + 1370.0, + 757.0, + 293.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 715.0, + 1405.0, + 715.0, + 1405.0, + 757.0, + 1401.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 749.0, + 654.0, + 749.0, + 654.0, + 784.0, + 294.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 749.0, + 1405.0, + 749.0, + 1405.0, + 784.0, + 686.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 775.0, + 637.0, + 775.0, + 637.0, + 815.0, + 292.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 775.0, + 855.0, + 775.0, + 855.0, + 815.0, + 777.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 775.0, + 1082.0, + 775.0, + 1082.0, + 815.0, + 1031.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 775.0, + 1404.0, + 775.0, + 1404.0, + 815.0, + 1249.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 807.0, + 757.0, + 807.0, + 757.0, + 845.0, + 294.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 807.0, + 1405.0, + 807.0, + 1405.0, + 845.0, + 932.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 836.0, + 1407.0, + 836.0, + 1407.0, + 877.0, + 293.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 868.0, + 1404.0, + 868.0, + 1404.0, + 903.0, + 294.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 900.0, + 1073.0, + 900.0, + 1073.0, + 934.0, + 294.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 1402.0, + 1525.0, + 1402.0, + 1559.0, + 294.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1555.0, + 1404.0, + 1555.0, + 1404.0, + 1590.0, + 294.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1584.0, + 1405.0, + 1584.0, + 1405.0, + 1621.0, + 293.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1615.0, + 1406.0, + 1615.0, + 1406.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1645.0, + 303.0, + 1645.0, + 303.0, + 1680.0, + 294.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1645.0, + 1091.0, + 1645.0, + 1091.0, + 1680.0, + 426.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1645.0, + 1405.0, + 1645.0, + 1405.0, + 1680.0, + 1168.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1672.0, + 1405.0, + 1672.0, + 1405.0, + 1713.0, + 293.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1703.0, + 912.0, + 1703.0, + 912.0, + 1742.0, + 292.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1703.0, + 1404.0, + 1703.0, + 1404.0, + 1742.0, + 1038.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 1024.0, + 948.0, + 1024.0, + 979.0, + 295.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 948.0, + 1404.0, + 948.0, + 1404.0, + 979.0, + 1063.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 975.0, + 395.0, + 975.0, + 395.0, + 1009.0, + 293.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 975.0, + 809.0, + 975.0, + 809.0, + 1009.0, + 434.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1009.0, + 849.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1004.0, + 1406.0, + 1004.0, + 1406.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1033.0, + 1408.0, + 1033.0, + 1408.0, + 1071.0, + 293.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1066.0, + 1405.0, + 1066.0, + 1405.0, + 1101.0, + 294.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1095.0, + 1389.0, + 1095.0, + 1389.0, + 1133.0, + 293.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1250.0, + 1404.0, + 1250.0, + 1404.0, + 1283.0, + 295.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1344.0, + 295.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1340.0, + 1186.0, + 1340.0, + 1186.0, + 1377.0, + 294.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1340.0, + 1405.0, + 1340.0, + 1405.0, + 1377.0, + 1327.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1370.0, + 855.0, + 1370.0, + 855.0, + 1406.0, + 336.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 580.0, + 1407.0, + 580.0, + 1407.0, + 616.0, + 294.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 609.0, + 1160.0, + 609.0, + 1160.0, + 647.0, + 293.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 609.0, + 1404.0, + 609.0, + 1404.0, + 647.0, + 1201.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 643.0, + 574.0, + 643.0, + 574.0, + 675.0, + 488.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 643.0, + 991.0, + 643.0, + 991.0, + 675.0, + 588.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 643.0, + 1405.0, + 643.0, + 1405.0, + 675.0, + 1031.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 670.0, + 1306.0, + 670.0, + 1306.0, + 707.0, + 294.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1937.0, + 1406.0, + 1937.0, + 1406.0, + 1982.0, + 292.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 731.0, + 2002.0, + 731.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 443.0, + 1407.0, + 443.0, + 1407.0, + 479.0, + 293.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 475.0, + 1405.0, + 475.0, + 1405.0, + 509.0, + 293.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 504.0, + 1405.0, + 504.0, + 1405.0, + 539.0, + 293.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 536.0, + 989.0, + 536.0, + 989.0, + 568.0, + 294.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1408.0, + 228.0, + 1408.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 257.0, + 1405.0, + 257.0, + 1405.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 393.0, + 291.0, + 393.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 291.0, + 584.0, + 291.0, + 584.0, + 325.0, + 452.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 291.0, + 1335.0, + 291.0, + 1335.0, + 325.0, + 640.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 377.0, + 969.0, + 377.0, + 969.0, + 414.0, + 295.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1458.0, + 811.0, + 1458.0, + 811.0, + 1493.0, + 295.0, + 1493.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1379, + 1403, + 1379, + 1403, + 1593, + 298, + 1593 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1715, + 1403, + 1715, + 1403, + 1926, + 297, + 1926 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 984, + 1404, + 984, + 1404, + 1229, + 298, + 1229 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1243, + 1404, + 1243, + 1404, + 1364, + 299, + 1364 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 300, + 230, + 1396, + 230, + 1396, + 633, + 300, + 633 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1402, + 1942, + 1402, + 2034, + 301, + 2034 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 301, + 1608, + 1397, + 1608, + 1397, + 1699, + 301, + 1699 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 295, + 663, + 1404, + 663, + 1404, + 818, + 295, + 818 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 300, + 912, + 632, + 912, + 632, + 942, + 300, + 942 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.78 + }, + { + "category_id": 13, + "poly": [ + 1251, + 1273, + 1393, + 1273, + 1393, + 1307, + 1251, + 1307 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\bar { \\hat { \\pmb x } } = f _ { \\mathrm { d e c } } ( \\pmb z ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1273, + 440, + 1273, + 440, + 1306, + 298, + 1306 + ], + "score": 0.93, + "latex": "z = f _ { \\mathrm { e n c } } ( \\pmb { x } )" + }, + { + "category_id": 13, + "poly": [ + 801, + 1441, + 851, + 1441, + 851, + 1474, + 801, + 1474 + ], + "score": 0.92, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 709, + 1274, + 783, + 1274, + 783, + 1306, + 709, + 1306 + ], + "score": 0.92, + "latex": "f _ { \\mathrm { d e c } } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 762, + 1943, + 813, + 1943, + 813, + 1976, + 762, + 1976 + ], + "score": 0.92, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 576, + 1745, + 759, + 1745, + 759, + 1779, + 576, + 1779 + ], + "score": 0.92, + "latex": "( f ( \\bar { t } ) , l ( t ) , z ( t ) )" + }, + { + "category_id": 13, + "poly": [ + 670, + 1639, + 720, + 1639, + 720, + 1671, + 670, + 1671 + ], + "score": 0.92, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 939, + 1471, + 990, + 1471, + 990, + 1504, + 939, + 1504 + ], + "score": 0.92, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 835, + 1243, + 909, + 1243, + 909, + 1277, + 835, + 1277 + ], + "score": 0.91, + "latex": "f _ { \\mathrm { e n c } } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1501, + 348, + 1501, + 348, + 1535, + 297, + 1535 + ], + "score": 0.9, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 571, + 1411, + 613, + 1411, + 613, + 1443, + 571, + 1443 + ], + "score": 0.84, + "latex": "l ( t )" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1250, + 1113, + 1250, + 1113, + 1271, + 1091, + 1271 + ], + "score": 0.73, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 760, + 318, + 760, + 318, + 783, + 297, + 783 + ], + "score": 0.71, + "latex": "_ z" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 271.0, + 1014.0, + 271.0, + 1014.0, + 307.0, + 902.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 300.0, + 995.0, + 300.0, + 995.0, + 332.0, + 923.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 350.0, + 407.0, + 350.0, + 407.0, + 411.0, + 332.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 346.0, + 462.0, + 346.0, + 462.0, + 362.0, + 447.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 337.0, + 569.0, + 337.0, + 569.0, + 370.0, + 477.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 386.0, + 863.0, + 386.0, + 863.0, + 426.0, + 762.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 344.0, + 993.0, + 344.0, + 993.0, + 366.0, + 955.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 384.0, + 1088.0, + 384.0, + 1088.0, + 430.0, + 1042.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 362.0, + 1212.0, + 362.0, + 1212.0, + 399.0, + 1127.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 350.0, + 1392.0, + 350.0, + 1392.0, + 411.0, + 1262.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 430.0, + 1002.0, + 430.0, + 1002.0, + 462.0, + 917.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 453.0, + 997.0, + 453.0, + 997.0, + 489.0, + 923.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 487.0, + 726.0, + 487.0, + 726.0, + 530.0, + 612.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 473.0, + 1019.0, + 473.0, + 1019.0, + 546.0, + 900.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 586.0, + 1000.0, + 586.0, + 1000.0, + 616.0, + 697.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 341.5, + 956.0, + 341.5, + 956.0, + 368.5, + 930.0, + 368.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 665.0, + 1405.0, + 665.0, + 1405.0, + 698.0, + 297.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 695.0, + 1404.0, + 695.0, + 1404.0, + 730.0, + 293.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 723.0, + 1405.0, + 723.0, + 1405.0, + 762.0, + 293.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 788.0, + 319.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 783.0, + 1289.0, + 783.0, + 1289.0, + 822.0, + 295.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 909.0, + 637.0, + 909.0, + 637.0, + 947.0, + 294.0, + 947.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, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 1403.0, + 1378.0, + 1403.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 570.0, + 1409.0, + 570.0, + 1443.0, + 294.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1409.0, + 1404.0, + 1409.0, + 1404.0, + 1443.0, + 614.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1442.0, + 800.0, + 1442.0, + 800.0, + 1473.0, + 296.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1442.0, + 1404.0, + 1442.0, + 1404.0, + 1473.0, + 852.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1471.0, + 938.0, + 1471.0, + 938.0, + 1503.0, + 293.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1503.0, + 991.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1499.0, + 1407.0, + 1499.0, + 1407.0, + 1538.0, + 349.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1533.0, + 1407.0, + 1533.0, + 1407.0, + 1566.0, + 293.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 897.0, + 1561.0, + 897.0, + 1598.0, + 292.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1715.0, + 1407.0, + 1715.0, + 1407.0, + 1749.0, + 295.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1745.0, + 575.0, + 1745.0, + 575.0, + 1779.0, + 292.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1745.0, + 1405.0, + 1745.0, + 1405.0, + 1779.0, + 760.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1810.0, + 295.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1807.0, + 1401.0, + 1807.0, + 1401.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 1405.0, + 1835.0, + 1405.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1901.0, + 294.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1896.0, + 370.0, + 1896.0, + 370.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 982.0, + 1406.0, + 982.0, + 1406.0, + 1021.0, + 292.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1014.0, + 1405.0, + 1014.0, + 1405.0, + 1050.0, + 293.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1043.0, + 1405.0, + 1043.0, + 1405.0, + 1083.0, + 293.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1074.0, + 1405.0, + 1074.0, + 1405.0, + 1113.0, + 293.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1108.0, + 1405.0, + 1108.0, + 1405.0, + 1141.0, + 294.0, + 1141.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": [ + 292.0, + 1164.0, + 1408.0, + 1164.0, + 1408.0, + 1202.0, + 292.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1198.0, + 1146.0, + 1198.0, + 1146.0, + 1233.0, + 293.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1241.0, + 834.0, + 1241.0, + 834.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1241.0, + 1090.0, + 1241.0, + 1090.0, + 1280.0, + 910.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1241.0, + 1406.0, + 1241.0, + 1406.0, + 1280.0, + 1114.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1274.0, + 297.0, + 1274.0, + 297.0, + 1309.0, + 293.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1274.0, + 708.0, + 1274.0, + 708.0, + 1309.0, + 441.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1274.0, + 1250.0, + 1274.0, + 1250.0, + 1309.0, + 784.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1274.0, + 1404.0, + 1274.0, + 1404.0, + 1309.0, + 1394.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1301.0, + 1406.0, + 1301.0, + 1406.0, + 1339.0, + 293.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 700.0, + 1335.0, + 700.0, + 1367.0, + 295.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 761.0, + 1940.0, + 761.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1977.0, + 814.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1403.0, + 1972.0, + 1403.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1608.0, + 1400.0, + 1608.0, + 1400.0, + 1642.0, + 295.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1639.0, + 669.0, + 1639.0, + 669.0, + 1673.0, + 296.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1639.0, + 1401.0, + 1639.0, + 1401.0, + 1673.0, + 721.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1669.0, + 698.0, + 1669.0, + 698.0, + 1699.0, + 297.0, + 1699.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 390, + 221, + 1307, + 221, + 1307, + 415, + 390, + 415 + ], + "score": 0.979, + "html": "
Loudness (L1)F0 (L1)F0 Outliers
Supervised WaveRNN (Hantrakul et al., 2019)0.101.000.07
DDSP Autoencoder Unsupervised0.070.020.003
DDSP Autoencoder0.090.800.04
" + }, + { + "category_id": 1, + "poly": [ + 298, + 712, + 1403, + 712, + 1403, + 954, + 298, + 954 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1061, + 1403, + 1061, + 1403, + 1243, + 298, + 1243 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1258, + 1403, + 1258, + 1403, + 1440, + 298, + 1440 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1456, + 1402, + 1456, + 1402, + 1608, + 299, + 1608 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1812, + 1403, + 1812, + 1403, + 1910, + 299, + 1910 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 301, + 1706, + 1403, + 1706, + 1403, + 1797, + 301, + 1797 + ], + "score": 0.966 + }, + { + "category_id": 2, + "poly": [ + 298, + 1947, + 1402, + 1947, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 300, + 636, + 1399, + 636, + 1399, + 697, + 300, + 697 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 299, + 1000, + 489, + 1000, + 489, + 1032, + 299, + 1032 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 301, + 1650, + 753, + 1650, + 753, + 1681, + 301, + 1681 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 298, + 449, + 1403, + 449, + 1403, + 572, + 298, + 572 + ], + "score": 0.655 + }, + { + "category_id": 6, + "poly": [ + 298, + 449, + 1403, + 449, + 1403, + 572, + 298, + 572 + ], + "score": 0.402 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.094 + }, + { + "category_id": 13, + "poly": [ + 897, + 1182, + 948, + 1182, + 948, + 1216, + 897, + 1216 + ], + "score": 0.91, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 664, + 1874, + 693, + 1874, + 693, + 1909, + 664, + 1909 + ], + "score": 0.89, + "latex": "\\hat { S } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1456, + 1400, + 1456, + 1400, + 1490, + 1349, + 1490 + ], + "score": 0.89, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 583, + 1878, + 613, + 1878, + 613, + 1909, + 583, + 1909 + ], + "score": 0.86, + "latex": "S _ { i }" + }, + { + "category_id": 13, + "poly": [ + 712, + 835, + 772, + 835, + 772, + 864, + 712, + 864 + ], + "score": 0.66, + "latex": "3 0 0 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1881, + 1110, + 1881, + 1110, + 1906, + 1097, + 1906 + ], + "score": 0.48, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 951, + 223, + 999, + 223, + 999, + 255, + 951, + 255 + ], + "score": 0.32, + "latex": "\\overline { { ( L _ { 1 } ) } }" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1981.0, + 328.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1222.0, + 1974.0, + 1222.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 2001.0, + 812.0, + 2001.0, + 812.0, + 2039.0, + 328.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 997.0, + 494.0, + 997.0, + 494.0, + 1037.0, + 293.0, + 1037.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, + 1649.0, + 756.0, + 1649.0, + 756.0, + 1684.0, + 295.0, + 1684.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": [ + 296.0, + 451.0, + 1405.0, + 451.0, + 1405.0, + 484.0, + 296.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 481.0, + 1405.0, + 481.0, + 1405.0, + 514.0, + 294.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 512.0, + 1405.0, + 512.0, + 1405.0, + 544.0, + 296.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 538.0, + 1107.0, + 538.0, + 1107.0, + 578.0, + 293.0, + 578.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, + 710.0, + 1402.0, + 710.0, + 1402.0, + 748.0, + 293.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 1404.0, + 743.0, + 1404.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 773.0, + 1404.0, + 773.0, + 1404.0, + 806.0, + 296.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 804.0, + 1404.0, + 804.0, + 1404.0, + 837.0, + 294.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 833.0, + 711.0, + 833.0, + 711.0, + 869.0, + 293.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 833.0, + 1405.0, + 833.0, + 1405.0, + 869.0, + 773.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 861.0, + 1404.0, + 861.0, + 1404.0, + 904.0, + 292.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 892.0, + 1404.0, + 892.0, + 1404.0, + 932.0, + 292.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 923.0, + 376.0, + 923.0, + 376.0, + 955.0, + 292.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1060.0, + 1404.0, + 1060.0, + 1404.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1088.0, + 1403.0, + 1088.0, + 1403.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1121.0, + 1405.0, + 1121.0, + 1405.0, + 1156.0, + 293.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1407.0, + 1149.0, + 1407.0, + 1189.0, + 293.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1181.0, + 896.0, + 1181.0, + 896.0, + 1220.0, + 293.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1181.0, + 1407.0, + 1181.0, + 1407.0, + 1220.0, + 949.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1214.0, + 724.0, + 1214.0, + 724.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1296.0, + 292.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1291.0, + 1402.0, + 1291.0, + 1402.0, + 1323.0, + 296.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1319.0, + 1405.0, + 1319.0, + 1405.0, + 1354.0, + 294.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1349.0, + 1404.0, + 1349.0, + 1404.0, + 1384.0, + 293.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1414.0, + 294.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1408.0, + 1192.0, + 1408.0, + 1192.0, + 1442.0, + 292.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 1348.0, + 1451.0, + 1348.0, + 1494.0, + 293.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1487.0, + 1403.0, + 1487.0, + 1403.0, + 1520.0, + 297.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 1406.0, + 1545.0, + 1406.0, + 1581.0, + 294.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1575.0, + 993.0, + 1575.0, + 993.0, + 1613.0, + 295.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1810.0, + 1405.0, + 1810.0, + 1405.0, + 1851.0, + 293.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1844.0, + 1405.0, + 1844.0, + 1405.0, + 1878.0, + 295.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1877.0, + 582.0, + 1877.0, + 582.0, + 1913.0, + 294.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1877.0, + 663.0, + 1877.0, + 663.0, + 1913.0, + 614.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1877.0, + 1096.0, + 1877.0, + 1096.0, + 1913.0, + 694.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1877.0, + 1405.0, + 1877.0, + 1405.0, + 1913.0, + 1111.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1706.0, + 1403.0, + 1706.0, + 1403.0, + 1740.0, + 297.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1736.0, + 1402.0, + 1736.0, + 1402.0, + 1769.0, + 296.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1767.0, + 1403.0, + 1767.0, + 1403.0, + 1800.0, + 296.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 672.0, + 295.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 666.0, + 1284.0, + 666.0, + 1284.0, + 702.0, + 295.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 451.0, + 1405.0, + 451.0, + 1405.0, + 484.0, + 296.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 481.0, + 1405.0, + 481.0, + 1405.0, + 514.0, + 294.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 512.0, + 1405.0, + 512.0, + 1405.0, + 544.0, + 296.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 538.0, + 1107.0, + 538.0, + 1107.0, + 578.0, + 293.0, + 578.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1060, + 1404, + 1060, + 1404, + 1304, + 298, + 1304 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1318, + 1403, + 1318, + 1403, + 1532, + 298, + 1532 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1790, + 1403, + 1790, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 740, + 1403, + 740, + 1403, + 893, + 299, + 893 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1546, + 1403, + 1546, + 1403, + 1699, + 298, + 1699 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 296, + 444, + 1404, + 444, + 1404, + 598, + 296, + 598 + ], + "score": 0.957 + }, + { + "category_id": 3, + "poly": [ + 305, + 228, + 1398, + 228, + 1398, + 403, + 305, + 403 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 615, + 692, + 1084, + 692, + 1084, + 734, + 615, + 734 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 292, + 647, + 1397, + 647, + 1397, + 683, + 292, + 683 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 301, + 1003, + 692, + 1003, + 692, + 1036, + 301, + 1036 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 299, + 936, + 480, + 936, + 480, + 971, + 299, + 971 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 298, + 1735, + 977, + 1735, + 977, + 1766, + 298, + 1766 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1367, + 699, + 1399, + 699, + 1399, + 728, + 1367, + 728 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2111, + 840, + 2111 + ], + "score": 0.792 + }, + { + "category_id": 13, + "poly": [ + 564, + 1943, + 615, + 1943, + 615, + 1975, + 564, + 1975 + ], + "score": 0.92, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 297, + 536, + 345, + 536, + 345, + 570, + 297, + 570 + ], + "score": 0.92, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 798, + 1822, + 981, + 1822, + 981, + 1856, + 798, + 1856 + ], + "score": 0.92, + "latex": "( f ( t ) , l ( t ) , z ( t ) )" + }, + { + "category_id": 13, + "poly": [ + 805, + 1943, + 855, + 1943, + 855, + 1976, + 805, + 1976 + ], + "score": 0.91, + "latex": "f ( t )" + }, + { + "category_id": 14, + "poly": [ + 610, + 689, + 1087, + 689, + 1087, + 733, + 610, + 733 + ], + "score": 0.91, + "latex": "L _ { i } = | | S _ { i } - \\hat { S _ { i } } | | _ { 1 } + \\alpha | | \\log S _ { i } - \\log \\hat { S } _ { i } | | _ { 1 } ." + }, + { + "category_id": 13, + "poly": [ + 632, + 771, + 875, + 771, + 875, + 806, + 632, + 806 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { L _ { \\mathrm { r e c o n s t r u c t i o n } } = \\sum _ { i } { L _ { i } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1320, + 645, + 1389, + 645, + 1389, + 683, + 1320, + 683 + ], + "score": 0.9, + "latex": "\\log { \\hat { S } _ { i } }" + }, + { + "category_id": 13, + "poly": [ + 756, + 645, + 785, + 645, + 785, + 681, + 756, + 681 + ], + "score": 0.9, + "latex": "\\hat { S } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 655, + 833, + 685, + 833, + 685, + 862, + 655, + 862 + ], + "score": 0.9, + "latex": "L _ { i }" + }, + { + "category_id": 13, + "poly": [ + 552, + 1882, + 595, + 1882, + 595, + 1916, + 552, + 1916 + ], + "score": 0.88, + "latex": "l ( t )" + }, + { + "category_id": 13, + "poly": [ + 676, + 651, + 705, + 651, + 705, + 681, + 676, + 681 + ], + "score": 0.88, + "latex": "S _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1200, + 651, + 1269, + 651, + 1269, + 683, + 1200, + 683 + ], + "score": 0.87, + "latex": "\\log { S _ { i } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1441, + 331, + 1441, + 331, + 1470, + 298, + 1470 + ], + "score": 0.87, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 422, + 832, + 476, + 832, + 476, + 861, + 422, + 861 + ], + "score": 0.87, + "latex": "7 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1470, + 1125, + 1470, + 1125, + 1500, + 1054, + 1500 + ], + "score": 0.81, + "latex": "\\mathrm { F 0 ~ } L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 372, + 748, + 394, + 748, + 394, + 769, + 372, + 769 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 446.0, + 1404.0, + 446.0, + 1404.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 476.0, + 1401.0, + 476.0, + 1401.0, + 505.0, + 296.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 502.0, + 1407.0, + 502.0, + 1407.0, + 545.0, + 291.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 536.0, + 1405.0, + 536.0, + 1405.0, + 573.0, + 346.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 565.0, + 827.0, + 565.0, + 827.0, + 603.0, + 294.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 222.0, + 535.0, + 222.0, + 535.0, + 262.0, + 420.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 223.0, + 983.0, + 223.0, + 983.0, + 262.0, + 714.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 225.0, + 1319.0, + 225.0, + 1319.0, + 259.0, + 1124.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 329.0, + 1103.0, + 329.0, + 1103.0, + 338.0, + 1078.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 282.5, + 1344.0, + 282.5, + 1344.0, + 316.5, + 1101.0, + 316.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.75, + 287.5, + 1116.75, + 287.5, + 1116.75, + 308.5, + 1071.75, + 308.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 348.5, + 604.0, + 348.5, + 604.0, + 383.5, + 581.0, + 383.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.75, + 325.5, + 1199.75, + 325.5, + 1199.75, + 345.0, + 1103.75, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1004.0, + 696.0, + 1004.0, + 696.0, + 1037.0, + 296.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 933.0, + 484.0, + 933.0, + 484.0, + 978.0, + 292.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1733.0, + 980.0, + 1733.0, + 980.0, + 1769.0, + 295.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1097.0, + 293.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1092.0, + 1402.0, + 1092.0, + 1402.0, + 1126.0, + 296.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1151.0, + 1407.0, + 1151.0, + 1407.0, + 1187.0, + 292.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1182.0, + 1404.0, + 1182.0, + 1404.0, + 1215.0, + 294.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1211.0, + 1404.0, + 1211.0, + 1404.0, + 1247.0, + 293.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 1402.0, + 1243.0, + 1402.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1274.0, + 1394.0, + 1274.0, + 1394.0, + 1307.0, + 296.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1316.0, + 1408.0, + 1316.0, + 1408.0, + 1355.0, + 292.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1351.0, + 1404.0, + 1351.0, + 1404.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 1404.0, + 1380.0, + 1404.0, + 1414.0, + 294.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 1404.0, + 1410.0, + 1404.0, + 1445.0, + 294.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1440.0, + 297.0, + 1440.0, + 297.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1440.0, + 1405.0, + 1440.0, + 1405.0, + 1474.0, + 332.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1470.0, + 1053.0, + 1470.0, + 1053.0, + 1505.0, + 294.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1470.0, + 1405.0, + 1470.0, + 1405.0, + 1505.0, + 1126.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1271.0, + 1499.0, + 1271.0, + 1537.0, + 293.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1824.0, + 797.0, + 1824.0, + 797.0, + 1857.0, + 296.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1824.0, + 1407.0, + 1824.0, + 1407.0, + 1857.0, + 982.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1405.0, + 1853.0, + 1405.0, + 1887.0, + 294.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 551.0, + 1883.0, + 551.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1917.0, + 596.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 563.0, + 1939.0, + 563.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1939.0, + 804.0, + 1939.0, + 804.0, + 1979.0, + 616.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1979.0, + 856.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 561.0, + 2004.0, + 561.0, + 2034.0, + 296.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 741.0, + 371.0, + 741.0, + 371.0, + 774.0, + 297.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 741.0, + 1405.0, + 741.0, + 1405.0, + 774.0, + 395.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 769.0, + 631.0, + 769.0, + 631.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 769.0, + 1407.0, + 769.0, + 1407.0, + 810.0, + 876.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 798.0, + 1405.0, + 798.0, + 1405.0, + 836.0, + 294.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 828.0, + 421.0, + 828.0, + 421.0, + 868.0, + 292.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 828.0, + 654.0, + 828.0, + 654.0, + 868.0, + 477.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 828.0, + 1407.0, + 828.0, + 1407.0, + 868.0, + 686.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 860.0, + 747.0, + 860.0, + 747.0, + 898.0, + 293.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1545.0, + 1402.0, + 1545.0, + 1402.0, + 1580.0, + 296.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1574.0, + 1404.0, + 1574.0, + 1404.0, + 1612.0, + 293.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1607.0, + 1404.0, + 1607.0, + 1404.0, + 1640.0, + 296.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1634.0, + 1408.0, + 1634.0, + 1408.0, + 1673.0, + 292.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1669.0, + 1206.0, + 1669.0, + 1206.0, + 1702.0, + 296.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 644.0, + 675.0, + 644.0, + 675.0, + 688.0, + 292.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 644.0, + 755.0, + 644.0, + 755.0, + 688.0, + 706.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 644.0, + 1199.0, + 644.0, + 1199.0, + 688.0, + 786.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 644.0, + 1319.0, + 644.0, + 1319.0, + 688.0, + 1270.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 644.0, + 1399.0, + 644.0, + 1399.0, + 688.0, + 1390.0, + 688.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1615, + 1402, + 1615, + 1402, + 1858, + 298, + 1858 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1217, + 1404, + 1217, + 1404, + 1521, + 297, + 1521 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 879, + 1404, + 879, + 1404, + 1122, + 297, + 1122 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 742, + 1403, + 742, + 1403, + 864, + 299, + 864 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 300, + 224, + 1397, + 224, + 1397, + 588, + 300, + 588 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1401, + 1972, + 1401, + 2034, + 297, + 2034 + ], + "score": 0.942 + }, + { + "category_id": 4, + "poly": [ + 296, + 623, + 1399, + 623, + 1399, + 684, + 296, + 684 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 299, + 1160, + 928, + 1160, + 928, + 1191, + 299, + 1191 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 1558, + 595, + 1558, + 595, + 1588, + 300, + 1588 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 300, + 1903, + 543, + 1903, + 543, + 1938, + 300, + 1938 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.787 + }, + { + "category_id": 13, + "poly": [ + 838, + 743, + 960, + 743, + 960, + 777, + 838, + 777 + ], + "score": 0.92, + "latex": "( f ( t ) , l ( t ) )" + }, + { + "category_id": 13, + "poly": [ + 691, + 1031, + 742, + 1031, + 742, + 1064, + 691, + 1064 + ], + "score": 0.92, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 1280, + 971, + 1331, + 971, + 1331, + 1004, + 1280, + 1004 + ], + "score": 0.91, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 825, + 880, + 876, + 880, + 876, + 914, + 825, + 914 + ], + "score": 0.91, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 1349, + 743, + 1400, + 743, + 1400, + 776, + 1349, + 776 + ], + "score": 0.9, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 688, + 808, + 710, + 808, + 710, + 832, + 688, + 832 + ], + "score": 0.73, + "latex": "_ z" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 270.0, + 367.0, + 270.0, + 367.0, + 368.0, + 302.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 181.0, + 1426.0, + 181.0, + 1426.0, + 434.0, + 373.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 419.0, + 335.0, + 419.0, + 335.0, + 571.0, + 304.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 400.0, + 1397.0, + 400.0, + 1397.0, + 604.0, + 446.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 466.0, + 357.0, + 466.0, + 357.0, + 536.0, + 329.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.25, + 487.5, + 532.25, + 487.5, + 532.25, + 504.5, + 509.25, + 504.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 622.0, + 1404.0, + 622.0, + 1404.0, + 657.0, + 295.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 654.0, + 1152.0, + 654.0, + 1152.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 931.0, + 1158.0, + 931.0, + 1195.0, + 294.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1558.0, + 600.0, + 1558.0, + 600.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1897.0, + 549.0, + 1897.0, + 549.0, + 1947.0, + 291.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1614.0, + 1407.0, + 1614.0, + 1407.0, + 1651.0, + 293.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1644.0, + 1406.0, + 1644.0, + 1406.0, + 1679.0, + 293.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1709.0, + 296.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1707.0, + 1406.0, + 1707.0, + 1406.0, + 1740.0, + 293.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1734.0, + 1406.0, + 1734.0, + 1406.0, + 1773.0, + 291.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1765.0, + 1406.0, + 1765.0, + 1406.0, + 1801.0, + 293.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1797.0, + 1406.0, + 1797.0, + 1406.0, + 1831.0, + 294.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1823.0, + 1404.0, + 1823.0, + 1404.0, + 1864.0, + 292.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1215.0, + 1405.0, + 1215.0, + 1405.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 1406.0, + 1248.0, + 1406.0, + 1283.0, + 295.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1277.0, + 1407.0, + 1277.0, + 1407.0, + 1313.0, + 291.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1310.0, + 1405.0, + 1310.0, + 1405.0, + 1341.0, + 296.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1340.0, + 1405.0, + 1340.0, + 1405.0, + 1372.0, + 295.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1369.0, + 1406.0, + 1369.0, + 1406.0, + 1404.0, + 295.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1394.0, + 1406.0, + 1394.0, + 1406.0, + 1437.0, + 291.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1427.0, + 1407.0, + 1427.0, + 1407.0, + 1465.0, + 291.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1494.0, + 294.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1488.0, + 998.0, + 1488.0, + 998.0, + 1526.0, + 292.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 881.0, + 824.0, + 881.0, + 824.0, + 915.0, + 296.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 881.0, + 1404.0, + 881.0, + 1404.0, + 915.0, + 877.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 905.0, + 1406.0, + 905.0, + 1406.0, + 950.0, + 291.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 938.0, + 1406.0, + 938.0, + 1406.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 971.0, + 1279.0, + 971.0, + 1279.0, + 1005.0, + 295.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 971.0, + 1405.0, + 971.0, + 1405.0, + 1005.0, + 1332.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 999.0, + 1405.0, + 999.0, + 1405.0, + 1033.0, + 294.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1031.0, + 690.0, + 1031.0, + 690.0, + 1065.0, + 292.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1031.0, + 1405.0, + 1031.0, + 1405.0, + 1065.0, + 743.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1062.0, + 1406.0, + 1062.0, + 1406.0, + 1096.0, + 295.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1089.0, + 749.0, + 1089.0, + 749.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 837.0, + 741.0, + 837.0, + 779.0, + 294.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 741.0, + 1348.0, + 741.0, + 1348.0, + 779.0, + 961.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 741.0, + 1404.0, + 741.0, + 1404.0, + 779.0, + 1401.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 773.0, + 1404.0, + 773.0, + 1404.0, + 808.0, + 293.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 802.0, + 687.0, + 802.0, + 687.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 802.0, + 1407.0, + 802.0, + 1407.0, + 839.0, + 711.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 1341.0, + 833.0, + 1341.0, + 868.0, + 294.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1968.0, + 1405.0, + 1968.0, + 1405.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 292, + 229, + 1401, + 229, + 1401, + 293, + 292, + 293 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 298, + 392, + 1405, + 392, + 1405, + 485, + 298, + 485 + ], + "score": 0.779 + }, + { + "category_id": 0, + "poly": [ + 298, + 340, + 489, + 340, + 489, + 374, + 298, + 374 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 293, + 1621, + 1321, + 1621, + 1321, + 1656, + 293, + 1656 + ], + "score": 0.726 + }, + { + "category_id": 1, + "poly": [ + 295, + 1125, + 1400, + 1125, + 1400, + 1189, + 295, + 1189 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 295, + 1533, + 1402, + 1533, + 1402, + 1597, + 295, + 1597 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 295, + 1447, + 1401, + 1447, + 1401, + 1511, + 295, + 1511 + ], + "score": 0.7 + }, + { + "category_id": 1, + "poly": [ + 297, + 1211, + 1402, + 1211, + 1402, + 1305, + 297, + 1305 + ], + "score": 0.693 + }, + { + "category_id": 1, + "poly": [ + 299, + 1328, + 1402, + 1328, + 1402, + 1425, + 299, + 1425 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 295, + 742, + 1401, + 742, + 1401, + 806, + 295, + 806 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 296, + 653, + 1400, + 653, + 1400, + 719, + 296, + 719 + ], + "score": 0.67 + }, + { + "category_id": 1, + "poly": [ + 298, + 1678, + 1401, + 1678, + 1401, + 1742, + 298, + 1742 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 301, + 1971, + 1397, + 1971, + 1397, + 2034, + 301, + 2034 + ], + "score": 0.645 + }, + { + "category_id": 1, + "poly": [ + 291, + 510, + 1341, + 510, + 1341, + 545, + 291, + 545 + ], + "score": 0.638 + }, + { + "category_id": 1, + "poly": [ + 297, + 567, + 1397, + 567, + 1397, + 632, + 297, + 632 + ], + "score": 0.628 + }, + { + "category_id": 1, + "poly": [ + 299, + 1765, + 1400, + 1765, + 1400, + 1859, + 299, + 1859 + ], + "score": 0.598 + }, + { + "category_id": 1, + "poly": [ + 293, + 1884, + 1400, + 1884, + 1400, + 1947, + 293, + 1947 + ], + "score": 0.584 + }, + { + "category_id": 1, + "poly": [ + 297, + 828, + 1403, + 828, + 1403, + 984, + 297, + 984 + ], + "score": 0.584 + }, + { + "category_id": 1, + "poly": [ + 302, + 1007, + 1401, + 1007, + 1401, + 1100, + 302, + 1100 + ], + "score": 0.274 + }, + { + "category_id": 1, + "poly": [ + 298, + 340, + 489, + 340, + 489, + 374, + 298, + 374 + ], + "score": 0.132 + }, + { + "category_id": 13, + "poly": [ + 360, + 1073, + 378, + 1073, + 378, + 1095, + 360, + 1095 + ], + "score": 0.51, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1209, + 1396, + 1227, + 1396, + 1227, + 1417, + 1209, + 1417 + ], + "score": 0.39, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 341.0, + 491.0, + 341.0, + 491.0, + 377.0, + 297.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1404.0, + 225.0, + 1404.0, + 270.0, + 292.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 954.0, + 260.0, + 954.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 391.0, + 1406.0, + 391.0, + 1406.0, + 429.0, + 293.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 423.0, + 1403.0, + 423.0, + 1403.0, + 455.0, + 321.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 454.0, + 499.0, + 454.0, + 499.0, + 486.0, + 323.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1620.0, + 1326.0, + 1620.0, + 1326.0, + 1661.0, + 292.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1161.0, + 296.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1157.0, + 1370.0, + 1157.0, + 1370.0, + 1190.0, + 322.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1534.0, + 1404.0, + 1534.0, + 1404.0, + 1570.0, + 295.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1564.0, + 535.0, + 1564.0, + 535.0, + 1597.0, + 320.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1484.0, + 294.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1478.0, + 1133.0, + 1478.0, + 1133.0, + 1512.0, + 322.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1248.0, + 293.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1243.0, + 1403.0, + 1243.0, + 1403.0, + 1274.0, + 325.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1270.0, + 476.0, + 1270.0, + 476.0, + 1305.0, + 323.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1330.0, + 1404.0, + 1330.0, + 1404.0, + 1364.0, + 295.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1362.0, + 1404.0, + 1362.0, + 1404.0, + 1396.0, + 323.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1393.0, + 1208.0, + 1393.0, + 1208.0, + 1427.0, + 324.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1393.0, + 1404.0, + 1393.0, + 1404.0, + 1427.0, + 1228.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 1403.0, + 741.0, + 1403.0, + 779.0, + 294.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 773.0, + 1293.0, + 773.0, + 1293.0, + 807.0, + 322.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 654.0, + 1404.0, + 654.0, + 1404.0, + 690.0, + 295.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 686.0, + 1400.0, + 686.0, + 1400.0, + 720.0, + 322.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1714.0, + 296.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1711.0, + 696.0, + 1711.0, + 696.0, + 1742.0, + 323.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1969.0, + 1401.0, + 1969.0, + 1401.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 1006.0, + 2003.0, + 1006.0, + 2036.0, + 324.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 509.0, + 1341.0, + 509.0, + 1341.0, + 548.0, + 294.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 566.0, + 1403.0, + 566.0, + 1403.0, + 606.0, + 293.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 598.0, + 1083.0, + 598.0, + 1083.0, + 632.0, + 323.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 1403.0, + 1762.0, + 1403.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1794.0, + 1404.0, + 1794.0, + 1404.0, + 1836.0, + 320.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1824.0, + 506.0, + 1824.0, + 506.0, + 1862.0, + 322.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1885.0, + 1403.0, + 1885.0, + 1403.0, + 1921.0, + 295.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1916.0, + 1007.0, + 1916.0, + 1007.0, + 1949.0, + 322.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 826.0, + 1405.0, + 826.0, + 1405.0, + 867.0, + 294.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 858.0, + 1405.0, + 858.0, + 1405.0, + 897.0, + 321.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 890.0, + 1404.0, + 890.0, + 1404.0, + 926.0, + 322.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 919.0, + 1404.0, + 919.0, + 1404.0, + 959.0, + 320.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 953.0, + 1194.0, + 953.0, + 1194.0, + 986.0, + 324.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1008.0, + 1405.0, + 1008.0, + 1405.0, + 1041.0, + 298.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1039.0, + 1401.0, + 1039.0, + 1401.0, + 1073.0, + 326.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1067.0, + 359.0, + 1067.0, + 359.0, + 1104.0, + 323.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1067.0, + 554.0, + 1067.0, + 554.0, + 1104.0, + 379.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 341.0, + 491.0, + 341.0, + 491.0, + 377.0, + 297.0, + 377.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 817, + 75, + 817, + 105, + 300, + 105 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 297, + 1273, + 1399, + 1273, + 1399, + 1367, + 297, + 1367 + ], + "score": 0.727 + }, + { + "category_id": 1, + "poly": [ + 289, + 1385, + 1404, + 1385, + 1404, + 1450, + 289, + 1450 + ], + "score": 0.679 + }, + { + "category_id": 1, + "poly": [ + 294, + 964, + 1400, + 964, + 1400, + 1030, + 294, + 1030 + ], + "score": 0.67 + }, + { + "category_id": 1, + "poly": [ + 298, + 1580, + 1402, + 1580, + 1402, + 1675, + 298, + 1675 + ], + "score": 0.653 + }, + { + "category_id": 1, + "poly": [ + 299, + 1160, + 1400, + 1160, + 1400, + 1254, + 299, + 1254 + ], + "score": 0.653 + }, + { + "category_id": 1, + "poly": [ + 297, + 1694, + 1403, + 1694, + 1403, + 1787, + 297, + 1787 + ], + "score": 0.645 + }, + { + "category_id": 1, + "poly": [ + 300, + 1048, + 1400, + 1048, + 1400, + 1142, + 300, + 1142 + ], + "score": 0.644 + }, + { + "category_id": 1, + "poly": [ + 296, + 1806, + 1401, + 1806, + 1401, + 1870, + 296, + 1870 + ], + "score": 0.637 + }, + { + "category_id": 1, + "poly": [ + 297, + 710, + 1403, + 710, + 1403, + 833, + 297, + 833 + ], + "score": 0.615 + }, + { + "category_id": 1, + "poly": [ + 297, + 1467, + 1402, + 1467, + 1402, + 1563, + 297, + 1563 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1398, + 1971, + 1398, + 2035, + 298, + 2035 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 295, + 597, + 1403, + 597, + 1403, + 690, + 295, + 690 + ], + "score": 0.589 + }, + { + "category_id": 1, + "poly": [ + 298, + 1889, + 1398, + 1889, + 1398, + 1954, + 298, + 1954 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 294, + 485, + 1400, + 485, + 1400, + 579, + 294, + 579 + ], + "score": 0.544 + }, + { + "category_id": 1, + "poly": [ + 297, + 371, + 1398, + 371, + 1398, + 465, + 297, + 465 + ], + "score": 0.524 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1405, + 229, + 1405, + 352, + 297, + 352 + ], + "score": 0.486 + }, + { + "category_id": 1, + "poly": [ + 299, + 853, + 1401, + 853, + 1401, + 947, + 299, + 947 + ], + "score": 0.214 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 1404.0, + 1273.0, + 1404.0, + 1310.0, + 295.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1302.0, + 1406.0, + 1302.0, + 1406.0, + 1342.0, + 321.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1333.0, + 600.0, + 1333.0, + 600.0, + 1367.0, + 323.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1384.0, + 1405.0, + 1384.0, + 1405.0, + 1423.0, + 293.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1416.0, + 479.0, + 1416.0, + 479.0, + 1450.0, + 323.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 963.0, + 1404.0, + 963.0, + 1404.0, + 1002.0, + 293.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 994.0, + 1355.0, + 994.0, + 1355.0, + 1031.0, + 322.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1582.0, + 1406.0, + 1582.0, + 1406.0, + 1617.0, + 296.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1612.0, + 1407.0, + 1612.0, + 1407.0, + 1649.0, + 322.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1643.0, + 1264.0, + 1643.0, + 1264.0, + 1677.0, + 325.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1160.0, + 1404.0, + 1160.0, + 1404.0, + 1196.0, + 294.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1192.0, + 1401.0, + 1192.0, + 1401.0, + 1226.0, + 324.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1223.0, + 737.0, + 1223.0, + 737.0, + 1255.0, + 322.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1691.0, + 1405.0, + 1691.0, + 1405.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1727.0, + 1404.0, + 1727.0, + 1404.0, + 1757.0, + 324.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1754.0, + 396.0, + 1754.0, + 396.0, + 1788.0, + 322.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1048.0, + 1403.0, + 1048.0, + 1403.0, + 1083.0, + 295.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1079.0, + 1404.0, + 1079.0, + 1404.0, + 1113.0, + 324.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1111.0, + 984.0, + 1111.0, + 984.0, + 1142.0, + 322.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1805.0, + 1406.0, + 1805.0, + 1406.0, + 1844.0, + 292.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1837.0, + 678.0, + 1837.0, + 678.0, + 1873.0, + 324.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 711.0, + 1404.0, + 711.0, + 1404.0, + 744.0, + 296.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 741.0, + 1405.0, + 741.0, + 1405.0, + 774.0, + 322.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 770.0, + 1402.0, + 770.0, + 1402.0, + 805.0, + 321.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 803.0, + 538.0, + 803.0, + 538.0, + 832.0, + 324.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1465.0, + 1406.0, + 1465.0, + 1406.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1498.0, + 1404.0, + 1498.0, + 1404.0, + 1535.0, + 322.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1531.0, + 902.0, + 1531.0, + 902.0, + 1564.0, + 322.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2002.0, + 1280.0, + 2002.0, + 1280.0, + 2038.0, + 324.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 598.0, + 1403.0, + 598.0, + 1403.0, + 631.0, + 297.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 627.0, + 1406.0, + 627.0, + 1406.0, + 665.0, + 320.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 658.0, + 705.0, + 658.0, + 705.0, + 692.0, + 322.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1889.0, + 1402.0, + 1889.0, + 1402.0, + 1925.0, + 295.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1918.0, + 1187.0, + 1918.0, + 1187.0, + 1956.0, + 322.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 485.0, + 1404.0, + 485.0, + 1404.0, + 522.0, + 294.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 515.0, + 1405.0, + 515.0, + 1405.0, + 551.0, + 321.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 547.0, + 947.0, + 547.0, + 947.0, + 580.0, + 326.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 372.0, + 1403.0, + 372.0, + 1403.0, + 410.0, + 293.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 405.0, + 1403.0, + 405.0, + 1403.0, + 439.0, + 323.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 435.0, + 1038.0, + 435.0, + 1038.0, + 466.0, + 322.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 257.0, + 1406.0, + 257.0, + 1406.0, + 298.0, + 320.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 293.0, + 1403.0, + 293.0, + 1403.0, + 324.0, + 322.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 322.0, + 724.0, + 322.0, + 724.0, + 352.0, + 322.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 854.0, + 1405.0, + 854.0, + 1405.0, + 888.0, + 295.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 885.0, + 1403.0, + 885.0, + 1403.0, + 919.0, + 324.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 916.0, + 902.0, + 916.0, + 902.0, + 946.0, + 323.0, + 946.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.87 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 292, + 227, + 1407, + 227, + 1407, + 771, + 292, + 771 + ], + "score": 0.562 + }, + { + "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": [ + 293.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 261.0, + 681.0, + 261.0, + 681.0, + 296.0, + 323.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 310.0, + 1404.0, + 310.0, + 1404.0, + 349.0, + 294.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 343.0, + 1404.0, + 343.0, + 1404.0, + 380.0, + 320.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 376.0, + 797.0, + 376.0, + 797.0, + 410.0, + 320.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 424.0, + 1406.0, + 424.0, + 1406.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 456.0, + 1141.0, + 456.0, + 1141.0, + 493.0, + 322.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 505.0, + 1405.0, + 505.0, + 1405.0, + 546.0, + 295.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 535.0, + 1406.0, + 535.0, + 1406.0, + 578.0, + 320.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 571.0, + 819.0, + 571.0, + 819.0, + 605.0, + 323.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 618.0, + 1406.0, + 618.0, + 1406.0, + 661.0, + 291.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 651.0, + 991.0, + 651.0, + 991.0, + 686.0, + 323.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 743.0, + 293.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 734.0, + 1308.0, + 734.0, + 1308.0, + 771.0, + 320.0, + 771.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 317, + 305, + 1383, + 305, + 1383, + 1395, + 317, + 1395 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 295, + 1434, + 1406, + 1434, + 1406, + 1680, + 295, + 1680 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.846 + }, + { + "category_id": 1, + "poly": [ + 300, + 227, + 508, + 227, + 508, + 261, + 300, + 261 + ], + "score": 0.328 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 508, + 227, + 508, + 261, + 300, + 261 + ], + "score": 0.184 + }, + { + "category_id": 15, + "poly": [ + 757.0, + 315.0, + 956.0, + 315.0, + 956.0, + 350.0, + 757.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 498.0, + 782.0, + 498.0, + 782.0, + 534.0, + 569.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 499.0, + 1143.0, + 499.0, + 1143.0, + 535.0, + 914.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 680.0, + 768.0, + 680.0, + 768.0, + 716.0, + 579.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 676.0, + 1158.0, + 676.0, + 1158.0, + 719.0, + 903.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 722.0, + 632.0, + 722.0, + 632.0, + 848.0, + 524.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 857.0, + 556.0, + 857.0, + 556.0, + 897.0, + 417.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 856.0, + 995.0, + 856.0, + 995.0, + 898.0, + 712.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 860.0, + 1322.0, + 860.0, + 1322.0, + 896.0, + 1092.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1036.0, + 739.0, + 1036.0, + 739.0, + 1080.0, + 609.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1036.0, + 1182.0, + 1036.0, + 1182.0, + 1081.0, + 881.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1217.0, + 945.0, + 1217.0, + 945.0, + 1253.0, + 762.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1434.0, + 1403.0, + 1434.0, + 1403.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1467.0, + 1404.0, + 1467.0, + 1404.0, + 1501.0, + 294.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1496.0, + 1404.0, + 1496.0, + 1404.0, + 1531.0, + 292.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 1404.0, + 1528.0, + 1404.0, + 1562.0, + 294.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1557.0, + 1404.0, + 1557.0, + 1404.0, + 1592.0, + 294.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1586.0, + 1404.0, + 1586.0, + 1404.0, + 1626.0, + 292.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1618.0, + 1404.0, + 1618.0, + 1404.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 1138.0, + 1647.0, + 1138.0, + 1682.0, + 294.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 222.0, + 513.0, + 222.0, + 513.0, + 269.0, + 295.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 222.0, + 513.0, + 222.0, + 513.0, + 269.0, + 295.0, + 269.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1851, + 1403, + 1851, + 1403, + 2033, + 298, + 2033 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 306, + 225, + 1394, + 225, + 1394, + 688, + 306, + 688 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 305, + 971, + 1399, + 971, + 1399, + 1425, + 305, + 1425 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 724, + 1405, + 724, + 1405, + 938, + 296, + 938 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 1775, + 1401, + 1775, + 1401, + 1837, + 297, + 1837 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 296, + 1468, + 1405, + 1468, + 1405, + 1591, + 296, + 1591 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 1716, + 503, + 1716, + 503, + 1749, + 299, + 1749 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 300, + 1647, + 593, + 1647, + 593, + 1681, + 300, + 1681 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.851 + }, + { + "category_id": 13, + "poly": [ + 1038, + 1806, + 1088, + 1806, + 1088, + 1839, + 1038, + 1839 + ], + "score": 0.92, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 490, + 1806, + 532, + 1806, + 532, + 1839, + 490, + 1839 + ], + "score": 0.89, + "latex": "l ( t )" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1775, + 1228, + 1775, + 1228, + 1809, + 1179, + 1809 + ], + "score": 0.88, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 652, + 1777, + 672, + 1777, + 672, + 1808, + 652, + 1808 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 958, + 1945, + 977, + 1945, + 977, + 1975, + 958, + 1975 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1854, + 1195, + 1854, + 1195, + 1884, + 1176, + 1884 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 298, + 1854, + 317, + 1854, + 317, + 1885, + 298, + 1885 + ], + "score": 0.82, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 610, + 1811, + 629, + 1811, + 629, + 1833, + 610, + 1833 + ], + "score": 0.76, + "latex": "_ { z }" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1777, + 1254, + 1777, + 1254, + 1803, + 1242, + 1803 + ], + "score": 0.52, + "latex": "l" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 242.0, + 347.0, + 242.0, + 347.0, + 413.0, + 307.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 447.0, + 340.0, + 447.0, + 340.0, + 652.0, + 299.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 585.0, + 661.0, + 585.0, + 661.0, + 648.0, + 474.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 647.0, + 634.0, + 647.0, + 634.0, + 694.0, + 363.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 649.0, + 933.0, + 649.0, + 933.0, + 694.0, + 801.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 650.0, + 1369.0, + 650.0, + 1369.0, + 689.0, + 1120.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 974.0, + 592.0, + 974.0, + 592.0, + 1005.0, + 409.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 973.0, + 963.0, + 973.0, + 963.0, + 1005.0, + 762.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 974.0, + 1391.0, + 974.0, + 1391.0, + 1005.0, + 1063.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1057.0, + 340.0, + 1057.0, + 340.0, + 1147.0, + 307.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1238.0, + 333.0, + 1238.0, + 333.0, + 1262.0, + 313.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 726.0, + 1405.0, + 726.0, + 1405.0, + 760.0, + 295.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 752.0, + 1405.0, + 752.0, + 1405.0, + 792.0, + 293.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 784.0, + 1403.0, + 784.0, + 1403.0, + 821.0, + 294.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 851.0, + 294.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 845.0, + 1405.0, + 845.0, + 1405.0, + 879.0, + 294.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 876.0, + 1406.0, + 876.0, + 1406.0, + 911.0, + 294.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 906.0, + 1170.0, + 906.0, + 1170.0, + 941.0, + 294.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1504.0, + 294.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1534.0, + 293.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 1405.0, + 1531.0, + 1405.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1557.0, + 383.0, + 1557.0, + 383.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 506.0, + 1713.0, + 506.0, + 1752.0, + 294.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1641.0, + 599.0, + 1641.0, + 599.0, + 1688.0, + 291.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1851.0, + 1175.0, + 1851.0, + 1175.0, + 1887.0, + 318.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1887.0, + 1196.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1942.0, + 957.0, + 1942.0, + 957.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 978.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1375.0, + 2002.0, + 1375.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1772.0, + 651.0, + 1772.0, + 651.0, + 1810.0, + 295.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1772.0, + 1178.0, + 1772.0, + 1178.0, + 1810.0, + 673.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1772.0, + 1241.0, + 1772.0, + 1241.0, + 1810.0, + 1229.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1810.0, + 1255.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1802.0, + 489.0, + 1802.0, + 489.0, + 1843.0, + 292.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1802.0, + 609.0, + 1802.0, + 609.0, + 1843.0, + 533.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1802.0, + 1037.0, + 1802.0, + 1037.0, + 1843.0, + 630.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1802.0, + 1101.0, + 1802.0, + 1101.0, + 1843.0, + 1089.0, + 1843.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 382, + 603, + 1323, + 603, + 1323, + 1511, + 382, + 1511 + ], + "score": 0.983, + "html": "
Residual BlockOutput SizekTimekFreqSFreqkFilters
layer norm + relu1-1
conv111kFilters/4
layer norm + relu=1
conv33SFreqkFilters/4
layer norm + relu--
conv111kFilters
add residual=--=
ResnetOutput SizekTimekFreqSFreqkFilters
LogMelSpectrogram(125,229, 1)1-11
conv2d(125, 115, 64)77264
max pool(125,58, 64)1321
residual block(125,58,128)331128
residual block(125,57, 128)331128
residual block(125,29,256)332256
residual block(125,29,256)331256
residual block(125,29,256)331256
residual block(125,15,512)332512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,15, 512)331512
residual block(125,8, 1024)3321024
residual block(125, 8,1024)3311024
residual block(125,8, 1024)3311024
dense(125,1, 128)=1281
upsample time(1000, 1, 128)=
softplus and normalize(1000, 1, 128)
" + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 351, + 298, + 351 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1402, + 1880, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 366, + 1403, + 366, + 1403, + 581, + 298, + 581 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 299, + 1824, + 489, + 1824, + 489, + 1856, + 299, + 1856 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 6, + "poly": [ + 296, + 1532, + 1405, + 1532, + 1405, + 1778, + 296, + 1778 + ], + "score": 0.514 + }, + { + "category_id": 1, + "poly": [ + 296, + 1532, + 1405, + 1532, + 1405, + 1778, + 296, + 1778 + ], + "score": 0.45 + }, + { + "category_id": 13, + "poly": [ + 540, + 1973, + 590, + 1973, + 590, + 2005, + 540, + 2005 + ], + "score": 0.92, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 803, + 1943, + 855, + 1943, + 855, + 1975, + 803, + 1975 + ], + "score": 0.92, + "latex": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf { } \\mathbf \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf " + }, + { + "category_id": 13, + "poly": [ + 724, + 1882, + 906, + 1882, + 906, + 1916, + 724, + 1916 + ], + "score": 0.91, + "latex": "( f ( t ) , l ( t ) , z ( t ) )" + }, + { + "category_id": 13, + "poly": [ + 1135, + 519, + 1185, + 519, + 1185, + 552, + 1135, + 552 + ], + "score": 0.91, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 1288, + 428, + 1342, + 428, + 1342, + 457, + 1288, + 457 + ], + "score": 0.88, + "latex": "7 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 983, + 1974, + 1015, + 1974, + 1015, + 2000, + 983, + 2000 + ], + "score": 0.8, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 523, + 1271, + 523, + 1271, + 546, + 1250, + 546 + ], + "score": 0.78, + "latex": "_ z" + }, + { + "category_id": 13, + "poly": [ + 503, + 1685, + 603, + 1685, + 603, + 1715, + 503, + 1715 + ], + "score": 0.71, + "latex": "1 3 . 3 \\mathrm { k H z }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1685, + 446, + 1685, + 446, + 1714, + 373, + 1714 + ], + "score": 0.64, + "latex": "8 . 2 \\mathrm { H z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 373, + 317, + 373, + 317, + 396, + 297, + 396 + ], + "score": 0.63, + "latex": "_ z" + }, + { + "category_id": 13, + "poly": [ + 960, + 428, + 1026, + 428, + 1026, + 457, + 960, + 457 + ], + "score": 0.61, + "latex": "2 0 \\mathrm { H z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 232, + 309, + 232, + 309, + 258, + 297, + 258 + ], + "score": 0.55, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 1061, + 428, + 1152, + 428, + 1152, + 457, + 1061, + 457 + ], + "score": 0.54, + "latex": "8 0 0 0 \\mathrm { H z }" + }, + { + "category_id": 13, + "poly": [ + 524, + 780, + 548, + 780, + 548, + 804, + 524, + 804 + ], + "score": 0.42, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 525, + 714, + 548, + 714, + 548, + 737, + 525, + 737 + ], + "score": 0.28, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 525, + 649, + 547, + 649, + 547, + 671, + 525, + 671 + ], + "score": 0.28, + "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": [ + 294.0, + 1821.0, + 493.0, + 1821.0, + 493.0, + 1860.0, + 294.0, + 1860.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": [ + 295.0, + 1531.0, + 1403.0, + 1531.0, + 1403.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1627.0, + 294.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 1405.0, + 1624.0, + 1405.0, + 1657.0, + 294.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1654.0, + 1403.0, + 1654.0, + 1403.0, + 1687.0, + 296.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 372.0, + 1684.0, + 372.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1684.0, + 502.0, + 1684.0, + 502.0, + 1720.0, + 447.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1684.0, + 1392.0, + 1684.0, + 1392.0, + 1720.0, + 604.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1715.0, + 1406.0, + 1715.0, + 1406.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1746.0, + 673.0, + 1746.0, + 673.0, + 1780.0, + 296.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 228.0, + 296.0, + 228.0, + 296.0, + 265.0, + 292.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 265.0, + 310.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 290.0, + 1405.0, + 290.0, + 1405.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 456.0, + 320.0, + 456.0, + 350.0, + 294.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 723.0, + 1882.0, + 723.0, + 1919.0, + 297.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1919.0, + 907.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 802.0, + 1942.0, + 802.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 856.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 539.0, + 1970.0, + 539.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1970.0, + 982.0, + 1970.0, + 982.0, + 2009.0, + 591.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2009.0, + 1016.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 664.0, + 2003.0, + 664.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 365.0, + 296.0, + 365.0, + 296.0, + 405.0, + 292.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 365.0, + 1405.0, + 365.0, + 1405.0, + 405.0, + 318.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 434.0, + 293.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 426.0, + 959.0, + 426.0, + 959.0, + 464.0, + 292.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 426.0, + 1060.0, + 426.0, + 1060.0, + 464.0, + 1027.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 426.0, + 1287.0, + 426.0, + 1287.0, + 464.0, + 1153.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 426.0, + 1407.0, + 426.0, + 1407.0, + 464.0, + 1343.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 493.0, + 294.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 488.0, + 1405.0, + 488.0, + 1405.0, + 523.0, + 293.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 514.0, + 1134.0, + 514.0, + 1134.0, + 557.0, + 292.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 514.0, + 1249.0, + 514.0, + 1249.0, + 557.0, + 1186.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 514.0, + 1407.0, + 514.0, + 1407.0, + 557.0, + 1272.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 546.0, + 1011.0, + 546.0, + 1011.0, + 587.0, + 292.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 1403.0, + 1531.0, + 1403.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1627.0, + 294.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 1405.0, + 1624.0, + 1405.0, + 1657.0, + 294.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1654.0, + 1403.0, + 1654.0, + 1403.0, + 1687.0, + 296.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 372.0, + 1684.0, + 372.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1684.0, + 502.0, + 1684.0, + 502.0, + 1720.0, + 447.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1684.0, + 1392.0, + 1684.0, + 1392.0, + 1720.0, + 604.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1715.0, + 1406.0, + 1715.0, + 1406.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1746.0, + 673.0, + 1746.0, + 673.0, + 1780.0, + 296.0, + 1780.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1404, + 1942, + 1404, + 2035, + 299, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 687, + 1405, + 687, + 1405, + 812, + 296, + 812 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 295, + 840, + 1399, + 840, + 1399, + 1201, + 295, + 1201 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1313, + 1405, + 1313, + 1405, + 1406, + 297, + 1406 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 409, + 218, + 1297, + 218, + 1297, + 490, + 409, + 490 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 306, + 1438, + 1391, + 1438, + 1391, + 1765, + 306, + 1765 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 294, + 611, + 1401, + 611, + 1401, + 674, + 294, + 674 + ], + "score": 0.951 + }, + { + "category_id": 4, + "poly": [ + 672, + 1789, + 1028, + 1789, + 1028, + 1824, + 672, + 1824 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 298, + 1883, + 495, + 1883, + 495, + 1916, + 298, + 1916 + ], + "score": 0.918 + }, + { + "category_id": 4, + "poly": [ + 645, + 518, + 1053, + 518, + 1053, + 552, + 645, + 552 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 816, + 75, + 816, + 104, + 298, + 104 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 4, + "poly": [ + 300, + 1229, + 1384, + 1229, + 1384, + 1264, + 300, + 1264 + ], + "score": 0.855 + }, + { + "category_id": 13, + "poly": [ + 972, + 641, + 1084, + 641, + 1084, + 676, + 972, + 676 + ], + "score": 0.93, + "latex": "( \\pmb { a } ( t ) , \\pmb { H } )" + }, + { + "category_id": 13, + "poly": [ + 914, + 687, + 1097, + 687, + 1097, + 722, + 914, + 722 + ], + "score": 0.92, + "latex": "( f ( t ) , l ( t ) , z ( t ) )" + }, + { + "category_id": 13, + "poly": [ + 458, + 748, + 509, + 748, + 509, + 782, + 458, + 782 + ], + "score": 0.92, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 930, + 524, + 950, + 524, + 950, + 546, + 930, + 546 + ], + "score": 0.74, + "latex": "_ { z }" + }, + { + "category_id": 13, + "poly": [ + 561, + 748, + 604, + 748, + 604, + 781, + 561, + 781 + ], + "score": 0.58, + "latex": "l ( t )" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 858.0, + 915.0, + 858.0, + 915.0, + 897.0, + 789.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 880.0, + 1390.0, + 880.0, + 1390.0, + 917.0, + 1279.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 901.0, + 377.0, + 901.0, + 377.0, + 933.0, + 339.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 900.0, + 560.0, + 900.0, + 560.0, + 933.0, + 502.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 922.0, + 1200.0, + 922.0, + 1200.0, + 955.0, + 1122.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 908.0, + 1371.0, + 908.0, + 1371.0, + 943.0, + 1299.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 943.0, + 1374.0, + 943.0, + 1374.0, + 979.0, + 1292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1010.0, + 369.0, + 1010.0, + 369.0, + 1032.0, + 348.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1005.0, + 561.0, + 1005.0, + 561.0, + 1036.0, + 501.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1013.0, + 605.0, + 1013.0, + 605.0, + 1028.0, + 589.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1004.0, + 702.0, + 1004.0, + 702.0, + 1039.0, + 616.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1003.0, + 816.0, + 1003.0, + 816.0, + 1039.0, + 752.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1005.0, + 954.0, + 1005.0, + 954.0, + 1039.0, + 867.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1015.0, + 980.0, + 1015.0, + 980.0, + 1026.0, + 969.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1003.0, + 1064.0, + 1003.0, + 1064.0, + 1036.0, + 1001.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1044.0, + 1379.0, + 1044.0, + 1379.0, + 1082.0, + 1291.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1073.0, + 1372.0, + 1073.0, + 1372.0, + 1108.0, + 1297.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1108.0, + 414.0, + 1108.0, + 414.0, + 1142.0, + 305.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1108.0, + 561.0, + 1108.0, + 561.0, + 1141.0, + 502.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1087.0, + 1200.0, + 1087.0, + 1200.0, + 1123.0, + 1124.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1091.0, + 1395.0, + 1091.0, + 1395.0, + 1167.0, + 1277.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 234.0, + 916.0, + 234.0, + 916.0, + 272.0, + 803.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 303.0, + 509.0, + 303.0, + 509.0, + 339.0, + 439.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 327.0, + 506.0, + 327.0, + 506.0, + 360.0, + 441.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 327.0, + 697.0, + 327.0, + 697.0, + 384.0, + 602.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 339.0, + 840.0, + 339.0, + 840.0, + 373.0, + 736.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 341.0, + 956.0, + 341.0, + 956.0, + 370.0, + 900.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 341.0, + 1102.0, + 341.0, + 1102.0, + 374.0, + 1033.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1450.0, + 890.0, + 1450.0, + 890.0, + 1492.0, + 809.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1579.0, + 477.0, + 1579.0, + 477.0, + 1620.0, + 377.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1567.0, + 565.0, + 1567.0, + 565.0, + 1635.0, + 486.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1583.0, + 786.0, + 1583.0, + 786.0, + 1619.0, + 595.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1570.0, + 890.0, + 1570.0, + 890.0, + 1633.0, + 811.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1582.0, + 1109.0, + 1582.0, + 1109.0, + 1619.0, + 919.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1598.0, + 1123.0, + 1598.0, + 1123.0, + 1609.0, + 1111.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1568.0, + 1215.0, + 1568.0, + 1215.0, + 1634.0, + 1135.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1582.0, + 1322.0, + 1582.0, + 1322.0, + 1618.0, + 1242.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1788.0, + 1028.0, + 1788.0, + 1028.0, + 1825.0, + 670.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 497.0, + 1882.0, + 497.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 516.0, + 929.0, + 516.0, + 929.0, + 556.0, + 644.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 516.0, + 1053.0, + 516.0, + 1053.0, + 556.0, + 951.0, + 556.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": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1224.0, + 1390.0, + 1224.0, + 1390.0, + 1270.0, + 308.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1041.0, + 2001.0, + 1041.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 686.0, + 913.0, + 686.0, + 913.0, + 726.0, + 293.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 686.0, + 1405.0, + 686.0, + 1405.0, + 726.0, + 1098.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 719.0, + 1405.0, + 719.0, + 1405.0, + 752.0, + 294.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 748.0, + 457.0, + 748.0, + 457.0, + 785.0, + 295.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 748.0, + 560.0, + 748.0, + 560.0, + 785.0, + 510.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 748.0, + 1406.0, + 748.0, + 1406.0, + 785.0, + 605.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 778.0, + 738.0, + 778.0, + 738.0, + 816.0, + 291.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1311.0, + 1403.0, + 1311.0, + 1403.0, + 1349.0, + 295.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1345.0, + 1403.0, + 1345.0, + 1403.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1374.0, + 850.0, + 1374.0, + 850.0, + 1408.0, + 295.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 608.0, + 1405.0, + 608.0, + 1405.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 641.0, + 971.0, + 641.0, + 971.0, + 677.0, + 296.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 641.0, + 1183.0, + 641.0, + 1183.0, + 677.0, + 1085.0, + 677.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 287, + 1404, + 287, + 1404, + 502, + 297, + 502 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 460, + 1184, + 1238, + 1184, + 1238, + 1459, + 460, + 1459 + ], + "score": 0.981, + "html": "
ModelParameters
WaveNet Autoencoder (Engel et al.,2017)75M
WaveRNN (Hantrakul et al., 2019)23M
GANSynth (Engel et al., 2019)15M
DDSP Autoencoder (Unsupervised)12M
DDSP Autoencoder (Supervised, NSynth)7M
DDSP Autoencoder (Supervised, Solo Violin)6M
DDSP Autoencoder Tiny (Supervised, Solo Violin)0.24M
" + }, + { + "category_id": 1, + "poly": [ + 297, + 599, + 1404, + 599, + 1404, + 783, + 297, + 783 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 797, + 1402, + 797, + 1402, + 920, + 299, + 920 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1912, + 1403, + 1912, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 295, + 1010, + 1404, + 1010, + 1404, + 1074, + 295, + 1074 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 655, + 936, + 1041, + 936, + 1041, + 977, + 655, + 977 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 594, + 229, + 594, + 261, + 300, + 261 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 298, + 1783, + 671, + 1783, + 671, + 1818, + 298, + 1818 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 299, + 541, + 552, + 541, + 552, + 573, + 299, + 573 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 299, + 1853, + 483, + 1853, + 483, + 1886, + 299, + 1886 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 944, + 1399, + 944, + 1399, + 973, + 1366, + 973 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 297, + 1493, + 1404, + 1493, + 1404, + 1709, + 297, + 1709 + ], + "score": 0.639 + }, + { + "category_id": 6, + "poly": [ + 299, + 1114, + 626, + 1114, + 626, + 1146, + 299, + 1146 + ], + "score": 0.545 + }, + { + "category_id": 0, + "poly": [ + 299, + 1114, + 626, + 1114, + 626, + 1146, + 299, + 1146 + ], + "score": 0.453 + }, + { + "category_id": 6, + "poly": [ + 297, + 1493, + 1404, + 1493, + 1404, + 1709, + 297, + 1709 + ], + "score": 0.246 + }, + { + "category_id": 13, + "poly": [ + 583, + 468, + 690, + 468, + 690, + 499, + 583, + 499 + ], + "score": 0.92, + "latex": "5 \\times 1 0 ^ { - 5 }" + }, + { + "category_id": 14, + "poly": [ + 655, + 934, + 1045, + 934, + 1045, + 977, + 655, + 977 + ], + "score": 0.91, + "latex": "y = 2 . 0 \\cdot \\mathrm { s i g m o i d } ( x ) ^ { \\log 1 0 } + 1 0 ^ { - 7 }" + }, + { + "category_id": 13, + "poly": [ + 644, + 1616, + 695, + 1616, + 695, + 1650, + 644, + 1650 + ], + "score": 0.91, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 920, + 288, + 970, + 288, + 970, + 322, + 920, + 322 + ], + "score": 0.91, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 354, + 631, + 405, + 631, + 405, + 664, + 354, + 664 + ], + "score": 0.9, + "latex": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf { } \\mathbf \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf { } \\mathbf \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\Psi \\mathbf " + }, + { + "category_id": 13, + "poly": [ + 297, + 1646, + 346, + 1646, + 346, + 1679, + 297, + 1679 + ], + "score": 0.9, + "latex": "z ( t )" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1914, + 1350, + 1914, + 1350, + 1943, + 1316, + 1943 + ], + "score": 0.88, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 419, + 1913, + 453, + 1913, + 453, + 1943, + 419, + 1943 + ], + "score": 0.88, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 466, + 1974, + 501, + 1974, + 501, + 2003, + 466, + 2003 + ], + "score": 0.88, + "latex": "L _ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 598.0, + 228.0, + 598.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1778.0, + 676.0, + 1778.0, + 676.0, + 1825.0, + 296.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 538.0, + 556.0, + 538.0, + 556.0, + 577.0, + 293.0, + 577.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, + 1849.0, + 487.0, + 1849.0, + 487.0, + 1890.0, + 294.0, + 1890.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, + 1109.0, + 630.0, + 1109.0, + 630.0, + 1151.0, + 293.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1109.0, + 630.0, + 1109.0, + 630.0, + 1151.0, + 293.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 1405.0, + 1492.0, + 1405.0, + 1529.0, + 294.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1522.0, + 1405.0, + 1522.0, + 1405.0, + 1564.0, + 292.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1591.0, + 292.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1622.0, + 292.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 643.0, + 1616.0, + 643.0, + 1650.0, + 294.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1650.0, + 696.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1647.0, + 1404.0, + 1647.0, + 1404.0, + 1681.0, + 347.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1676.0, + 1369.0, + 1676.0, + 1369.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 286.0, + 919.0, + 286.0, + 919.0, + 324.0, + 294.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 286.0, + 1405.0, + 286.0, + 1405.0, + 324.0, + 971.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1404.0, + 319.0, + 1404.0, + 354.0, + 294.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 351.0, + 1401.0, + 351.0, + 1401.0, + 382.0, + 296.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 379.0, + 1406.0, + 379.0, + 1406.0, + 417.0, + 292.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 407.0, + 1409.0, + 407.0, + 1409.0, + 445.0, + 290.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 440.0, + 1405.0, + 440.0, + 1405.0, + 474.0, + 294.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 470.0, + 582.0, + 470.0, + 582.0, + 504.0, + 295.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 470.0, + 1001.0, + 470.0, + 1001.0, + 504.0, + 691.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1406.0, + 598.0, + 1406.0, + 637.0, + 294.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 631.0, + 353.0, + 631.0, + 353.0, + 667.0, + 296.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 631.0, + 1404.0, + 631.0, + 1404.0, + 667.0, + 406.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 661.0, + 1406.0, + 661.0, + 1406.0, + 697.0, + 294.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 727.0, + 294.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 721.0, + 1404.0, + 721.0, + 1404.0, + 753.0, + 296.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 751.0, + 1269.0, + 751.0, + 1269.0, + 789.0, + 294.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 797.0, + 1404.0, + 797.0, + 1404.0, + 832.0, + 295.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 826.0, + 1407.0, + 826.0, + 1407.0, + 867.0, + 292.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 858.0, + 1406.0, + 858.0, + 1406.0, + 895.0, + 294.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 890.0, + 642.0, + 890.0, + 642.0, + 922.0, + 295.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 418.0, + 1913.0, + 418.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1913.0, + 1315.0, + 1913.0, + 1315.0, + 1945.0, + 454.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1945.0, + 1351.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1975.0, + 293.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 465.0, + 1973.0, + 465.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2009.0, + 502.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1187.0, + 2001.0, + 1187.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1006.0, + 1406.0, + 1006.0, + 1406.0, + 1048.0, + 293.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1042.0, + 654.0, + 1042.0, + 654.0, + 1077.0, + 295.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 1405.0, + 1492.0, + 1405.0, + 1529.0, + 294.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1522.0, + 1405.0, + 1522.0, + 1405.0, + 1564.0, + 292.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1591.0, + 292.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1622.0, + 292.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 643.0, + 1616.0, + 643.0, + 1650.0, + 294.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1650.0, + 696.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1647.0, + 1404.0, + 1647.0, + 1404.0, + 1681.0, + 347.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1676.0, + 1369.0, + 1676.0, + 1369.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 702, + 1405, + 702, + 1405, + 976, + 296, + 976 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 366, + 1404, + 366, + 1404, + 610, + 297, + 610 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 551, + 1006, + 1146, + 1006, + 1146, + 1181, + 551, + 1181 + ], + "score": 0.978, + "html": "
TaskLoudness (L1)F0 (L1)
Reconstruction0.0420.060
Loudness l(t) interp.0.0610.060
FO f(t) interp.0.0480.070
Zz(t) interp.0.0630.065
" + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 351, + 298, + 351 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 300, + 646, + 681, + 646, + 681, + 678, + 300, + 678 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.843 + }, + { + "category_id": 6, + "poly": [ + 479, + 1216, + 1219, + 1216, + 1219, + 1250, + 479, + 1250 + ], + "score": 0.719 + }, + { + "category_id": 1, + "poly": [ + 479, + 1216, + 1219, + 1216, + 1219, + 1250, + 479, + 1250 + ], + "score": 0.233 + }, + { + "category_id": 13, + "poly": [ + 359, + 794, + 598, + 794, + 598, + 828, + 359, + 828 + ], + "score": 0.93, + "latex": "( f ( t ) _ { A } , l ( t ) _ { B } , z ( t ) _ { A } )" + }, + { + "category_id": 13, + "poly": [ + 823, + 734, + 1060, + 734, + 1060, + 768, + 823, + 768 + ], + "score": 0.93, + "latex": "( f ( t ) _ { A } , \\bar { l } ( t ) _ { A } , z ( t ) _ { A } )" + }, + { + "category_id": 13, + "poly": [ + 852, + 856, + 919, + 856, + 919, + 888, + 852, + 888 + ], + "score": 0.92, + "latex": "f ( t ) _ { A }" + }, + { + "category_id": 13, + "poly": [ + 987, + 826, + 1226, + 826, + 1226, + 859, + 987, + 859 + ], + "score": 0.91, + "latex": "( f ( t ) _ { B } , l ( t ) _ { A } , z ( t ) _ { A } )" + }, + { + "category_id": 13, + "poly": [ + 331, + 827, + 409, + 827, + 409, + 858, + 331, + 858 + ], + "score": 0.91, + "latex": "( l ( t ) _ { A } )" + }, + { + "category_id": 13, + "poly": [ + 356, + 886, + 595, + 886, + 595, + 919, + 356, + 919 + ], + "score": 0.91, + "latex": "( f ( t ) _ { A } , l ( t ) _ { A } , z ( t ) _ { B } )" + }, + { + "category_id": 13, + "poly": [ + 485, + 856, + 554, + 856, + 554, + 887, + 485, + 887 + ], + "score": 0.91, + "latex": "f ( t ) _ { B }" + }, + { + "category_id": 13, + "poly": [ + 1064, + 795, + 1126, + 795, + 1126, + 826, + 1064, + 826 + ], + "score": 0.89, + "latex": "l ( t ) _ { B }" + }, + { + "category_id": 13, + "poly": [ + 413, + 706, + 448, + 706, + 448, + 735, + 413, + 735 + ], + "score": 0.89, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 782, + 796, + 834, + 796, + 834, + 826, + 782, + 826 + ], + "score": 0.87, + "latex": "( L _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1200, + 735, + 1251, + 735, + 1251, + 766, + 1200, + 766 + ], + "score": 0.84, + "latex": "( L _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 334, + 231, + 369, + 231, + 369, + 261, + 334, + 261 + ], + "score": 0.83, + "latex": "L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 974, + 887, + 1025, + 887, + 1025, + 916, + 974, + 916 + ], + "score": 0.82, + "latex": "( L _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 537, + 231, + 608, + 231, + 608, + 261, + 537, + 261 + ], + "score": 0.74, + "latex": "\\mathrm { F 0 ~ } L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 505, + 705, + 579, + 705, + 579, + 735, + 505, + 735 + ], + "score": 0.72, + "latex": "\\mathrm { F 0 ~ } L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1118, + 887, + 1169, + 887, + 1169, + 917, + 1118, + 917 + ], + "score": 0.64, + "latex": "( L _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1352, + 735, + 1399, + 735, + 1399, + 766, + 1352, + 766 + ], + "score": 0.61, + "latex": "( L _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 979, + 858, + 1000, + 858, + 1000, + 883, + 979, + 883 + ], + "score": 0.57, + "latex": "\\textsf { Z }" + }, + { + "category_id": 13, + "poly": [ + 569, + 1143, + 642, + 1143, + 642, + 1176, + 569, + 1176 + ], + "score": 0.57, + "latex": "Z z ( t )" + }, + { + "category_id": 13, + "poly": [ + 1324, + 826, + 1372, + 826, + 1372, + 857, + 1324, + 857 + ], + "score": 0.48, + "latex": "( L _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 262, + 369, + 262, + 369, + 291, + 297, + 291 + ], + "score": 0.45, + "latex": "\\mathrm { F 0 ~ } L _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1076, + 726, + 1076, + 726, + 1110, + 683, + 1110 + ], + "score": 0.44, + "latex": "l ( t )" + }, + { + "category_id": 13, + "poly": [ + 607, + 1109, + 657, + 1109, + 657, + 1142, + 607, + 1142 + ], + "score": 0.36, + "latex": "f ( t )" + }, + { + "category_id": 13, + "poly": [ + 960, + 1011, + 1002, + 1011, + 1002, + 1040, + 960, + 1040 + ], + "score": 0.3, + "latex": "\\left( L _ { 1 } \\right)" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 643.0, + 686.0, + 643.0, + 686.0, + 683.0, + 295.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1210.0, + 1221.0, + 1210.0, + 1221.0, + 1256.0, + 477.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 701.0, + 412.0, + 701.0, + 412.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 701.0, + 504.0, + 701.0, + 504.0, + 739.0, + 449.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 701.0, + 1407.0, + 701.0, + 1407.0, + 739.0, + 580.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 734.0, + 822.0, + 734.0, + 822.0, + 770.0, + 294.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 734.0, + 1199.0, + 734.0, + 1199.0, + 770.0, + 1061.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 734.0, + 1351.0, + 734.0, + 1351.0, + 770.0, + 1252.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 734.0, + 1406.0, + 734.0, + 1406.0, + 770.0, + 1400.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 765.0, + 1406.0, + 765.0, + 1406.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 794.0, + 358.0, + 794.0, + 358.0, + 830.0, + 295.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 794.0, + 781.0, + 794.0, + 781.0, + 830.0, + 599.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 794.0, + 1063.0, + 794.0, + 1063.0, + 830.0, + 835.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 794.0, + 1406.0, + 794.0, + 1406.0, + 830.0, + 1127.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 821.0, + 330.0, + 821.0, + 330.0, + 862.0, + 291.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 821.0, + 986.0, + 821.0, + 986.0, + 862.0, + 410.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 821.0, + 1323.0, + 821.0, + 1323.0, + 862.0, + 1227.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 821.0, + 1407.0, + 821.0, + 1407.0, + 862.0, + 1373.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 484.0, + 855.0, + 484.0, + 891.0, + 294.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 855.0, + 851.0, + 855.0, + 851.0, + 891.0, + 555.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 855.0, + 978.0, + 855.0, + 978.0, + 891.0, + 920.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 855.0, + 1406.0, + 855.0, + 1406.0, + 891.0, + 1001.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 355.0, + 884.0, + 355.0, + 921.0, + 294.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 884.0, + 973.0, + 884.0, + 973.0, + 921.0, + 596.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 884.0, + 1117.0, + 884.0, + 1117.0, + 921.0, + 1026.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 884.0, + 1406.0, + 884.0, + 1406.0, + 921.0, + 1170.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 1406.0, + 914.0, + 1406.0, + 951.0, + 294.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 444.0, + 948.0, + 444.0, + 982.0, + 295.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 365.0, + 1404.0, + 365.0, + 1404.0, + 403.0, + 292.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 397.0, + 1405.0, + 397.0, + 1405.0, + 432.0, + 294.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 428.0, + 1402.0, + 428.0, + 1402.0, + 462.0, + 295.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 459.0, + 1404.0, + 459.0, + 1404.0, + 493.0, + 295.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 1406.0, + 487.0, + 1406.0, + 523.0, + 294.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 517.0, + 1404.0, + 517.0, + 1404.0, + 553.0, + 294.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 1404.0, + 548.0, + 1404.0, + 584.0, + 294.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 578.0, + 1176.0, + 578.0, + 1176.0, + 613.0, + 294.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 228.0, + 333.0, + 228.0, + 333.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 228.0, + 536.0, + 228.0, + 536.0, + 267.0, + 370.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 228.0, + 1407.0, + 228.0, + 1407.0, + 267.0, + 609.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 296.0, + 260.0, + 296.0, + 293.0, + 293.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 293.0, + 370.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 288.0, + 1405.0, + 288.0, + 1405.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 635.0, + 320.0, + 635.0, + 355.0, + 293.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1210.0, + 1221.0, + 1210.0, + 1221.0, + 1256.0, + 477.0, + 1256.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 568, + 1403, + 568, + 1403, + 751, + 298, + 751 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 352, + 1403, + 352, + 1403, + 474, + 299, + 474 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 300, + 511, + 588, + 511, + 588, + 543, + 300, + 543 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 225, + 560, + 225, + 560, + 262, + 300, + 262 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 837, + 2089, + 865, + 2089, + 865, + 2112, + 837, + 2112 + ], + "score": 0.833 + }, + { + "category_id": 0, + "poly": [ + 300, + 295, + 628, + 295, + 628, + 326, + 300, + 326 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 300, + 295, + 628, + 295, + 628, + 326, + 300, + 326 + ], + "score": 0.236 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 511.0, + 592.0, + 511.0, + 592.0, + 547.0, + 294.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 222.0, + 565.0, + 222.0, + 565.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2086.0, + 869.0, + 2086.0, + 869.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 633.0, + 292.0, + 633.0, + 330.0, + 294.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 567.0, + 1405.0, + 567.0, + 1405.0, + 603.0, + 293.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1402.0, + 598.0, + 1402.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1404.0, + 630.0, + 1404.0, + 662.0, + 294.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 661.0, + 1404.0, + 661.0, + 1404.0, + 692.0, + 296.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 687.0, + 1405.0, + 687.0, + 1405.0, + 725.0, + 293.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 719.0, + 675.0, + 719.0, + 675.0, + 754.0, + 295.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1403.0, + 351.0, + 1403.0, + 385.0, + 294.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 385.0, + 1404.0, + 385.0, + 1404.0, + 414.0, + 295.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 1405.0, + 412.0, + 1405.0, + 447.0, + 294.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 444.0, + 1365.0, + 444.0, + 1365.0, + 477.0, + 295.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 633.0, + 292.0, + 633.0, + 330.0, + 294.0, + 330.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/LhY8QdUGSuw/LhY8QdUGSuw.md b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw.md new file mode 100644 index 0000000000000000000000000000000000000000..8fa30b6f2d06156d340c7a3875f81d41c3c4bc14 --- /dev/null +++ b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw.md @@ -0,0 +1,526 @@ +# ANATOMY OF CATASTROPHIC FORGETTING: HIDDEN REPRESENTATIONS AND TASK SEMANTICS + +Vinay V. Ramasesh Blueshift, Alphabet Mountain View, CA + +Ethan Dyer Blueshift, Alphabet Mountain View, CA + +Maithra Raghu Google Brain Mountain View, CA + +# ABSTRACT + +Catastrophic forgetting is a recurring challenge to developing versatile deep learning models. Despite its ubiquity, there is limited understanding of its connections to neural network (hidden) representations and task semantics. In this paper, we address this important knowledge gap. Through quantitative analysis of neural representations, we find that deeper layers are disproportionately responsible for forgetting, with sequential training resulting in an erasure of earlier task representational subspaces. Methods to mitigate forgetting stabilize these deeper layers, but show diversity on precise effects, with some increasing feature reuse while others store task representations orthogonally, preventing interference. These insights also enable the development of an analytic argument and empirical picture relating forgetting to task semantic similarity, where we find that maximal forgetting occurs for task sequences with intermediate similarity. + +# 1 INTRODUCTION + +While the past few years have seen the development of increasingly versatile machine learning systems capable of learning complex tasks (Stokes et al., 2020; Raghu & Schmidt, 2020; Wu et al., 2019b), catastrophic forgetting remains a core capability challenge. Catastrophic forgetting is the ubiquitous phenomena where machine learning models trained on non-stationary data distributions suffer performance losses on older data instances. More specifically, if our machine learning model is trained on a sequence of tasks, accuracy on earlier tasks drops significantly. The catastrophic forgetting problem manifests in many sub-domains of machine learning including continual learning (Kirkpatrick et al., 2017), multi-task learning (Kudugunta et al., 2019), standard supervised learning through input distribution shift (Toneva et al., 2019; Snoek et al., 2019; Rabanser et al., 2019; Recht et al., 2019) and data augmentation (Gontijo-Lopes et al., 2020). + +Mitigating catastrophic forgetting has been an important research focus (Goodfellow et al., 2013; Kirkpatrick et al., 2017; Lee et al., 2017; Li et al., 2019; Serra et al., 2018; Ritter et al., 2018; Rolnick \` et al., 2019), but many methods are only effective in specific settings (Kemker et al., 2018), and progress is hindered by limited understanding of catastrophic forgetting‘s fundamental properties. How does catastrophic forgetting affect the hidden representations of neural networks? Are earlier tasks forgotten equally across all parameters? Are there underlying principles common across methods to mitigate forgetting? How is catastrophic forgetting affected by (semantic) similarities between sequential tasks? This paper takes steps to answering these questions, specifically: + +1. With experiments on split CIFAR-10, a novel distribution-shift CIFAR-100 variant, CelebA and ImageNet we analyze neural network layer representations, finding that higher layers are disproportionately responsible for catastrophic forgetting, the sequential training process erasing earlier task subspaces. +2. We investigate different methods for mitigating forgetting, finding that while all stabilize higher layer representations, some methods encourage greater feature reuse in higher layers, while others store task representations as orthogonal subspaces, preventing interference. +3. We study the connection between forgetting and task semantics, finding that semantic similarity between subsequent tasks consistently controls the degree of forgetting. +4. Informed by the representation results, we construct an analytic model that relates task similarity to representation interference and forgetting. This provides a quantitative empirical measure of + +![](images/d611e63cde367ca536e0f6643ab383afee09cc289ec2c502088c61e3cc73273b.jpg) +Figure 1: Examples of catastrophic forgetting across different architectures and datasets. We plot accuracy of Task 1 (purple) and Task 2 (green), on both the split CIFAR10 task, and the CIFAR100 distribution-shift task across multiple architectures. Catastrophic forgetting is seen as the significant drop of Task 1 accuracy when Task 2 training begins. + +task similarity, and together these show that forgetting is most severe for tasks with intermediate similarity. + +# 2 RELATED WORK + +Mitigation strategies Developing mitigation strategies for catastophic forgetting is an active area of research (Kemker et al., 2018). Popular approaches based on structural regularization include Elastic Weight Consolidation (Kirkpatrick et al., 2017) and Synaptic Intelligence (Zenke et al., 2017). An alternative, functional regularization approach is based on storing and replaying earlier data in a replay buffer (Schaul et al., 2015; Robins, 1995; Rolnick et al., 2019). We study how these mitigation methods affect the internal network representations to better understand their role in preventing catastrophic forgetting. + +Understanding catastrophic forgetting Our work is similar in spirit to existing empirical studies aimed at better understanding the catastrophic forgetting phenomenon (Goodfellow et al., 2013; Toneva et al., 2019). We focus specifically on understanding how layerwise representations change, and on the relation between forgetting and task semantics, which have not previously been explored. This semantic aspect is related to recent work by Nguyen et al. (2019) examining the influence of task sequences on forgetting. It also builds on work showing that learning in both biological and artificial neural networks is affected by semantic properties of the training data (Saxe et al., 2019; Mandler & McDonough, 1993). + +Fine-tuning and transfer learning While not studied in the context of catastrophic forgetting, layerwise learning dynamics have been investigated in settings other than continual learning. For example, Raghu et al. (2017) showed that layerwise network representations roughly converge bottomup; (from input to output). Neyshabur et al. (2020) observed similar phenomena in a transfer-learning setting with images, as have others recently in transformers for NLP (Wu et al., 2020; Merchant et al., 2020). Furthermore, the observation that early layers in networks learn general features like edge detectors, while latter layers learn more task specific features is a well-known result in computer vision (Erhan et al., 2009), and here we quantitatively study its ramifications for sequential training and catastrophic forgetting. + +# 3 SETUP + +Tasks: We conduct this study over many different tasks and datasets: (i) Split CIFAR-10, where the ten class dataset is split into two tasks of 5 classes each (ii) input distribution shift CIFAR-100, where each task is to distinguish between the CIFAR-100 superclasses, but input data for each task is a different subset of the constituent classes of the superclass (see Appendix A.3) (iii) CelebA attribute prediction: the two tasks have input data either men or women, and we predict either smile or mouth open (iv) ImageNet superclass prediction, similar to CIFAR100. + +Models: We perform experiments with three common neural network architectures used in image classification — VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015) and DenseNet (Huang et al., 2016). Examples of catastrophic forgetting in these models are shown in Figure 1. + +![](images/751d12c2239a6b9cb5e1ce1e312ccd471a884b89fcbcd8afa36f1411e562dd10.jpg) +Figure 2: Freezing lower layer representations after Task 1 training has little impact on Task 2 accuracy. We freeze the parameters of a contiguous block of layers (starting from the lowest layer) after Task 1 training, and only train the remainder on Task 2, finding that freezing the lowest layers has little impact on Task 2 accuracy. + +# 4 CATASTROPHIC FORGETTING AND HIDDEN LAYER REPRESENTATIONS + +We begin by investigating how catastrophic forgetting manifests in the hidden representations of the neural network. Do all parameters (and layers) forget equally? Or are specific components of the network particularly responsible for the drop in accuracy in sequential training? Through a combination of layer freezing experiments, and representational analysis, we find that higher layers (layers closest to output) are disproportionately responsible for catastrophic forgetting, with lower layers (layers closest to input) remaining representationally stable through sequential training. Further analysis of the representational subspaces of Task 1, Task 1 (post Task 2 training) and Task 2, provide insights on both feature reuse and interference. + +# 4.1 FREEZING LAYER REPRESENTATIONS + +To study the effect of individual layers on forgetting, we measure the effect of freezing layer representations on Task 2 accuracy (Figure 2). Specifically, we freeze a contiguous block of layers (starting from the lowest layer) after training on Task 1, and only train the remaining layers on Task 2. Across different architectures and tasks, we observe that lower layers can be reliably frozen with very little impact on Task 2 accuracy. This suggests the possibility of lower layer features being reused between both tasks, with higher layers being the main contributor to catastrophic forgetting. + +# 4.2 REPRESENTATIONAL SIMILARITY THROUGH SEQUENTIAL TRAINING + +The results of Figure 2 illustrate that lower layer representations on Task 1 can be reused for good performance on Task 2. To determine if this is what actually occurs during the training process, we turn to Centered Kernel Alignment (CKA) (Kornblith et al., 2019), a neural network representation similarity measure. CKA and other related algorithms (Raghu et al., 2017; Morcos et al., 2018) provide a scalar score (between 0 and 1) determining how similar a pair of (hidden) layer representations are, and have been used to study many properties of deep neural networks (Gotmare et al., 2018; Kudugunta et al., 2019; Wu et al., 2019a). + +Specifically, letting $\ b X \in \mathbb { R } ^ { n \times p }$ and $Y \in \mathbb { R } ^ { n \times p }$ be (centered) layer activation matrices of (the same) $n$ datapoints and $p$ neurons, CKA computes + +$$ +\mathrm { C K A } ( \mathrm { X } , \mathrm { Y } ) = \frac { \mathrm { H S I C } ( \mathrm { X X ^ { T } } , \mathrm { Y Y ^ { T } } ) } { \sqrt { \mathrm { H S I C } ( \mathrm { X X ^ { T } } , \mathrm { X X ^ { T } } ) } \sqrt { \mathrm { H S I C } ( \mathrm { Y Y ^ { T } } , \mathrm { Y Y ^ { T } } ) } } +$$ + +for HSIC Hilbert-Schmidt Independence Criterion (Gretton et al., 2005). We use linear-kernel CKA. + +In Figure 3, we plot the results of computing CKA on Task 1 layer representations before and after Task 2 training. Across architectures and tasks, we observe that the lower layers have high representation similarity, suggesting that lower layer Task 1 features are reused in Task 2. The higher layers however show significant decreases in representation similarity, suggesting they disproportionately contribute to catastrophic forgetting. These conclusions are further supported by additional layer reset experiments in Appendix Figure 12, which shows that rewinding higher layer parameters from post-Task 2 training to their pre-Task 2 training values significantly improves Task 1 performance. + +# 4.3 FEATURE REUSE AND SUBSPACE ERASURE + +Further insights on how the representations of lower and higher layers evolve during sequential training is given through a subspace similarity analysis. Letting $\ b X \in \mathbb R ^ { n \times p }$ be the (centered) layer activation matrix of $n$ examples by $p$ neurons, we compute the PCA decomposition of $X$ , i.e. the + +![](images/54c39e8d19801972f046935444a440a282fa88813511537bedfe3ab1203c847e.jpg) +Figure 3: CKA analysis of layer representations before/after Task 2 training shows lower layer feature reuse and higher layer representations changing significantly on CIFAR10, CIFAR100, ImageNet and CelebA. We compute CKA of the Task 1 layer representations before and after Task 2 training. We observe that later layers change more than early layers through second task training. + +![](images/35dfe190006578fae05569f5bf53d346b76b9a6af954acad93632c9d607345d9.jpg) +Figure 4: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure in higher layers. For Resnet on CIFAR10 (left), VGG on CIFAR10 (middle), Resnet on CIFAR100 (right), we compute subspace similarity between: (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training) (green line) (iii) (Task 2, Task 1 post-Task 2 training) (blue line). All comparisons show high similarity in lower layers, indicative of feature reuse. Most striking is the comparison between (Task 1, Task 1 post-Task 2 training) and (Task 2, Task 1 post-Task 2 training), which show that after Task 2 training, higher layer representations for Task 1 are more similar to Task 2 than to Task 1! Specifically, the Task 1 subspace in higher layers is erased through Task 2 training. + +eigenvectors $( v _ { 1 } , v _ { 2 } , \ldots )$ and eigenvalues $( \lambda _ { 1 } , \lambda _ { 2 } . . . )$ of $X ^ { T } X$ . Letting $V _ { k }$ be the matrix formed from the top $k$ principal directions, $v _ { 1 } , . . . , v _ { k }$ as columns, and $U _ { k }$ the corresponding matrix for a different activation matrix $Y$ , we compute + +$$ +\mathrm { S u b s p a c e S i m } _ { k } ( X , Y ) = \frac { 1 } { k } | | V _ { k } ^ { T } U _ { k } | | _ { F } ^ { 2 } . +$$ + +This measures the overlap in the subspaces spanned by $( v _ { 1 } , . . . , v _ { k } )$ and $( u _ { 1 } , . . . , u _ { k } )$ . Concretely, if $X$ and $Y$ correspond to layer activation matrices for two different tasks, Subspace $s \mathrm { i m } _ { k } ( X , Y )$ measures how similarly the top $k$ representations for those tasks are stored in the network. + +Figure 4 shows the result of computing SubspaceSim ${ } _ { k } ( X , Y )$ for $X , Y$ being the layer activation matrices in (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training) (blue line) (iii) (Task 2, Task 1 post-Task 2 training) (blue line). Supporting the CKA analysis, lower layers have high subspace similarity between Task 1 and Task 2 (feature reuse), but higher layers have low similarity (representations change significantly during Task 2 training.) Furthermore, (Task 1, Task 1 post-Task 2 training) also shows low subspace similarity in the higher layers, indicating that the representational change in later layers is not restricted to Task 2 data, but also alters the networks representation of the initial task. Strikingly, (Task 2, Task 1 post-Task 2 training) shows high similarity in all layers, despite being different tasks. + +In summary, these results illustrate that during sequential training, effective feature reuse happens in the lower layers, but in the higher layers, after Task 2 training, Task 1 representations are mapped into the same subspace as Task 2. Specifically, Task 2 training causes subspace erasure of Task 1 in the higher layers. (Additional details and results are in Appendix Section A.5.) + +![](images/989d29fbf88957c746c36658e38c694a1fda4765067223fb5123c977c85c3fd4.jpg) +Figure 5: CKA analysis of mitigation methods demonstrates that mitigation methods stabilize the higher layer representations. We compute CKA between layer representations of Task 1 before and after Task 2 training, with varying amounts and types of mitigation. We find that across all mitigation methods, even a small amount of mitigation works to stabilize the higher layer representations. In Figure 6, we investigate whether this stabilization results in greater feature reuse or through finding independent subspaces. + +![](images/6e2fad04e0a002db8542c43cb352a649d5d03328e4c47ff4ee1cafae61635513.jpg) +Figure 6: Subspace similarity analysis reveals differences between different mitigation methods, with replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote feature reuse in the higher layers. Top row: We plot subspace similarities like in Figure 4, for different mitigation methods. We observe that (Task 2, Task 1 post-Task 2 training) is much lower in replay compared to EWC/SI, as is (Task1, Task2) similarity. The bottom row plots (Task 2, Task 1 post-Task 2 training) for different amounts of mitigation. Again we see that replay has much lower (Task 2, Task 1 post-Task 2 training) similarity than no mitigation, while EWC/SI maintain the similar subspaces of Task 1 and Task 2 post Task 2 training. + +# 5 FORGETTING MITIGATION METHODS AND REPRESENTATIONS + +Informed by this understanding of how catastrophic forgetting manifests in the hidden layers (feature reuse in lower layers and subspace erasure in higher layers), we next study methods to mitigate forgetting. Do popularly used mitigation methods act to stabilize higher layers — given possible alternate approaches such as weight orthogonalization (Appendix C)? + +We investigate these questions across different successful mitigation strategies (i) EWC (elastic weight consolidation) (Kirkpatrick et al., 2017), a regularization-based approach (ii) replay buffer (Schaul et al., 2015; Ratcliff, 1990; Rolnick et al., 2019), a rehearsal-styled approach (iii) SI (Synaptic Intelligence) (Zenke et al., 2017), another popular regularization-based approach. + +In Figure 5, we plot the results of computing CKA on layer representations of Task 1 before/after training on Task 2, with different amounts of mitigation applied, and across different mitigation methods, tasks and architectures (full results in Appendix B.7.) Across all of these settings, we observe that even a small amount of mitigation results in a significant increase in similarity (stabilization) in the higher layers. However, there remains a central open question — is this increase in similarity due to feature reuse in the higher layers between Task 1 and Task 2, or does the network store Task 1 and Task 2 representations in non-interfering, orthogonal subspaces? + +![](images/10d7acc7c85ddb54b5a1f7a9d2b6d802e716edd510dda6927ec734f59ba4c779.jpg) +Figure 7: Subspace similarity analysis of CelebA, with and without replay mitigation. Left pane computes subspace similarities in CelebA, like in Figure 4, showing subspace erasure at top layers. Middle and right panes showt the effect of adding replay, where subspaces in lower/middle layers become more similar but higher layers become more orthogonal, like in Figure 6. + +To answer this, we compute the Subspace Similarity measure introduced in Section 4.3, with results in Figure 6 (and additional experiments in Appendix Section B.5). These results reveal key differences between the mitigation methods: replay buffer results in orthogonal network subspaces for higher layer representations of Task 1 and Task 2, while EWC and SI promote feature reuse even in the higher layers. In more detail: + +• Comparing the top row of Figure 6 to Figure 4 (the same plot without mitigation), we see that mitigation methods increase the subspace similarity of (Task 1, Task 1 Post-Task 2) and (Task 1, Task 2) representations in earlier/middling layers (more feature reuse). +• Most interestingly, comparing the different mitigation methods across top row Figure 6, we see that while EWC and SI maintain high subspace similarity of (Task 2, Task 1 Post-Task 2) even in the highest layers, replay significantly decreases this value in the highest layers. This suggests that replay performs mitigation through use of orthogonal subspaces, while EWC/SI encourage feature reuse even in the highest layers. +• In the bottom row we show subspace similarity of (Task 2, Task 1 Post-Task 2) for varying strengths of the different mitigation methods. We observe a clear decrease in subspace similarity in higher layers even when a little replay is used (again supporting orthogonal subspaces), while EWC/SI maintain or increase this (feature reuse even in higher layers.) + +# 6 SEMANTICS + +With the insights on how catastrophic forgetting relates to the hidden representations, and the effects on network internals of different mitigation methods, we turn to investigating how the semantic similarity between the sequential tasks affects forgetting. Specifically the prior results on lower layer feature reuse suggest a key question: does similarity between tasks result in less forgetting? Surprisingly, the answer is quite nuanced, depending on how precisely the different tasks are represented in the network. + +# 6.1 FORGETTING, TASK SEMANTICS AND A SIMILARITY PUZZLE + +Our study of the relationship between task semantic similarity and forgetting reveals a surprising puzzle. In Figure 8 and Table 1, we observe that depending on the task setup, a semantically similar task may be forgotten less or more than a less similar task. This behavior is consistent across different settings and datasets. Specifically, in Figure 8a and 8d, Task 1 and Task 2 consist of binary classifications between animals and objects from CIFAR-10, where we find that the similar categories forget less. But in Figure 8b and 8e, a four category classification between animals and objects followed by a binary classification task results in the similar categories being forgotten more. Table 1 shows an analogous result on ImageNet. This effect of similar categories being forgotten more can also be observed in the CIFAR-100 distribution shift setting, where input distribution shift to the CIFAR-100 superclasses results in more similar categories being forgotten more, e.g. input shifts to natural superclasses (Figure 8c) or artifical superclasses (Figure 8f). Further details and supporting experiments can be found in Appendix B.9. + +In the subsequent sections, we resolve this puzzle through (i) the development of an analytic model that formalizes the subtle connection between task similarity and forgetting (ii) an ensuing measure of task similarity, trace overlap, empirically quantifies task similarity (iii) showing maximal forgetting happens with intermediate task similarity. + +![](images/97cddca27ac4c1609e19e4ad01716f32b4b6060f855841e02ef202f7ad83dcf3.jpg) +Figure 8: Forgetting severity consistently varies along semantic divisions. (a,d) For sequential binary classification tasks models trained on either objects or animals forgets less on a second object task of the same semantic category. (b,e) Models trained initially on four way classification of two object and two animal classes see more forgetting in semantically similar classes when trained on a second two class task of either objects or animals. (c,f) Models trained on sequential six-way classification with four unaltered categories (shown) and two altered categories show increased forgetting in the unaltered categories semantically most similar to altered categories. For all panes, performance is shown for ResNet, with additional results in Appendix B.9. + +Table 1: Task Semantics and forgetting in ImageNet Here a ResNet50 is first trained (task 1) to classify either 10 animals, 10 artifacts or 10 animals and artifacts (chosen randomly from ImageNet). The network is then trained (task 2) to either classify 10 different animals or 10 different artifacts. The table shows performance drop on Task 1 after Task 2 training. Similar to Figure 8, when Task 1 is either animals or artifacts (top part of table), similar tasks forget less, while when Task 1 is both animals and artifacts, similar tasks show greater forgetting (bottom part of table). + +
Task DescriptionPerformance Drop on Task 1 Animals Artifacts
Task1:animals Task2:animals0.0885 ± 0.0259
Task1:animals Task2:artifacts0.1832 ± 0.0484
Task1:artifacts Task2:artifacts0.2884 ± 0.0187
Task1:artifacts Task2:animals0.3720 ± 0.0288
Task1:animals and artifacts Task2:animals0.1752 ± 0.01930.1532 ± 0.0231
Task1:animals and artifacts Task2:artifacts0.2057 ± 0.03120.2330 ± 0.0292
+ +# 6.2 AN ANALYTIC MODEL OF FORGETTING SEMANTICS + +We first formalize a model with a single classification head (like in distribution shift CIFAR-100), $\scriptstyle \sum _ { \mu = 1 } ^ { p } \theta _ { \mu } g _ { \mu } ( w ; x )$ nding m, where $\theta$ ti-head setup in Appendix C. Ware the last layer weights and $g$ write the network output asare features. We consider $f ( x ) =$ sequentially on two tasks. For the first task, we train normally. For the second task, inspired by our empirical observation above that forgetting is driven by deeper layers, we freeze the the earlier layer features, $g _ { \mu } ( w ; x ) = g _ { \mu } ( \hat { w } ; x )$ when training on the second task (here $\hat { w }$ represent the weights after training on the first task). If we train with loss function $L ( f , y )$ and learning rate $\eta$ , the network output SGD update at timestep $t$ is + +$$ +\Delta f _ { t } ( x ) = - \eta \sum _ { x ^ { \prime } , y ^ { \prime } \in \mathcal { D } _ { \operatorname { t r a i n } } ^ { ( 2 ) } } \Theta ( x , x ^ { \prime } ) \frac { \partial L ( f ( x ^ { \prime } ) , y ^ { \prime } ) } { \partial f } . +$$ + +Here D(2) is the second-task training data and $\begin{array} { r } { \Theta ( x , x ^ { \prime } ) = \sum _ { \mu = 1 } ^ { p } g _ { \mu } ( \hat { w } ; x ) g _ { \mu } ( \hat { w } ; x ^ { \prime } ) } \end{array}$ is the overlap (inner product) between the model last-layer representations on data point $x$ and $x ^ { \prime }$ . If the overlap $\Theta ( x , x ^ { \bar { \prime } } )$ is small, then the change in the logits is small and forgetting is minimal, specifically: + +Lemma 1 Let $f _ { t }$ be the logits of a neural network trained via the frozen feature model. Let $x$ be an element of the initial task test set. Let us further denote the vector of the feature overlap applied to the second task training set as $ { \vec { \Theta } } ( x ) : = \{ \Theta ( x , x ^ { \prime } ) : x ^ { \prime } \in X _ { t r a i n } ^ { ( 2 ) } \}$ and the loss vector as $\vec { L } = \{ L ( f ( x ^ { \prime } ) , y ^ { \prime } ) : x ^ { \prime } , y ^ { \prime } \in \mathcal { D } _ { t r a i n } ^ { ( 2 ) } \}$ train. With this, the change in the original task logits is bounded as + +$$ +| \Delta f _ { t } ( x ) | \leq \eta | | { \vec { \Theta } } ( x ) | | | { \frac { \partial { \vec { L } } } { \partial f } } | | . +$$ + +Thus representational similarity is necessary for forgetting to occur, and in this model, sufficiently similar and sufficiently dissimilar tasks have minimal forgetting, while intermediate similar tasks have maximal forgetting. + +# 6.3 CATASTROPHIC FORGETTING ACROSS VARYING TASK SIMILARITIES + +The analytical result enables us to make precise a measure of task similarity, through using the feature overlap matrix $\Theta ( x ^ { \prime } , x )$ . Concretely, letting $\Theta _ { 1 1 }$ be the overlap matrix on Task 1, $\Theta _ { 2 2 }$ on Task 2, and $\Theta _ { 1 2 }$ on Task 1 and Task 2, we define: + +$$ +\mathrm { T r a c e ~ o v e r l a p } = \frac { \mathrm { T r } \left( \Theta _ { 1 2 } \Theta _ { 1 2 } ^ { T } \right) } { \sqrt { \left( \right)} \mathrm { T r } \left( \Theta _ { 1 1 } \Theta _ { 1 1 } ^ { T } \right) \mathrm { T r } \left( \Theta _ { 2 2 } \Theta _ { 2 2 } ^ { T } \right) } . +$$ + +Trace overlap is directly analogous to CKA, where instead of comparing the similarity of different features on the same data, we are comparing the similarity of common features on different data. + +Increasing task dissimilarity can help reduce forgetting In Lemma 1, we see that very dissimilar tasks, with small overlap matrix, exhibit minimal forgetting. In Figure 9, we test this in the context of sequential binary classification. We introduce an other category to the classification problem (of images from classes not included in the training tasks), which encourages the model to represent Task 1 and Task 2 dissimilarly (lower trace overlap in Figure 9b), and reduces forgetting (Figure 9a). + +Maximal forgetting at intermediate similarity To empirically study the conclusion from the model that intermediate-similar tasks have maximal forgetting, we use mixup (Zhang et al., 2017), a standard data augmentation technique, to interpolate between the two tasks. Specifically, we first train a model on binary classification (with an other category to encourage dissimilarity) and for $\lambda \in [ 0 , 1 ]$ , generate an mixup dataset D(λ)train $\mathcal { D } _ { \mathrm { t r a i n } } ^ { ( \lambda ) } = \{ ( \lambda x ^ { ( 2 ) } + ( 1 - \lambda ) x ^ { ( 1 ) } , \lambda y ^ { ( 2 ) } + ( 1 - \lambda ) y ^ { ( 1 ) } ) \}$ . We compare model behavior across a range of mixup fractions, finding that the task similarity as measured through the trace overlap between task1 and task2 varies monotonically with mixup fraction (Figure 10b), quantifying that varying the mixing parameter, $\lambda$ , tunes the degree of task similarity. Figure 10a shows that the most extreme forgetting happens for intermediate similarity (i.e. mixing fraction $\sim 0 . 1 - 0 . 2 $ ). + +![](images/6784833ddb4e91dbce15ca23e71963d5878b428c23395b6d834b86c3ad595e7e.jpg) +Figure 9: Adding an other category reduces forgetting and increases orthogonalization. (a) Models trained initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog exhibit diminished forgetting when we add an other category to task 1 training. The other category contains randomly sampled images from all classes not present in the initial or final tasks. (b,c) The presence of the other category reduces the similarity between the model’s representations of each task. Additional plots are in Appendix B.8. + +![](images/f7f09ed8fd905a5739a7af98293034d8a59fa72e4a4b35d72db19658113786f8.jpg) +Figure 10: Task similarity affects performance. (a) We measure initial task performance for sequential binary classification as we dial the mixup fraction between 0.0, pure task 2 data, and 1.0, pure task 1 data. Maximum forgetting (minimal accuracy) occurs at an intermediate value of the mixup fraction, $\sim 0 . 1 - 0 . 2$ . (b) We measure the similarity between task 1 and task 2 as we vary the mixup fraction, supporting the intuition that interpolating mixup fraction interpolates task similarity. (c) Task 1 performance after task 2 training is plotted against task 1 versus task 2 representational similarity for animal and object classes in the sequential binary classification tasks (solid) and four-way followed by binary classification tasks (hollow) of Figures 8a and Figures 8b. In the case of sequential binary tasks both object and animal second tasks are represented extremely similarly to the initial object task and the slightly less similar, object task, forgets more. For the four way classification task, animals are represented dissimilarly to the second object task and cause less forgetting. + +Semantic similarity revisited Armed with these quantitative measures, we revisit the task semantics puzzle in Figure 8 where (i) for sequential binary classification, semantically more similar categories were forgotten less, while in (ii) four class classification followed by binary classification and input distribution shift, similar classes were forgotten more. Figure 10c (solid dots) shows that in (i) the net didn’t represent objects and animals differently, and the slightly more similar task is forgotten less. But in (ii) Figure 10c (hollow dots), the model encodes animals and objects differently, minimizing forgetting on the dissimilar tasks, consistent with maximal forgetting for intermediate similarity. + +# 7 CONCLUSION + +In this paper, we have studied some of the fundamental properties of catastrophic forgetting, answering important open questions on how it arises and interacts with hidden representations, mitigation strategies and task semantics. By using representational analysis techniques, we demonstrated that forgetting is not evenly distributed throughout the deep learning model but concentrated at the higher layers, which change significantly and erase earlier task subspaces through sequential training. Consistent with this, we find mitigation methods all stabilize higher layer representations, but vary on whether they enforce more feature reuse, or store tasks in orthogonal subspaces. Informed by these insights, we formulate an analytic model to investigate connections between forgetting and task semantics. This gives a quantitative measure of task similarity and shows that intermediate similarity in sequential tasks leads to maximal forgetting. In summary, these results help provide a foundation for a deeper understanding of catastrophic forgetting and suggest new approaches for developing and measuring mitigation methods. + +# REFERENCES + +Naveen Arivazhagan, Ankur Bapna, Orhan Firat, Dmitry Lepikhin, Melvin Johnson, Maxim Krikun, Mia Xu Chen, Yuan Cao, George Foster, Colin Cherry, et al. Massively multilingual neural machine translation in the wild: Findings and challenges. arXiv preprint arXiv:1907.05019, 2019. + +Dumitru Erhan, Y. Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer features of a deep network. Technical Report, Univeriste de Montr ´ eal ´ , 01 2009. + +Dar Gilboa and Guy Gur-Ari. Wider networks learn better features, 2019. + +Raphael Gontijo-Lopes, Sylvia J Smullin, Ekin D Cubuk, and Ethan Dyer. Affinity and diversity: Quantifying mechanisms of data augmentation. arXiv preprint arXiv:2002.08973, 2020. + +Ian J Goodfellow, Mehdi Mirza, Da Xiao, Aaron Courville, and Yoshua Bengio. An empirical investigation of catastrophic forgetting in gradient-based neural networks. arXiv preprint arXiv:1312.6211, 2013. + +Akhilesh Gotmare, Nitish Shirish Keskar, Caiming Xiong, and Richard Socher. A closer look at deep learning heuristics: Learning rate restarts, warmup and distillation. arXiv preprint arXiv:1810.13243, 2018. + +Arthur Gretton, Olivier Bousquet, Alex Smola, and Bernhard Scholkopf. Measuring statistical ¨ dependence with hilbert-schmidt norms. In International conference on algorithmic learning theory, pp. 63–77. Springer, 2005. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition, 2015. + +Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q. Weinberger. Densely connected convolutional networks, 2016. + +Arthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and ´ generalization in neural networks. In NeurIPS, 2018. + +Ronald Kemker, Marc McClure, Angelina Abitino, Tyler L Hayes, and Christopher Kanan. Measuring catastrophic forgetting in neural networks. In Thirty-second AAAI conference on artificial intelligence, 2018. + +James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming catastrophic forgetting in neural networks. Proceedings of the national academy of sciences, 114 (13):3521–3526, 2017. + +Simon Kornblith, Mohammad Norouzi, Honglak Lee, and Geoffrey Hinton. Similarity of neural network representations revisited. arXiv preprint arXiv:1905.00414, 2019. + +Sneha Reddy Kudugunta, Ankur Bapna, Isaac Caswell, Naveen Arivazhagan, and Orhan Firat. Investigating multilingual nmt representations at scale. arXiv preprint arXiv:1909.02197, 2019. + +Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming catastrophic forgetting by incremental moment matching. In Advances in neural information processing systems, pp. 4652–4662, 2017. + +Xilai Li, Yingbo Zhou, Tianfu Wu, Richard Socher, and Caiming Xiong. Learn to grow: A continual structure learning framework for overcoming catastrophic forgetting. arXiv preprint arXiv:1904.00310, 2019. + +Jean M. Mandler and Laraine McDonough. Concept formation in infancy. Cognitive Development, 8(3):291 – 318, 1993. ISSN 0885-2014. doi: https://doi.org/10. 1016/S0885-2014(93)80003-C. URL http://www.sciencedirect.com/science/ article/pii/S088520149380003C. + +Amil Merchant, Elahe Rahimtoroghi, Ellie Pavlick, and Ian Tenney. What happens to bert embeddings during fine-tuning?, 2020. + +Ari Morcos, Maithra Raghu, and Samy Bengio. Insights on representational similarity in neural networks with canonical correlation. In Advances in Neural Information Processing Systems, pp. 5727–5736, 2018. + +Behnam Neyshabur, Hanie Sedghi, and Chiyuan Zhang. What is being transferred in transfer learning?, 2020. + +Cuong V Nguyen, Alessandro Achille, Michael Lam, Tal Hassner, Vijay Mahadevan, and Stefano Soatto. Toward understanding catastrophic forgetting in continual learning. arXiv preprint arXiv:1908.01091, 2019. + +Stephan Rabanser, Stephan Gunnemann, and Zachary Lipton. Failing loudly: an empirical study of ¨ methods for detecting dataset shift. In Advances in Neural Information Processing Systems, pp. 1394–1406, 2019. + +Maithra Raghu and Eric Schmidt. A survey of deep learning for scientific discovery. arXiv preprint arXiv:2003.11755, 2020. + +Maithra Raghu, Justin Gilmer, Jason Yosinski, and Jascha Sohl-Dickstein. Svcca: Singular vector canonical correlation analysis for deep learning dynamics and interpretability. In Advances in Neural Information Processing Systems, pp. 6076–6085, 2017. + +Roger Ratcliff. Connectionist models of recognition memory: constraints imposed by learning and forgetting functions. Psychological review, 97 2:285–308, 1990. + +Benjamin Recht, Rebecca Roelofs, Ludwig Schmidt, and Vaishaal Shankar. Do imagenet classifiers generalize to imagenet? arXiv preprint arXiv:1902.10811, 2019. + +Hippolyt Ritter, Aleksandar Botev, and David Barber. Online structured laplace approximations for overcoming catastrophic forgetting. In Advances in Neural Information Processing Systems, pp. 3738–3748, 2018. + +Anthony Robins. Catastrophic forgetting, rehearsal and pseudorehearsal. Connection Science, 7(2): 123–146, 1995. + +David Rolnick, Arun Ahuja, Jonathan Schwarz, Timothy Lillicrap, and Gregory Wayne. Experience replay for continual learning. In Advances in Neural Information Processing Systems, pp. 348–358, 2019. + +Andrew M. Saxe, James L. McClelland, and Surya Ganguli. A mathematical theory of semantic development in deep neural networks. Proceedings of the National Academy of Sciences, 116 (23):11537–11546, 2019. ISSN 0027-8424. doi: 10.1073/pnas.1820226116. URL https: //www.pnas.org/content/116/23/11537. + +Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint arXiv:1511.05952, 2015. + +Joan Serra, Didac Suris, Marius Miron, and Alexandros Karatzoglou. Overcoming catastrophic \` forgetting with hard attention to the task. arXiv preprint arXiv:1801.01423, 2018. + +Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition, 2014. + +Jasper Snoek, Yaniv Ovadia, Emily Fertig, Balaji Lakshminarayanan, Sebastian Nowozin, D Sculley, Joshua Dillon, Jie Ren, and Zachary Nado. Can you trust your model’s uncertainty? evaluating predictive uncertainty under dataset shift. In Advances in Neural Information Processing Systems, pp. 13969–13980, 2019. + +Jonathan M Stokes, Kevin Yang, Kyle Swanson, Wengong Jin, Andres Cubillos-Ruiz, Nina M Donghia, Craig R MacNair, Shawn French, Lindsey A Carfrae, Zohar Bloom-Ackerman, et al. A deep learning approach to antibiotic discovery. Cell, 180(4):688–702, 2020. + +Mariya Toneva, Alessandro Sordoni, Remi Tachet des Combes, Adam Trischler, Yoshua Bengio, and Geoffrey J. Gordon. An empirical study of example forgetting during deep neural network learning. ArXiv, abs/1812.05159, 2019. + +John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass. Similarity analysis of contextual word representation models, 2020. +Shijie Wu, Alexis Conneau, Haoran Li, Luke Zettlemoyer, and Veselin Stoyanov. Emerging crosslingual structure in pretrained language models. arXiv preprint arXiv:1911.01464, 2019a. +Yuxin Wu, Alexander Kirillov, Francisco Massa, Wan-Yen Lo, and Ross Girshick. Detectron2. https://github.com/facebookresearch/detectron2, 2019b. +Friedemann Zenke, Ben Poole, and Surya Ganguli. Continual learning through synaptic intelligence. In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 3987– 3995. JMLR. org, 2017. +Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017. + +# A METHODS + +# A.1 MODELS + +Here we detail the model architectures used in this study. We use standard versions of the popular VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015), and DenseNet (Huang et al., 2016) architectures. These architectures have varying structural properties (e.g., presence or absence of skip connections), meaning observed behaviors common to all of them are likely to be robust and generalizable. + +VGG: The VGG model we use consists of five stages. Each stage comprises a convolutional layer, a ReLU nonlinearity, another convolutional layer, another ReLU nonlinearity, and finally a MaxPool layer. Each convolution uses a 3-by-3 kernel with unit stride and padding. The MaxPool operation uses a 2-by-2 kernel with stride 2. The number of channels by stage is 16, 32, 64, 128, 128. We do not use batch normalization in the VGG. + +We test two different version of the VGG: one with just the stages described above, and another with two fully connected layers, of width 1024, after the convolutional layers. + +ResNet: Our ResNet consists of a initial 3-by-3 convolutional layer with 32 channels, followed by a 2d batch norm operation. This initial pair is followed by four stages, each consisting of two residual blocks per stage. Each block consists of two conv-BN-ReLU sequences, with a shortcut layer directly routing the input to add to the final ReLU preactivations. All convolutions are 3-by-3, with unit padding. In all but the first block, the first convolutional layer downsamples, with a stride of 2; the second convolutional layer maintains stride of 1. The number of channels doubles each block, starting from a base level of 32 channels in the first block. + +DenseNet: Like ResNet, our DenseNet consists of an initial 3-by-3 convolution, followed by four dense blocks. In between each pair of dense blocks is a transition block. Following the final dense block is a batch-normalization, ReLU, and average pooling operation to generate the final features. Our DenseNet is characterized by a growth rate of 12 and compression rate of 0.5. The first stage of the DenseNet features 6 blocks, with the number of blocks doubling in each subsequent stage. + +# A.2 TRAINING + +All networks are trained using cross-entropy loss with SGD with momentum $\beta = 0 . 9 ,$ ), using a batch size 128. We do not use learning-rate schedules here, leaving that investigation to future work. To better correspond with practical situations, however, we choose a learning rate and total number of epochs such that interpolation (of the training set) occurs. For the split CIFAR-10 task, this typically corresponds to training for 30 epochs per task with a learning rate of 0.01 (VGG), 0.03 (ResNet), and 0.03 (DenseNet). We use weight decay with strength 1e-4, and do not apply any data augmentation. For the split CIFAR-100 task, we usually train for 60 or 90 epochs per task, with other the other hyperparameters identical to the CIFAR-10 case. + +For multi-head networks (used in split CIFAR-10), each head is initialized with weights drawn from a normal distribution with variance $1 / n _ { f }$ , where $n _ { f }$ is the number of features; biases are initialized to zero. We do not copy the parameters from the old head to the new when switching tasks. + +For the split CIFAR-10 setup, the plots shown in the main text refer to experiments in which the initial task was classifying between the five categories airplane, automobile, bird, cat, and deer; and the second task comprising dog, frog, horse, ship, and truck. To verify that our results were not unique to the particular split of CIFAR-10 we chose, we used three other splits: airplane, bird, deer, frog, ship (task 1) and automobile, cat, dog, horse, truck (task 2); automobile, cat, dog, horse, truck (task 1) and airplane, bird, deer, frog, ship (task 2); and dog, frog, horse, ship, truck (task 1) and airplane, automobile, bird, cat, deer (task 2). + +# A.3 CIFAR-100 DISTRIBUTION SHIFT TASK + +Here we provide the concrete example of the CIFAR-100 distribution-shift task shown in Figure 1. This is meant to capture it the scenario where catastrophic forgetting arises through input distribution shift — the input data to the neural network undergoes a distribution shift, causing the neural network to perform poorly on earlier data distributions (Arivazhagan et al., 2019; Snoek et al., 2019; Rabanser et al., 2019). As mentioned in the main text, in this task, the model must identify, for CIFAR-100 images, which of the 20 superclasses the image belongs to. The difference in tasks comes from the difference in subclasses which make up the superclass. As an example, we take the five superclasses aquatic mammals, fruits and vegetables, household electrical devices, trees, and vehicles- $I ^ { \hat { 1 } }$ , with the corresponding task 1 subclasses (1) dolphin, (2) apple, (3) lamp, (4) maple tree, and (5) bicycle and task 2 subclasses (1) whale, (2) orange, (3) television, (4) willow, and (5) motorcycle. A key feature of this setting is that task-specific components (including multiple heads) are precluded since the model does not know the task identity either at inference or time. While we do not explore it here, this setup also allows for continuously varying the data distribution, another situation likely to occur in practice. + +# A.4 REPRESENTATIONAL SIMILARITY AND CENTERED KERNEL ALIGNMENT + +To understand properties of neural network hidden representations, we turn to representational similarity algorithms. A key challenge in analyzing neural network hidden representations is the lack of alignment — no natural correspondence exists between hidden neurons across different neural networks. Representational similarity algorithms propose different ways to overcome this — one of the first such algorithms, SVCCA (Raghu et al., 2017; Morcos et al., 2018), uses a Canonical Correlation Analysis (CCA) step to align neurons (enable invariance) through linear transformations. + +We use centered kernel alignment (CKA), proposed by Kornblith et al. (2019), to measure the similarity between two representations of the same dataset which is invariant to orthogonal transformation and isotropic scaling (but not arbitrary linear transformations). Given a dataset of $m$ examples, we compare two representations $X$ and $Y$ of that dataset (say, from two different neural networks or from the same neural network with different parameters), with $n _ { x }$ and $n _ { y }$ features respectively; that is, $X \in \mathbb { R } ^ { m \times n _ { x } }$ and $Y \in \mathbb { R } ^ { m \times n _ { y } }$ . Then the linear-kernel CKA similarity between the two representations is given by + +$$ +\mathrm { C K A } ( X , Y ) = { \frac { | | X ^ { T } Y | | _ { F } ^ { 2 } } { | | X ^ { T } X | | _ { F } ^ { 2 } | | Y ^ { T } Y | | _ { F } ^ { 2 } } } +$$ + +# A.5 SUBSPACE SIMILARITY + +For the subspace similarity computations we pick a fixed threshold $k$ for all layers so that the first $k$ principal components capture $\mathrm { \bar { 8 0 \% } }$ of variance in the final layer. This gives $k = 3$ for Resnet on CIFAR-10, $k = 4$ for Resnet on CIFAR-100, $k = 4$ for VGG on CIFAR-10 and $k = 7$ for VGG on CIFAR-100 and $k = 4$ for DenseNet on CIFAR-10 and $k = 5$ for DenseNet on CIFAR-100. + +![](images/cb405a4306c40a91294d386db635da43d561bc8adf93279d58ee48b5de102b43.jpg) +Figure 11: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure in higher layers. + +# A.6 MITIGATION METHODS + +# A.6.1 ELASTIC WEIGHT CONSOLIDATION + +Developed by Kirkpatrick et al. in 2017, elastic weight consolidation (EWC) adds a term to the loss function of the new task to get the regularized loss function $\mathcal { L } ( \vec { \theta } )$ : + +$$ +\mathcal { L } ( \vec { \theta } ) = \mathcal { L } _ { B } ( \vec { \theta } ) + \frac { \lambda } { 2 } \sum _ { i } F _ { i } \cdot \left( \theta _ { i } - \theta _ { A , i } ^ { * } \right) ^ { 2 } . +$$ + +Here, $\vec { \theta }$ are the model parameters; $\mathcal { L } _ { B } ( \vec { \theta } )$ is the unregularized loss function of the new task; $\lambda$ is a parameter which controls the strength of the regularization; $F _ { i }$ is the diagonal of the Fisher information matrix with respect to the parameters; and $\vec { \theta } _ { A } ^ { * }$ are the model parameters after having been trained on task A. We compute the Fisher information via using the squared gradients of the log-likelihood, averaged over a subset of the trainset. We use the empirical Fisher as an approximation. + +Following standard practice, in our experiments we estimate the Fisher information using a subset of the full training data; for all of our models on CIFAR-10, 200 samples proved sufficient to be reasonably confident of a converged estimate. We do not include a delay between the start of secondtask training and the application of the EWC penalty. Naturally, we do not apply the EWC penalty to the parameters of the head in the multi-head setting. + +# A.6.2 SYNAPTIC INTELLIGENCE + +Developed by Zenke et al. (2017), synaptic intelligence, like EWC, is a structural regularization method which adds an elastic penalty to the second task’s loss function: + +$$ +\mathcal { L } ( \vec { \theta } ) = \mathcal { L } _ { B } ( \vec { \theta } ) + \frac { \lambda } { 2 } \sum _ { i } C _ { i } \cdot \left( \theta _ { i } - \theta _ { A , i } ^ { * } \right) ^ { 2 } . +$$ + +The difference from EWC is in how the elastic penalties are calculated. In synaptic intelligence, for each parameter, a contribution to the loss is tracked via the product of the gradient of the loss and the stepwise change in the parameter value. The coefficient is then constructed such that changing the parameter by an amount equal to its change during task-1 training will incur a loss penalty equal to the change in loss from the initial value. Our implementation does not differ from the standard implementation. + +# B SUPPORTING EXPERIMENTS + +Here we present experiments omitted from the main text for space, which help flesh out some of the conclusions. This section is roughly organized with layerwise experiments first, followed by semantic experiments. + +# B.1 LAYER RESET EXPERIMENTS + +As described in the main text, we perform an additional experiment to check that deeper representations get corrupted more than shallower representations. This experiment, corresponding to Figure 12, shows that when layers are reset to their pre-forgetting value, performance improves more dramatically when deeper layers are reset first. + +# B.2 TASK-SPECIFIC STAGES + +Our observations that forgetting is driven primarily by the higher layers suggests that in a setting with known task identities (i.e. in the split CIFAR-10 setting described in the main text but not the CIFAR-100 distribution-shift setting), making the deeper stages of the network task-specific would likely mitigate a large portion of forgetting on the old tasks while still allowing for full performance on the new tasks. In particular, since the changes in deeper represntations are much greater than their shallower counterparts, only a few task-specific stages should be necessary to get significant performance increases on the old task. For each of the three network architectures we considered (VGG, ResNet, and DenseNet), we investigated the performance of these task-specific networks on the split CIFAR task. We intend these results to be further evidence of the role of deeper layers in forgetting, not a proposed mitigation scheme. + +![](images/7293a1d894a7f86a197ce3820d943a538ecfac8bc07c8388599461e278723e74.jpg) +Figure 12: Layer reset experiments. After training on Task 2 we reset contiguous blocks of layers to their values before training and record the resulting accuracy on Task 1 (bottom row). We see a significant increase in accuracy when resetting the highest $N$ layers (blue line) compared to resetting the $N$ lowest layers (gray line). Together, these results demonstrate that higher layers are disproportionately responsible for forgetting. + +![](images/01d8bc010e7bc4cba69e6bb815584d87d90580f0eaebed9a2484fb7036781be0.jpg) +Figure 13: Forgetting in networks with task-specific stages on CIFAR-10. Using the same settings as Figure 1 of the main text, we run networks with task-specific layers on split CIFAR-10. We make deeper layers task-specific before shallower layers. Performance increases with number of task-specific layers, denoted by the line color (see legend). In all architectures, two task-specific stages is sufficient to recover significant performance. + +Results, shown in figure 13, show that for all architectures, performance dramatically rises with the number of task-specific stages. For all architectures, having the deepest two stages be task-specific recovers a significant fraction of the forgotten task performance. + +# B.3 LAYER RESET AND RETRAIN EXPERIMENTS + +As an additional probe of the degree to which catastrophic forgetting impacts the representations of various network layers, we perform a reset-and-retrain experiment on the split CIFAR-10 task, using the same training setup as in Figure 3 of the main text. The reset-and-retrain experiment is designed to probe the degree to which network representations get corrupted and can no longer be used by a network of the same architecture to productively classify images. To investigate this, after having trained the network on Task 2, we freeze parameters of stages 1 through $N$ to their post-task-2 values, reset the parameters of stages $N + 1$ onwards to their post-task-1 values, and then retrain those parameters on the Task 1 loss function. This is a natural, operational measure of the degree to which layer 1 through $N$ representations have been corrupted. + +The results of this experiment, shown in Figure 14, tell a similar story to that of Figure ?? of the main text. In particular, we see even retraining the network with all but the last couple of layers frozen recovers nearly the pre-forgetting performance of the network. + +Some of the performances in Figure 14 even outperform the pre-forgetting network performance, suggesting that network representations of intermediate layers may actually be improved by training on Task 2. Further suggestive results are shown in Figure 15, in which we retrain the full network again on Task 1 after the training on Task 2. For ResNet and, to some degree, VGG, training on the second task clearly improves performance on the first. + +![](images/e56e761d9357dbd46d926b1676ec05908246c98a27d7e5af13aab5d544b04e4a.jpg) +Figure 14: Layer reset and retrain experiments. Consistent with the observations in the freeze-training, layer reset, and CKA experiments, resetting and retraining only a few stages from the top is enough to recover the performance before forgetting. + +![](images/7759e854b7587e327c6df0e10615bce5aefeb4f71e514d7eedcbbb714d9f4590.jpg) +Figure 15: Training on a different task can improve performance on the original task. Networks are trained on two five-class splits of CIFAR-10. The gray curve shows the test accuracy on task 0 during training on solely that task for 270 epochs; the teal curve shows the task-0 test accuracy when training on task 0 for 90 epochs, then on task 1 for 90 epochs, and task 0 again for 90 epochs. While we see a sharp performance drop for the duration of training on task 1, the performance is quickly recovered once we begin training on task 0, and in fact surpasses the performance of the model only exposed to task-0 data. This effect is consistent across different splits of the original dataset. Of the architectures we studied, this effect is most pronounced for ResNet, but also exists to some degree for VGG and DenseNet models. + +# B.4 REPRESENTATION CHANGES IN THE CIFAR-100 DISTRIBUTION SHIFT EXPERIMENTS + +Here we show the change in representations due to training on distribution-shifted CIFAR-100 for the VGG (Figure 16) and DenseNet (Figure 17) networks, to accompany the ResNet results in the main text. + +![](images/bef6f0ad266969173dec939f3382fcdf9650004af675922a954db3cdce264098.jpg) +Figure 16: Change in Densenet representations under CIFAR-100 distribution shift. + +![](images/b7f4682f0d383ae44ae63e7bb1b04ff9eb952c7c7164efeee34f4d84732f6cac.jpg) +Figure 17: Change in VGG representations under CIFAR-100 distribution shift. + +B.5 ADDITIONAL EXPERIMENTS FOR SUBSPACE SIMILARITY OF MITIGATION METHODS + +We include additional experiments on computing subspace similarities for different mitigation methods across different architectures. The results support the orthogonal storage of Task 1, Task 2 representations by replay, while EWC and SI enforce greater feature reuse in the higher layers. + +![](images/a220ef5a5b19d8f1139d06f902adf47173caf647598a19fac8a8ab98235b275e.jpg) +Figure 18: Subspace similarity analysis reveals differences between different mitigation methods, with replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote feature reuse in the higher layers. Additional results, compare to Figure 6 in the main text. + +# B.6 LINEAR REGRESSION ON FORGOTTEN NETWORK ACTIVATIONS + +To further probe the manner in which catastrophic forgetting affects the internal representation of networks, we perform the following experiment (in the split CIFAR-10 setting). We train a (multihead) model on the first task for some time, resulting in model $M _ { 1 }$ , and then train on the second task for some time, resulting in model $M _ { 2 }$ . Due to forgetting, the model $M _ { 2 }$ of course performs significantly worse than does $M _ { 1 }$ on the first task. But, to probe how much information has been lost internally, we train a linear model to classify between the first-task categories using only the internal activations of $M _ { 2 }$ on the first-task images. We measure both the amount of performance which we can recover using this linear regression, and the weight placed by the linear model on various stages of the network. + +Model performances are given in Table 2. For all three architectures, the performance of the model before forgetting is naturally the highest, with a performance drop of up to forty percent due to forgetting. Remarkably, however, training a linear model on the internal post-forgetting activations recovers a substantial fraction of the performance loss: for ResNet and VGG, the linear model on post-forgetting activations is only a percent less accurate than the model before forgetting. As a control, we also train a linear model on the activations of networks at initialization (denoted the random lift in the table). Because the number of activations is much higher than the number of pixels in a CIFAR-10 image, this control is necessary to ensure that the boost in performance we see is not simply due to performing a high-dimensional lift which renders the data linearly separable. As the table shows, however, this random lift performance is quite poor. + +Table 2: Performance of linear model trained on internal activations. + +
DenseNetResNetVGG
Pre-forgetting accuracy0.8690.77140.7970
Post-forgetting accuracy0.47540.59240.5877
Linear regression on activations0.8020.75920.7896
Linear regression on random lift0.4470.41980.543
+ +Figure 19 shows the weights placed by the linear model on the various internal activations of the network. We use the activations both before and after forgetting. Before forgetting, a linear model trained on the activations places most importance on the final layers, as expected; however, after forgetting, the model learns to use information stored in earlier-layer representations of the network. The reduced weighting of the final layers is consistent with the experiments we describe in the main text showing that deeper representations suffer the most from forgetting. + +![](images/ccc557677afea0bb941be42ae608ad511067870b50d6a63b79a1bb7484dc60b5.jpg) +Figure 19: Weights of linear models trained on internal activations. + +# B.7 CKA MEASUREMENTS ON MITIGATION METHODS + +This section gives CKA similarity measurements to accompany those in the main text presented in figure 5. The main text figure showed results for ResNet; here we show corresponding results for all architectures on both split CIFAR10 and split CIFAR100 tasks, in figures 20 and 21, repsectively. These plots show that the results discussed in the main text apply broadly across architectures and datasets. + +# B.8 OTHER CATEGORY IN RESNET AND DENSENET + +In Figure 9 of the main text, we showed for the VGG architecture that adding an ‘other’ category (by sampling from all images in the dataset which are not in either of the main tasks) can mitigate forgetting by reducing the similarity between the model’s representations of the task 1 data versus + +![](images/e18234e09a6d3786a709ac998864e82b0db00b76a82fe85a20bb62a7d2fb3d21.jpg) +Figure 20: CKA Analysis of mitigation methods on the split CIFAR10 task + +![](images/caeb1d9636133db42d4e9678e00a9fea90d0bf39678be050d5092c7b521b1d94.jpg) +Figure 21: CKA Analysis of mitigation methods on the split CIFAR100 task + +![](images/1286bf3918cde9573bebe81d7c0c35537c5f1f5d9a005f6ec519eaa214fa23a7.jpg) +Figure 22: Adding an ‘other’ category during initial training helps performance through orthogonalization: Densenet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading to improved continual learning. + +![](images/c7bd96d0456a4214ccd862ce782a9ad0e92ab5b7c2ee612857f364b68e67f3d0.jpg) +Figure 23: Adding an ‘other’ category during initial training helps performance through orthogonalization: Resnet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading to improved continual learning. + +the task 2 data. As our analytic model suggested, increasing this dissimilarity should help forgetting. +Figures 22 and 23 show corresponding plots for the Resnet and Densenet architectures. + +# B.9 ADDITIONAL SEMANTIC EXPERIMENTS + +In this section, comprising figures 24, 25, and 26, we present additional realizations of the semantic experiments presented in Section 6, Figure 8. In particular we present results for sequential binary classification tasks, four-class classification followed by two-class classification, and the CIFAR-100 distribution shift task. We find consistent results across different choices of objects and animals and across VGG, ResNet, and DenseNet architectures. In particular, we find that when models are encouraged to distinguish objects and animals, dissimilar categories lead to less forgetting. In contrast when models are trained with only a single semantic category, there is no pressure to distinguish objects from animals and similar categories lead to less forgetting. We observe one exception to the intuitive semantic groupings of categories. For VGG in Setup 2 (Figure 25) the truck category behaves similarly to animal classes in that the performance suffers more when the second task is animal classification then when it is object classification. + +# C FROZEN-FEATURE MODEL: FURTHER DETAILS + +Here we consider extensions and applications of the analytic model introduced in Section 6.2. Both the single and multi-head models relate the change in predictions during training on a second task to + +![](images/9b5309de8e13131c7c40487d0e4b169bea844843307575030317507dedb50c0e.jpg) +Task 1 - deer, dog, Task 2 - cat, horse or plane, car +Figure 24: Sequential binary classification tasks show consistent semantic structure. We train on sequential binary subsets of CIFAR-10, distinguishing between two animals or two objects. We find that less forgetting occurs when the initial task is more similar to the second task. + +the overlap between features, $\begin{array} { r } { \Theta ( x , x ^ { \prime } ) = \sum _ { \mu } g _ { \mu } ( x ) g _ { \mu } ( x ^ { \prime } ) } \end{array}$ , evaluated on the initial and second task data.2 + +Multi-head model In the main text we focused for simplicity on an analytic model of single head forgetting. Here we construct a solvable model for the multi-head setup. We consider a model + +![](images/e0aae519536daa021aaa0f0f7cc8abb09571f71f4be45205b3d066c312214874.jpg) +Task 1 - deer, dog, ship, truck, Task 2 - cat, horse +Figure 25: Sequential four class and binary tasks show decreased forgetting for dissimilar tasks. We train on sequential subsets of CIFAR-10, initially distinguishing between four classes (two animals and two objects) and then distinguishing between either two animals or two objects. We find that less forgetting occurs for categories that are dissimilar to those used in the second task. + +consisting of non-linear features $g ( w ; x )$ , a linear layer with weights, $\theta$ , and a read out head $\it { h ^ { ( i ) } }$ + +$$ +f ^ { ( i ) } ( x ) = \sum _ { a , \mu } h _ { a } ^ { ( i ) } \theta _ { a \mu } g _ { \mu } ( w ; x ) . +$$ + +Here $\mu$ runs over the feature dimensions, while $a$ runs over the output dimensions of our additional linear layer. For the initial task we use the head $h ^ { ( 1 ) }$ , while for the second task, we swap the head and use $h ^ { ( 2 ) }$ . + +Again we consider a model trained without restrictions on Task 1 using head $h ^ { ( 1 ) }$ . For Task 2, we first swap the head and then perform head only training on head $h ^ { ( 2 ) }$ . After training the head, we + +![](images/8553198ed3ce878f4463feb1b92ca6ac388c507393962c63efe02df85ed9a425.jpg) +Figure 26: Semantic structure of forgetting on the CIFAR-100 distribution-shfit task for VGG and DenseNet models + +
VGGResNetDenseNet
No headfirst training5 epochs headfirst training0.147 ± 0.0510.550±0.0290.183 ± 0.0010.673 ± 0.0100.162 ± 0.0080.700 ± 0.012
+ +Table 3: Headfirst CKA similarity. CKA similarity between the readout layer after headfirst training and after final training on the second task. + +freeze the head, $h ^ { ( 2 ) }$ , and the features $g ( w ; x ) = g ( \hat { w } ; x )$ , where $\hat { w }$ is the value of the feature weights after training on the initial task. This model is again inspired by our observation that forgetting is driven by changes in the latter network layers. The multi head model is additionally inspired by our observing that after head first training, the CKA similarity between the second task head before and after second task training is relatively high (see Table 3). + +After training the second task head, we continue training the weights $\theta$ . The model output evolves as + +$$ +\Delta f _ { t } ^ { ( i ) } ( x ) = - \eta \sum _ { x ^ { \prime } , y ^ { \prime } \in \mathcal { D } _ { \mathrm { t r a i n } } ^ { ( 2 ) } } \Theta ( x , x ^ { \prime } ) \frac { \partial L ( f ^ { ( j ) } ( x ^ { \prime } ) , y ^ { \prime } ) } { \partial f } h ^ { T ( j ) } h ^ { ( i ) } . +$$ + +Again we find that if the representation overlap matrix $\begin{array} { r } { \Theta ( x , x ^ { \prime } ) = \sum _ { \mu } g _ { \mu } ( \hat { w } ; x ) g _ { \mu } ( \hat { w } ; x ^ { \prime } ) } \end{array}$ is small between the features evaluated on the initial task and second task data then the predictions do not change significantly. If this overlap is zero, then the predictions are constant. In the multi-head setup we are considering here, we see that the change in predictions is further proportional to the similarity between the model heads, $h ^ { T ( j ) } h ^ { ( i ) }$ . + +Finally, we note that we have considered a final linear layer before the readout head for simplicity. One can instead include a ReLU non-linearity without changing the essential point, that the change in model output is governed by the overlap matrix, $\Theta$ . + +Rotating representations in the analytic model. We can use our analytic model (Section 6.2) to investigate how forgetting depends on representation similarity. We again consider sequential binary tasks (car vs plane) followed by (cat vs horse). We then tune the overlap of our initial task and final task features by explicitly rotating the frozen features for the second task to produce new features $g ^ { \prime } ( \theta ; \hat { w } ; x )$ . + +$$ +\begin{array} { r } { g ^ { \prime } ( \theta ; \hat { w } ; x ) = R ( \theta ) g ( \hat { w } ; x ) . } \end{array} +$$ + +Here, if we have $P$ features, $R ( \theta ) \in \mathbb { R } ^ { P \times P }$ is a one-parameter family of rotation matrices designed such that $R ( 0 ) = { \bf 1 }$ and $g ^ { T } ( \hat { w } ; x ) g ^ { \prime } ( \pi / 2 ; \hat { w } ; x ^ { \prime } )$ for $x \in X _ { \mathrm { t e s t } } ^ { ( 1 ) }$ )t and x0 ∈ X (2)train is small. Explicitly, we take + +$$ +R ( \theta ) = V ^ { T } \prod _ { i = 1 } ^ { \lfloor P / 2 \rfloor } r _ { i , P - i } ( \theta ) V , +$$ + +![](images/2b3c2a4076751d50ef22d3907dc455f84464a1aed3850e086b4306ebb52d726e.jpg) +Figure 27: Rotating representations shows diminished forgetting for dissimilar tasks. Here we consider the performance of our frozen feature model on sequential binary CIFAR-10 tasks (Task 1: car vs plane, Task 2: cat vs horse). We use a model built from a two hidden-layer fully connected network with ReLU activations. We increase decrease representational similarity by explicitly rotating the second task features and find as predicted that this leads to diminished forgetting. + +![](images/b1d85f3a5fa54339a3b6bb967c722fbbb4516faa7a86ac3690f9f44842797f8f.jpg) +Figure 28: Stabilizing final layer weights is not necessary to stop forgetting. Here we look at the change in final layer weights during second task training for a model with severe forgetting (gray) and forgetting mitigated by rotating the second task representations (teal). We see that final layer weights become less and less similar in both cases. The setup is identical to Figure 27 + +where $r _ { i j } ( \theta )$ is the two dimensional rotation matrix between axes $i$ and $j$ , and $V$ is the orthogonal matrix appearing in the singular value decomposition of the feature by data matrix on the initial task, $g ( X _ { \mathrm { t e s t } } ^ { ( 1 ) } ) = U D V$ . We find that explicitly enforcing task dissimilarity via a large rotation minimizes the effect of forgetting (Figure 27). + +Stopping forgetting without stabilizing weights We saw in Section 4 that both EWC and replay buffers stabilize deeper network representations. As mentioned above, this need not be the case a priori. As an illustrative example, we construct a setup where sequential training leads to no forgetting despite a significant change to final layer weights. We consider the single head model of Section 6.2 where the Task 1 and Task 2 representations are completely orthogonal, $\Theta ( x , x ^ { \prime } ) = 0$ for $x \in X _ { \mathrm { t e s t } } ^ { ( 1 ) }$ and $x ^ { \prime } \in X _ { \mathrm { t r a i n } } ^ { ( 2 ) }$ . In this case the Task 1 predictions remain constant throughout all of Task 2 training, despite significant changes to the final layer weights and predictions on the second task. In Figure 28 we present an example of this setup. The representations are again made orthogonal by explicitly rotating the second task features by the rotation matrix, $R ( \pi / 2 )$ defined in Equation equation 11. + +# D ADDITIONAL EXPERIMENTS + +This section presents two additional experiments which are slightly unrelated to the main thrust of the paper. We examine how the degree to which a network forgets is influenced by its width, and also how training the head independently of the rest of the network, in a multi-head setting, can mitigate forgetting. + +# D.1 FORGETTING VERSUS NETWORK WIDTH + +![](images/ec04da581d739ba7b6e3e6a23542ce72fd4e6a3953ad5f4e73573d2c1199f81e.jpg) +Figure 29: Forgetting as a function of network width. (a) VGG, (b) ResNet, and (c) DenseNet networks of varying widths were trained on two subsets of CIFAR-10 classes. We trained each of these (multi-head) networks for 30 epochs on each task with constant $\eta$ , enough to achieve perfect training accuracy. Further training details can be found in the text. From the plots, which show the percent drop in accuracy (on task 1) due to training on task 2, the effect of width on the performance drop seems to be minimal, even sweeping across roughly a factor of ten in the number of model parameters. + +Inspired by recent work of Gilboa & Gur-Ari (2019) showing that wider networks can learn better features than their narrower counterparts, we sought to determine whether wider networks also exhibit less catastrophic forgetting than narrower ones. We tested forgetting versus width for VGG, DenseNet, and ResNet networks on the split CIFAR-10 task in the multi-head setting. For VGG and ResNet, the width was varied by changing the number of channels in the initial convolutional layer and scaling the rest of the network layers concurrently while maintaining the network shape; for DenseNet, the width was varied by by changing the growth rate. + +Surprisingly, though we found that the performances of the networks on each task improved as they grew wider, the amount of forgetting in each network, measured by the percent drop in accuracy (on task 1) due to training on task, exhibited a minimal dependence on network width. These results are shown in Figure 29. + +# D.2 HEADFIRST TRAINING + +When training multi-head networks on sequences of tasks, we found that the networks suffered a smaller performance drop on the original task, i.e. forgot less, if only the new task head was trained for a few epochs prior to training the full network. In Figure 30, this effect is shown for all three network architectures on the split CIFAR-10 task. Training only the head for up to five epochs seemed to improve the original-task performance without sacrificing performance on the new task. This suggests that coadaptation between the freshly-initialized head and the rest of the model contributes to forgetting when there is no headfirst training. + +![](images/5507a75b14a33e01fef517018ef0ba97edcb85a091b929d800a7fc761023b095.jpg) +Figure 30: Effect of training readout layer separately between task switches. (a) VGG, (b) ResNet, and (c) DenseNet models were trained on two subsets of CIFAR-10 classes: task 0 (dog, frog, horse, ship, and truck), and task 1 (airplane, automobile, bird, cat, deer). When switching tasks, we first trained only the final classification layer (known as the readout layer or head) for a specified number of epochs (here 0, 1, 2, and 5) from a random Gaussian initialization. During this period, the rest of the model parameters are held fixed; after the head-only training, the entire model is trained as usual. Across all architectures, training only the head consistently improves the forgetting performance of the model (its accuracy on task 0) while having a negligible impact on the performance on the next task (task 1). + +# E FIGURES FOR ANONREVIEWER2 + +# F IMAGENET RESULTS FOR TASK SEMANTICS + +Figures corresponding to results tables in the main text. + +![](images/0c1f93a5e253061e71524d4448169be4eb17a45238f9076dd080fa8de7682520.jpg) +Figure 31: Stage-wise weight change between initial weights and weights after Task 1 (blue) and between weights after Task 1 and Task2 (orange) for a model trained sequentially on disjoint 5 class subsets of CIFAR10. (a) Mean $\ell _ { 2 }$ distance. (b) Cosine similarity. We see no sign of significantly more change in last layer weights, and in fact see the reverse trend in $\ell _ { 2 }$ distance. + +![](images/ec90b583322ceabb7cc1c372fbe73932285491b6e11d3b83b592d3267593afe4.jpg) +Figure 32: Mean and std deviation for the residual, $p _ { i } - y _ { i }$ , for a model trained on ship v truck evaluated on cat, horse data (blue) and plane, car (orange). We see no clear separation between object and animal data. Each point represents a model trained with a different seed. + +![](images/c45b34098840087b001418b5c2e872344856165330e725c8dd983b94f41ea99e.jpg) +Task1:10Artifacts Task2:10 Animals or 10 Artifacts +Figure 33: ImageNet Two-task 10 class sequences in which similar tasks cause less forgetting. + +(a) Initial classification between 10 artifacts + +![](images/8b45eecffc780f8e5ffdd981f1c29720590080639d5294339abfdcd35e7e827d.jpg) +Task 1:10 Animals Task2:10 Animals or10 Artifacts +(b) Initial classification between 10 animals + +![](images/9a572e7033cd77924c6de4eba1e53eae57b8a03857e2e5c7c1e96aeb78ed10f9.jpg) +Task 1:10 Artifacts $+ ~ 1 0$ Animals Task 2: 10 Artifacts +Task 1:10 Artifacts + 10 Animals Task 2:10 Animals +Figure 34: ImageNet Two-task 20-class followed by 10-class sequences in which similar categories are forgotten more. \ No newline at end of file diff --git a/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_content_list.json b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a3a7077a7d47fbb55950b853394f884b0c6aaf --- /dev/null +++ b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_content_list.json @@ -0,0 +1,2777 @@ +[ + { + "type": "text", + "text": "ANATOMY OF CATASTROPHIC FORGETTING: HIDDEN REPRESENTATIONS AND TASK SEMANTICS ", + "text_level": 1, + "bbox": [ + 176, + 99, + 794, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Vinay V. Ramasesh Blueshift, Alphabet Mountain View, CA ", + "bbox": [ + 183, + 170, + 320, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ethan Dyer Blueshift, Alphabet Mountain View, CA ", + "bbox": [ + 400, + 170, + 534, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Maithra Raghu Google Brain Mountain View, CA ", + "bbox": [ + 616, + 170, + 750, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 452, + 250, + 544, + 263 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Catastrophic forgetting is a recurring challenge to developing versatile deep learning models. Despite its ubiquity, there is limited understanding of its connections to neural network (hidden) representations and task semantics. In this paper, we address this important knowledge gap. Through quantitative analysis of neural representations, we find that deeper layers are disproportionately responsible for forgetting, with sequential training resulting in an erasure of earlier task representational subspaces. Methods to mitigate forgetting stabilize these deeper layers, but show diversity on precise effects, with some increasing feature reuse while others store task representations orthogonally, preventing interference. These insights also enable the development of an analytic argument and empirical picture relating forgetting to task semantic similarity, where we find that maximal forgetting occurs for task sequences with intermediate similarity. ", + "bbox": [ + 233, + 282, + 766, + 449 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 482, + 336, + 497 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "While the past few years have seen the development of increasingly versatile machine learning systems capable of learning complex tasks (Stokes et al., 2020; Raghu & Schmidt, 2020; Wu et al., 2019b), catastrophic forgetting remains a core capability challenge. Catastrophic forgetting is the ubiquitous phenomena where machine learning models trained on non-stationary data distributions suffer performance losses on older data instances. More specifically, if our machine learning model is trained on a sequence of tasks, accuracy on earlier tasks drops significantly. The catastrophic forgetting problem manifests in many sub-domains of machine learning including continual learning (Kirkpatrick et al., 2017), multi-task learning (Kudugunta et al., 2019), standard supervised learning through input distribution shift (Toneva et al., 2019; Snoek et al., 2019; Rabanser et al., 2019; Recht et al., 2019) and data augmentation (Gontijo-Lopes et al., 2020). ", + "bbox": [ + 174, + 507, + 825, + 646 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Mitigating catastrophic forgetting has been an important research focus (Goodfellow et al., 2013; Kirkpatrick et al., 2017; Lee et al., 2017; Li et al., 2019; Serra et al., 2018; Ritter et al., 2018; Rolnick \\` et al., 2019), but many methods are only effective in specific settings (Kemker et al., 2018), and progress is hindered by limited understanding of catastrophic forgetting‘s fundamental properties. How does catastrophic forgetting affect the hidden representations of neural networks? Are earlier tasks forgotten equally across all parameters? Are there underlying principles common across methods to mitigate forgetting? How is catastrophic forgetting affected by (semantic) similarities between sequential tasks? This paper takes steps to answering these questions, specifically: ", + "bbox": [ + 174, + 652, + 825, + 763 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1. With experiments on split CIFAR-10, a novel distribution-shift CIFAR-100 variant, CelebA and ImageNet we analyze neural network layer representations, finding that higher layers are disproportionately responsible for catastrophic forgetting, the sequential training process erasing earlier task subspaces. \n2. We investigate different methods for mitigating forgetting, finding that while all stabilize higher layer representations, some methods encourage greater feature reuse in higher layers, while others store task representations as orthogonal subspaces, preventing interference. \n3. We study the connection between forgetting and task semantics, finding that semantic similarity between subsequent tasks consistently controls the degree of forgetting. \n4. Informed by the representation results, we construct an analytic model that relates task similarity to representation interference and forgetting. This provides a quantitative empirical measure of ", + "bbox": [ + 171, + 770, + 826, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/d611e63cde367ca536e0f6643ab383afee09cc289ec2c502088c61e3cc73273b.jpg", + "image_caption": [ + "Figure 1: Examples of catastrophic forgetting across different architectures and datasets. We plot accuracy of Task 1 (purple) and Task 2 (green), on both the split CIFAR10 task, and the CIFAR100 distribution-shift task across multiple architectures. Catastrophic forgetting is seen as the significant drop of Task 1 accuracy when Task 2 training begins. " + ], + "image_footnote": [], + "bbox": [ + 178, + 101, + 816, + 200 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "task similarity, and together these show that forgetting is most severe for tasks with intermediate similarity. ", + "bbox": [ + 187, + 290, + 823, + 319 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 351, + 344, + 367 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Mitigation strategies Developing mitigation strategies for catastophic forgetting is an active area of research (Kemker et al., 2018). Popular approaches based on structural regularization include Elastic Weight Consolidation (Kirkpatrick et al., 2017) and Synaptic Intelligence (Zenke et al., 2017). An alternative, functional regularization approach is based on storing and replaying earlier data in a replay buffer (Schaul et al., 2015; Robins, 1995; Rolnick et al., 2019). We study how these mitigation methods affect the internal network representations to better understand their role in preventing catastrophic forgetting. ", + "bbox": [ + 174, + 381, + 825, + 479 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Understanding catastrophic forgetting Our work is similar in spirit to existing empirical studies aimed at better understanding the catastrophic forgetting phenomenon (Goodfellow et al., 2013; Toneva et al., 2019). We focus specifically on understanding how layerwise representations change, and on the relation between forgetting and task semantics, which have not previously been explored. This semantic aspect is related to recent work by Nguyen et al. (2019) examining the influence of task sequences on forgetting. It also builds on work showing that learning in both biological and artificial neural networks is affected by semantic properties of the training data (Saxe et al., 2019; Mandler & McDonough, 1993). ", + "bbox": [ + 174, + 484, + 825, + 597 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Fine-tuning and transfer learning While not studied in the context of catastrophic forgetting, layerwise learning dynamics have been investigated in settings other than continual learning. For example, Raghu et al. (2017) showed that layerwise network representations roughly converge bottomup; (from input to output). Neyshabur et al. (2020) observed similar phenomena in a transfer-learning setting with images, as have others recently in transformers for NLP (Wu et al., 2020; Merchant et al., 2020). Furthermore, the observation that early layers in networks learn general features like edge detectors, while latter layers learn more task specific features is a well-known result in computer vision (Erhan et al., 2009), and here we quantitatively study its ramifications for sequential training and catastrophic forgetting. ", + "bbox": [ + 174, + 603, + 825, + 729 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3 SETUP ", + "text_level": 1, + "bbox": [ + 176, + 761, + 261, + 777 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Tasks: We conduct this study over many different tasks and datasets: (i) Split CIFAR-10, where the ten class dataset is split into two tasks of 5 classes each (ii) input distribution shift CIFAR-100, where each task is to distinguish between the CIFAR-100 superclasses, but input data for each task is a different subset of the constituent classes of the superclass (see Appendix A.3) (iii) CelebA attribute prediction: the two tasks have input data either men or women, and we predict either smile or mouth open (iv) ImageNet superclass prediction, similar to CIFAR100. ", + "bbox": [ + 174, + 791, + 825, + 875 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Models: We perform experiments with three common neural network architectures used in image classification — VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015) and DenseNet (Huang et al., 2016). Examples of catastrophic forgetting in these models are shown in Figure 1. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/751d12c2239a6b9cb5e1ce1e312ccd471a884b89fcbcd8afa36f1411e562dd10.jpg", + "image_caption": [ + "Figure 2: Freezing lower layer representations after Task 1 training has little impact on Task 2 accuracy. We freeze the parameters of a contiguous block of layers (starting from the lowest layer) after Task 1 training, and only train the remainder on Task 2, finding that freezing the lowest layers has little impact on Task 2 accuracy. " + ], + "image_footnote": [], + "bbox": [ + 176, + 102, + 816, + 202 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4 CATASTROPHIC FORGETTING AND HIDDEN LAYER REPRESENTATIONS ", + "text_level": 1, + "bbox": [ + 171, + 265, + 790, + 281 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We begin by investigating how catastrophic forgetting manifests in the hidden representations of the neural network. Do all parameters (and layers) forget equally? Or are specific components of the network particularly responsible for the drop in accuracy in sequential training? Through a combination of layer freezing experiments, and representational analysis, we find that higher layers (layers closest to output) are disproportionately responsible for catastrophic forgetting, with lower layers (layers closest to input) remaining representationally stable through sequential training. Further analysis of the representational subspaces of Task 1, Task 1 (post Task 2 training) and Task 2, provide insights on both feature reuse and interference. ", + "bbox": [ + 173, + 286, + 825, + 398 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4.1 FREEZING LAYER REPRESENTATIONS ", + "text_level": 1, + "bbox": [ + 174, + 415, + 475, + 429 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To study the effect of individual layers on forgetting, we measure the effect of freezing layer representations on Task 2 accuracy (Figure 2). Specifically, we freeze a contiguous block of layers (starting from the lowest layer) after training on Task 1, and only train the remaining layers on Task 2. Across different architectures and tasks, we observe that lower layers can be reliably frozen with very little impact on Task 2 accuracy. This suggests the possibility of lower layer features being reused between both tasks, with higher layers being the main contributor to catastrophic forgetting. ", + "bbox": [ + 174, + 433, + 825, + 516 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4.2 REPRESENTATIONAL SIMILARITY THROUGH SEQUENTIAL TRAINING", + "text_level": 1, + "bbox": [ + 174, + 532, + 691, + 546 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The results of Figure 2 illustrate that lower layer representations on Task 1 can be reused for good performance on Task 2. To determine if this is what actually occurs during the training process, we turn to Centered Kernel Alignment (CKA) (Kornblith et al., 2019), a neural network representation similarity measure. CKA and other related algorithms (Raghu et al., 2017; Morcos et al., 2018) provide a scalar score (between 0 and 1) determining how similar a pair of (hidden) layer representations are, and have been used to study many properties of deep neural networks (Gotmare et al., 2018; Kudugunta et al., 2019; Wu et al., 2019a). ", + "bbox": [ + 173, + 549, + 825, + 647 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Specifically, letting $\\ b X \\in \\mathbb { R } ^ { n \\times p }$ and $Y \\in \\mathbb { R } ^ { n \\times p }$ be (centered) layer activation matrices of (the same) $n$ datapoints and $p$ neurons, CKA computes ", + "bbox": [ + 173, + 654, + 823, + 683 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/5ec6882b50b860c46e6f4b01a17d96b09391c130b52aaf17c44ede2c3d479381.jpg", + "text": "$$\n\\mathrm { C K A } ( \\mathrm { X } , \\mathrm { Y } ) = \\frac { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { Y Y ^ { T } } ) } { \\sqrt { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { X X ^ { T } } ) } \\sqrt { \\mathrm { H S I C } ( \\mathrm { Y Y ^ { T } } , \\mathrm { Y Y ^ { T } } ) } }\n$$", + "text_format": "latex", + "bbox": [ + 299, + 686, + 699, + 726 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "for HSIC Hilbert-Schmidt Independence Criterion (Gretton et al., 2005). We use linear-kernel CKA. ", + "bbox": [ + 174, + 729, + 823, + 744 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In Figure 3, we plot the results of computing CKA on Task 1 layer representations before and after Task 2 training. Across architectures and tasks, we observe that the lower layers have high representation similarity, suggesting that lower layer Task 1 features are reused in Task 2. The higher layers however show significant decreases in representation similarity, suggesting they disproportionately contribute to catastrophic forgetting. These conclusions are further supported by additional layer reset experiments in Appendix Figure 12, which shows that rewinding higher layer parameters from post-Task 2 training to their pre-Task 2 training values significantly improves Task 1 performance. ", + "bbox": [ + 173, + 750, + 825, + 848 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4.3 FEATURE REUSE AND SUBSPACE ERASURE ", + "text_level": 1, + "bbox": [ + 173, + 864, + 514, + 878 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Further insights on how the representations of lower and higher layers evolve during sequential training is given through a subspace similarity analysis. Letting $\\ b X \\in \\mathbb R ^ { n \\times p }$ be the (centered) layer activation matrix of $n$ examples by $p$ neurons, we compute the PCA decomposition of $X$ , i.e. the ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/54c39e8d19801972f046935444a440a282fa88813511537bedfe3ab1203c847e.jpg", + "image_caption": [ + "Figure 3: CKA analysis of layer representations before/after Task 2 training shows lower layer feature reuse and higher layer representations changing significantly on CIFAR10, CIFAR100, ImageNet and CelebA. We compute CKA of the Task 1 layer representations before and after Task 2 training. We observe that later layers change more than early layers through second task training. " + ], + "image_footnote": [], + "bbox": [ + 178, + 101, + 818, + 315 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/35dfe190006578fae05569f5bf53d346b76b9a6af954acad93632c9d607345d9.jpg", + "image_caption": [ + "Figure 4: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure in higher layers. For Resnet on CIFAR10 (left), VGG on CIFAR10 (middle), Resnet on CIFAR100 (right), we compute subspace similarity between: (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training) (green line) (iii) (Task 2, Task 1 post-Task 2 training) (blue line). All comparisons show high similarity in lower layers, indicative of feature reuse. Most striking is the comparison between (Task 1, Task 1 post-Task 2 training) and (Task 2, Task 1 post-Task 2 training), which show that after Task 2 training, higher layer representations for Task 1 are more similar to Task 2 than to Task 1! Specifically, the Task 1 subspace in higher layers is erased through Task 2 training. " + ], + "image_footnote": [], + "bbox": [ + 192, + 388, + 767, + 515 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "eigenvectors $( v _ { 1 } , v _ { 2 } , \\ldots )$ and eigenvalues $( \\lambda _ { 1 } , \\lambda _ { 2 } . . . )$ of $X ^ { T } X$ . Letting $V _ { k }$ be the matrix formed from the top $k$ principal directions, $v _ { 1 } , . . . , v _ { k }$ as columns, and $U _ { k }$ the corresponding matrix for a different activation matrix $Y$ , we compute ", + "bbox": [ + 174, + 626, + 823, + 670 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/93210a561cda29c3ecc977132e1ec315a90f01f1a64db5375460c390077263a9.jpg", + "text": "$$\n\\mathrm { S u b s p a c e S i m } _ { k } ( X , Y ) = \\frac { 1 } { k } | | V _ { k } ^ { T } U _ { k } | | _ { F } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 369, + 676, + 629, + 707 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This measures the overlap in the subspaces spanned by $( v _ { 1 } , . . . , v _ { k } )$ and $( u _ { 1 } , . . . , u _ { k } )$ . Concretely, if $X$ and $Y$ correspond to layer activation matrices for two different tasks, Subspace $s \\mathrm { i m } _ { k } ( X , Y )$ measures how similarly the top $k$ representations for those tasks are stored in the network. ", + "bbox": [ + 176, + 713, + 823, + 756 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Figure 4 shows the result of computing SubspaceSim ${ } _ { k } ( X , Y )$ for $X , Y$ being the layer activation matrices in (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training) (blue line) (iii) (Task 2, Task 1 post-Task 2 training) (blue line). Supporting the CKA analysis, lower layers have high subspace similarity between Task 1 and Task 2 (feature reuse), but higher layers have low similarity (representations change significantly during Task 2 training.) Furthermore, (Task 1, Task 1 post-Task 2 training) also shows low subspace similarity in the higher layers, indicating that the representational change in later layers is not restricted to Task 2 data, but also alters the networks representation of the initial task. Strikingly, (Task 2, Task 1 post-Task 2 training) shows high similarity in all layers, despite being different tasks. ", + "bbox": [ + 173, + 762, + 825, + 888 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In summary, these results illustrate that during sequential training, effective feature reuse happens in the lower layers, but in the higher layers, after Task 2 training, Task 1 representations are mapped into the same subspace as Task 2. Specifically, Task 2 training causes subspace erasure of Task 1 in the higher layers. (Additional details and results are in Appendix Section A.5.) ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/989d29fbf88957c746c36658e38c694a1fda4765067223fb5123c977c85c3fd4.jpg", + "image_caption": [ + "Figure 5: CKA analysis of mitigation methods demonstrates that mitigation methods stabilize the higher layer representations. We compute CKA between layer representations of Task 1 before and after Task 2 training, with varying amounts and types of mitigation. We find that across all mitigation methods, even a small amount of mitigation works to stabilize the higher layer representations. In Figure 6, we investigate whether this stabilization results in greater feature reuse or through finding independent subspaces. " + ], + "image_footnote": [], + "bbox": [ + 168, + 101, + 802, + 200 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/6e2fad04e0a002db8542c43cb352a649d5d03328e4c47ff4ee1cafae61635513.jpg", + "image_caption": [ + "Figure 6: Subspace similarity analysis reveals differences between different mitigation methods, with replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote feature reuse in the higher layers. Top row: We plot subspace similarities like in Figure 4, for different mitigation methods. We observe that (Task 2, Task 1 post-Task 2 training) is much lower in replay compared to EWC/SI, as is (Task1, Task2) similarity. The bottom row plots (Task 2, Task 1 post-Task 2 training) for different amounts of mitigation. Again we see that replay has much lower (Task 2, Task 1 post-Task 2 training) similarity than no mitigation, while EWC/SI maintain the similar subspaces of Task 1 and Task 2 post Task 2 training. " + ], + "image_footnote": [], + "bbox": [ + 161, + 286, + 823, + 508 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 627, + 823, + 656 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 FORGETTING MITIGATION METHODS AND REPRESENTATIONS ", + "text_level": 1, + "bbox": [ + 176, + 676, + 722, + 694 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Informed by this understanding of how catastrophic forgetting manifests in the hidden layers (feature reuse in lower layers and subspace erasure in higher layers), we next study methods to mitigate forgetting. Do popularly used mitigation methods act to stabilize higher layers — given possible alternate approaches such as weight orthogonalization (Appendix C)? ", + "bbox": [ + 174, + 700, + 825, + 756 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We investigate these questions across different successful mitigation strategies (i) EWC (elastic weight consolidation) (Kirkpatrick et al., 2017), a regularization-based approach (ii) replay buffer (Schaul et al., 2015; Ratcliff, 1990; Rolnick et al., 2019), a rehearsal-styled approach (iii) SI (Synaptic Intelligence) (Zenke et al., 2017), another popular regularization-based approach. ", + "bbox": [ + 174, + 763, + 825, + 819 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In Figure 5, we plot the results of computing CKA on layer representations of Task 1 before/after training on Task 2, with different amounts of mitigation applied, and across different mitigation methods, tasks and architectures (full results in Appendix B.7.) Across all of these settings, we observe that even a small amount of mitigation results in a significant increase in similarity (stabilization) in the higher layers. However, there remains a central open question — is this increase in similarity due to feature reuse in the higher layers between Task 1 and Task 2, or does the network store Task 1 and Task 2 representations in non-interfering, orthogonal subspaces? ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/10d7acc7c85ddb54b5a1f7a9d2b6d802e716edd510dda6927ec734f59ba4c779.jpg", + "image_caption": [ + "Figure 7: Subspace similarity analysis of CelebA, with and without replay mitigation. Left pane computes subspace similarities in CelebA, like in Figure 4, showing subspace erasure at top layers. Middle and right panes showt the effect of adding replay, where subspaces in lower/middle layers become more similar but higher layers become more orthogonal, like in Figure 6. " + ], + "image_footnote": [], + "bbox": [ + 212, + 102, + 774, + 219 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To answer this, we compute the Subspace Similarity measure introduced in Section 4.3, with results in Figure 6 (and additional experiments in Appendix Section B.5). These results reveal key differences between the mitigation methods: replay buffer results in orthogonal network subspaces for higher layer representations of Task 1 and Task 2, while EWC and SI promote feature reuse even in the higher layers. In more detail: ", + "bbox": [ + 173, + 303, + 825, + 372 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "• Comparing the top row of Figure 6 to Figure 4 (the same plot without mitigation), we see that mitigation methods increase the subspace similarity of (Task 1, Task 1 Post-Task 2) and (Task 1, Task 2) representations in earlier/middling layers (more feature reuse). \n• Most interestingly, comparing the different mitigation methods across top row Figure 6, we see that while EWC and SI maintain high subspace similarity of (Task 2, Task 1 Post-Task 2) even in the highest layers, replay significantly decreases this value in the highest layers. This suggests that replay performs mitigation through use of orthogonal subspaces, while EWC/SI encourage feature reuse even in the highest layers. \n• In the bottom row we show subspace similarity of (Task 2, Task 1 Post-Task 2) for varying strengths of the different mitigation methods. We observe a clear decrease in subspace similarity in higher layers even when a little replay is used (again supporting orthogonal subspaces), while EWC/SI maintain or increase this (feature reuse even in higher layers.) ", + "bbox": [ + 173, + 380, + 826, + 546 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "6 SEMANTICS ", + "text_level": 1, + "bbox": [ + 174, + 571, + 305, + 588 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "With the insights on how catastrophic forgetting relates to the hidden representations, and the effects on network internals of different mitigation methods, we turn to investigating how the semantic similarity between the sequential tasks affects forgetting. Specifically the prior results on lower layer feature reuse suggest a key question: does similarity between tasks result in less forgetting? Surprisingly, the answer is quite nuanced, depending on how precisely the different tasks are represented in the network. ", + "bbox": [ + 173, + 597, + 825, + 680 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "6.1 FORGETTING, TASK SEMANTICS AND A SIMILARITY PUZZLE ", + "text_level": 1, + "bbox": [ + 174, + 703, + 637, + 717 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our study of the relationship between task semantic similarity and forgetting reveals a surprising puzzle. In Figure 8 and Table 1, we observe that depending on the task setup, a semantically similar task may be forgotten less or more than a less similar task. This behavior is consistent across different settings and datasets. Specifically, in Figure 8a and 8d, Task 1 and Task 2 consist of binary classifications between animals and objects from CIFAR-10, where we find that the similar categories forget less. But in Figure 8b and 8e, a four category classification between animals and objects followed by a binary classification task results in the similar categories being forgotten more. Table 1 shows an analogous result on ImageNet. This effect of similar categories being forgotten more can also be observed in the CIFAR-100 distribution shift setting, where input distribution shift to the CIFAR-100 superclasses results in more similar categories being forgotten more, e.g. input shifts to natural superclasses (Figure 8c) or artifical superclasses (Figure 8f). Further details and supporting experiments can be found in Appendix B.9. ", + "bbox": [ + 173, + 722, + 825, + 888 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In the subsequent sections, we resolve this puzzle through (i) the development of an analytic model that formalizes the subtle connection between task similarity and forgetting (ii) an ensuing measure of task similarity, trace overlap, empirically quantifies task similarity (iii) showing maximal forgetting happens with intermediate task similarity. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/97cddca27ac4c1609e19e4ad01716f32b4b6060f855841e02ef202f7ad83dcf3.jpg", + "image_caption": [ + "Figure 8: Forgetting severity consistently varies along semantic divisions. (a,d) For sequential binary classification tasks models trained on either objects or animals forgets less on a second object task of the same semantic category. (b,e) Models trained initially on four way classification of two object and two animal classes see more forgetting in semantically similar classes when trained on a second two class task of either objects or animals. (c,f) Models trained on sequential six-way classification with four unaltered categories (shown) and two altered categories show increased forgetting in the unaltered categories semantically most similar to altered categories. For all panes, performance is shown for ResNet, with additional results in Appendix B.9. " + ], + "image_footnote": [], + "bbox": [ + 179, + 161, + 812, + 429 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/bcc2ff7123e38051eeb8a6fd458ec8dee7287267a33219bf8dca1ace03234537.jpg", + "table_caption": [ + "Table 1: Task Semantics and forgetting in ImageNet Here a ResNet50 is first trained (task 1) to classify either 10 animals, 10 artifacts or 10 animals and artifacts (chosen randomly from ImageNet). The network is then trained (task 2) to either classify 10 different animals or 10 different artifacts. The table shows performance drop on Task 1 after Task 2 training. Similar to Figure 8, when Task 1 is either animals or artifacts (top part of table), similar tasks forget less, while when Task 1 is both animals and artifacts, similar tasks show greater forgetting (bottom part of table). " + ], + "table_footnote": [], + "table_body": "
Task DescriptionPerformance Drop on Task 1 Animals Artifacts
Task1:animals Task2:animals0.0885 ± 0.0259
Task1:animals Task2:artifacts0.1832 ± 0.0484
Task1:artifacts Task2:artifacts0.2884 ± 0.0187
Task1:artifacts Task2:animals0.3720 ± 0.0288
Task1:animals and artifacts Task2:animals0.1752 ± 0.01930.1532 ± 0.0231
Task1:animals and artifacts Task2:artifacts0.2057 ± 0.03120.2330 ± 0.0292
", + "bbox": [ + 220, + 642, + 777, + 776 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.2 AN ANALYTIC MODEL OF FORGETTING SEMANTICS ", + "text_level": 1, + "bbox": [ + 173, + 148, + 578, + 164 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We first formalize a model with a single classification head (like in distribution shift CIFAR-100), $\\scriptstyle \\sum _ { \\mu = 1 } ^ { p } \\theta _ { \\mu } g _ { \\mu } ( w ; x )$ nding m, where $\\theta$ ti-head setup in Appendix C. Ware the last layer weights and $g$ write the network output asare features. We consider $f ( x ) =$ sequentially on two tasks. For the first task, we train normally. For the second task, inspired by our empirical observation above that forgetting is driven by deeper layers, we freeze the the earlier layer features, $g _ { \\mu } ( w ; x ) = g _ { \\mu } ( \\hat { w } ; x )$ when training on the second task (here $\\hat { w }$ represent the weights after training on the first task). If we train with loss function $L ( f , y )$ and learning rate $\\eta$ , the network output SGD update at timestep $t$ is ", + "bbox": [ + 173, + 166, + 826, + 280 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/d9e738fcd6ce18d35701510190b82266c9c4cfa9974169718abd4a15b8d26993.jpg", + "text": "$$\n\\Delta f _ { t } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\operatorname { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } .\n$$", + "text_format": "latex", + "bbox": [ + 338, + 304, + 658, + 349 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Here D(2) is the second-task training data and $\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu = 1 } ^ { p } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}$ is the overlap (inner product) between the model last-layer representations on data point $x$ and $x ^ { \\prime }$ . If the overlap $\\Theta ( x , x ^ { \\bar { \\prime } } )$ is small, then the change in the logits is small and forgetting is minimal, specifically: ", + "bbox": [ + 173, + 358, + 825, + 406 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Lemma 1 Let $f _ { t }$ be the logits of a neural network trained via the frozen feature model. Let $x$ be an element of the initial task test set. Let us further denote the vector of the feature overlap applied to the second task training set as $ { \\vec { \\Theta } } ( x ) : = \\{ \\Theta ( x , x ^ { \\prime } ) : x ^ { \\prime } \\in X _ { t r a i n } ^ { ( 2 ) } \\}$ and the loss vector as $\\vec { L } = \\{ L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) : x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { t r a i n } ^ { ( 2 ) } \\}$ train. With this, the change in the original task logits is bounded as ", + "bbox": [ + 173, + 417, + 825, + 483 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/5560d915c662208e0d52cb9477642c65c77fbf179501bc79b7d1de8d64727597.jpg", + "text": "$$\n| \\Delta f _ { t } ( x ) | \\leq \\eta | | { \\vec { \\Theta } } ( x ) | | | { \\frac { \\partial { \\vec { L } } } { \\partial f } } | | .\n$$", + "text_format": "latex", + "bbox": [ + 392, + 488, + 606, + 532 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Thus representational similarity is necessary for forgetting to occur, and in this model, sufficiently similar and sufficiently dissimilar tasks have minimal forgetting, while intermediate similar tasks have maximal forgetting. ", + "bbox": [ + 173, + 545, + 825, + 588 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.3 CATASTROPHIC FORGETTING ACROSS VARYING TASK SIMILARITIES ", + "text_level": 1, + "bbox": [ + 174, + 604, + 687, + 619 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The analytical result enables us to make precise a measure of task similarity, through using the feature overlap matrix $\\Theta ( x ^ { \\prime } , x )$ . Concretely, letting $\\Theta _ { 1 1 }$ be the overlap matrix on Task 1, $\\Theta _ { 2 2 }$ on Task 2, and $\\Theta _ { 1 2 }$ on Task 1 and Task 2, we define: ", + "bbox": [ + 173, + 630, + 825, + 672 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/7fb62347b6c3e11263b8f79f914a23a2b0c512424d1d31faa6d0808e1137d433.jpg", + "text": "$$\n\\mathrm { T r a c e ~ o v e r l a p } = \\frac { \\mathrm { T r } \\left( \\Theta _ { 1 2 } \\Theta _ { 1 2 } ^ { T } \\right) } { \\sqrt { \\left( \\right)} \\mathrm { T r } \\left( \\Theta _ { 1 1 } \\Theta _ { 1 1 } ^ { T } \\right) \\mathrm { T r } \\left( \\Theta _ { 2 2 } \\Theta _ { 2 2 } ^ { T } \\right) } .\n$$", + "text_format": "latex", + "bbox": [ + 333, + 679, + 663, + 718 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Trace overlap is directly analogous to CKA, where instead of comparing the similarity of different features on the same data, we are comparing the similarity of common features on different data. ", + "bbox": [ + 174, + 724, + 826, + 753 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Increasing task dissimilarity can help reduce forgetting In Lemma 1, we see that very dissimilar tasks, with small overlap matrix, exhibit minimal forgetting. In Figure 9, we test this in the context of sequential binary classification. We introduce an other category to the classification problem (of images from classes not included in the training tasks), which encourages the model to represent Task 1 and Task 2 dissimilarly (lower trace overlap in Figure 9b), and reduces forgetting (Figure 9a). ", + "bbox": [ + 173, + 758, + 825, + 830 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Maximal forgetting at intermediate similarity To empirically study the conclusion from the model that intermediate-similar tasks have maximal forgetting, we use mixup (Zhang et al., 2017), a standard data augmentation technique, to interpolate between the two tasks. Specifically, we first train a model on binary classification (with an other category to encourage dissimilarity) and for $\\lambda \\in [ 0 , 1 ]$ , generate an mixup dataset D(λ)train $\\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( \\lambda ) } = \\{ ( \\lambda x ^ { ( 2 ) } + ( 1 - \\lambda ) x ^ { ( 1 ) } , \\lambda y ^ { ( 2 ) } + ( 1 - \\lambda ) y ^ { ( 1 ) } ) \\}$ . We compare model behavior across a range of mixup fractions, finding that the task similarity as measured through the trace overlap between task1 and task2 varies monotonically with mixup fraction (Figure 10b), quantifying that varying the mixing parameter, $\\lambda$ , tunes the degree of task similarity. Figure 10a shows that the most extreme forgetting happens for intermediate similarity (i.e. mixing fraction $\\sim 0 . 1 - 0 . 2 $ ). ", + "bbox": [ + 173, + 835, + 825, + 925 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/6784833ddb4e91dbce15ca23e71963d5878b428c23395b6d834b86c3ad595e7e.jpg", + "image_caption": [ + "Figure 9: Adding an other category reduces forgetting and increases orthogonalization. (a) Models trained initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog exhibit diminished forgetting when we add an other category to task 1 training. The other category contains randomly sampled images from all classes not present in the initial or final tasks. (b,c) The presence of the other category reduces the similarity between the model’s representations of each task. Additional plots are in Appendix B.8. " + ], + "image_footnote": [], + "bbox": [ + 194, + 106, + 785, + 232 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/f7f09ed8fd905a5739a7af98293034d8a59fa72e4a4b35d72db19658113786f8.jpg", + "image_caption": [ + "Figure 10: Task similarity affects performance. (a) We measure initial task performance for sequential binary classification as we dial the mixup fraction between 0.0, pure task 2 data, and 1.0, pure task 1 data. Maximum forgetting (minimal accuracy) occurs at an intermediate value of the mixup fraction, $\\sim 0 . 1 - 0 . 2$ . (b) We measure the similarity between task 1 and task 2 as we vary the mixup fraction, supporting the intuition that interpolating mixup fraction interpolates task similarity. (c) Task 1 performance after task 2 training is plotted against task 1 versus task 2 representational similarity for animal and object classes in the sequential binary classification tasks (solid) and four-way followed by binary classification tasks (hollow) of Figures 8a and Figures 8b. In the case of sequential binary tasks both object and animal second tasks are represented extremely similarly to the initial object task and the slightly less similar, object task, forgets more. For the four way classification task, animals are represented dissimilarly to the second object task and cause less forgetting. " + ], + "image_footnote": [], + "bbox": [ + 179, + 330, + 816, + 457 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 622, + 825, + 665 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Semantic similarity revisited Armed with these quantitative measures, we revisit the task semantics puzzle in Figure 8 where (i) for sequential binary classification, semantically more similar categories were forgotten less, while in (ii) four class classification followed by binary classification and input distribution shift, similar classes were forgotten more. Figure 10c (solid dots) shows that in (i) the net didn’t represent objects and animals differently, and the slightly more similar task is forgotten less. But in (ii) Figure 10c (hollow dots), the model encodes animals and objects differently, minimizing forgetting on the dissimilar tasks, consistent with maximal forgetting for intermediate similarity. ", + "bbox": [ + 174, + 671, + 825, + 770 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 790, + 318, + 806 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, we have studied some of the fundamental properties of catastrophic forgetting, answering important open questions on how it arises and interacts with hidden representations, mitigation strategies and task semantics. By using representational analysis techniques, we demonstrated that forgetting is not evenly distributed throughout the deep learning model but concentrated at the higher layers, which change significantly and erase earlier task subspaces through sequential training. Consistent with this, we find mitigation methods all stabilize higher layer representations, but vary on whether they enforce more feature reuse, or store tasks in orthogonal subspaces. Informed by these insights, we formulate an analytic model to investigate connections between forgetting and task semantics. This gives a quantitative measure of task similarity and shows that intermediate similarity in sequential tasks leads to maximal forgetting. In summary, these results help provide a foundation for a deeper understanding of catastrophic forgetting and suggest new approaches for developing and measuring mitigation methods. ", + "bbox": [ + 174, + 813, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 103, + 823, + 159 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 103, + 287, + 117 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Naveen Arivazhagan, Ankur Bapna, Orhan Firat, Dmitry Lepikhin, Melvin Johnson, Maxim Krikun, Mia Xu Chen, Yuan Cao, George Foster, Colin Cherry, et al. Massively multilingual neural machine translation in the wild: Findings and challenges. arXiv preprint arXiv:1907.05019, 2019. ", + "bbox": [ + 174, + 126, + 826, + 167 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dumitru Erhan, Y. Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer features of a deep network. Technical Report, Univeriste de Montr ´ eal ´ , 01 2009. ", + "bbox": [ + 169, + 176, + 823, + 205 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dar Gilboa and Guy Gur-Ari. Wider networks learn better features, 2019. ", + "bbox": [ + 174, + 213, + 658, + 228 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Raphael Gontijo-Lopes, Sylvia J Smullin, Ekin D Cubuk, and Ethan Dyer. Affinity and diversity: Quantifying mechanisms of data augmentation. arXiv preprint arXiv:2002.08973, 2020. ", + "bbox": [ + 173, + 236, + 825, + 266 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ian J Goodfellow, Mehdi Mirza, Da Xiao, Aaron Courville, and Yoshua Bengio. An empirical investigation of catastrophic forgetting in gradient-based neural networks. arXiv preprint arXiv:1312.6211, 2013. ", + "bbox": [ + 173, + 273, + 828, + 315 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Akhilesh Gotmare, Nitish Shirish Keskar, Caiming Xiong, and Richard Socher. A closer look at deep learning heuristics: Learning rate restarts, warmup and distillation. arXiv preprint arXiv:1810.13243, 2018. ", + "bbox": [ + 174, + 324, + 826, + 367 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Arthur Gretton, Olivier Bousquet, Alex Smola, and Bernhard Scholkopf. Measuring statistical ¨ dependence with hilbert-schmidt norms. In International conference on algorithmic learning theory, pp. 63–77. Springer, 2005. ", + "bbox": [ + 173, + 376, + 823, + 419 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition, 2015. ", + "bbox": [ + 171, + 426, + 823, + 455 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q. Weinberger. Densely connected convolutional networks, 2016. ", + "bbox": [ + 173, + 463, + 825, + 493 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Arthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and ´ generalization in neural networks. In NeurIPS, 2018. ", + "bbox": [ + 173, + 501, + 823, + 530 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ronald Kemker, Marc McClure, Angelina Abitino, Tyler L Hayes, and Christopher Kanan. Measuring catastrophic forgetting in neural networks. In Thirty-second AAAI conference on artificial intelligence, 2018. ", + "bbox": [ + 174, + 537, + 823, + 580 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming catastrophic forgetting in neural networks. Proceedings of the national academy of sciences, 114 (13):3521–3526, 2017. ", + "bbox": [ + 173, + 588, + 826, + 645 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Simon Kornblith, Mohammad Norouzi, Honglak Lee, and Geoffrey Hinton. Similarity of neural network representations revisited. arXiv preprint arXiv:1905.00414, 2019. ", + "bbox": [ + 171, + 654, + 823, + 684 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sneha Reddy Kudugunta, Ankur Bapna, Isaac Caswell, Naveen Arivazhagan, and Orhan Firat. Investigating multilingual nmt representations at scale. arXiv preprint arXiv:1909.02197, 2019. ", + "bbox": [ + 171, + 690, + 823, + 720 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming catastrophic forgetting by incremental moment matching. In Advances in neural information processing systems, pp. 4652–4662, 2017. ", + "bbox": [ + 176, + 728, + 825, + 771 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xilai Li, Yingbo Zhou, Tianfu Wu, Richard Socher, and Caiming Xiong. Learn to grow: A continual structure learning framework for overcoming catastrophic forgetting. arXiv preprint arXiv:1904.00310, 2019. ", + "bbox": [ + 173, + 779, + 825, + 821 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jean M. Mandler and Laraine McDonough. Concept formation in infancy. Cognitive Development, 8(3):291 – 318, 1993. ISSN 0885-2014. doi: https://doi.org/10. 1016/S0885-2014(93)80003-C. URL http://www.sciencedirect.com/science/ article/pii/S088520149380003C. ", + "bbox": [ + 173, + 830, + 826, + 887 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Amil Merchant, Elahe Rahimtoroghi, Ellie Pavlick, and Ian Tenney. What happens to bert embeddings during fine-tuning?, 2020. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ari Morcos, Maithra Raghu, and Samy Bengio. Insights on representational similarity in neural networks with canonical correlation. In Advances in Neural Information Processing Systems, pp. 5727–5736, 2018. ", + "bbox": [ + 173, + 103, + 823, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Behnam Neyshabur, Hanie Sedghi, and Chiyuan Zhang. What is being transferred in transfer learning?, 2020. ", + "bbox": [ + 173, + 154, + 823, + 183 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Cuong V Nguyen, Alessandro Achille, Michael Lam, Tal Hassner, Vijay Mahadevan, and Stefano Soatto. Toward understanding catastrophic forgetting in continual learning. arXiv preprint arXiv:1908.01091, 2019. ", + "bbox": [ + 174, + 190, + 823, + 233 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Stephan Rabanser, Stephan Gunnemann, and Zachary Lipton. Failing loudly: an empirical study of ¨ methods for detecting dataset shift. In Advances in Neural Information Processing Systems, pp. 1394–1406, 2019. ", + "bbox": [ + 173, + 241, + 825, + 284 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Maithra Raghu and Eric Schmidt. A survey of deep learning for scientific discovery. arXiv preprint arXiv:2003.11755, 2020. ", + "bbox": [ + 171, + 291, + 823, + 320 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Maithra Raghu, Justin Gilmer, Jason Yosinski, and Jascha Sohl-Dickstein. Svcca: Singular vector canonical correlation analysis for deep learning dynamics and interpretability. In Advances in Neural Information Processing Systems, pp. 6076–6085, 2017. ", + "bbox": [ + 174, + 328, + 823, + 372 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Roger Ratcliff. Connectionist models of recognition memory: constraints imposed by learning and forgetting functions. Psychological review, 97 2:285–308, 1990. ", + "bbox": [ + 171, + 380, + 823, + 409 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Benjamin Recht, Rebecca Roelofs, Ludwig Schmidt, and Vaishaal Shankar. Do imagenet classifiers generalize to imagenet? arXiv preprint arXiv:1902.10811, 2019. ", + "bbox": [ + 171, + 416, + 823, + 445 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hippolyt Ritter, Aleksandar Botev, and David Barber. Online structured laplace approximations for overcoming catastrophic forgetting. In Advances in Neural Information Processing Systems, pp. 3738–3748, 2018. ", + "bbox": [ + 174, + 453, + 825, + 496 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Anthony Robins. Catastrophic forgetting, rehearsal and pseudorehearsal. Connection Science, 7(2): 123–146, 1995. ", + "bbox": [ + 171, + 503, + 825, + 532 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "David Rolnick, Arun Ahuja, Jonathan Schwarz, Timothy Lillicrap, and Gregory Wayne. Experience replay for continual learning. In Advances in Neural Information Processing Systems, pp. 348–358, 2019. ", + "bbox": [ + 174, + 540, + 825, + 583 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andrew M. Saxe, James L. McClelland, and Surya Ganguli. A mathematical theory of semantic development in deep neural networks. Proceedings of the National Academy of Sciences, 116 (23):11537–11546, 2019. ISSN 0027-8424. doi: 10.1073/pnas.1820226116. URL https: //www.pnas.org/content/116/23/11537. ", + "bbox": [ + 173, + 590, + 826, + 648 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint arXiv:1511.05952, 2015. ", + "bbox": [ + 173, + 655, + 823, + 685 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Joan Serra, Didac Suris, Marius Miron, and Alexandros Karatzoglou. Overcoming catastrophic \\` forgetting with hard attention to the task. arXiv preprint arXiv:1801.01423, 2018. ", + "bbox": [ + 169, + 693, + 823, + 722 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition, 2014. ", + "bbox": [ + 169, + 729, + 825, + 758 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jasper Snoek, Yaniv Ovadia, Emily Fertig, Balaji Lakshminarayanan, Sebastian Nowozin, D Sculley, Joshua Dillon, Jie Ren, and Zachary Nado. Can you trust your model’s uncertainty? evaluating predictive uncertainty under dataset shift. In Advances in Neural Information Processing Systems, pp. 13969–13980, 2019. ", + "bbox": [ + 173, + 766, + 826, + 823 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jonathan M Stokes, Kevin Yang, Kyle Swanson, Wengong Jin, Andres Cubillos-Ruiz, Nina M Donghia, Craig R MacNair, Shawn French, Lindsey A Carfrae, Zohar Bloom-Ackerman, et al. A deep learning approach to antibiotic discovery. Cell, 180(4):688–702, 2020. ", + "bbox": [ + 176, + 830, + 823, + 873 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mariya Toneva, Alessandro Sordoni, Remi Tachet des Combes, Adam Trischler, Yoshua Bengio, and Geoffrey J. Gordon. An empirical study of example forgetting during deep neural network learning. ArXiv, abs/1812.05159, 2019. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass. Similarity analysis of contextual word representation models, 2020. \nShijie Wu, Alexis Conneau, Haoran Li, Luke Zettlemoyer, and Veselin Stoyanov. Emerging crosslingual structure in pretrained language models. arXiv preprint arXiv:1911.01464, 2019a. \nYuxin Wu, Alexander Kirillov, Francisco Massa, Wan-Yen Lo, and Ross Girshick. Detectron2. https://github.com/facebookresearch/detectron2, 2019b. \nFriedemann Zenke, Ben Poole, and Surya Ganguli. Continual learning through synaptic intelligence. In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 3987– 3995. JMLR. org, 2017. \nHongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. arXiv preprint arXiv:1710.09412, 2017. ", + "bbox": [ + 169, + 101, + 828, + 299 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A METHODS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 295, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.1 MODELS ", + "text_level": 1, + "bbox": [ + 176, + 135, + 281, + 150 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here we detail the model architectures used in this study. We use standard versions of the popular VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015), and DenseNet (Huang et al., 2016) architectures. These architectures have varying structural properties (e.g., presence or absence of skip connections), meaning observed behaviors common to all of them are likely to be robust and generalizable. ", + "bbox": [ + 174, + 161, + 825, + 231 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "VGG: The VGG model we use consists of five stages. Each stage comprises a convolutional layer, a ReLU nonlinearity, another convolutional layer, another ReLU nonlinearity, and finally a MaxPool layer. Each convolution uses a 3-by-3 kernel with unit stride and padding. The MaxPool operation uses a 2-by-2 kernel with stride 2. The number of channels by stage is 16, 32, 64, 128, 128. We do not use batch normalization in the VGG. ", + "bbox": [ + 174, + 238, + 825, + 308 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We test two different version of the VGG: one with just the stages described above, and another with two fully connected layers, of width 1024, after the convolutional layers. ", + "bbox": [ + 173, + 315, + 821, + 343 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "ResNet: Our ResNet consists of a initial 3-by-3 convolutional layer with 32 channels, followed by a 2d batch norm operation. This initial pair is followed by four stages, each consisting of two residual blocks per stage. Each block consists of two conv-BN-ReLU sequences, with a shortcut layer directly routing the input to add to the final ReLU preactivations. All convolutions are 3-by-3, with unit padding. In all but the first block, the first convolutional layer downsamples, with a stride of 2; the second convolutional layer maintains stride of 1. The number of channels doubles each block, starting from a base level of 32 channels in the first block. ", + "bbox": [ + 174, + 349, + 825, + 446 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "DenseNet: Like ResNet, our DenseNet consists of an initial 3-by-3 convolution, followed by four dense blocks. In between each pair of dense blocks is a transition block. Following the final dense block is a batch-normalization, ReLU, and average pooling operation to generate the final features. Our DenseNet is characterized by a growth rate of 12 and compression rate of 0.5. The first stage of the DenseNet features 6 blocks, with the number of blocks doubling in each subsequent stage. ", + "bbox": [ + 174, + 454, + 825, + 523 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.2 TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 544, + 289, + 558 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "All networks are trained using cross-entropy loss with SGD with momentum $\\beta = 0 . 9 ,$ ), using a batch size 128. We do not use learning-rate schedules here, leaving that investigation to future work. To better correspond with practical situations, however, we choose a learning rate and total number of epochs such that interpolation (of the training set) occurs. For the split CIFAR-10 task, this typically corresponds to training for 30 epochs per task with a learning rate of 0.01 (VGG), 0.03 (ResNet), and 0.03 (DenseNet). We use weight decay with strength 1e-4, and do not apply any data augmentation. For the split CIFAR-100 task, we usually train for 60 or 90 epochs per task, with other the other hyperparameters identical to the CIFAR-10 case. ", + "bbox": [ + 174, + 570, + 825, + 681 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For multi-head networks (used in split CIFAR-10), each head is initialized with weights drawn from a normal distribution with variance $1 / n _ { f }$ , where $n _ { f }$ is the number of features; biases are initialized to zero. We do not copy the parameters from the old head to the new when switching tasks. ", + "bbox": [ + 178, + 689, + 821, + 731 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For the split CIFAR-10 setup, the plots shown in the main text refer to experiments in which the initial task was classifying between the five categories airplane, automobile, bird, cat, and deer; and the second task comprising dog, frog, horse, ship, and truck. To verify that our results were not unique to the particular split of CIFAR-10 we chose, we used three other splits: airplane, bird, deer, frog, ship (task 1) and automobile, cat, dog, horse, truck (task 2); automobile, cat, dog, horse, truck (task 1) and airplane, bird, deer, frog, ship (task 2); and dog, frog, horse, ship, truck (task 1) and airplane, automobile, bird, cat, deer (task 2). ", + "bbox": [ + 174, + 738, + 825, + 835 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.3 CIFAR-100 DISTRIBUTION SHIFT TASK ", + "text_level": 1, + "bbox": [ + 174, + 854, + 496, + 869 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here we provide the concrete example of the CIFAR-100 distribution-shift task shown in Figure 1. This is meant to capture it the scenario where catastrophic forgetting arises through input distribution shift — the input data to the neural network undergoes a distribution shift, causing the neural network to perform poorly on earlier data distributions (Arivazhagan et al., 2019; Snoek et al., 2019; Rabanser et al., 2019). As mentioned in the main text, in this task, the model must identify, for CIFAR-100 images, which of the 20 superclasses the image belongs to. The difference in tasks comes from the difference in subclasses which make up the superclass. As an example, we take the five superclasses aquatic mammals, fruits and vegetables, household electrical devices, trees, and vehicles- $I ^ { \\hat { 1 } }$ , with the corresponding task 1 subclasses (1) dolphin, (2) apple, (3) lamp, (4) maple tree, and (5) bicycle and task 2 subclasses (1) whale, (2) orange, (3) television, (4) willow, and (5) motorcycle. A key feature of this setting is that task-specific components (including multiple heads) are precluded since the model does not know the task identity either at inference or time. While we do not explore it here, this setup also allows for continuously varying the data distribution, another situation likely to occur in practice. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 256 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.4 REPRESENTATIONAL SIMILARITY AND CENTERED KERNEL ALIGNMENT ", + "text_level": 1, + "bbox": [ + 176, + 280, + 720, + 295 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "To understand properties of neural network hidden representations, we turn to representational similarity algorithms. A key challenge in analyzing neural network hidden representations is the lack of alignment — no natural correspondence exists between hidden neurons across different neural networks. Representational similarity algorithms propose different ways to overcome this — one of the first such algorithms, SVCCA (Raghu et al., 2017; Morcos et al., 2018), uses a Canonical Correlation Analysis (CCA) step to align neurons (enable invariance) through linear transformations. ", + "bbox": [ + 174, + 308, + 825, + 392 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We use centered kernel alignment (CKA), proposed by Kornblith et al. (2019), to measure the similarity between two representations of the same dataset which is invariant to orthogonal transformation and isotropic scaling (but not arbitrary linear transformations). Given a dataset of $m$ examples, we compare two representations $X$ and $Y$ of that dataset (say, from two different neural networks or from the same neural network with different parameters), with $n _ { x }$ and $n _ { y }$ features respectively; that is, $X \\in \\mathbb { R } ^ { m \\times n _ { x } }$ and $Y \\in \\mathbb { R } ^ { m \\times n _ { y } }$ . Then the linear-kernel CKA similarity between the two representations is given by ", + "bbox": [ + 173, + 398, + 825, + 497 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/64f3ffea5fbcf33063fe5ee2b4b7af43bffb11f768520c54eb86ddd34960eda8.jpg", + "text": "$$\n\\mathrm { C K A } ( X , Y ) = { \\frac { | | X ^ { T } Y | | _ { F } ^ { 2 } } { | | X ^ { T } X | | _ { F } ^ { 2 } | | Y ^ { T } Y | | _ { F } ^ { 2 } } }\n$$", + "text_format": "latex", + "bbox": [ + 375, + 508, + 622, + 545 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.5 SUBSPACE SIMILARITY ", + "text_level": 1, + "bbox": [ + 176, + 566, + 380, + 580 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For the subspace similarity computations we pick a fixed threshold $k$ for all layers so that the first $k$ principal components capture $\\mathrm { \\bar { 8 0 \\% } }$ of variance in the final layer. This gives $k = 3$ for Resnet on CIFAR-10, $k = 4$ for Resnet on CIFAR-100, $k = 4$ for VGG on CIFAR-10 and $k = 7$ for VGG on CIFAR-100 and $k = 4$ for DenseNet on CIFAR-10 and $k = 5$ for DenseNet on CIFAR-100. ", + "bbox": [ + 173, + 594, + 825, + 650 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/cb405a4306c40a91294d386db635da43d561bc8adf93279d58ee48b5de102b43.jpg", + "image_caption": [ + "Figure 11: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure in higher layers. " + ], + "image_footnote": [], + "bbox": [ + 130, + 670, + 892, + 830 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.6 MITIGATION METHODS ", + "text_level": 1, + "bbox": [ + 176, + 103, + 383, + 118 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "A.6.1 ELASTIC WEIGHT CONSOLIDATION", + "text_level": 1, + "bbox": [ + 174, + 128, + 478, + 145 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Developed by Kirkpatrick et al. in 2017, elastic weight consolidation (EWC) adds a term to the loss function of the new task to get the regularized loss function $\\mathcal { L } ( \\vec { \\theta } )$ : ", + "bbox": [ + 173, + 152, + 823, + 185 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/7738d8883272e0945f00bf3a03556f8e5d11b18a8f681f0f28faec91860b6a4a.jpg", + "text": "$$\n\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } F _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 357, + 189, + 640, + 228 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Here, $\\vec { \\theta }$ are the model parameters; $\\mathcal { L } _ { B } ( \\vec { \\theta } )$ is the unregularized loss function of the new task; $\\lambda$ is a parameter which controls the strength of the regularization; $F _ { i }$ is the diagonal of the Fisher information matrix with respect to the parameters; and $\\vec { \\theta } _ { A } ^ { * }$ are the model parameters after having been trained on task A. We compute the Fisher information via using the squared gradients of the log-likelihood, averaged over a subset of the trainset. We use the empirical Fisher as an approximation. ", + "bbox": [ + 174, + 234, + 825, + 309 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Following standard practice, in our experiments we estimate the Fisher information using a subset of the full training data; for all of our models on CIFAR-10, 200 samples proved sufficient to be reasonably confident of a converged estimate. We do not include a delay between the start of secondtask training and the application of the EWC penalty. Naturally, we do not apply the EWC penalty to the parameters of the head in the multi-head setting. ", + "bbox": [ + 174, + 315, + 825, + 386 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "A.6.2 SYNAPTIC INTELLIGENCE ", + "text_level": 1, + "bbox": [ + 176, + 400, + 413, + 414 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Developed by Zenke et al. (2017), synaptic intelligence, like EWC, is a structural regularization method which adds an elastic penalty to the second task’s loss function: ", + "bbox": [ + 176, + 424, + 823, + 453 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/2dfff9c926eeb6d9fa33ca0d0d8bcf0e7abfc1985e3fec48909c31dcd8b984d5.jpg", + "text": "$$\n\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } C _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 357, + 457, + 640, + 496 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The difference from EWC is in how the elastic penalties are calculated. In synaptic intelligence, for each parameter, a contribution to the loss is tracked via the product of the gradient of the loss and the stepwise change in the parameter value. The coefficient is then constructed such that changing the parameter by an amount equal to its change during task-1 training will incur a loss penalty equal to the change in loss from the initial value. Our implementation does not differ from the standard implementation. ", + "bbox": [ + 173, + 507, + 825, + 592 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B SUPPORTING EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 611, + 439, + 627 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Here we present experiments omitted from the main text for space, which help flesh out some of the conclusions. This section is roughly organized with layerwise experiments first, followed by semantic experiments. ", + "bbox": [ + 174, + 642, + 825, + 685 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B.1 LAYER RESET EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 702, + 416, + 715 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "As described in the main text, we perform an additional experiment to check that deeper representations get corrupted more than shallower representations. This experiment, corresponding to Figure 12, shows that when layers are reset to their pre-forgetting value, performance improves more dramatically when deeper layers are reset first. ", + "bbox": [ + 174, + 727, + 825, + 784 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B.2 TASK-SPECIFIC STAGES ", + "text_level": 1, + "bbox": [ + 174, + 800, + 380, + 814 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Our observations that forgetting is driven primarily by the higher layers suggests that in a setting with known task identities (i.e. in the split CIFAR-10 setting described in the main text but not the CIFAR-100 distribution-shift setting), making the deeper stages of the network task-specific would likely mitigate a large portion of forgetting on the old tasks while still allowing for full performance on the new tasks. In particular, since the changes in deeper represntations are much greater than their shallower counterparts, only a few task-specific stages should be necessary to get significant performance increases on the old task. For each of the three network architectures we considered (VGG, ResNet, and DenseNet), we investigated the performance of these task-specific networks on the split CIFAR task. We intend these results to be further evidence of the role of deeper layers in forgetting, not a proposed mitigation scheme. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/7293a1d894a7f86a197ce3820d943a538ecfac8bc07c8388599461e278723e74.jpg", + "image_caption": [ + "Figure 12: Layer reset experiments. After training on Task 2 we reset contiguous blocks of layers to their values before training and record the resulting accuracy on Task 1 (bottom row). We see a significant increase in accuracy when resetting the highest $N$ layers (blue line) compared to resetting the $N$ lowest layers (gray line). Together, these results demonstrate that higher layers are disproportionately responsible for forgetting. " + ], + "image_footnote": [], + "bbox": [ + 179, + 103, + 808, + 237 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 328, + 825, + 371 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/01d8bc010e7bc4cba69e6bb815584d87d90580f0eaebed9a2484fb7036781be0.jpg", + "image_caption": [ + "Figure 13: Forgetting in networks with task-specific stages on CIFAR-10. Using the same settings as Figure 1 of the main text, we run networks with task-specific layers on split CIFAR-10. We make deeper layers task-specific before shallower layers. Performance increases with number of task-specific layers, denoted by the line color (see legend). In all architectures, two task-specific stages is sufficient to recover significant performance. " + ], + "image_footnote": [], + "bbox": [ + 189, + 388, + 810, + 513 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Results, shown in figure 13, show that for all architectures, performance dramatically rises with the number of task-specific stages. For all architectures, having the deepest two stages be task-specific recovers a significant fraction of the forgotten task performance. ", + "bbox": [ + 174, + 611, + 825, + 652 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.3 LAYER RESET AND RETRAIN EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 674, + 516, + 688 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "As an additional probe of the degree to which catastrophic forgetting impacts the representations of various network layers, we perform a reset-and-retrain experiment on the split CIFAR-10 task, using the same training setup as in Figure 3 of the main text. The reset-and-retrain experiment is designed to probe the degree to which network representations get corrupted and can no longer be used by a network of the same architecture to productively classify images. To investigate this, after having trained the network on Task 2, we freeze parameters of stages 1 through $N$ to their post-task-2 values, reset the parameters of stages $N + 1$ onwards to their post-task-1 values, and then retrain those parameters on the Task 1 loss function. This is a natural, operational measure of the degree to which layer 1 through $N$ representations have been corrupted. ", + "bbox": [ + 174, + 700, + 825, + 825 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The results of this experiment, shown in Figure 14, tell a similar story to that of Figure ?? of the main text. In particular, we see even retraining the network with all but the last couple of layers frozen recovers nearly the pre-forgetting performance of the network. ", + "bbox": [ + 176, + 833, + 825, + 875 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Some of the performances in Figure 14 even outperform the pre-forgetting network performance, suggesting that network representations of intermediate layers may actually be improved by training on Task 2. Further suggestive results are shown in Figure 15, in which we retrain the full network again on Task 1 after the training on Task 2. For ResNet and, to some degree, VGG, training on the second task clearly improves performance on the first. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/e56e761d9357dbd46d926b1676ec05908246c98a27d7e5af13aab5d544b04e4a.jpg", + "image_caption": [ + "Figure 14: Layer reset and retrain experiments. Consistent with the observations in the freeze-training, layer reset, and CKA experiments, resetting and retraining only a few stages from the top is enough to recover the performance before forgetting. " + ], + "image_footnote": [], + "bbox": [ + 179, + 151, + 823, + 281 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/7759e854b7587e327c6df0e10615bce5aefeb4f71e514d7eedcbbb714d9f4590.jpg", + "image_caption": [ + "Figure 15: Training on a different task can improve performance on the original task. Networks are trained on two five-class splits of CIFAR-10. The gray curve shows the test accuracy on task 0 during training on solely that task for 270 epochs; the teal curve shows the task-0 test accuracy when training on task 0 for 90 epochs, then on task 1 for 90 epochs, and task 0 again for 90 epochs. While we see a sharp performance drop for the duration of training on task 1, the performance is quickly recovered once we begin training on task 0, and in fact surpasses the performance of the model only exposed to task-0 data. This effect is consistent across different splits of the original dataset. Of the architectures we studied, this effect is most pronounced for ResNet, but also exists to some degree for VGG and DenseNet models. " + ], + "image_footnote": [], + "bbox": [ + 179, + 368, + 823, + 497 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "B.4 REPRESENTATION CHANGES IN THE CIFAR-100 DISTRIBUTION SHIFT EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 171, + 650, + 805, + 665 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Here we show the change in representations due to training on distribution-shifted CIFAR-100 for the VGG (Figure 16) and DenseNet (Figure 17) networks, to accompany the ResNet results in the main text. ", + "bbox": [ + 174, + 678, + 825, + 720 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/bef6f0ad266969173dec939f3382fcdf9650004af675922a954db3cdce264098.jpg", + "image_caption": [ + "Figure 16: Change in Densenet representations under CIFAR-100 distribution shift. " + ], + "image_footnote": [], + "bbox": [ + 179, + 739, + 823, + 878 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/b7f4682f0d383ae44ae63e7bb1b04ff9eb952c7c7164efeee34f4d84732f6cac.jpg", + "image_caption": [ + "Figure 17: Change in VGG representations under CIFAR-100 distribution shift. " + ], + "image_footnote": [], + "bbox": [ + 179, + 104, + 821, + 243 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "B.5 ADDITIONAL EXPERIMENTS FOR SUBSPACE SIMILARITY OF MITIGATION METHODS ", + "bbox": [ + 173, + 299, + 800, + 314 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We include additional experiments on computing subspace similarities for different mitigation methods across different architectures. The results support the orthogonal storage of Task 1, Task 2 representations by replay, while EWC and SI enforce greater feature reuse in the higher layers. ", + "bbox": [ + 173, + 325, + 825, + 367 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/a220ef5a5b19d8f1139d06f902adf47173caf647598a19fac8a8ab98235b275e.jpg", + "image_caption": [ + "Figure 18: Subspace similarity analysis reveals differences between different mitigation methods, with replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote feature reuse in the higher layers. Additional results, compare to Figure 6 in the main text. " + ], + "image_footnote": [], + "bbox": [ + 161, + 385, + 823, + 607 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "B.6 LINEAR REGRESSION ON FORGOTTEN NETWORK ACTIVATIONS ", + "text_level": 1, + "bbox": [ + 176, + 683, + 648, + 695 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "To further probe the manner in which catastrophic forgetting affects the internal representation of networks, we perform the following experiment (in the split CIFAR-10 setting). We train a (multihead) model on the first task for some time, resulting in model $M _ { 1 }$ , and then train on the second task for some time, resulting in model $M _ { 2 }$ . Due to forgetting, the model $M _ { 2 }$ of course performs significantly worse than does $M _ { 1 }$ on the first task. But, to probe how much information has been lost internally, we train a linear model to classify between the first-task categories using only the internal activations of $M _ { 2 }$ on the first-task images. We measure both the amount of performance which we can recover using this linear regression, and the weight placed by the linear model on various stages of the network. ", + "bbox": [ + 174, + 708, + 825, + 833 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Model performances are given in Table 2. For all three architectures, the performance of the model before forgetting is naturally the highest, with a performance drop of up to forty percent due to forgetting. Remarkably, however, training a linear model on the internal post-forgetting activations recovers a substantial fraction of the performance loss: for ResNet and VGG, the linear model on post-forgetting activations is only a percent less accurate than the model before forgetting. As a control, we also train a linear model on the activations of networks at initialization (denoted the random lift in the table). Because the number of activations is much higher than the number of pixels in a CIFAR-10 image, this control is necessary to ensure that the boost in performance we see is not simply due to performing a high-dimensional lift which renders the data linearly separable. As the table shows, however, this random lift performance is quite poor. ", + "bbox": [ + 174, + 840, + 825, + 922 + ], + "page_idx": 18 + }, + { + "type": "table", + "img_path": "images/0a1d478159be5dbd8574320620780d68cbad18ce3b69b75d88525c34721145d0.jpg", + "table_caption": [ + "Table 2: Performance of linear model trained on internal activations. " + ], + "table_footnote": [], + "table_body": "
DenseNetResNetVGG
Pre-forgetting accuracy0.8690.77140.7970
Post-forgetting accuracy0.47540.59240.5877
Linear regression on activations0.8020.75920.7896
Linear regression on random lift0.4470.41980.543
", + "bbox": [ + 269, + 101, + 725, + 181 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 239, + 825, + 296 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Figure 19 shows the weights placed by the linear model on the various internal activations of the network. We use the activations both before and after forgetting. Before forgetting, a linear model trained on the activations places most importance on the final layers, as expected; however, after forgetting, the model learns to use information stored in earlier-layer representations of the network. The reduced weighting of the final layers is consistent with the experiments we describe in the main text showing that deeper representations suffer the most from forgetting. ", + "bbox": [ + 173, + 303, + 825, + 387 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/ccc557677afea0bb941be42ae608ad511067870b50d6a63b79a1bb7484dc60b5.jpg", + "image_caption": [ + "Figure 19: Weights of linear models trained on internal activations. " + ], + "image_footnote": [], + "bbox": [ + 178, + 404, + 821, + 685 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "B.7 CKA MEASUREMENTS ON MITIGATION METHODS ", + "text_level": 1, + "bbox": [ + 174, + 742, + 555, + 756 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "This section gives CKA similarity measurements to accompany those in the main text presented in figure 5. The main text figure showed results for ResNet; here we show corresponding results for all architectures on both split CIFAR10 and split CIFAR100 tasks, in figures 20 and 21, repsectively. These plots show that the results discussed in the main text apply broadly across architectures and datasets. ", + "bbox": [ + 173, + 767, + 826, + 837 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "B.8 OTHER CATEGORY IN RESNET AND DENSENET ", + "text_level": 1, + "bbox": [ + 174, + 856, + 545, + 869 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In Figure 9 of the main text, we showed for the VGG architecture that adding an ‘other’ category (by sampling from all images in the dataset which are not in either of the main tasks) can mitigate forgetting by reducing the similarity between the model’s representations of the task 1 data versus ", + "bbox": [ + 174, + 882, + 825, + 924 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/e18234e09a6d3786a709ac998864e82b0db00b76a82fe85a20bb62a7d2fb3d21.jpg", + "image_caption": [ + "Figure 20: CKA Analysis of mitigation methods on the split CIFAR10 task " + ], + "image_footnote": [], + "bbox": [ + 163, + 281, + 805, + 709 + ], + "page_idx": 20 + }, + { + "type": "image", + "img_path": "images/caeb1d9636133db42d4e9678e00a9fea90d0bf39678be050d5092c7b521b1d94.jpg", + "image_caption": [ + "Figure 21: CKA Analysis of mitigation methods on the split CIFAR100 task " + ], + "image_footnote": [], + "bbox": [ + 163, + 284, + 805, + 709 + ], + "page_idx": 21 + }, + { + "type": "image", + "img_path": "images/1286bf3918cde9573bebe81d7c0c35537c5f1f5d9a005f6ec519eaa214fa23a7.jpg", + "image_caption": [ + "Figure 22: Adding an ‘other’ category during initial training helps performance through orthogonalization: Densenet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading to improved continual learning. " + ], + "image_footnote": [], + "bbox": [ + 163, + 107, + 843, + 252 + ], + "page_idx": 22 + }, + { + "type": "image", + "img_path": "images/c7bd96d0456a4214ccd862ce782a9ad0e92ab5b7c2ee612857f364b68e67f3d0.jpg", + "image_caption": [ + "Figure 23: Adding an ‘other’ category during initial training helps performance through orthogonalization: Resnet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading to improved continual learning. " + ], + "image_footnote": [], + "bbox": [ + 163, + 356, + 843, + 502 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "the task 2 data. As our analytic model suggested, increasing this dissimilarity should help forgetting. \nFigures 22 and 23 show corresponding plots for the Resnet and Densenet architectures. ", + "bbox": [ + 174, + 613, + 825, + 642 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "B.9 ADDITIONAL SEMANTIC EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 661, + 486, + 675 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "In this section, comprising figures 24, 25, and 26, we present additional realizations of the semantic experiments presented in Section 6, Figure 8. In particular we present results for sequential binary classification tasks, four-class classification followed by two-class classification, and the CIFAR-100 distribution shift task. We find consistent results across different choices of objects and animals and across VGG, ResNet, and DenseNet architectures. In particular, we find that when models are encouraged to distinguish objects and animals, dissimilar categories lead to less forgetting. In contrast when models are trained with only a single semantic category, there is no pressure to distinguish objects from animals and similar categories lead to less forgetting. We observe one exception to the intuitive semantic groupings of categories. For VGG in Setup 2 (Figure 25) the truck category behaves similarly to animal classes in that the performance suffers more when the second task is animal classification then when it is object classification. ", + "bbox": [ + 174, + 688, + 825, + 840 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "C FROZEN-FEATURE MODEL: FURTHER DETAILS ", + "text_level": 1, + "bbox": [ + 173, + 864, + 591, + 878 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Here we consider extensions and applications of the analytic model introduced in Section 6.2. Both the single and multi-head models relate the change in predictions during training on a second task to ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 22 + }, + { + "type": "image", + "img_path": "images/9b5309de8e13131c7c40487d0e4b169bea844843307575030317507dedb50c0e.jpg", + "image_caption": [ + "Task 1 - deer, dog, Task 2 - cat, horse or plane, car ", + "Figure 24: Sequential binary classification tasks show consistent semantic structure. We train on sequential binary subsets of CIFAR-10, distinguishing between two animals or two objects. We find that less forgetting occurs when the initial task is more similar to the second task. " + ], + "image_footnote": [], + "bbox": [ + 212, + 143, + 763, + 665 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "the overlap between features, $\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( x ) g _ { \\mu } ( x ^ { \\prime } ) } \\end{array}$ , evaluated on the initial and second task data.2 ", + "bbox": [ + 174, + 779, + 823, + 810 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Multi-head model In the main text we focused for simplicity on an analytic model of single head forgetting. Here we construct a solvable model for the multi-head setup. We consider a model ", + "bbox": [ + 174, + 833, + 821, + 862 + ], + "page_idx": 23 + }, + { + "type": "image", + "img_path": "images/e0aae519536daa021aaa0f0f7cc8abb09571f71f4be45205b3d066c312214874.jpg", + "image_caption": [ + "Task 1 - deer, dog, ship, truck, Task 2 - cat, horse ", + "Figure 25: Sequential four class and binary tasks show decreased forgetting for dissimilar tasks. We train on sequential subsets of CIFAR-10, initially distinguishing between four classes (two animals and two objects) and then distinguishing between either two animals or two objects. We find that less forgetting occurs for categories that are dissimilar to those used in the second task. " + ], + "image_footnote": [], + "bbox": [ + 212, + 143, + 761, + 667 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "consisting of non-linear features $g ( w ; x )$ , a linear layer with weights, $\\theta$ , and a read out head $\\it { h ^ { ( i ) } }$ ", + "bbox": [ + 171, + 784, + 803, + 799 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/f60a3bba076bfdddd01c2acb94dc82366ab2a5daff26a28a2f1a02eaa5331c18.jpg", + "text": "$$\nf ^ { ( i ) } ( x ) = \\sum _ { a , \\mu } h _ { a } ^ { ( i ) } \\theta _ { a \\mu } g _ { \\mu } ( w ; x ) .\n$$", + "text_format": "latex", + "bbox": [ + 392, + 804, + 606, + 838 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Here $\\mu$ runs over the feature dimensions, while $a$ runs over the output dimensions of our additional linear layer. For the initial task we use the head $h ^ { ( 1 ) }$ , while for the second task, we swap the head and use $h ^ { ( 2 ) }$ . ", + "bbox": [ + 173, + 842, + 825, + 887 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Again we consider a model trained without restrictions on Task 1 using head $h ^ { ( 1 ) }$ . For Task 2, we first swap the head and then perform head only training on head $h ^ { ( 2 ) }$ . After training the head, we ", + "bbox": [ + 173, + 893, + 823, + 924 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/8553198ed3ce878f4463feb1b92ca6ac388c507393962c63efe02df85ed9a425.jpg", + "image_caption": [ + "Figure 26: Semantic structure of forgetting on the CIFAR-100 distribution-shfit task for VGG and DenseNet models " + ], + "image_footnote": [], + "bbox": [ + 194, + 103, + 805, + 258 + ], + "page_idx": 25 + }, + { + "type": "table", + "img_path": "images/b3baf907d90078054e843944810b8fa928376820b863fcf18688c2c62f336f5b.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
VGGResNetDenseNet
No headfirst training5 epochs headfirst training0.147 ± 0.0510.550±0.0290.183 ± 0.0010.673 ± 0.0100.162 ± 0.0080.700 ± 0.012
", + "bbox": [ + 227, + 314, + 764, + 361 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Table 3: Headfirst CKA similarity. CKA similarity between the readout layer after headfirst training and after final training on the second task. ", + "bbox": [ + 171, + 381, + 823, + 410 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "freeze the head, $h ^ { ( 2 ) }$ , and the features $g ( w ; x ) = g ( \\hat { w } ; x )$ , where $\\hat { w }$ is the value of the feature weights after training on the initial task. This model is again inspired by our observation that forgetting is driven by changes in the latter network layers. The multi head model is additionally inspired by our observing that after head first training, the CKA similarity between the second task head before and after second task training is relatively high (see Table 3). ", + "bbox": [ + 173, + 440, + 825, + 512 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "After training the second task head, we continue training the weights $\\theta$ . The model output evolves as ", + "bbox": [ + 173, + 518, + 823, + 534 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/b52d8cd137912b64f9ecf3880dd9f2d238e5a880fcedcca4dfffe3d60785038b.jpg", + "text": "$$\n\\Delta f _ { t } ^ { ( i ) } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ^ { ( j ) } ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } h ^ { T ( j ) } h ^ { ( i ) } .\n$$", + "text_format": "latex", + "bbox": [ + 294, + 537, + 704, + 585 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Again we find that if the representation overlap matrix $\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}$ is small between the features evaluated on the initial task and second task data then the predictions do not change significantly. If this overlap is zero, then the predictions are constant. In the multi-head setup we are considering here, we see that the change in predictions is further proportional to the similarity between the model heads, $h ^ { T ( j ) } h ^ { ( i ) }$ . ", + "bbox": [ + 173, + 590, + 825, + 664 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Finally, we note that we have considered a final linear layer before the readout head for simplicity. One can instead include a ReLU non-linearity without changing the essential point, that the change in model output is governed by the overlap matrix, $\\Theta$ . ", + "bbox": [ + 173, + 670, + 825, + 713 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Rotating representations in the analytic model. We can use our analytic model (Section 6.2) to investigate how forgetting depends on representation similarity. We again consider sequential binary tasks (car vs plane) followed by (cat vs horse). We then tune the overlap of our initial task and final task features by explicitly rotating the frozen features for the second task to produce new features $g ^ { \\prime } ( \\theta ; \\hat { w } ; x )$ . ", + "bbox": [ + 173, + 727, + 825, + 797 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/7f40507bbc084480cf35a8735d106497f333c573a088bfb5e52c81ffb580b5fa.jpg", + "text": "$$\n\\begin{array} { r } { g ^ { \\prime } ( \\theta ; \\hat { w } ; x ) = R ( \\theta ) g ( \\hat { w } ; x ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 405, + 803, + 591, + 820 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Here, if we have $P$ features, $R ( \\theta ) \\in \\mathbb { R } ^ { P \\times P }$ is a one-parameter family of rotation matrices designed such that $R ( 0 ) = { \\bf 1 }$ and $g ^ { T } ( \\hat { w } ; x ) g ^ { \\prime } ( \\pi / 2 ; \\hat { w } ; x ^ { \\prime } )$ for $x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }$ )t and x0 ∈ X (2)train is small. Explicitly, we take ", + "bbox": [ + 173, + 827, + 825, + 875 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/7fba10e508e8f15bcb45cb632a24368a6cd6bfdd6a174508e91812284ace6119.jpg", + "text": "$$\nR ( \\theta ) = V ^ { T } \\prod _ { i = 1 } ^ { \\lfloor P / 2 \\rfloor } r _ { i , P - i } ( \\theta ) V ,\n$$", + "text_format": "latex", + "bbox": [ + 397, + 877, + 601, + 922 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/2b3c2a4076751d50ef22d3907dc455f84464a1aed3850e086b4306ebb52d726e.jpg", + "image_caption": [ + "Figure 27: Rotating representations shows diminished forgetting for dissimilar tasks. Here we consider the performance of our frozen feature model on sequential binary CIFAR-10 tasks (Task 1: car vs plane, Task 2: cat vs horse). We use a model built from a two hidden-layer fully connected network with ReLU activations. We increase decrease representational similarity by explicitly rotating the second task features and find as predicted that this leads to diminished forgetting. " + ], + "image_footnote": [], + "bbox": [ + 191, + 106, + 812, + 286 + ], + "page_idx": 26 + }, + { + "type": "image", + "img_path": "images/b1d85f3a5fa54339a3b6bb967c722fbbb4516faa7a86ac3690f9f44842797f8f.jpg", + "image_caption": [ + "Figure 28: Stabilizing final layer weights is not necessary to stop forgetting. Here we look at the change in final layer weights during second task training for a model with severe forgetting (gray) and forgetting mitigated by rotating the second task representations (teal). We see that final layer weights become less and less similar in both cases. The setup is identical to Figure 27 " + ], + "image_footnote": [], + "bbox": [ + 199, + 409, + 812, + 590 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "where $r _ { i j } ( \\theta )$ is the two dimensional rotation matrix between axes $i$ and $j$ , and $V$ is the orthogonal matrix appearing in the singular value decomposition of the feature by data matrix on the initial task, $g ( X _ { \\mathrm { t e s t } } ^ { ( 1 ) } ) = U D V$ . We find that explicitly enforcing task dissimilarity via a large rotation minimizes the effect of forgetting (Figure 27). ", + "bbox": [ + 173, + 703, + 825, + 763 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Stopping forgetting without stabilizing weights We saw in Section 4 that both EWC and replay buffers stabilize deeper network representations. As mentioned above, this need not be the case a priori. As an illustrative example, we construct a setup where sequential training leads to no forgetting despite a significant change to final layer weights. We consider the single head model of Section 6.2 where the Task 1 and Task 2 representations are completely orthogonal, $\\Theta ( x , x ^ { \\prime } ) = 0$ for $x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }$ and $x ^ { \\prime } \\in X _ { \\mathrm { t r a i n } } ^ { ( 2 ) }$ . In this case the Task 1 predictions remain constant throughout all of Task 2 training, despite significant changes to the final layer weights and predictions on the second task. In Figure 28 we present an example of this setup. The representations are again made orthogonal by explicitly rotating the second task features by the rotation matrix, $R ( \\pi / 2 )$ defined in Equation equation 11. ", + "bbox": [ + 173, + 791, + 825, + 924 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "D ADDITIONAL EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 103, + 442, + 117 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "This section presents two additional experiments which are slightly unrelated to the main thrust of the paper. We examine how the degree to which a network forgets is influenced by its width, and also how training the head independently of the rest of the network, in a multi-head setting, can mitigate forgetting. ", + "bbox": [ + 174, + 143, + 825, + 200 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "D.1 FORGETTING VERSUS NETWORK WIDTH ", + "text_level": 1, + "bbox": [ + 173, + 234, + 496, + 247 + ], + "page_idx": 27 + }, + { + "type": "image", + "img_path": "images/ec04da581d739ba7b6e3e6a23542ce72fd4e6a3953ad5f4e73573d2c1199f81e.jpg", + "image_caption": [ + "Figure 29: Forgetting as a function of network width. (a) VGG, (b) ResNet, and (c) DenseNet networks of varying widths were trained on two subsets of CIFAR-10 classes. We trained each of these (multi-head) networks for 30 epochs on each task with constant $\\eta$ , enough to achieve perfect training accuracy. Further training details can be found in the text. From the plots, which show the percent drop in accuracy (on task 1) due to training on task 2, the effect of width on the performance drop seems to be minimal, even sweeping across roughly a factor of ten in the number of model parameters. " + ], + "image_footnote": [], + "bbox": [ + 189, + 286, + 808, + 453 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Inspired by recent work of Gilboa & Gur-Ari (2019) showing that wider networks can learn better features than their narrower counterparts, we sought to determine whether wider networks also exhibit less catastrophic forgetting than narrower ones. We tested forgetting versus width for VGG, DenseNet, and ResNet networks on the split CIFAR-10 task in the multi-head setting. For VGG and ResNet, the width was varied by changing the number of channels in the initial convolutional layer and scaling the rest of the network layers concurrently while maintaining the network shape; for DenseNet, the width was varied by by changing the growth rate. ", + "bbox": [ + 174, + 598, + 825, + 696 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Surprisingly, though we found that the performances of the networks on each task improved as they grew wider, the amount of forgetting in each network, measured by the percent drop in accuracy (on task 1) due to training on task, exhibited a minimal dependence on network width. These results are shown in Figure 29. ", + "bbox": [ + 174, + 704, + 825, + 760 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "D.2 HEADFIRST TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 792, + 372, + 808 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "When training multi-head networks on sequences of tasks, we found that the networks suffered a smaller performance drop on the original task, i.e. forgot less, if only the new task head was trained for a few epochs prior to training the full network. In Figure 30, this effect is shown for all three network architectures on the split CIFAR-10 task. Training only the head for up to five epochs seemed to improve the original-task performance without sacrificing performance on the new task. This suggests that coadaptation between the freshly-initialized head and the rest of the model contributes to forgetting when there is no headfirst training. ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 27 + }, + { + "type": "image", + "img_path": "images/5507a75b14a33e01fef517018ef0ba97edcb85a091b929d800a7fc761023b095.jpg", + "image_caption": [ + "Figure 30: Effect of training readout layer separately between task switches. (a) VGG, (b) ResNet, and (c) DenseNet models were trained on two subsets of CIFAR-10 classes: task 0 (dog, frog, horse, ship, and truck), and task 1 (airplane, automobile, bird, cat, deer). When switching tasks, we first trained only the final classification layer (known as the readout layer or head) for a specified number of epochs (here 0, 1, 2, and 5) from a random Gaussian initialization. During this period, the rest of the model parameters are held fixed; after the head-only training, the entire model is trained as usual. Across all architectures, training only the head consistently improves the forgetting performance of the model (its accuracy on task 0) while having a negligible impact on the performance on the next task (task 1). " + ], + "image_footnote": [], + "bbox": [ + 187, + 101, + 810, + 583 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "E FIGURES FOR ANONREVIEWER2 ", + "text_level": 1, + "bbox": [ + 176, + 753, + 478, + 770 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "F IMAGENET RESULTS FOR TASK SEMANTICS ", + "text_level": 1, + "bbox": [ + 174, + 786, + 575, + 804 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Figures corresponding to results tables in the main text. ", + "bbox": [ + 173, + 819, + 537, + 834 + ], + "page_idx": 28 + }, + { + "type": "image", + "img_path": "images/0c1f93a5e253061e71524d4448169be4eb17a45238f9076dd080fa8de7682520.jpg", + "image_caption": [ + "Figure 31: Stage-wise weight change between initial weights and weights after Task 1 (blue) and between weights after Task 1 and Task2 (orange) for a model trained sequentially on disjoint 5 class subsets of CIFAR10. (a) Mean $\\ell _ { 2 }$ distance. (b) Cosine similarity. We see no sign of significantly more change in last layer weights, and in fact see the reverse trend in $\\ell _ { 2 }$ distance. " + ], + "image_footnote": [], + "bbox": [ + 176, + 119, + 821, + 280 + ], + "page_idx": 29 + }, + { + "type": "image", + "img_path": "images/ec90b583322ceabb7cc1c372fbe73932285491b6e11d3b83b592d3267593afe4.jpg", + "image_caption": [ + "Figure 32: Mean and std deviation for the residual, $p _ { i } - y _ { i }$ , for a model trained on ship v truck evaluated on cat, horse data (blue) and plane, car (orange). We see no clear separation between object and animal data. Each point represents a model trained with a different seed. " + ], + "image_footnote": [], + "bbox": [ + 316, + 393, + 681, + 588 + ], + "page_idx": 29 + }, + { + "type": "image", + "img_path": "images/c45b34098840087b001418b5c2e872344856165330e725c8dd983b94f41ea99e.jpg", + "image_caption": [ + "Task1:10Artifacts Task2:10 Animals or 10 Artifacts ", + "Figure 33: ImageNet Two-task 10 class sequences in which similar tasks cause less forgetting. " + ], + "image_footnote": [], + "bbox": [ + 186, + 710, + 465, + 854 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "(a) Initial classification between 10 artifacts ", + "bbox": [ + 191, + 863, + 449, + 877 + ], + "page_idx": 29 + }, + { + "type": "image", + "img_path": "images/8b45eecffc780f8e5ffdd981f1c29720590080639d5294339abfdcd35e7e827d.jpg", + "image_caption": [ + "Task 1:10 Animals Task2:10 Animals or10 Artifacts ", + "(b) Initial classification between 10 animals " + ], + "image_footnote": [], + "bbox": [ + 540, + 710, + 820, + 854 + ], + "page_idx": 29 + }, + { + "type": "image", + "img_path": "images/9a572e7033cd77924c6de4eba1e53eae57b8a03857e2e5c7c1e96aeb78ed10f9.jpg", + "image_caption": [ + "Task 1:10 Artifacts $+ ~ 1 0$ Animals Task 2: 10 Artifacts ", + "Task 1:10 Artifacts + 10 Animals Task 2:10 Animals ", + "Figure 34: ImageNet Two-task 20-class followed by 10-class sequences in which similar categories are forgotten more. " + ], + "image_footnote": [], + "bbox": [ + 183, + 415, + 820, + 584 + ], + "page_idx": 30 + } +] \ No newline at end of file diff --git a/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_middle.json b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..38979c2d06e6c7feeb6af9dafad59284b61e3ba7 --- /dev/null +++ b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_middle.json @@ -0,0 +1,57316 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 486, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 433, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 433, + 97 + ], + "score": 1.0, + "content": "ANATOMY OF CATASTROPHIC FORGETTING:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 486, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 486, + 118 + ], + "score": 1.0, + "content": "HIDDEN REPRESENTATIONS AND TASK SEMANTICS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 196, + 168 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 196, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 196, + 147 + ], + "score": 1.0, + "content": "Vinay V. Ramasesh", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 194, + 157 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 194, + 157 + ], + "score": 1.0, + "content": "Blueshift, Alphabet", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 157, + 195, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 195, + 168 + ], + "score": 1.0, + "content": "Mountain View, CA", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 245, + 135, + 327, + 168 + ], + "lines": [ + { + "bbox": [ + 244, + 135, + 298, + 147 + ], + "spans": [ + { + "bbox": [ + 244, + 135, + 298, + 147 + ], + "score": 1.0, + "content": "Ethan Dyer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 245, + 146, + 326, + 158 + ], + "spans": [ + { + "bbox": [ + 245, + 146, + 326, + 158 + ], + "score": 1.0, + "content": "Blueshift, Alphabet", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 245, + 157, + 328, + 168 + ], + "spans": [ + { + "bbox": [ + 245, + 157, + 328, + 168 + ], + "score": 1.0, + "content": "Mountain View, CA", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 377, + 135, + 459, + 168 + ], + "lines": [ + { + "bbox": [ + 376, + 133, + 446, + 148 + ], + "spans": [ + { + "bbox": [ + 376, + 133, + 446, + 148 + ], + "score": 1.0, + "content": "Maithra Raghu", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 376, + 146, + 434, + 158 + ], + "spans": [ + { + "bbox": [ + 376, + 146, + 434, + 158 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 376, + 156, + 460, + 169 + ], + "spans": [ + { + "bbox": [ + 376, + 156, + 460, + 169 + ], + "score": 1.0, + "content": "Mountain View, CA", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 277, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 224, + 469, + 356 + ], + "lines": [ + { + "bbox": [ + 142, + 225, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 142, + 225, + 470, + 236 + ], + "score": 1.0, + "content": "Catastrophic forgetting is a recurring challenge to developing versatile deep learn-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 236, + 469, + 248 + ], + "spans": [ + { + "bbox": [ + 141, + 236, + 469, + 248 + ], + "score": 1.0, + "content": "ing models. Despite its ubiquity, there is limited understanding of its connections", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "score": 1.0, + "content": "to neural network (hidden) representations and task semantics. In this paper, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 257, + 469, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 270 + ], + "score": 1.0, + "content": "address this important knowledge gap. Through quantitative analysis of neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "score": 1.0, + "content": "representations, we find that deeper layers are disproportionately responsible for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 280, + 471, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 471, + 292 + ], + "score": 1.0, + "content": "forgetting, with sequential training resulting in an erasure of earlier task representa-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "score": 1.0, + "content": "tional subspaces. Methods to mitigate forgetting stabilize these deeper layers, but", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 301, + 470, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 470, + 314 + ], + "score": 1.0, + "content": "show diversity on precise effects, with some increasing feature reuse while others", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "score": 1.0, + "content": "store task representations orthogonally, preventing interference. These insights", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 323, + 469, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 336 + ], + "score": 1.0, + "content": "also enable the development of an analytic argument and empirical picture relating", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "score": 1.0, + "content": "forgetting to task semantic similarity, where we find that maximal forgetting occurs", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 345, + 333, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 333, + 357 + ], + "score": 1.0, + "content": "for task sequences with intermediate similarity.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 382, + 206, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 208, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 208, + 397 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 402, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "While the past few years have seen the development of increasingly versatile machine learning", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 412, + 507, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 507, + 426 + ], + "score": 1.0, + "content": "systems capable of learning complex tasks (Stokes et al., 2020; Raghu & Schmidt, 2020; Wu et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "2019b), catastrophic forgetting remains a core capability challenge. Catastrophic forgetting is the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "ubiquitous phenomena where machine learning models trained on non-stationary data distributions", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "suffer performance losses on older data instances. More specifically, if our machine learning model", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "is trained on a sequence of tasks, accuracy on earlier tasks drops significantly. The catastrophic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 482 + ], + "score": 1.0, + "content": "forgetting problem manifests in many sub-domains of machine learning including continual learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "score": 1.0, + "content": "(Kirkpatrick et al., 2017), multi-task learning (Kudugunta et al., 2019), standard supervised learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 490, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 501 + ], + "score": 1.0, + "content": "through input distribution shift (Toneva et al., 2019; Snoek et al., 2019; Rabanser et al., 2019; Recht", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 500, + 366, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 366, + 513 + ], + "score": 1.0, + "content": "et al., 2019) and data augmentation (Gontijo-Lopes et al., 2020).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 507, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 507, + 530 + ], + "score": 1.0, + "content": "Mitigating catastrophic forgetting has been an important research focus (Goodfellow et al., 2013;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "Kirkpatrick et al., 2017; Lee et al., 2017; Li et al., 2019; Serra et al., 2018; Ritter et al., 2018; Rolnick `", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "et al., 2019), but many methods are only effective in specific settings (Kemker et al., 2018), and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "progress is hindered by limited understanding of catastrophic forgetting‘s fundamental properties.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "score": 1.0, + "content": "How does catastrophic forgetting affect the hidden representations of neural networks? Are earlier", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "tasks forgotten equally across all parameters? Are there underlying principles common across", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "methods to mitigate forgetting? How is catastrophic forgetting affected by (semantic) similarities", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 594, + 473, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 473, + 608 + ], + "score": 1.0, + "content": "between sequential tasks? This paper takes steps to answering these questions, specifically:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 105, + 610, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "1. With experiments on split CIFAR-10, a novel distribution-shift CIFAR-100 variant, CelebA", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 118, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 118, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "and ImageNet we analyze neural network layer representations, finding that higher layers are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 118, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 118, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "disproportionately responsible for catastrophic forgetting, the sequential training process erasing", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 118, + 644, + 210, + 656 + ], + "spans": [ + { + "bbox": [ + 118, + 644, + 210, + 656 + ], + "score": 1.0, + "content": "earlier task subspaces.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "2. We investigate different methods for mitigating forgetting, finding that while all stabilize higher", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 118, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 118, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "layer representations, some methods encourage greater feature reuse in higher layers, while others", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 118, + 678, + 420, + 689 + ], + "spans": [ + { + "bbox": [ + 118, + 678, + 420, + 689 + ], + "score": 1.0, + "content": "store task representations as orthogonal subspaces, preventing interference.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 701 + ], + "score": 1.0, + "content": "3. We study the connection between forgetting and task semantics, finding that semantic similarity", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 118, + 698, + 407, + 712 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 407, + 712 + ], + "score": 1.0, + "content": "between subsequent tasks consistently controls the degree of forgetting.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "4. Informed by the representation results, we construct an analytic model that relates task similarity", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 118, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 118, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "to representation interference and forgetting. This provides a quantitative empirical measure of", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 48 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 486, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 433, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 433, + 97 + ], + "score": 1.0, + "content": "ANATOMY OF CATASTROPHIC FORGETTING:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 486, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 486, + 118 + ], + "score": 1.0, + "content": "HIDDEN REPRESENTATIONS AND TASK SEMANTICS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 196, + 168 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 196, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 196, + 147 + ], + "score": 1.0, + "content": "Vinay V. Ramasesh", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 194, + 157 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 194, + 157 + ], + "score": 1.0, + "content": "Blueshift, Alphabet", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 157, + 195, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 195, + 168 + ], + "score": 1.0, + "content": "Mountain View, CA", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 112, + 135, + 196, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 245, + 135, + 327, + 168 + ], + "lines": [ + { + "bbox": [ + 244, + 135, + 298, + 147 + ], + "spans": [ + { + "bbox": [ + 244, + 135, + 298, + 147 + ], + "score": 1.0, + "content": "Ethan Dyer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 245, + 146, + 326, + 158 + ], + "spans": [ + { + "bbox": [ + 245, + 146, + 326, + 158 + ], + "score": 1.0, + "content": "Blueshift, Alphabet", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 245, + 157, + 328, + 168 + ], + "spans": [ + { + "bbox": [ + 245, + 157, + 328, + 168 + ], + "score": 1.0, + "content": "Mountain View, CA", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 244, + 135, + 328, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 377, + 135, + 459, + 168 + ], + "lines": [ + { + "bbox": [ + 376, + 133, + 446, + 148 + ], + "spans": [ + { + "bbox": [ + 376, + 133, + 446, + 148 + ], + "score": 1.0, + "content": "Maithra Raghu", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 376, + 146, + 434, + 158 + ], + "spans": [ + { + "bbox": [ + 376, + 146, + 434, + 158 + ], + "score": 1.0, + "content": "Google Brain", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 376, + 156, + 460, + 169 + ], + "spans": [ + { + "bbox": [ + 376, + 156, + 460, + 169 + ], + "score": 1.0, + "content": "Mountain View, CA", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7, + "bbox_fs": [ + 376, + 133, + 460, + 169 + ] + }, + { + "type": "title", + "bbox": [ + 277, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 224, + 469, + 356 + ], + "lines": [ + { + "bbox": [ + 142, + 225, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 142, + 225, + 470, + 236 + ], + "score": 1.0, + "content": "Catastrophic forgetting is a recurring challenge to developing versatile deep learn-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 236, + 469, + 248 + ], + "spans": [ + { + "bbox": [ + 141, + 236, + 469, + 248 + ], + "score": 1.0, + "content": "ing models. Despite its ubiquity, there is limited understanding of its connections", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 470, + 259 + ], + "score": 1.0, + "content": "to neural network (hidden) representations and task semantics. In this paper, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 257, + 469, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 270 + ], + "score": 1.0, + "content": "address this important knowledge gap. Through quantitative analysis of neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 281 + ], + "score": 1.0, + "content": "representations, we find that deeper layers are disproportionately responsible for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 280, + 471, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 471, + 292 + ], + "score": 1.0, + "content": "forgetting, with sequential training resulting in an erasure of earlier task representa-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "score": 1.0, + "content": "tional subspaces. Methods to mitigate forgetting stabilize these deeper layers, but", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 301, + 470, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 470, + 314 + ], + "score": 1.0, + "content": "show diversity on precise effects, with some increasing feature reuse while others", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "score": 1.0, + "content": "store task representations orthogonally, preventing interference. These insights", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 323, + 469, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 336 + ], + "score": 1.0, + "content": "also enable the development of an analytic argument and empirical picture relating", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "score": 1.0, + "content": "forgetting to task semantic similarity, where we find that maximal forgetting occurs", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 345, + 333, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 333, + 357 + ], + "score": 1.0, + "content": "for task sequences with intermediate similarity.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17.5, + "bbox_fs": [ + 141, + 225, + 471, + 357 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 382, + 206, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 208, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 208, + 397 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 402, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "While the past few years have seen the development of increasingly versatile machine learning", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 412, + 507, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 507, + 426 + ], + "score": 1.0, + "content": "systems capable of learning complex tasks (Stokes et al., 2020; Raghu & Schmidt, 2020; Wu et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "2019b), catastrophic forgetting remains a core capability challenge. Catastrophic forgetting is the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "ubiquitous phenomena where machine learning models trained on non-stationary data distributions", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "suffer performance losses on older data instances. More specifically, if our machine learning model", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "is trained on a sequence of tasks, accuracy on earlier tasks drops significantly. The catastrophic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 482 + ], + "score": 1.0, + "content": "forgetting problem manifests in many sub-domains of machine learning including continual learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "score": 1.0, + "content": "(Kirkpatrick et al., 2017), multi-task learning (Kudugunta et al., 2019), standard supervised learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 490, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 501 + ], + "score": 1.0, + "content": "through input distribution shift (Toneva et al., 2019; Snoek et al., 2019; Rabanser et al., 2019; Recht", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 500, + 366, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 366, + 513 + ], + "score": 1.0, + "content": "et al., 2019) and data augmentation (Gontijo-Lopes et al., 2020).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 400, + 507, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 507, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 507, + 530 + ], + "score": 1.0, + "content": "Mitigating catastrophic forgetting has been an important research focus (Goodfellow et al., 2013;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "Kirkpatrick et al., 2017; Lee et al., 2017; Li et al., 2019; Serra et al., 2018; Ritter et al., 2018; Rolnick `", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "et al., 2019), but many methods are only effective in specific settings (Kemker et al., 2018), and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "progress is hindered by limited understanding of catastrophic forgetting‘s fundamental properties.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "score": 1.0, + "content": "How does catastrophic forgetting affect the hidden representations of neural networks? Are earlier", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "tasks forgotten equally across all parameters? Are there underlying principles common across", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "methods to mitigate forgetting? How is catastrophic forgetting affected by (semantic) similarities", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 594, + 473, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 473, + 608 + ], + "score": 1.0, + "content": "between sequential tasks? This paper takes steps to answering these questions, specifically:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 517, + 507, + 608 + ] + }, + { + "type": "list", + "bbox": [ + 105, + 610, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "1. With experiments on split CIFAR-10, a novel distribution-shift CIFAR-100 variant, CelebA", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 118, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "and ImageNet we analyze neural network layer representations, finding that higher layers are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 118, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 118, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "disproportionately responsible for catastrophic forgetting, the sequential training process erasing", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 118, + 644, + 210, + 656 + ], + "spans": [ + { + "bbox": [ + 118, + 644, + 210, + 656 + ], + "score": 1.0, + "content": "earlier task subspaces.", + "type": "text" + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "2. We investigate different methods for mitigating forgetting, finding that while all stabilize higher", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 118, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "layer representations, some methods encourage greater feature reuse in higher layers, while others", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 118, + 678, + 420, + 689 + ], + "spans": [ + { + "bbox": [ + 118, + 678, + 420, + 689 + ], + "score": 1.0, + "content": "store task representations as orthogonal subspaces, preventing interference.", + "type": "text" + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 686, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 701 + ], + "score": 1.0, + "content": "3. We study the connection between forgetting and task semantics, finding that semantic similarity", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 698, + 407, + 712 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 407, + 712 + ], + "score": 1.0, + "content": "between subsequent tasks consistently controls the degree of forgetting.", + "type": "text" + } + ], + "index": 51, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "4. Informed by the representation results, we construct an analytic model that relates task similarity", + "type": "text" + } + ], + "index": 52, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 118, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "to representation interference and forgetting. This provides a quantitative empirical measure of", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 611, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 80, + 500, + 159 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 80, + 500, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 80, + 500, + 159 + ], + "spans": [ + { + "bbox": [ + 109, + 80, + 500, + 159 + ], + "score": 0.946, + "type": "image", + "image_path": "d611e63cde367ca536e0f6643ab383afee09cc289ec2c502088c61e3cc73273b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 80, + 500, + 106.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 106.33333333333333, + 500, + 132.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 132.66666666666666, + 500, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 160, + 505, + 200 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "Figure 1: Examples of catastrophic forgetting across different architectures and datasets. We plot accu-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 169, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 181 + ], + "score": 1.0, + "content": "racy of Task 1 (purple) and Task 2 (green), on both the split CIFAR10 task, and the CIFAR100 distribution-shift", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 177, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 194 + ], + "score": 1.0, + "content": "task across multiple architectures. Catastrophic forgetting is seen as the significant drop of Task 1 accuracy", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 190, + 211, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 211, + 202 + ], + "score": 1.0, + "content": "when Task 2 training begins.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 115, + 230, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 118, + 229, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 118, + 229, + 506, + 244 + ], + "score": 1.0, + "content": "task similarity, and together these show that forgetting is most severe for tasks with intermediate", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 240, + 162, + 254 + ], + "spans": [ + { + "bbox": [ + 117, + 240, + 162, + 254 + ], + "score": 1.0, + "content": "similarity.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 108, + 278, + 211, + 291 + ], + "lines": [ + { + "bbox": [ + 104, + 277, + 213, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 213, + 294 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 316 + ], + "score": 1.0, + "content": "Mitigation strategies Developing mitigation strategies for catastophic forgetting is an active area", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "of research (Kemker et al., 2018). Popular approaches based on structural regularization include", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "Elastic Weight Consolidation (Kirkpatrick et al., 2017) and Synaptic Intelligence (Zenke et al., 2017).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "score": 1.0, + "content": "An alternative, functional regularization approach is based on storing and replaying earlier data in a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "replay buffer (Schaul et al., 2015; Robins, 1995; Rolnick et al., 2019). We study how these mitigation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "methods affect the internal network representations to better understand their role in preventing", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 366, + 201, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 201, + 382 + ], + "score": 1.0, + "content": "catastrophic forgetting.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "Understanding catastrophic forgetting Our work is similar in spirit to existing empirical studies", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 396, + 507, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 507, + 408 + ], + "score": 1.0, + "content": "aimed at better understanding the catastrophic forgetting phenomenon (Goodfellow et al., 2013;", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "score": 1.0, + "content": "Toneva et al., 2019). We focus specifically on understanding how layerwise representations change,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "and on the relation between forgetting and task semantics, which have not previously been explored.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "This semantic aspect is related to recent work by Nguyen et al. (2019) examining the influence of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 440, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 506, + 452 + ], + "score": 1.0, + "content": "task sequences on forgetting. It also builds on work showing that learning in both biological and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "artificial neural networks is affected by semantic properties of the training data (Saxe et al., 2019;", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 461, + 236, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 236, + 474 + ], + "score": 1.0, + "content": "Mandler & McDonough, 1993).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "Fine-tuning and transfer learning While not studied in the context of catastrophic forgetting,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "layerwise learning dynamics have been investigated in settings other than continual learning. For", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "example, Raghu et al. (2017) showed that layerwise network representations roughly converge bottom-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 506, + 525 + ], + "score": 1.0, + "content": "up; (from input to output). Neyshabur et al. (2020) observed similar phenomena in a transfer-learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 523, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 506, + 535 + ], + "score": 1.0, + "content": "setting with images, as have others recently in transformers for NLP (Wu et al., 2020; Merchant et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 532, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 547 + ], + "score": 1.0, + "content": "2020). Furthermore, the observation that early layers in networks learn general features like edge", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "detectors, while latter layers learn more task specific features is a well-known result in computer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 553, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 506, + 570 + ], + "score": 1.0, + "content": "vision (Erhan et al., 2009), and here we quantitatively study its ramifications for sequential training", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 564, + 218, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 218, + 581 + ], + "score": 1.0, + "content": "and catastrophic forgetting.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 603, + 160, + 616 + ], + "lines": [ + { + "bbox": [ + 104, + 601, + 162, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 162, + 618 + ], + "score": 1.0, + "content": "3 SETUP", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "Tasks: We conduct this study over many different tasks and datasets: (i) Split CIFAR-10, where the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "ten class dataset is split into two tasks of 5 classes each (ii) input distribution shift CIFAR-100, where", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "each task is to distinguish between the CIFAR-100 superclasses, but input data for each task is a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "different subset of the constituent classes of the superclass (see Appendix A.3) (iii) CelebA attribute", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "prediction: the two tasks have input data either men or women, and we predict either smile or mouth", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 682, + 365, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 365, + 694 + ], + "score": 1.0, + "content": "open (iv) ImageNet superclass prediction, similar to CIFAR100.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Models: We perform experiments with three common neural network architectures used in image", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "classification — VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015) and DenseNet (Huang", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 461, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 461, + 734 + ], + "score": 1.0, + "content": "et al., 2016). Examples of catastrophic forgetting in these models are shown in Figure 1.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + } + ], + "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, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 80, + 500, + 159 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 80, + 500, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 80, + 500, + 159 + ], + "spans": [ + { + "bbox": [ + 109, + 80, + 500, + 159 + ], + "score": 0.946, + "type": "image", + "image_path": "d611e63cde367ca536e0f6643ab383afee09cc289ec2c502088c61e3cc73273b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 80, + 500, + 106.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 106.33333333333333, + 500, + 132.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 132.66666666666666, + 500, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 160, + 505, + 200 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "Figure 1: Examples of catastrophic forgetting across different architectures and datasets. We plot accu-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 169, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 181 + ], + "score": 1.0, + "content": "racy of Task 1 (purple) and Task 2 (green), on both the split CIFAR10 task, and the CIFAR100 distribution-shift", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 177, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 194 + ], + "score": 1.0, + "content": "task across multiple architectures. Catastrophic forgetting is seen as the significant drop of Task 1 accuracy", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 190, + 211, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 211, + 202 + ], + "score": 1.0, + "content": "when Task 2 training begins.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 115, + 230, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 118, + 229, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 118, + 229, + 506, + 244 + ], + "score": 1.0, + "content": "task similarity, and together these show that forgetting is most severe for tasks with intermediate", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 240, + 162, + 254 + ], + "spans": [ + { + "bbox": [ + 117, + 240, + 162, + 254 + ], + "score": 1.0, + "content": "similarity.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 117, + 229, + 506, + 254 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 278, + 211, + 291 + ], + "lines": [ + { + "bbox": [ + 104, + 277, + 213, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 213, + 294 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 316 + ], + "score": 1.0, + "content": "Mitigation strategies Developing mitigation strategies for catastophic forgetting is an active area", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "of research (Kemker et al., 2018). Popular approaches based on structural regularization include", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "Elastic Weight Consolidation (Kirkpatrick et al., 2017) and Synaptic Intelligence (Zenke et al., 2017).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "score": 1.0, + "content": "An alternative, functional regularization approach is based on storing and replaying earlier data in a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "replay buffer (Schaul et al., 2015; Robins, 1995; Rolnick et al., 2019). We study how these mitigation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "methods affect the internal network representations to better understand their role in preventing", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 366, + 201, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 201, + 382 + ], + "score": 1.0, + "content": "catastrophic forgetting.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 301, + 506, + 382 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "Understanding catastrophic forgetting Our work is similar in spirit to existing empirical studies", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 396, + 507, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 507, + 408 + ], + "score": 1.0, + "content": "aimed at better understanding the catastrophic forgetting phenomenon (Goodfellow et al., 2013;", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "score": 1.0, + "content": "Toneva et al., 2019). We focus specifically on understanding how layerwise representations change,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "and on the relation between forgetting and task semantics, which have not previously been explored.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "This semantic aspect is related to recent work by Nguyen et al. (2019) examining the influence of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 440, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 506, + 452 + ], + "score": 1.0, + "content": "task sequences on forgetting. It also builds on work showing that learning in both biological and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "artificial neural networks is affected by semantic properties of the training data (Saxe et al., 2019;", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 461, + 236, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 236, + 474 + ], + "score": 1.0, + "content": "Mandler & McDonough, 1993).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 385, + 507, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "Fine-tuning and transfer learning While not studied in the context of catastrophic forgetting,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "layerwise learning dynamics have been investigated in settings other than continual learning. For", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "example, Raghu et al. (2017) showed that layerwise network representations roughly converge bottom-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 506, + 525 + ], + "score": 1.0, + "content": "up; (from input to output). Neyshabur et al. (2020) observed similar phenomena in a transfer-learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 523, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 506, + 535 + ], + "score": 1.0, + "content": "setting with images, as have others recently in transformers for NLP (Wu et al., 2020; Merchant et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 532, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 547 + ], + "score": 1.0, + "content": "2020). Furthermore, the observation that early layers in networks learn general features like edge", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "detectors, while latter layers learn more task specific features is a well-known result in computer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 553, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 506, + 570 + ], + "score": 1.0, + "content": "vision (Erhan et al., 2009), and here we quantitatively study its ramifications for sequential training", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 564, + 218, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 218, + 581 + ], + "score": 1.0, + "content": "and catastrophic forgetting.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 478, + 506, + 581 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 603, + 160, + 616 + ], + "lines": [ + { + "bbox": [ + 104, + 601, + 162, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 162, + 618 + ], + "score": 1.0, + "content": "3 SETUP", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "Tasks: We conduct this study over many different tasks and datasets: (i) Split CIFAR-10, where the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "ten class dataset is split into two tasks of 5 classes each (ii) input distribution shift CIFAR-100, where", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "each task is to distinguish between the CIFAR-100 superclasses, but input data for each task is a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "different subset of the constituent classes of the superclass (see Appendix A.3) (iii) CelebA attribute", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "prediction: the two tasks have input data either men or women, and we predict either smile or mouth", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 682, + 365, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 365, + 694 + ], + "score": 1.0, + "content": "open (iv) ImageNet superclass prediction, similar to CIFAR100.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 627, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Models: We perform experiments with three common neural network architectures used in image", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "classification — VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015) and DenseNet (Huang", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 461, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 461, + 734 + ], + "score": 1.0, + "content": "et al., 2016). Examples of catastrophic forgetting in these models are shown in Figure 1.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 697, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 81, + 500, + 160 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 500, + 160 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 500, + 160 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 500, + 160 + ], + "score": 0.948, + "type": "image", + "image_path": "751d12c2239a6b9cb5e1ce1e312ccd471a884b89fcbcd8afa36f1411e562dd10.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 500, + 107.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 107.33333333333333, + 500, + 133.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 133.66666666666666, + 500, + 160.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 161, + 505, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "Figure 2: Freezing lower layer representations after Task 1 training has little impact on Task 2 accuracy.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "We freeze the parameters of a contiguous block of layers (starting from the lowest layer) after Task 1 training, and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "score": 1.0, + "content": "only train the remainder on Task 2, finding that freezing the lowest layers has little impact on Task 2 accuracy.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 105, + 210, + 484, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 486, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 486, + 224 + ], + "score": 1.0, + "content": "4 CATASTROPHIC FORGETTING AND HIDDEN LAYER REPRESENTATIONS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 240 + ], + "score": 1.0, + "content": "We begin by investigating how catastrophic forgetting manifests in the hidden representations of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "the neural network. Do all parameters (and layers) forget equally? Or are specific components", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "of the network particularly responsible for the drop in accuracy in sequential training? Through a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "combination of layer freezing experiments, and representational analysis, we find that higher layers", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "(layers closest to output) are disproportionately responsible for catastrophic forgetting, with lower", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "score": 1.0, + "content": "layers (layers closest to input) remaining representationally stable through sequential training. Further", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "analysis of the representational subspaces of Task 1, Task 1 (post Task 2 training) and Task 2, provide", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 305, + 297, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 297, + 317 + ], + "score": 1.0, + "content": "insights on both feature reuse and interference.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 329, + 291, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 292, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 292, + 342 + ], + "score": 1.0, + "content": "4.1 FREEZING LAYER REPRESENTATIONS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "To study the effect of individual layers on forgetting, we measure the effect of freezing layer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "score": 1.0, + "content": "representations on Task 2 accuracy (Figure 2). Specifically, we freeze a contiguous block of layers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "score": 1.0, + "content": "(starting from the lowest layer) after training on Task 1, and only train the remaining layers on Task 2.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "Across different architectures and tasks, we observe that lower layers can be reliably frozen with very", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 386, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 506, + 399 + ], + "score": 1.0, + "content": "little impact on Task 2 accuracy. This suggests the possibility of lower layer features being reused", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 396, + 475, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 475, + 411 + ], + "score": 1.0, + "content": "between both tasks, with higher layers being the main contributor to catastrophic forgetting.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 422, + 423, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 424, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 424, + 435 + ], + "score": 1.0, + "content": "4.2 REPRESENTATIONAL SIMILARITY THROUGH SEQUENTIAL TRAINING", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "The results of Figure 2 illustrate that lower layer representations on Task 1 can be reused for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "score": 1.0, + "content": "good performance on Task 2. To determine if this is what actually occurs during the training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 458, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 469 + ], + "score": 1.0, + "content": "process, we turn to Centered Kernel Alignment (CKA) (Kornblith et al., 2019), a neural network", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "representation similarity measure. CKA and other related algorithms (Raghu et al., 2017; Morcos", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "et al., 2018) provide a scalar score (between 0 and 1) determining how similar a pair of (hidden) layer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "score": 1.0, + "content": "representations are, and have been used to study many properties of deep neural networks (Gotmare", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 501, + 325, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 325, + 514 + ], + "score": 1.0, + "content": "et al., 2018; Kudugunta et al., 2019; Wu et al., 2019a).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 186, + 532 + ], + "score": 1.0, + "content": "Specifically, letting", + "type": "text" + }, + { + "bbox": [ + 186, + 518, + 231, + 529 + ], + "score": 0.91, + "content": "\\ b X \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 516, + 249, + 532 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 250, + 518, + 294, + 529 + ], + "score": 0.92, + "content": "Y \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 516, + 506, + 532 + ], + "score": 1.0, + "content": "be (centered) layer activation matrices of (the same)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 529, + 284, + 542 + ], + "spans": [ + { + "bbox": [ + 107, + 532, + 114, + 539 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 529, + 175, + 542 + ], + "score": 1.0, + "content": "datapoints and", + "type": "text" + }, + { + "bbox": [ + 175, + 531, + 182, + 541 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 529, + 284, + 542 + ], + "score": 1.0, + "content": "neurons, CKA computes", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 544, + 428, + 575 + ], + "lines": [ + { + "bbox": [ + 183, + 544, + 428, + 575 + ], + "spans": [ + { + "bbox": [ + 183, + 544, + 428, + 575 + ], + "score": 0.94, + "content": "\\mathrm { C K A } ( \\mathrm { X } , \\mathrm { Y } ) = \\frac { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { Y Y ^ { T } } ) } { \\sqrt { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { X X ^ { T } } ) } \\sqrt { \\mathrm { H S I C } ( \\mathrm { Y Y ^ { T } } , \\mathrm { Y Y ^ { T } } ) } }", + "type": "interline_equation", + "image_path": "5ec6882b50b860c46e6f4b01a17d96b09391c130b52aaf17c44ede2c3d479381.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 183, + 544, + 428, + 554.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 183, + 554.3333333333334, + 428, + 564.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 183, + 564.6666666666667, + 428, + 575.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 504, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "for HSIC Hilbert-Schmidt Independence Criterion (Gretton et al., 2005). We use linear-kernel CKA.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 506, + 607 + ], + "score": 1.0, + "content": "In Figure 3, we plot the results of computing CKA on Task 1 layer representations before and after Task", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "2 training. Across architectures and tasks, we observe that the lower layers have high representation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "similarity, suggesting that lower layer Task 1 features are reused in Task 2. The higher layers", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "however show significant decreases in representation similarity, suggesting they disproportionately", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 506, + 651 + ], + "score": 1.0, + "content": "contribute to catastrophic forgetting. These conclusions are further supported by additional layer", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 504, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 504, + 662 + ], + "score": 1.0, + "content": "reset experiments in Appendix Figure 12, which shows that rewinding higher layer parameters from", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 661, + 501, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 501, + 674 + ], + "score": 1.0, + "content": "post-Task 2 training to their pre-Task 2 training values significantly improves Task 1 performance.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + }, + { + "type": "title", + "bbox": [ + 106, + 685, + 315, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 316, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 316, + 698 + ], + "score": 1.0, + "content": "4.3 FEATURE REUSE AND SUBSPACE ERASURE", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Further insights on how the representations of lower and higher layers evolve during sequential", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 365, + 723 + ], + "score": 1.0, + "content": "training is given through a subspace similarity analysis. Letting", + "type": "text" + }, + { + "bbox": [ + 366, + 709, + 411, + 720 + ], + "score": 0.91, + "content": "\\ b X \\in \\mathbb R ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "be the (centered) layer", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 189, + 733 + ], + "score": 1.0, + "content": "activation matrix of", + "type": "text" + }, + { + "bbox": [ + 189, + 722, + 196, + 730 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 720, + 251, + 733 + ], + "score": 1.0, + "content": "examples by", + "type": "text" + }, + { + "bbox": [ + 252, + 723, + 258, + 732 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 720, + 460, + 733 + ], + "score": 1.0, + "content": "neurons, we compute the PCA decomposition of", + "type": "text" + }, + { + "bbox": [ + 460, + 721, + 470, + 730 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 720, + 506, + 733 + ], + "score": 1.0, + "content": ", i.e. the", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 2, + "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, + 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": [ + 108, + 81, + 500, + 160 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 500, + 160 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 500, + 160 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 500, + 160 + ], + "score": 0.948, + "type": "image", + "image_path": "751d12c2239a6b9cb5e1ce1e312ccd471a884b89fcbcd8afa36f1411e562dd10.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 500, + 107.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 107.33333333333333, + 500, + 133.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 133.66666666666666, + 500, + 160.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 161, + 505, + 191 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "Figure 2: Freezing lower layer representations after Task 1 training has little impact on Task 2 accuracy.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "We freeze the parameters of a contiguous block of layers (starting from the lowest layer) after Task 1 training, and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "score": 1.0, + "content": "only train the remainder on Task 2, finding that freezing the lowest layers has little impact on Task 2 accuracy.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 105, + 210, + 484, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 486, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 486, + 224 + ], + "score": 1.0, + "content": "4 CATASTROPHIC FORGETTING AND HIDDEN LAYER REPRESENTATIONS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 227, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 240 + ], + "score": 1.0, + "content": "We begin by investigating how catastrophic forgetting manifests in the hidden representations of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "the neural network. Do all parameters (and layers) forget equally? Or are specific components", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "of the network particularly responsible for the drop in accuracy in sequential training? Through a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "combination of layer freezing experiments, and representational analysis, we find that higher layers", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "(layers closest to output) are disproportionately responsible for catastrophic forgetting, with lower", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "score": 1.0, + "content": "layers (layers closest to input) remaining representationally stable through sequential training. Further", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "analysis of the representational subspaces of Task 1, Task 1 (post Task 2 training) and Task 2, provide", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 305, + 297, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 297, + 317 + ], + "score": 1.0, + "content": "insights on both feature reuse and interference.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 228, + 506, + 317 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 329, + 291, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 292, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 292, + 342 + ], + "score": 1.0, + "content": "4.1 FREEZING LAYER REPRESENTATIONS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "To study the effect of individual layers on forgetting, we measure the effect of freezing layer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "score": 1.0, + "content": "representations on Task 2 accuracy (Figure 2). Specifically, we freeze a contiguous block of layers", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 377 + ], + "score": 1.0, + "content": "(starting from the lowest layer) after training on Task 1, and only train the remaining layers on Task 2.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "Across different architectures and tasks, we observe that lower layers can be reliably frozen with very", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 386, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 506, + 399 + ], + "score": 1.0, + "content": "little impact on Task 2 accuracy. This suggests the possibility of lower layer features being reused", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 396, + 475, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 475, + 411 + ], + "score": 1.0, + "content": "between both tasks, with higher layers being the main contributor to catastrophic forgetting.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 342, + 506, + 411 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 422, + 423, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 424, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 424, + 435 + ], + "score": 1.0, + "content": "4.2 REPRESENTATIONAL SIMILARITY THROUGH SEQUENTIAL TRAINING", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "The results of Figure 2 illustrate that lower layer representations on Task 1 can be reused for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "score": 1.0, + "content": "good performance on Task 2. To determine if this is what actually occurs during the training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 458, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 469 + ], + "score": 1.0, + "content": "process, we turn to Centered Kernel Alignment (CKA) (Kornblith et al., 2019), a neural network", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "representation similarity measure. CKA and other related algorithms (Raghu et al., 2017; Morcos", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "et al., 2018) provide a scalar score (between 0 and 1) determining how similar a pair of (hidden) layer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "score": 1.0, + "content": "representations are, and have been used to study many properties of deep neural networks (Gotmare", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 501, + 325, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 325, + 514 + ], + "score": 1.0, + "content": "et al., 2018; Kudugunta et al., 2019; Wu et al., 2019a).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 435, + 506, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 186, + 532 + ], + "score": 1.0, + "content": "Specifically, letting", + "type": "text" + }, + { + "bbox": [ + 186, + 518, + 231, + 529 + ], + "score": 0.91, + "content": "\\ b X \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 516, + 249, + 532 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 250, + 518, + 294, + 529 + ], + "score": 0.92, + "content": "Y \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 516, + 506, + 532 + ], + "score": 1.0, + "content": "be (centered) layer activation matrices of (the same)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 529, + 284, + 542 + ], + "spans": [ + { + "bbox": [ + 107, + 532, + 114, + 539 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 529, + 175, + 542 + ], + "score": 1.0, + "content": "datapoints and", + "type": "text" + }, + { + "bbox": [ + 175, + 531, + 182, + 541 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 529, + 284, + 542 + ], + "score": 1.0, + "content": "neurons, CKA computes", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 516, + 506, + 542 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 544, + 428, + 575 + ], + "lines": [ + { + "bbox": [ + 183, + 544, + 428, + 575 + ], + "spans": [ + { + "bbox": [ + 183, + 544, + 428, + 575 + ], + "score": 0.94, + "content": "\\mathrm { C K A } ( \\mathrm { X } , \\mathrm { Y } ) = \\frac { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { Y Y ^ { T } } ) } { \\sqrt { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { X X ^ { T } } ) } \\sqrt { \\mathrm { H S I C } ( \\mathrm { Y Y ^ { T } } , \\mathrm { Y Y ^ { T } } ) } }", + "type": "interline_equation", + "image_path": "5ec6882b50b860c46e6f4b01a17d96b09391c130b52aaf17c44ede2c3d479381.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 183, + 544, + 428, + 554.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 183, + 554.3333333333334, + 428, + 564.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 183, + 564.6666666666667, + 428, + 575.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 504, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "for HSIC Hilbert-Schmidt Independence Criterion (Gretton et al., 2005). We use linear-kernel CKA.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 577, + 506, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 506, + 607 + ], + "score": 1.0, + "content": "In Figure 3, we plot the results of computing CKA on Task 1 layer representations before and after Task", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "2 training. Across architectures and tasks, we observe that the lower layers have high representation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "similarity, suggesting that lower layer Task 1 features are reused in Task 2. The higher layers", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "however show significant decreases in representation similarity, suggesting they disproportionately", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 506, + 651 + ], + "score": 1.0, + "content": "contribute to catastrophic forgetting. These conclusions are further supported by additional layer", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 504, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 504, + 662 + ], + "score": 1.0, + "content": "reset experiments in Appendix Figure 12, which shows that rewinding higher layer parameters from", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 661, + 501, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 501, + 674 + ], + "score": 1.0, + "content": "post-Task 2 training to their pre-Task 2 training values significantly improves Task 1 performance.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 595, + 506, + 674 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 685, + 315, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 316, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 316, + 698 + ], + "score": 1.0, + "content": "4.3 FEATURE REUSE AND SUBSPACE ERASURE", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Further insights on how the representations of lower and higher layers evolve during sequential", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 365, + 723 + ], + "score": 1.0, + "content": "training is given through a subspace similarity analysis. Letting", + "type": "text" + }, + { + "bbox": [ + 366, + 709, + 411, + 720 + ], + "score": 0.91, + "content": "\\ b X \\in \\mathbb R ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "be the (centered) layer", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 189, + 733 + ], + "score": 1.0, + "content": "activation matrix of", + "type": "text" + }, + { + "bbox": [ + 189, + 722, + 196, + 730 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 720, + 251, + 733 + ], + "score": 1.0, + "content": "examples by", + "type": "text" + }, + { + "bbox": [ + 252, + 723, + 258, + 732 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 720, + 460, + 733 + ], + "score": 1.0, + "content": "neurons, we compute the PCA decomposition of", + "type": "text" + }, + { + "bbox": [ + 460, + 721, + 470, + 730 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 720, + 506, + 733 + ], + "score": 1.0, + "content": ", i.e. the", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 80, + 501, + 250 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 80, + 501, + 250 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 80, + 501, + 250 + ], + "spans": [ + { + "bbox": [ + 109, + 80, + 501, + 250 + ], + "score": 0.975, + "type": "image", + "image_path": "54c39e8d19801972f046935444a440a282fa88813511537bedfe3ab1203c847e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 80, + 501, + 136.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 136.66666666666666, + 501, + 193.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 193.33333333333331, + 501, + 249.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 255, + 505, + 295 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "Figure 3: CKA analysis of layer representations before/after Task 2 training shows lower layer feature", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 264, + 504, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 276 + ], + "score": 1.0, + "content": "reuse and higher layer representations changing significantly on CIFAR10, CIFAR100, ImageNet and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "score": 1.0, + "content": "CelebA. We compute CKA of the Task 1 layer representations before and after Task 2 training. We observe that", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 283, + 365, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 365, + 299 + ], + "score": 1.0, + "content": "later layers change more than early layers through second task training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 118, + 308, + 470, + 408 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 308, + 470, + 408 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 308, + 470, + 408 + ], + "spans": [ + { + "bbox": [ + 118, + 308, + 470, + 408 + ], + "score": 0.958, + "type": "image", + "image_path": "35dfe190006578fae05569f5bf53d346b76b9a6af954acad93632c9d607345d9.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 118, + 308, + 470, + 341.3333333333333 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 118, + 341.3333333333333, + 470, + 374.66666666666663 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 118, + 374.66666666666663, + 470, + 407.99999999999994 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 409, + 505, + 490 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 409, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 506, + 420 + ], + "score": 1.0, + "content": "Figure 4: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 418, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 104, + 418, + 506, + 431 + ], + "score": 1.0, + "content": "in higher layers. For Resnet on CIFAR10 (left), VGG on CIFAR10 (middle), Resnet on CIFAR100 (right), we", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "compute subspace similarity between: (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "(green line) (iii) (Task 2, Task 1 post-Task 2 training) (blue line). All comparisons show high similarity in lower", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "layers, indicative of feature reuse. Most striking is the comparison between (Task 1, Task 1 post-Task 2 training)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 459, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 470 + ], + "score": 1.0, + "content": "and (Task 2, Task 1 post-Task 2 training), which show that after Task 2 training, higher layer representations for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "score": 1.0, + "content": "Task 1 are more similar to Task 2 than to Task 1! Specifically, the Task 1 subspace in higher layers is erased", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 478, + 194, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 194, + 491 + ], + "score": 1.0, + "content": "through Task 2 training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5 + } + ], + "index": 10.75 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 504, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 159, + 510 + ], + "score": 1.0, + "content": "eigenvectors", + "type": "text" + }, + { + "bbox": [ + 159, + 498, + 202, + 509 + ], + "score": 0.91, + "content": "( v _ { 1 } , v _ { 2 } , \\ldots )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 496, + 269, + 510 + ], + "score": 1.0, + "content": "and eigenvalues", + "type": "text" + }, + { + "bbox": [ + 270, + 498, + 310, + 509 + ], + "score": 0.92, + "content": "( \\lambda _ { 1 } , \\lambda _ { 2 } . . . )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 496, + 322, + 510 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 323, + 497, + 348, + 508 + ], + "score": 0.91, + "content": "X ^ { T } X", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 496, + 383, + 510 + ], + "score": 1.0, + "content": ". Letting", + "type": "text" + }, + { + "bbox": [ + 384, + 498, + 396, + 509 + ], + "score": 0.9, + "content": "V _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "be the matrix formed from", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 136, + 522 + ], + "score": 1.0, + "content": "the top", + "type": "text" + }, + { + "bbox": [ + 136, + 509, + 143, + 518 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 508, + 226, + 522 + ], + "score": 1.0, + "content": "principal directions,", + "type": "text" + }, + { + "bbox": [ + 226, + 510, + 263, + 520 + ], + "score": 0.91, + "content": "v _ { 1 } , . . . , v _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 508, + 331, + 522 + ], + "score": 1.0, + "content": "as columns, and", + "type": "text" + }, + { + "bbox": [ + 331, + 509, + 344, + 519 + ], + "score": 0.88, + "content": "U _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "the corresponding matrix for a different", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 519, + 240, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 176, + 532 + ], + "score": 1.0, + "content": "activation matrix", + "type": "text" + }, + { + "bbox": [ + 177, + 520, + 185, + 529 + ], + "score": 0.81, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 519, + 240, + 532 + ], + "score": 1.0, + "content": ", we compute", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 536, + 385, + 560 + ], + "lines": [ + { + "bbox": [ + 226, + 536, + 385, + 560 + ], + "spans": [ + { + "bbox": [ + 226, + 536, + 385, + 560 + ], + "score": 0.93, + "content": "\\mathrm { S u b s p a c e S i m } _ { k } ( X , Y ) = \\frac { 1 } { k } | | V _ { k } ^ { T } U _ { k } | | _ { F } ^ { 2 } .", + "type": "interline_equation", + "image_path": "93210a561cda29c3ecc977132e1ec315a90f01f1a64db5375460c390077263a9.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 226, + 536, + 385, + 560 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 565, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 324, + 580 + ], + "score": 1.0, + "content": "This measures the overlap in the subspaces spanned by", + "type": "text" + }, + { + "bbox": [ + 324, + 566, + 369, + 578 + ], + "score": 0.92, + "content": "( v _ { 1 } , . . . , v _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 565, + 387, + 580 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 566, + 433, + 578 + ], + "score": 0.91, + "content": "( u _ { 1 } , . . . , u _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 565, + 493, + 580 + ], + "score": 1.0, + "content": ". Concretely, if", + "type": "text" + }, + { + "bbox": [ + 494, + 567, + 504, + 576 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 123, + 589 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 577, + 132, + 587 + ], + "score": 0.77, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 577, + 414, + 589 + ], + "score": 1.0, + "content": "correspond to layer activation matrices for two different tasks, Subspace", + "type": "text" + }, + { + "bbox": [ + 414, + 577, + 465, + 589 + ], + "score": 0.87, + "content": "s \\mathrm { i m } _ { k } ( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "measures", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 587, + 430, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 194, + 600 + ], + "score": 1.0, + "content": "how similarly the top", + "type": "text" + }, + { + "bbox": [ + 194, + 588, + 200, + 598 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 587, + 430, + 600 + ], + "score": 1.0, + "content": "representations for those tasks are stored in the network.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 324, + 618 + ], + "score": 1.0, + "content": "Figure 4 shows the result of computing SubspaceSim", + "type": "text" + }, + { + "bbox": [ + 325, + 605, + 359, + 617 + ], + "score": 0.53, + "content": "{ } _ { k } ( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 605, + 375, + 618 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 375, + 605, + 397, + 616 + ], + "score": 0.9, + "content": "X , Y", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "being the layer activation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "score": 1.0, + "content": "matrices in (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training) (blue line) (iii)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "(Task 2, Task 1 post-Task 2 training) (blue line). Supporting the CKA analysis, lower layers have high", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "subspace similarity between Task 1 and Task 2 (feature reuse), but higher layers have low similarity", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "(representations change significantly during Task 2 training.) Furthermore, (Task 1, Task 1 post-Task", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "2 training) also shows low subspace similarity in the higher layers, indicating that the representational", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 671, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 506, + 683 + ], + "score": 1.0, + "content": "change in later layers is not restricted to Task 2 data, but also alters the networks representation of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 680, + 507, + 696 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 507, + 696 + ], + "score": 1.0, + "content": "the initial task. Strikingly, (Task 2, Task 1 post-Task 2 training) shows high similarity in all layers,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 693, + 222, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 222, + 706 + ], + "score": 1.0, + "content": "despite being different tasks.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In summary, these results illustrate that during sequential training, effective feature reuse happens in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "the lower layers, but in the higher layers, after Task 2 training, Task 1 representations are mapped", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.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, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 80, + 501, + 250 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 80, + 501, + 250 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 80, + 501, + 250 + ], + "spans": [ + { + "bbox": [ + 109, + 80, + 501, + 250 + ], + "score": 0.975, + "type": "image", + "image_path": "54c39e8d19801972f046935444a440a282fa88813511537bedfe3ab1203c847e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 80, + 501, + 136.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 136.66666666666666, + 501, + 193.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 193.33333333333331, + 501, + 249.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 255, + 505, + 295 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "Figure 3: CKA analysis of layer representations before/after Task 2 training shows lower layer feature", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 264, + 504, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 276 + ], + "score": 1.0, + "content": "reuse and higher layer representations changing significantly on CIFAR10, CIFAR100, ImageNet and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "score": 1.0, + "content": "CelebA. We compute CKA of the Task 1 layer representations before and after Task 2 training. We observe that", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 283, + 365, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 365, + 299 + ], + "score": 1.0, + "content": "later layers change more than early layers through second task training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 118, + 308, + 470, + 408 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 308, + 470, + 408 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 308, + 470, + 408 + ], + "spans": [ + { + "bbox": [ + 118, + 308, + 470, + 408 + ], + "score": 0.958, + "type": "image", + "image_path": "35dfe190006578fae05569f5bf53d346b76b9a6af954acad93632c9d607345d9.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 118, + 308, + 470, + 341.3333333333333 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 118, + 341.3333333333333, + 470, + 374.66666666666663 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 118, + 374.66666666666663, + 470, + 407.99999999999994 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 409, + 505, + 490 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 409, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 506, + 420 + ], + "score": 1.0, + "content": "Figure 4: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 418, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 104, + 418, + 506, + 431 + ], + "score": 1.0, + "content": "in higher layers. For Resnet on CIFAR10 (left), VGG on CIFAR10 (middle), Resnet on CIFAR100 (right), we", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "compute subspace similarity between: (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "(green line) (iii) (Task 2, Task 1 post-Task 2 training) (blue line). All comparisons show high similarity in lower", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "layers, indicative of feature reuse. Most striking is the comparison between (Task 1, Task 1 post-Task 2 training)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 459, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 470 + ], + "score": 1.0, + "content": "and (Task 2, Task 1 post-Task 2 training), which show that after Task 2 training, higher layer representations for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 481 + ], + "score": 1.0, + "content": "Task 1 are more similar to Task 2 than to Task 1! Specifically, the Task 1 subspace in higher layers is erased", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 478, + 194, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 194, + 491 + ], + "score": 1.0, + "content": "through Task 2 training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5 + } + ], + "index": 10.75 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 504, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 159, + 510 + ], + "score": 1.0, + "content": "eigenvectors", + "type": "text" + }, + { + "bbox": [ + 159, + 498, + 202, + 509 + ], + "score": 0.91, + "content": "( v _ { 1 } , v _ { 2 } , \\ldots )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 496, + 269, + 510 + ], + "score": 1.0, + "content": "and eigenvalues", + "type": "text" + }, + { + "bbox": [ + 270, + 498, + 310, + 509 + ], + "score": 0.92, + "content": "( \\lambda _ { 1 } , \\lambda _ { 2 } . . . )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 496, + 322, + 510 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 323, + 497, + 348, + 508 + ], + "score": 0.91, + "content": "X ^ { T } X", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 496, + 383, + 510 + ], + "score": 1.0, + "content": ". Letting", + "type": "text" + }, + { + "bbox": [ + 384, + 498, + 396, + 509 + ], + "score": 0.9, + "content": "V _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "be the matrix formed from", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 136, + 522 + ], + "score": 1.0, + "content": "the top", + "type": "text" + }, + { + "bbox": [ + 136, + 509, + 143, + 518 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 508, + 226, + 522 + ], + "score": 1.0, + "content": "principal directions,", + "type": "text" + }, + { + "bbox": [ + 226, + 510, + 263, + 520 + ], + "score": 0.91, + "content": "v _ { 1 } , . . . , v _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 508, + 331, + 522 + ], + "score": 1.0, + "content": "as columns, and", + "type": "text" + }, + { + "bbox": [ + 331, + 509, + 344, + 519 + ], + "score": 0.88, + "content": "U _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "the corresponding matrix for a different", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 519, + 240, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 176, + 532 + ], + "score": 1.0, + "content": "activation matrix", + "type": "text" + }, + { + "bbox": [ + 177, + 520, + 185, + 529 + ], + "score": 0.81, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 519, + 240, + 532 + ], + "score": 1.0, + "content": ", we compute", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 496, + 505, + 532 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 536, + 385, + 560 + ], + "lines": [ + { + "bbox": [ + 226, + 536, + 385, + 560 + ], + "spans": [ + { + "bbox": [ + 226, + 536, + 385, + 560 + ], + "score": 0.93, + "content": "\\mathrm { S u b s p a c e S i m } _ { k } ( X , Y ) = \\frac { 1 } { k } | | V _ { k } ^ { T } U _ { k } | | _ { F } ^ { 2 } .", + "type": "interline_equation", + "image_path": "93210a561cda29c3ecc977132e1ec315a90f01f1a64db5375460c390077263a9.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 226, + 536, + 385, + 560 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 565, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 324, + 580 + ], + "score": 1.0, + "content": "This measures the overlap in the subspaces spanned by", + "type": "text" + }, + { + "bbox": [ + 324, + 566, + 369, + 578 + ], + "score": 0.92, + "content": "( v _ { 1 } , . . . , v _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 565, + 387, + 580 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 566, + 433, + 578 + ], + "score": 0.91, + "content": "( u _ { 1 } , . . . , u _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 565, + 493, + 580 + ], + "score": 1.0, + "content": ". Concretely, if", + "type": "text" + }, + { + "bbox": [ + 494, + 567, + 504, + 576 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 123, + 589 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 577, + 132, + 587 + ], + "score": 0.77, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 577, + 414, + 589 + ], + "score": 1.0, + "content": "correspond to layer activation matrices for two different tasks, Subspace", + "type": "text" + }, + { + "bbox": [ + 414, + 577, + 465, + 589 + ], + "score": 0.87, + "content": "s \\mathrm { i m } _ { k } ( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "measures", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 587, + 430, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 194, + 600 + ], + "score": 1.0, + "content": "how similarly the top", + "type": "text" + }, + { + "bbox": [ + 194, + 588, + 200, + 598 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 587, + 430, + 600 + ], + "score": 1.0, + "content": "representations for those tasks are stored in the network.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 565, + 505, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 324, + 618 + ], + "score": 1.0, + "content": "Figure 4 shows the result of computing SubspaceSim", + "type": "text" + }, + { + "bbox": [ + 325, + 605, + 359, + 617 + ], + "score": 0.53, + "content": "{ } _ { k } ( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 605, + 375, + 618 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 375, + 605, + 397, + 616 + ], + "score": 0.9, + "content": "X , Y", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "being the layer activation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "score": 1.0, + "content": "matrices in (i) (Task 1, Task 2) (purple line) (ii) (Task 1, Task 1 post-Task 2 training) (blue line) (iii)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "(Task 2, Task 1 post-Task 2 training) (blue line). Supporting the CKA analysis, lower layers have high", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "subspace similarity between Task 1 and Task 2 (feature reuse), but higher layers have low similarity", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "(representations change significantly during Task 2 training.) Furthermore, (Task 1, Task 1 post-Task", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "2 training) also shows low subspace similarity in the higher layers, indicating that the representational", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 671, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 506, + 683 + ], + "score": 1.0, + "content": "change in later layers is not restricted to Task 2 data, but also alters the networks representation of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 680, + 507, + 696 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 507, + 696 + ], + "score": 1.0, + "content": "the initial task. Strikingly, (Task 2, Task 1 post-Task 2 training) shows high similarity in all layers,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 693, + 222, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 222, + 706 + ], + "score": 1.0, + "content": "despite being different tasks.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 605, + 507, + 706 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In summary, these results illustrate that during sequential training, effective feature reuse happens in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "the lower layers, but in the higher layers, after Task 2 training, Task 1 representations are mapped", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "into the same subspace as Task 2. Specifically, Task 2 training causes subspace erasure of Task 1 in", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 508, + 424, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 424, + 521 + ], + "score": 1.0, + "content": "the higher layers. (Additional details and results are in Appendix Section A.5.)", + "type": "text", + "cross_page": true + } + ], + "index": 19 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 709, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 103, + 80, + 491, + 159 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 103, + 80, + 491, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 103, + 80, + 491, + 159 + ], + "spans": [ + { + "bbox": [ + 103, + 80, + 491, + 159 + ], + "score": 0.952, + "type": "image", + "image_path": "989d29fbf88957c746c36658e38c694a1fda4765067223fb5123c977c85c3fd4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 103, + 80, + 491, + 106.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 103, + 106.33333333333333, + 491, + 132.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 103, + 132.66666666666666, + 491, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 162, + 505, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 162, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 173 + ], + "score": 1.0, + "content": "Figure 5: CKA analysis of mitigation methods demonstrates that mitigation methods stabilize the higher", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 171, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 183 + ], + "score": 1.0, + "content": "layer representations. We compute CKA between layer representations of Task 1 before and after Task 2", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "training, with varying amounts and types of mitigation. We find that across all mitigation methods, even a small", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "score": 1.0, + "content": "amount of mitigation works to stabilize the higher layer representations. In Figure 6, we investigate whether this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 200, + 417, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 417, + 214 + ], + "score": 1.0, + "content": "stabilization results in greater feature reuse or through finding independent subspaces.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 99, + 227, + 504, + 403 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 99, + 227, + 504, + 403 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 99, + 227, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 99, + 227, + 504, + 403 + ], + "score": 0.975, + "type": "image", + "image_path": "6e2fad04e0a002db8542c43cb352a649d5d03328e4c47ff4ee1cafae61635513.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 99, + 227, + 504, + 285.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 99, + 285.6666666666667, + 504, + 344.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 99, + 344.33333333333337, + 504, + 403.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 405, + 505, + 475 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 404, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 504, + 416 + ], + "score": 1.0, + "content": "Figure 6: Subspace similarity analysis reveals differences between different mitigation methods, with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "feature reuse in the higher layers. Top row: We plot subspace similarities like in Figure 4, for different", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "mitigation methods. We observe that (Task 2, Task 1 post-Task 2 training) is much lower in replay compared to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "EWC/SI, as is (Task1, Task2) similarity. The bottom row plots (Task 2, Task 1 post-Task 2 training) for different", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "score": 1.0, + "content": "amounts of mitigation. Again we see that replay has much lower (Task 2, Task 1 post-Task 2 training) similarity", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 463, + 495, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 495, + 478 + ], + "score": 1.0, + "content": "than no mitigation, while EWC/SI maintain the similar subspaces of Task 1 and Task 2 post Task 2 training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 105, + 497, + 504, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "into the same subspace as Task 2. Specifically, Task 2 training causes subspace erasure of Task 1 in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 508, + 424, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 424, + 521 + ], + "score": 1.0, + "content": "the higher layers. (Additional details and results are in Appendix Section A.5.)", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 536, + 442, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 443, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 443, + 551 + ], + "score": 1.0, + "content": "5 FORGETTING MITIGATION METHODS AND REPRESENTATIONS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "Informed by this understanding of how catastrophic forgetting manifests in the hidden layers (feature", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "reuse in lower layers and subspace erasure in higher layers), we next study methods to mitigate", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "forgetting. Do popularly used mitigation methods act to stabilize higher layers — given possible", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 588, + 387, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 387, + 601 + ], + "score": 1.0, + "content": "alternate approaches such as weight orthogonalization (Appendix C)?", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "We investigate these questions across different successful mitigation strategies (i) EWC (elastic", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "weight consolidation) (Kirkpatrick et al., 2017), a regularization-based approach (ii) replay buffer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "(Schaul et al., 2015; Ratcliff, 1990; Rolnick et al., 2019), a rehearsal-styled approach (iii) SI (Synaptic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 637, + 433, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 433, + 650 + ], + "score": 1.0, + "content": "Intelligence) (Zenke et al., 2017), another popular regularization-based approach.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "In Figure 5, we plot the results of computing CKA on layer representations of Task 1 before/after", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 667, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 677 + ], + "score": 1.0, + "content": "training on Task 2, with different amounts of mitigation applied, and across different mitigation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "methods, tasks and architectures (full results in Appendix B.7.) Across all of these settings, we observe", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 686, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 506, + 701 + ], + "score": 1.0, + "content": "that even a small amount of mitigation results in a significant increase in similarity (stabilization) in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the higher layers. However, there remains a central open question — is this increase in similarity due", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "to feature reuse in the higher layers between Task 1 and Task 2, or does the network store Task 1 and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 367, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 367, + 733 + ], + "score": 1.0, + "content": "Task 2 representations in non-interfering, orthogonal subspaces?", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 103, + 80, + 491, + 159 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 103, + 80, + 491, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 103, + 80, + 491, + 159 + ], + "spans": [ + { + "bbox": [ + 103, + 80, + 491, + 159 + ], + "score": 0.952, + "type": "image", + "image_path": "989d29fbf88957c746c36658e38c694a1fda4765067223fb5123c977c85c3fd4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 103, + 80, + 491, + 106.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 103, + 106.33333333333333, + 491, + 132.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 103, + 132.66666666666666, + 491, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 162, + 505, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 162, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 173 + ], + "score": 1.0, + "content": "Figure 5: CKA analysis of mitigation methods demonstrates that mitigation methods stabilize the higher", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 171, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 183 + ], + "score": 1.0, + "content": "layer representations. We compute CKA between layer representations of Task 1 before and after Task 2", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "training, with varying amounts and types of mitigation. We find that across all mitigation methods, even a small", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 203 + ], + "score": 1.0, + "content": "amount of mitigation works to stabilize the higher layer representations. In Figure 6, we investigate whether this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 200, + 417, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 417, + 214 + ], + "score": 1.0, + "content": "stabilization results in greater feature reuse or through finding independent subspaces.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 99, + 227, + 504, + 403 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 99, + 227, + 504, + 403 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 99, + 227, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 99, + 227, + 504, + 403 + ], + "score": 0.975, + "type": "image", + "image_path": "6e2fad04e0a002db8542c43cb352a649d5d03328e4c47ff4ee1cafae61635513.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 99, + 227, + 504, + 285.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 99, + 285.6666666666667, + 504, + 344.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 99, + 344.33333333333337, + 504, + 403.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 405, + 505, + 475 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 404, + 504, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 504, + 416 + ], + "score": 1.0, + "content": "Figure 6: Subspace similarity analysis reveals differences between different mitigation methods, with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "feature reuse in the higher layers. Top row: We plot subspace similarities like in Figure 4, for different", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "mitigation methods. We observe that (Task 2, Task 1 post-Task 2 training) is much lower in replay compared to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "EWC/SI, as is (Task1, Task2) similarity. The bottom row plots (Task 2, Task 1 post-Task 2 training) for different", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "score": 1.0, + "content": "amounts of mitigation. Again we see that replay has much lower (Task 2, Task 1 post-Task 2 training) similarity", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 463, + 495, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 495, + 478 + ], + "score": 1.0, + "content": "than no mitigation, while EWC/SI maintain the similar subspaces of Task 1 and Task 2 post Task 2 training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 105, + 497, + 504, + 520 + ], + "lines": [], + "index": 18.5, + "bbox_fs": [ + 105, + 498, + 505, + 521 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 536, + 442, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 443, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 443, + 551 + ], + "score": 1.0, + "content": "5 FORGETTING MITIGATION METHODS AND REPRESENTATIONS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "Informed by this understanding of how catastrophic forgetting manifests in the hidden layers (feature", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "reuse in lower layers and subspace erasure in higher layers), we next study methods to mitigate", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "forgetting. Do popularly used mitigation methods act to stabilize higher layers — given possible", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 588, + 387, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 387, + 601 + ], + "score": 1.0, + "content": "alternate approaches such as weight orthogonalization (Appendix C)?", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 555, + 505, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "We investigate these questions across different successful mitigation strategies (i) EWC (elastic", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "weight consolidation) (Kirkpatrick et al., 2017), a regularization-based approach (ii) replay buffer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "(Schaul et al., 2015; Ratcliff, 1990; Rolnick et al., 2019), a rehearsal-styled approach (iii) SI (Synaptic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 637, + 433, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 433, + 650 + ], + "score": 1.0, + "content": "Intelligence) (Zenke et al., 2017), another popular regularization-based approach.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 605, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "In Figure 5, we plot the results of computing CKA on layer representations of Task 1 before/after", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 667, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 677 + ], + "score": 1.0, + "content": "training on Task 2, with different amounts of mitigation applied, and across different mitigation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "methods, tasks and architectures (full results in Appendix B.7.) Across all of these settings, we observe", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 686, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 506, + 701 + ], + "score": 1.0, + "content": "that even a small amount of mitigation results in a significant increase in similarity (stabilization) in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the higher layers. However, there remains a central open question — is this increase in similarity due", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "to feature reuse in the higher layers between Task 1 and Task 2, or does the network store Task 1 and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 367, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 367, + 733 + ], + "score": 1.0, + "content": "Task 2 representations in non-interfering, orthogonal subspaces?", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 130, + 81, + 474, + 174 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 81, + 474, + 174 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 81, + 474, + 174 + ], + "spans": [ + { + "bbox": [ + 130, + 81, + 474, + 174 + ], + "score": 0.947, + "type": "image", + "image_path": "10d7acc7c85ddb54b5a1f7a9d2b6d802e716edd510dda6927ec734f59ba4c779.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 81, + 474, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 112.0, + 474, + 143.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 143.0, + 474, + 174.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 176, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "Figure 7: Subspace similarity analysis of CelebA, with and without replay mitigation. Left pane computes", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "subspace similarities in CelebA, like in Figure 4, showing subspace erasure at top layers. Middle and right panes", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "showt the effect of adding replay, where subspaces in lower/middle layers become more similar but higher layers", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 205, + 260, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 260, + 217 + ], + "score": 1.0, + "content": "become more orthogonal, like in Figure 6.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "To answer this, we compute the Subspace Similarity measure introduced in Section 4.3, with results in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 251, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 265 + ], + "score": 1.0, + "content": "Figure 6 (and additional experiments in Appendix Section B.5). These results reveal key differences", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "between the mitigation methods: replay buffer results in orthogonal network subspaces for higher", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "layer representations of Task 1 and Task 2, while EWC and SI promote feature reuse even in the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 284, + 224, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 224, + 296 + ], + "score": 1.0, + "content": "higher layers. In more detail:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 301, + 506, + 433 + ], + "lines": [ + { + "bbox": [ + 108, + 302, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 108, + 302, + 506, + 314 + ], + "score": 1.0, + "content": "• Comparing the top row of Figure 6 to Figure 4 (the same plot without mitigation), we see that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 313, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 313, + 506, + 324 + ], + "score": 1.0, + "content": "mitigation methods increase the subspace similarity of (Task 1, Task 1 Post-Task 2) and (Task 1,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 322, + 399, + 336 + ], + "spans": [ + { + "bbox": [ + 114, + 322, + 399, + 336 + ], + "score": 1.0, + "content": "Task 2) representations in earlier/middling layers (more feature reuse).", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 108, + 333, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 108, + 333, + 506, + 348 + ], + "score": 1.0, + "content": "• Most interestingly, comparing the different mitigation methods across top row Figure 6, we see", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "that while EWC and SI maintain high subspace similarity of (Task 2, Task 1 Post-Task 2) even in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "the highest layers, replay significantly decreases this value in the highest layers. This suggests that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "replay performs mitigation through use of orthogonal subspaces, while EWC/SI encourage feature", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 378, + 246, + 390 + ], + "spans": [ + { + "bbox": [ + 114, + 378, + 246, + 390 + ], + "score": 1.0, + "content": "reuse even in the highest layers.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 108, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 108, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "• In the bottom row we show subspace similarity of (Task 2, Task 1 Post-Task 2) for varying strengths", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "of the different mitigation methods. We observe a clear decrease in subspace similarity in higher", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "layers even when a little replay is used (again supporting orthogonal subspaces), while EWC/SI", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 423, + 365, + 435 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 365, + 435 + ], + "score": 1.0, + "content": "maintain or increase this (feature reuse even in higher layers.)", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 187, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 189, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 189, + 468 + ], + "score": 1.0, + "content": "6 SEMANTICS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "With the insights on how catastrophic forgetting relates to the hidden representations, and the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "effects on network internals of different mitigation methods, we turn to investigating how the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "semantic similarity between the sequential tasks affects forgetting. Specifically the prior results", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "on lower layer feature reuse suggest a key question: does similarity between tasks result in less", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "forgetting? Surprisingly, the answer is quite nuanced, depending on how precisely the different tasks", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 528, + 231, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 231, + 540 + ], + "score": 1.0, + "content": "are represented in the network.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 557, + 390, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 392, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 392, + 570 + ], + "score": 1.0, + "content": "6.1 FORGETTING, TASK SEMANTICS AND A SIMILARITY PUZZLE", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "score": 1.0, + "content": "Our study of the relationship between task semantic similarity and forgetting reveals a surprising", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "puzzle. In Figure 8 and Table 1, we observe that depending on the task setup, a semantically similar", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "task may be forgotten less or more than a less similar task. This behavior is consistent across", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "different settings and datasets. Specifically, in Figure 8a and 8d, Task 1 and Task 2 consist of binary", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "classifications between animals and objects from CIFAR-10, where we find that the similar categories", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "forget less. But in Figure 8b and 8e, a four category classification between animals and objects", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "followed by a binary classification task results in the similar categories being forgotten more. Table", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "1 shows an analogous result on ImageNet. This effect of similar categories being forgotten more", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "can also be observed in the CIFAR-100 distribution shift setting, where input distribution shift to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "CIFAR-100 superclasses results in more similar categories being forgotten more, e.g. input shifts to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "natural superclasses (Figure 8c) or artifical superclasses (Figure 8f). Further details and supporting", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 693, + 282, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 282, + 705 + ], + "score": 1.0, + "content": "experiments can be found in Appendix B.9.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In the subsequent sections, we resolve this puzzle through (i) the development of an analytic model", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "that formalizes the subtle connection between task similarity and forgetting (ii) an ensuing measure of", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 130, + 81, + 474, + 174 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 81, + 474, + 174 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 81, + 474, + 174 + ], + "spans": [ + { + "bbox": [ + 130, + 81, + 474, + 174 + ], + "score": 0.947, + "type": "image", + "image_path": "10d7acc7c85ddb54b5a1f7a9d2b6d802e716edd510dda6927ec734f59ba4c779.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 81, + 474, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 112.0, + 474, + 143.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 143.0, + 474, + 174.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 176, + 505, + 215 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "Figure 7: Subspace similarity analysis of CelebA, with and without replay mitigation. Left pane computes", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "subspace similarities in CelebA, like in Figure 4, showing subspace erasure at top layers. Middle and right panes", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "showt the effect of adding replay, where subspaces in lower/middle layers become more similar but higher layers", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 205, + 260, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 260, + 217 + ], + "score": 1.0, + "content": "become more orthogonal, like in Figure 6.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "To answer this, we compute the Subspace Similarity measure introduced in Section 4.3, with results in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 251, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 265 + ], + "score": 1.0, + "content": "Figure 6 (and additional experiments in Appendix Section B.5). These results reveal key differences", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "between the mitigation methods: replay buffer results in orthogonal network subspaces for higher", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "layer representations of Task 1 and Task 2, while EWC and SI promote feature reuse even in the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 284, + 224, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 224, + 296 + ], + "score": 1.0, + "content": "higher layers. In more detail:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 241, + 505, + 296 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 301, + 506, + 433 + ], + "lines": [ + { + "bbox": [ + 108, + 302, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 108, + 302, + 506, + 314 + ], + "score": 1.0, + "content": "• Comparing the top row of Figure 6 to Figure 4 (the same plot without mitigation), we see that", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 313, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 313, + 506, + 324 + ], + "score": 1.0, + "content": "mitigation methods increase the subspace similarity of (Task 1, Task 1 Post-Task 2) and (Task 1,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 322, + 399, + 336 + ], + "spans": [ + { + "bbox": [ + 114, + 322, + 399, + 336 + ], + "score": 1.0, + "content": "Task 2) representations in earlier/middling layers (more feature reuse).", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 333, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 108, + 333, + 506, + 348 + ], + "score": 1.0, + "content": "• Most interestingly, comparing the different mitigation methods across top row Figure 6, we see", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "that while EWC and SI maintain high subspace similarity of (Task 2, Task 1 Post-Task 2) even in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "the highest layers, replay significantly decreases this value in the highest layers. This suggests that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "replay performs mitigation through use of orthogonal subspaces, while EWC/SI encourage feature", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 378, + 246, + 390 + ], + "spans": [ + { + "bbox": [ + 114, + 378, + 246, + 390 + ], + "score": 1.0, + "content": "reuse even in the highest layers.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 108, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "• In the bottom row we show subspace similarity of (Task 2, Task 1 Post-Task 2) for varying strengths", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "of the different mitigation methods. We observe a clear decrease in subspace similarity in higher", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "layers even when a little replay is used (again supporting orthogonal subspaces), while EWC/SI", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 423, + 365, + 435 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 365, + 435 + ], + "score": 1.0, + "content": "maintain or increase this (feature reuse even in higher layers.)", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + } + ], + "index": 17.5, + "bbox_fs": [ + 108, + 302, + 506, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 187, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 189, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 189, + 468 + ], + "score": 1.0, + "content": "6 SEMANTICS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "With the insights on how catastrophic forgetting relates to the hidden representations, and the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "effects on network internals of different mitigation methods, we turn to investigating how the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "semantic similarity between the sequential tasks affects forgetting. Specifically the prior results", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "on lower layer feature reuse suggest a key question: does similarity between tasks result in less", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "forgetting? Surprisingly, the answer is quite nuanced, depending on how precisely the different tasks", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 528, + 231, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 231, + 540 + ], + "score": 1.0, + "content": "are represented in the network.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 473, + 506, + 540 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 557, + 390, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 392, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 392, + 570 + ], + "score": 1.0, + "content": "6.1 FORGETTING, TASK SEMANTICS AND A SIMILARITY PUZZLE", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "score": 1.0, + "content": "Our study of the relationship between task semantic similarity and forgetting reveals a surprising", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "puzzle. In Figure 8 and Table 1, we observe that depending on the task setup, a semantically similar", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "task may be forgotten less or more than a less similar task. This behavior is consistent across", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "different settings and datasets. Specifically, in Figure 8a and 8d, Task 1 and Task 2 consist of binary", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "classifications between animals and objects from CIFAR-10, where we find that the similar categories", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "forget less. But in Figure 8b and 8e, a four category classification between animals and objects", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "followed by a binary classification task results in the similar categories being forgotten more. Table", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "1 shows an analogous result on ImageNet. This effect of similar categories being forgotten more", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "can also be observed in the CIFAR-100 distribution shift setting, where input distribution shift to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "CIFAR-100 superclasses results in more similar categories being forgotten more, e.g. input shifts to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "natural superclasses (Figure 8c) or artifical superclasses (Figure 8f). Further details and supporting", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 693, + 282, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 282, + 705 + ], + "score": 1.0, + "content": "experiments can be found in Appendix B.9.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 570, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In the subsequent sections, we resolve this puzzle through (i) the development of an analytic model", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "that formalizes the subtle connection between task similarity and forgetting (ii) an ensuing measure of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "task similarity, trace overlap, empirically quantifies task similarity (iii) showing maximal forgetting", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 275, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 275, + 106 + ], + "score": 1.0, + "content": "happens with intermediate task similarity.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 128, + 497, + 340 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 128, + 497, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 128, + 497, + 340 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 497, + 340 + ], + "score": 0.972, + "type": "image", + "image_path": "97cddca27ac4c1609e19e4ad01716f32b4b6060f855841e02ef202f7ad83dcf3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 128, + 497, + 198.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 198.66666666666669, + 497, + 269.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 269.33333333333337, + 497, + 340.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 343, + 506, + 413 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "Figure 8: Forgetting severity consistently varies along semantic divisions. (a,d) For sequential binary", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "classification tasks models trained on either objects or animals forgets less on a second object task of the same", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "semantic category. (b,e) Models trained initially on four way classification of two object and two animal classes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 373, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 506, + 385 + ], + "score": 1.0, + "content": "see more forgetting in semantically similar classes when trained on a second two class task of either objects or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "animals. (c,f) Models trained on sequential six-way classification with four unaltered categories (shown) and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 392, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 506, + 404 + ], + "score": 1.0, + "content": "two altered categories show increased forgetting in the unaltered categories semantically most similar to altered", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 403, + 469, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 469, + 415 + ], + "score": 1.0, + "content": "categories. For all panes, performance is shown for ResNet, with additional results in Appendix B.9.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 135, + 509, + 476, + 615 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 135, + 509, + 476, + 615 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 509, + 476, + 615 + ], + "spans": [ + { + "bbox": [ + 135, + 509, + 476, + 615 + ], + "score": 0.984, + "html": "
Task DescriptionPerformance Drop on Task 1 Animals Artifacts
Task1:animals Task2:animals0.0885 ± 0.0259
Task1:animals Task2:artifacts0.1832 ± 0.0484
Task1:artifacts Task2:artifacts0.2884 ± 0.0187
Task1:artifacts Task2:animals0.3720 ± 0.0288
Task1:animals and artifacts Task2:animals0.1752 ± 0.01930.1532 ± 0.0231
Task1:animals and artifacts Task2:artifacts0.2057 ± 0.03120.2330 ± 0.0292
", + "type": "table", + "image_path": "bcc2ff7123e38051eeb8a6fd458ec8dee7287267a33219bf8dca1ace03234537.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 135, + 509, + 476, + 544.3333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 135, + 544.3333333333334, + 476, + 579.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 135, + 579.6666666666667, + 476, + 615.0000000000001 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 623, + 506, + 685 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "score": 1.0, + "content": "Table 1: Task Semantics and forgetting in ImageNet Here a ResNet50 is first trained (task 1) to classify", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 633, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 644 + ], + "score": 1.0, + "content": "either 10 animals, 10 artifacts or 10 animals and artifacts (chosen randomly from ImageNet). The network is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "score": 1.0, + "content": "then trained (task 2) to either classify 10 different animals or 10 different artifacts. The table shows performance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "drop on Task 1 after Task 2 training. Similar to Figure 8, when Task 1 is either animals or artifacts (top part", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 664, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 675 + ], + "score": 1.0, + "content": "of table), similar tasks forget less, while when Task 1 is both animals and artifacts, similar tasks show greater", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 673, + 226, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 226, + 686 + ], + "score": 1.0, + "content": "forgetting (bottom part of table).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + } + ], + "index": 13.25 + } + ], + "page_idx": 6, + "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": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 128, + 497, + 340 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 128, + 497, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 128, + 497, + 340 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 497, + 340 + ], + "score": 0.972, + "type": "image", + "image_path": "97cddca27ac4c1609e19e4ad01716f32b4b6060f855841e02ef202f7ad83dcf3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 128, + 497, + 198.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 198.66666666666669, + 497, + 269.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 269.33333333333337, + 497, + 340.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 343, + 506, + 413 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "Figure 8: Forgetting severity consistently varies along semantic divisions. (a,d) For sequential binary", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "classification tasks models trained on either objects or animals forgets less on a second object task of the same", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "semantic category. (b,e) Models trained initially on four way classification of two object and two animal classes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 373, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 506, + 385 + ], + "score": 1.0, + "content": "see more forgetting in semantically similar classes when trained on a second two class task of either objects or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "animals. (c,f) Models trained on sequential six-way classification with four unaltered categories (shown) and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 392, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 506, + 404 + ], + "score": 1.0, + "content": "two altered categories show increased forgetting in the unaltered categories semantically most similar to altered", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 403, + 469, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 469, + 415 + ], + "score": 1.0, + "content": "categories. For all panes, performance is shown for ResNet, with additional results in Appendix B.9.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 135, + 509, + 476, + 615 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 135, + 509, + 476, + 615 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 509, + 476, + 615 + ], + "spans": [ + { + "bbox": [ + 135, + 509, + 476, + 615 + ], + "score": 0.984, + "html": "
Task DescriptionPerformance Drop on Task 1 Animals Artifacts
Task1:animals Task2:animals0.0885 ± 0.0259
Task1:animals Task2:artifacts0.1832 ± 0.0484
Task1:artifacts Task2:artifacts0.2884 ± 0.0187
Task1:artifacts Task2:animals0.3720 ± 0.0288
Task1:animals and artifacts Task2:animals0.1752 ± 0.01930.1532 ± 0.0231
Task1:animals and artifacts Task2:artifacts0.2057 ± 0.03120.2330 ± 0.0292
", + "type": "table", + "image_path": "bcc2ff7123e38051eeb8a6fd458ec8dee7287267a33219bf8dca1ace03234537.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 135, + 509, + 476, + 544.3333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 135, + 544.3333333333334, + 476, + 579.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 135, + 579.6666666666667, + 476, + 615.0000000000001 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 623, + 506, + 685 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 635 + ], + "score": 1.0, + "content": "Table 1: Task Semantics and forgetting in ImageNet Here a ResNet50 is first trained (task 1) to classify", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 633, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 644 + ], + "score": 1.0, + "content": "either 10 animals, 10 artifacts or 10 animals and artifacts (chosen randomly from ImageNet). The network is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 655 + ], + "score": 1.0, + "content": "then trained (task 2) to either classify 10 different animals or 10 different artifacts. The table shows performance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "drop on Task 1 after Task 2 training. Similar to Figure 8, when Task 1 is either animals or artifacts (top part", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 664, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 675 + ], + "score": 1.0, + "content": "of table), similar tasks forget less, while when Task 1 is both animals and artifacts, similar tasks show greater", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 673, + 226, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 226, + 686 + ], + "score": 1.0, + "content": "forgetting (bottom part of table).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + } + ], + "index": 13.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "task similarity, trace overlap, empirically quantifies task similarity (iii) showing maximal forgetting", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 275, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 275, + 106 + ], + "score": 1.0, + "content": "happens with intermediate task similarity.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 106, + 118, + 354, + 130 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 354, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 354, + 131 + ], + "score": 1.0, + "content": "6.2 AN ANALYTIC MODEL OF FORGETTING SEMANTICS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 506, + 222 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "We first formalize a model with a single classification head (like in distribution shift CIFAR-100),", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 143, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 107, + 154, + 181, + 168 + ], + "score": 0.93, + "content": "\\scriptstyle \\sum _ { \\mu = 1 } ^ { p } \\theta _ { \\mu } g _ { \\mu } ( w ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 143, + 214, + 174 + ], + "score": 1.0, + "content": "nding m, where", + "type": "text" + }, + { + "bbox": [ + 214, + 154, + 221, + 164 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 143, + 349, + 174 + ], + "score": 1.0, + "content": "ti-head setup in Appendix C. Ware the last layer weights and", + "type": "text" + }, + { + "bbox": [ + 350, + 156, + 357, + 166 + ], + "score": 0.78, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 143, + 471, + 174 + ], + "score": 1.0, + "content": "write the network output asare features. We consider", + "type": "text" + }, + { + "bbox": [ + 472, + 143, + 506, + 155 + ], + "score": 0.91, + "content": "f ( x ) =", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 167, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 179 + ], + "score": 1.0, + "content": "sequentially on two tasks. For the first task, we train normally. For the second task, inspired by our", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "score": 1.0, + "content": "empirical observation above that forgetting is driven by deeper layers, we freeze the the earlier layer", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 143, + 201 + ], + "score": 1.0, + "content": "features,", + "type": "text" + }, + { + "bbox": [ + 144, + 188, + 228, + 200 + ], + "score": 0.92, + "content": "g _ { \\mu } ( w ; x ) = g _ { \\mu } ( \\hat { w } ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 188, + 387, + 201 + ], + "score": 1.0, + "content": "when training on the second task (here", + "type": "text" + }, + { + "bbox": [ + 387, + 189, + 396, + 198 + ], + "score": 0.8, + "content": "\\hat { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "represent the weights after", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 338, + 212 + ], + "score": 1.0, + "content": "training on the first task). If we train with loss function", + "type": "text" + }, + { + "bbox": [ + 339, + 199, + 369, + 211 + ], + "score": 0.93, + "content": "L ( f , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 199, + 443, + 212 + ], + "score": 1.0, + "content": "and learning rate", + "type": "text" + }, + { + "bbox": [ + 443, + 201, + 450, + 211 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 199, + 506, + 212 + ], + "score": 1.0, + "content": ", the network", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 210, + 248, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 231, + 223 + ], + "score": 1.0, + "content": "output SGD update at timestep", + "type": "text" + }, + { + "bbox": [ + 232, + 211, + 237, + 220 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 210, + 248, + 223 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 241, + 403, + 277 + ], + "lines": [ + { + "bbox": [ + 207, + 241, + 403, + 277 + ], + "spans": [ + { + "bbox": [ + 207, + 241, + 403, + 277 + ], + "score": 0.93, + "content": "\\Delta f _ { t } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\operatorname { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } .", + "type": "interline_equation", + "image_path": "d9e738fcd6ce18d35701510190b82266c9c4cfa9974169718abd4a15b8d26993.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 241, + 403, + 259.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 207, + 259.0, + 403, + 277.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 103, + 280, + 507, + 303 + ], + "spans": [ + { + "bbox": [ + 103, + 281, + 156, + 298 + ], + "score": 1.0, + "content": "Here D(2)", + "type": "text" + }, + { + "bbox": [ + 151, + 280, + 297, + 303 + ], + "score": 1.0, + "content": "is the second-task training data and", + "type": "text" + }, + { + "bbox": [ + 297, + 285, + 447, + 299 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu = 1 } ^ { p } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 280, + 507, + 303 + ], + "score": 1.0, + "content": "is the overlap", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 408, + 312 + ], + "score": 1.0, + "content": "(inner product) between the model last-layer representations on data point", + "type": "text" + }, + { + "bbox": [ + 409, + 301, + 416, + 309 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 297, + 434, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 434, + 299, + 443, + 309 + ], + "score": 0.84, + "content": "x ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 297, + 505, + 312 + ], + "score": 1.0, + "content": ". If the overlap", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 308, + 482, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 141, + 322 + ], + "score": 0.92, + "content": "\\Theta ( x , x ^ { \\bar { \\prime } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 308, + 482, + 323 + ], + "score": 1.0, + "content": "is small, then the change in the logits is small and forgetting is minimal, specifically:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 168, + 344 + ], + "score": 1.0, + "content": "Lemma 1 Let", + "type": "text" + }, + { + "bbox": [ + 168, + 332, + 178, + 343 + ], + "score": 0.85, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 330, + 497, + 344 + ], + "score": 1.0, + "content": "be the logits of a neural network trained via the frozen feature model. Let", + "type": "text" + }, + { + "bbox": [ + 497, + 334, + 504, + 342 + ], + "score": 0.63, + "content": "x", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "be an element of the initial task test set. Let us further denote the vector of the feature overlap", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 349, + 509, + 375 + ], + "spans": [ + { + "bbox": [ + 102, + 349, + 277, + 375 + ], + "score": 1.0, + "content": "applied to the second task training set as", + "type": "text" + }, + { + "bbox": [ + 277, + 354, + 412, + 369 + ], + "score": 0.91, + "content": " { \\vec { \\Theta } } ( x ) : = \\{ \\Theta ( x , x ^ { \\prime } ) : x ^ { \\prime } \\in X _ { t r a i n } ^ { ( 2 ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 349, + 509, + 375 + ], + "score": 1.0, + "content": "and the loss vector as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 361, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 250, + 383 + ], + "score": 0.91, + "content": "\\vec { L } = \\{ L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) : x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { t r a i n } ^ { ( 2 ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 361, + 506, + 390 + ], + "score": 1.0, + "content": "train. With this, the change in the original task logits is bounded as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 387, + 371, + 422 + ], + "lines": [ + { + "bbox": [ + 240, + 387, + 371, + 422 + ], + "spans": [ + { + "bbox": [ + 240, + 387, + 371, + 422 + ], + "score": 0.94, + "content": "| \\Delta f _ { t } ( x ) | \\leq \\eta | | { \\vec { \\Theta } } ( x ) | | | { \\frac { \\partial { \\vec { L } } } { \\partial f } } | | .", + "type": "interline_equation", + "image_path": "5560d915c662208e0d52cb9477642c65c77fbf179501bc79b7d1de8d64727597.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 387, + 371, + 404.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 240, + 404.5, + 371, + 422.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "Thus representational similarity is necessary for forgetting to occur, and in this model, sufficiently", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "similar and sufficiently dissimilar tasks have minimal forgetting, while intermediate similar tasks", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 453, + 209, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 209, + 468 + ], + "score": 1.0, + "content": "have maximal forgetting.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 421, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 421, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 421, + 493 + ], + "score": 1.0, + "content": "6.3 CATASTROPHIC FORGETTING ACROSS VARYING TASK SIMILARITIES", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "The analytical result enables us to make precise a measure of task similarity, through using the feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 166, + 523 + ], + "score": 1.0, + "content": "overlap matrix", + "type": "text" + }, + { + "bbox": [ + 167, + 511, + 201, + 523 + ], + "score": 0.92, + "content": "\\Theta ( x ^ { \\prime } , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 511, + 280, + 523 + ], + "score": 1.0, + "content": ". Concretely, letting", + "type": "text" + }, + { + "bbox": [ + 280, + 511, + 297, + 522 + ], + "score": 0.9, + "content": "\\Theta _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 511, + 427, + 523 + ], + "score": 1.0, + "content": "be the overlap matrix on Task 1,", + "type": "text" + }, + { + "bbox": [ + 427, + 511, + 444, + 522 + ], + "score": 0.87, + "content": "\\Theta _ { 2 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "on Task 2, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 522, + 257, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 123, + 533 + ], + "score": 0.89, + "content": "\\Theta _ { 1 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 522, + 257, + 534 + ], + "score": 1.0, + "content": "on Task 1 and Task 2, we define:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 538, + 406, + 569 + ], + "lines": [ + { + "bbox": [ + 204, + 538, + 406, + 569 + ], + "spans": [ + { + "bbox": [ + 204, + 538, + 406, + 569 + ], + "score": 0.92, + "content": "\\mathrm { T r a c e ~ o v e r l a p } = \\frac { \\mathrm { T r } \\left( \\Theta _ { 1 2 } \\Theta _ { 1 2 } ^ { T } \\right) } { \\sqrt { \\left( \\right)} \\mathrm { T r } \\left( \\Theta _ { 1 1 } \\Theta _ { 1 1 } ^ { T } \\right) \\mathrm { T r } \\left( \\Theta _ { 2 2 } \\Theta _ { 2 2 } ^ { T } \\right) } .", + "type": "interline_equation", + "image_path": "7fb62347b6c3e11263b8f79f914a23a2b0c512424d1d31faa6d0808e1137d433.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 538, + 406, + 553.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 204, + 553.5, + 406, + 569.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 506, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 586 + ], + "score": 1.0, + "content": "Trace overlap is directly analogous to CKA, where instead of comparing the similarity of different", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 585, + 494, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 494, + 597 + ], + "score": 1.0, + "content": "features on the same data, we are comparing the similarity of common features on different data.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 505, + 614 + ], + "score": 1.0, + "content": "Increasing task dissimilarity can help reduce forgetting In Lemma 1, we see that very dissimilar", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "tasks, with small overlap matrix, exhibit minimal forgetting. In Figure 9, we test this in the context", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "of sequential binary classification. We introduce an other category to the classification problem (of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "images from classes not included in the training tasks), which encourages the model to represent Task", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 646, + 488, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 488, + 659 + ], + "score": 1.0, + "content": "1 and Task 2 dissimilarly (lower trace overlap in Figure 9b), and reduces forgetting (Figure 9a).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 662, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "score": 1.0, + "content": "Maximal forgetting at intermediate similarity To empirically study the conclusion from the model", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "that intermediate-similar tasks have maximal forgetting, we use mixup (Zhang et al., 2017), a standard", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "data augmentation technique, to interpolate between the two tasks. Specifically, we first train a model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 695, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 427, + 709 + ], + "score": 1.0, + "content": "on binary classification (with an other category to encourage dissimilarity) and for", + "type": "text" + }, + { + "bbox": [ + 427, + 695, + 466, + 708 + ], + "score": 0.92, + "content": "\\lambda \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 695, + 505, + 709 + ], + "score": 1.0, + "content": ", generate", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 706, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 706, + 201, + 723 + ], + "score": 1.0, + "content": "an mixup dataset D(λ)train", + "type": "text" + }, + { + "bbox": [ + 174, + 707, + 387, + 722 + ], + "score": 0.87, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( \\lambda ) } = \\{ ( \\lambda x ^ { ( 2 ) } + ( 1 - \\lambda ) x ^ { ( 1 ) } , \\lambda y ^ { ( 2 ) } + ( 1 - \\lambda ) y ^ { ( 1 ) } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 706, + 507, + 723 + ], + "score": 1.0, + "content": ". We compare model behavior", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "across a range of mixup fractions, finding that the task similarity as measured through the trace", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 106, + 118, + 354, + 130 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 354, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 354, + 131 + ], + "score": 1.0, + "content": "6.2 AN ANALYTIC MODEL OF FORGETTING SEMANTICS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 506, + 222 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "We first formalize a model with a single classification head (like in distribution shift CIFAR-100),", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 143, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 107, + 154, + 181, + 168 + ], + "score": 0.93, + "content": "\\scriptstyle \\sum _ { \\mu = 1 } ^ { p } \\theta _ { \\mu } g _ { \\mu } ( w ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 143, + 214, + 174 + ], + "score": 1.0, + "content": "nding m, where", + "type": "text" + }, + { + "bbox": [ + 214, + 154, + 221, + 164 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 143, + 349, + 174 + ], + "score": 1.0, + "content": "ti-head setup in Appendix C. Ware the last layer weights and", + "type": "text" + }, + { + "bbox": [ + 350, + 156, + 357, + 166 + ], + "score": 0.78, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 143, + 471, + 174 + ], + "score": 1.0, + "content": "write the network output asare features. We consider", + "type": "text" + }, + { + "bbox": [ + 472, + 143, + 506, + 155 + ], + "score": 0.91, + "content": "f ( x ) =", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 167, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 179 + ], + "score": 1.0, + "content": "sequentially on two tasks. For the first task, we train normally. For the second task, inspired by our", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "score": 1.0, + "content": "empirical observation above that forgetting is driven by deeper layers, we freeze the the earlier layer", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 143, + 201 + ], + "score": 1.0, + "content": "features,", + "type": "text" + }, + { + "bbox": [ + 144, + 188, + 228, + 200 + ], + "score": 0.92, + "content": "g _ { \\mu } ( w ; x ) = g _ { \\mu } ( \\hat { w } ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 188, + 387, + 201 + ], + "score": 1.0, + "content": "when training on the second task (here", + "type": "text" + }, + { + "bbox": [ + 387, + 189, + 396, + 198 + ], + "score": 0.8, + "content": "\\hat { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "represent the weights after", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 338, + 212 + ], + "score": 1.0, + "content": "training on the first task). If we train with loss function", + "type": "text" + }, + { + "bbox": [ + 339, + 199, + 369, + 211 + ], + "score": 0.93, + "content": "L ( f , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 199, + 443, + 212 + ], + "score": 1.0, + "content": "and learning rate", + "type": "text" + }, + { + "bbox": [ + 443, + 201, + 450, + 211 + ], + "score": 0.78, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 199, + 506, + 212 + ], + "score": 1.0, + "content": ", the network", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 210, + 248, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 231, + 223 + ], + "score": 1.0, + "content": "output SGD update at timestep", + "type": "text" + }, + { + "bbox": [ + 232, + 211, + 237, + 220 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 210, + 248, + 223 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 132, + 506, + 223 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 241, + 403, + 277 + ], + "lines": [ + { + "bbox": [ + 207, + 241, + 403, + 277 + ], + "spans": [ + { + "bbox": [ + 207, + 241, + 403, + 277 + ], + "score": 0.93, + "content": "\\Delta f _ { t } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\operatorname { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } .", + "type": "interline_equation", + "image_path": "d9e738fcd6ce18d35701510190b82266c9c4cfa9974169718abd4a15b8d26993.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 241, + 403, + 259.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 207, + 259.0, + 403, + 277.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 103, + 280, + 507, + 303 + ], + "spans": [ + { + "bbox": [ + 103, + 281, + 156, + 298 + ], + "score": 1.0, + "content": "Here D(2)", + "type": "text" + }, + { + "bbox": [ + 151, + 280, + 297, + 303 + ], + "score": 1.0, + "content": "is the second-task training data and", + "type": "text" + }, + { + "bbox": [ + 297, + 285, + 447, + 299 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu = 1 } ^ { p } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 280, + 507, + 303 + ], + "score": 1.0, + "content": "is the overlap", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 408, + 312 + ], + "score": 1.0, + "content": "(inner product) between the model last-layer representations on data point", + "type": "text" + }, + { + "bbox": [ + 409, + 301, + 416, + 309 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 297, + 434, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 434, + 299, + 443, + 309 + ], + "score": 0.84, + "content": "x ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 297, + 505, + 312 + ], + "score": 1.0, + "content": ". If the overlap", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 308, + 482, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 141, + 322 + ], + "score": 0.92, + "content": "\\Theta ( x , x ^ { \\bar { \\prime } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 308, + 482, + 323 + ], + "score": 1.0, + "content": "is small, then the change in the logits is small and forgetting is minimal, specifically:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 103, + 280, + 507, + 323 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 168, + 344 + ], + "score": 1.0, + "content": "Lemma 1 Let", + "type": "text" + }, + { + "bbox": [ + 168, + 332, + 178, + 343 + ], + "score": 0.85, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 330, + 497, + 344 + ], + "score": 1.0, + "content": "be the logits of a neural network trained via the frozen feature model. Let", + "type": "text" + }, + { + "bbox": [ + 497, + 334, + 504, + 342 + ], + "score": 0.63, + "content": "x", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "be an element of the initial task test set. Let us further denote the vector of the feature overlap", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 349, + 509, + 375 + ], + "spans": [ + { + "bbox": [ + 102, + 349, + 277, + 375 + ], + "score": 1.0, + "content": "applied to the second task training set as", + "type": "text" + }, + { + "bbox": [ + 277, + 354, + 412, + 369 + ], + "score": 0.91, + "content": " { \\vec { \\Theta } } ( x ) : = \\{ \\Theta ( x , x ^ { \\prime } ) : x ^ { \\prime } \\in X _ { t r a i n } ^ { ( 2 ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 349, + 509, + 375 + ], + "score": 1.0, + "content": "and the loss vector as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 361, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 250, + 383 + ], + "score": 0.91, + "content": "\\vec { L } = \\{ L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) : x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { t r a i n } ^ { ( 2 ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 361, + 506, + 390 + ], + "score": 1.0, + "content": "train. With this, the change in the original task logits is bounded as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 102, + 330, + 509, + 390 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 387, + 371, + 422 + ], + "lines": [ + { + "bbox": [ + 240, + 387, + 371, + 422 + ], + "spans": [ + { + "bbox": [ + 240, + 387, + 371, + 422 + ], + "score": 0.94, + "content": "| \\Delta f _ { t } ( x ) | \\leq \\eta | | { \\vec { \\Theta } } ( x ) | | | { \\frac { \\partial { \\vec { L } } } { \\partial f } } | | .", + "type": "interline_equation", + "image_path": "5560d915c662208e0d52cb9477642c65c77fbf179501bc79b7d1de8d64727597.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 387, + 371, + 404.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 240, + 404.5, + 371, + 422.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "Thus representational similarity is necessary for forgetting to occur, and in this model, sufficiently", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "similar and sufficiently dissimilar tasks have minimal forgetting, while intermediate similar tasks", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 453, + 209, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 209, + 468 + ], + "score": 1.0, + "content": "have maximal forgetting.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 432, + 505, + 468 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 421, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 421, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 421, + 493 + ], + "score": 1.0, + "content": "6.3 CATASTROPHIC FORGETTING ACROSS VARYING TASK SIMILARITIES", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "The analytical result enables us to make precise a measure of task similarity, through using the feature", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 166, + 523 + ], + "score": 1.0, + "content": "overlap matrix", + "type": "text" + }, + { + "bbox": [ + 167, + 511, + 201, + 523 + ], + "score": 0.92, + "content": "\\Theta ( x ^ { \\prime } , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 511, + 280, + 523 + ], + "score": 1.0, + "content": ". Concretely, letting", + "type": "text" + }, + { + "bbox": [ + 280, + 511, + 297, + 522 + ], + "score": 0.9, + "content": "\\Theta _ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 511, + 427, + 523 + ], + "score": 1.0, + "content": "be the overlap matrix on Task 1,", + "type": "text" + }, + { + "bbox": [ + 427, + 511, + 444, + 522 + ], + "score": 0.87, + "content": "\\Theta _ { 2 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "on Task 2, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 522, + 257, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 123, + 533 + ], + "score": 0.89, + "content": "\\Theta _ { 1 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 522, + 257, + 534 + ], + "score": 1.0, + "content": "on Task 1 and Task 2, we define:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 499, + 505, + 534 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 538, + 406, + 569 + ], + "lines": [ + { + "bbox": [ + 204, + 538, + 406, + 569 + ], + "spans": [ + { + "bbox": [ + 204, + 538, + 406, + 569 + ], + "score": 0.92, + "content": "\\mathrm { T r a c e ~ o v e r l a p } = \\frac { \\mathrm { T r } \\left( \\Theta _ { 1 2 } \\Theta _ { 1 2 } ^ { T } \\right) } { \\sqrt { \\left( \\right)} \\mathrm { T r } \\left( \\Theta _ { 1 1 } \\Theta _ { 1 1 } ^ { T } \\right) \\mathrm { T r } \\left( \\Theta _ { 2 2 } \\Theta _ { 2 2 } ^ { T } \\right) } .", + "type": "interline_equation", + "image_path": "7fb62347b6c3e11263b8f79f914a23a2b0c512424d1d31faa6d0808e1137d433.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 204, + 538, + 406, + 553.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 204, + 553.5, + 406, + 569.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 506, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 586 + ], + "score": 1.0, + "content": "Trace overlap is directly analogous to CKA, where instead of comparing the similarity of different", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 585, + 494, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 494, + 597 + ], + "score": 1.0, + "content": "features on the same data, we are comparing the similarity of common features on different data.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 575, + 505, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 505, + 614 + ], + "score": 1.0, + "content": "Increasing task dissimilarity can help reduce forgetting In Lemma 1, we see that very dissimilar", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "tasks, with small overlap matrix, exhibit minimal forgetting. In Figure 9, we test this in the context", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "of sequential binary classification. We introduce an other category to the classification problem (of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "images from classes not included in the training tasks), which encourages the model to represent Task", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 646, + 488, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 488, + 659 + ], + "score": 1.0, + "content": "1 and Task 2 dissimilarly (lower trace overlap in Figure 9b), and reduces forgetting (Figure 9a).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 602, + 506, + 659 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 662, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 676 + ], + "score": 1.0, + "content": "Maximal forgetting at intermediate similarity To empirically study the conclusion from the model", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "that intermediate-similar tasks have maximal forgetting, we use mixup (Zhang et al., 2017), a standard", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "data augmentation technique, to interpolate between the two tasks. Specifically, we first train a model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 695, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 427, + 709 + ], + "score": 1.0, + "content": "on binary classification (with an other category to encourage dissimilarity) and for", + "type": "text" + }, + { + "bbox": [ + 427, + 695, + 466, + 708 + ], + "score": 0.92, + "content": "\\lambda \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 695, + 505, + 709 + ], + "score": 1.0, + "content": ", generate", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 706, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 706, + 201, + 723 + ], + "score": 1.0, + "content": "an mixup dataset D(λ)train", + "type": "text" + }, + { + "bbox": [ + 174, + 707, + 387, + 722 + ], + "score": 0.87, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( \\lambda ) } = \\{ ( \\lambda x ^ { ( 2 ) } + ( 1 - \\lambda ) x ^ { ( 1 ) } , \\lambda y ^ { ( 2 ) } + ( 1 - \\lambda ) y ^ { ( 1 ) } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 706, + 507, + 723 + ], + "score": 1.0, + "content": ". We compare model behavior", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "across a range of mixup fractions, finding that the task similarity as measured through the trace", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 492, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 508 + ], + "score": 1.0, + "content": "overlap between task1 and task2 varies monotonically with mixup fraction (Figure 10b), quantifying", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 247, + 517 + ], + "score": 1.0, + "content": "that varying the mixing parameter,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 248, + 505, + 255, + 515 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 255, + 505, + 505, + 517 + ], + "score": 1.0, + "content": ", tunes the degree of task similarity. Figure 10a shows that the", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 516, + 486, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 429, + 529 + ], + "score": 1.0, + "content": "most extreme forgetting happens for intermediate similarity (i.e. mixing fraction", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 429, + 516, + 480, + 527 + ], + "score": 0.84, + "content": "\\sim 0 . 1 - 0 . 2 ", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 480, + 516, + 486, + 529 + ], + "score": 1.0, + "content": ").", + "type": "text", + "cross_page": true + } + ], + "index": 23 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 662, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 84, + 481, + 184 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 84, + 481, + 184 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 84, + 481, + 184 + ], + "spans": [ + { + "bbox": [ + 119, + 84, + 481, + 184 + ], + "score": 0.968, + "type": "image", + "image_path": "6784833ddb4e91dbce15ca23e71963d5878b428c23395b6d834b86c3ad595e7e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 84, + 481, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 117.33333333333334, + 481, + 150.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 150.66666666666669, + 481, + 184.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 198, + 506, + 249 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "Figure 9: Adding an other category reduces forgetting and increases orthogonalization. (a) Models trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 209, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 506, + 220 + ], + "score": 1.0, + "content": "initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog exhibit", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "diminished forgetting when we add an other category to task 1 training. The other category contains randomly", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 227, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 242 + ], + "score": 1.0, + "content": "sampled images from all classes not present in the initial or final tasks. (b,c) The presence of the other category", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "reduces the similarity between the model’s representations of each task. Additional plots are in Appendix B.8.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 110, + 262, + 500, + 362 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 262, + 500, + 362 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 262, + 500, + 362 + ], + "spans": [ + { + "bbox": [ + 110, + 262, + 500, + 362 + ], + "score": 0.953, + "type": "image", + "image_path": "f7f09ed8fd905a5739a7af98293034d8a59fa72e4a4b35d72db19658113786f8.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 110, + 262, + 500, + 295.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 110, + 295.3333333333333, + 500, + 328.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 328.66666666666663, + 500, + 361.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 371, + 505, + 472 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 370, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 385 + ], + "score": 1.0, + "content": "Figure 10: Task similarity affects performance. (a) We measure initial task performance for sequential", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "score": 1.0, + "content": "binary classification as we dial the mixup fraction between 0.0, pure task 2 data, and 1.0, pure task 1 data.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 443, + 405 + ], + "score": 1.0, + "content": "Maximum forgetting (minimal accuracy) occurs at an intermediate value of the mixup fraction,", + "type": "text" + }, + { + "bbox": [ + 443, + 392, + 489, + 402 + ], + "score": 0.89, + "content": "\\sim 0 . 1 - 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 392, + 506, + 405 + ], + "score": 1.0, + "content": ". (b)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "We measure the similarity between task 1 and task 2 as we vary the mixup fraction, supporting the intuition", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "that interpolating mixup fraction interpolates task similarity. (c) Task 1 performance after task 2 training is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "score": 1.0, + "content": "plotted against task 1 versus task 2 representational similarity for animal and object classes in the sequential", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "binary classification tasks (solid) and four-way followed by binary classification tasks (hollow) of Figures 8a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 442, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 506, + 453 + ], + "score": 1.0, + "content": "and Figures 8b. In the case of sequential binary tasks both object and animal second tasks are represented", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "extremely similarly to the initial object task and the slightly less similar, object task, forgets more. For the four", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "way classification task, animals are represented dissimilarly to the second object task and cause less forgetting.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + } + ], + "index": 12.25 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 508 + ], + "score": 1.0, + "content": "overlap between task1 and task2 varies monotonically with mixup fraction (Figure 10b), quantifying", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 247, + 517 + ], + "score": 1.0, + "content": "that varying the mixing parameter,", + "type": "text" + }, + { + "bbox": [ + 248, + 505, + 255, + 515 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 505, + 505, + 517 + ], + "score": 1.0, + "content": ", tunes the degree of task similarity. Figure 10a shows that the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 516, + 486, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 429, + 529 + ], + "score": 1.0, + "content": "most extreme forgetting happens for intermediate similarity (i.e. mixing fraction", + "type": "text" + }, + { + "bbox": [ + 429, + 516, + 480, + 527 + ], + "score": 0.84, + "content": "\\sim 0 . 1 - 0 . 2 ", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 516, + 486, + 529 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "Semantic similarity revisited Armed with these quantitative measures, we revisit the task semantics", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "puzzle in Figure 8 where (i) for sequential binary classification, semantically more similar categories", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "were forgotten less, while in (ii) four class classification followed by binary classification and input", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "score": 1.0, + "content": "distribution shift, similar classes were forgotten more. Figure 10c (solid dots) shows that in (i) the net", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "didn’t represent objects and animals differently, and the slightly more similar task is forgotten less.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "But in (ii) Figure 10c (hollow dots), the model encodes animals and objects differently, minimizing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 599, + 493, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 493, + 612 + ], + "score": 1.0, + "content": "forgetting on the dissimilar tasks, consistent with maximal forgetting for intermediate similarity.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 626, + 195, + 639 + ], + "lines": [ + { + "bbox": [ + 104, + 624, + 198, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 198, + 642 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "score": 1.0, + "content": "In this paper, we have studied some of the fundamental properties of catastrophic forgetting, answering", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "important open questions on how it arises and interacts with hidden representations, mitigation", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "strategies and task semantics. By using representational analysis techniques, we demonstrated that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "forgetting is not evenly distributed throughout the deep learning model but concentrated at the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 686, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 507, + 702 + ], + "score": 1.0, + "content": "higher layers, which change significantly and erase earlier task subspaces through sequential training.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "Consistent with this, we find mitigation methods all stabilize higher layer representations, but vary", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "on whether they enforce more feature reuse, or store tasks in orthogonal subspaces. Informed by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "these insights, we formulate an analytic model to investigate connections between forgetting and task", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + } + ], + "page_idx": 8, + "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": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 84, + 481, + 184 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 84, + 481, + 184 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 84, + 481, + 184 + ], + "spans": [ + { + "bbox": [ + 119, + 84, + 481, + 184 + ], + "score": 0.968, + "type": "image", + "image_path": "6784833ddb4e91dbce15ca23e71963d5878b428c23395b6d834b86c3ad595e7e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 84, + 481, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 117.33333333333334, + 481, + 150.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 150.66666666666669, + 481, + 184.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 198, + 506, + 249 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "Figure 9: Adding an other category reduces forgetting and increases orthogonalization. (a) Models trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 209, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 506, + 220 + ], + "score": 1.0, + "content": "initially on classifying two objects: airplane/automobile, and subsequently on two animals: deer/dog exhibit", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "diminished forgetting when we add an other category to task 1 training. The other category contains randomly", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 227, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 242 + ], + "score": 1.0, + "content": "sampled images from all classes not present in the initial or final tasks. (b,c) The presence of the other category", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "reduces the similarity between the model’s representations of each task. Additional plots are in Appendix B.8.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 110, + 262, + 500, + 362 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 262, + 500, + 362 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 262, + 500, + 362 + ], + "spans": [ + { + "bbox": [ + 110, + 262, + 500, + 362 + ], + "score": 0.953, + "type": "image", + "image_path": "f7f09ed8fd905a5739a7af98293034d8a59fa72e4a4b35d72db19658113786f8.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 110, + 262, + 500, + 295.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 110, + 295.3333333333333, + 500, + 328.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 328.66666666666663, + 500, + 361.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 371, + 505, + 472 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 370, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 385 + ], + "score": 1.0, + "content": "Figure 10: Task similarity affects performance. (a) We measure initial task performance for sequential", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 506, + 394 + ], + "score": 1.0, + "content": "binary classification as we dial the mixup fraction between 0.0, pure task 2 data, and 1.0, pure task 1 data.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 443, + 405 + ], + "score": 1.0, + "content": "Maximum forgetting (minimal accuracy) occurs at an intermediate value of the mixup fraction,", + "type": "text" + }, + { + "bbox": [ + 443, + 392, + 489, + 402 + ], + "score": 0.89, + "content": "\\sim 0 . 1 - 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 392, + 506, + 405 + ], + "score": 1.0, + "content": ". (b)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "We measure the similarity between task 1 and task 2 as we vary the mixup fraction, supporting the intuition", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "that interpolating mixup fraction interpolates task similarity. (c) Task 1 performance after task 2 training is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "score": 1.0, + "content": "plotted against task 1 versus task 2 representational similarity for animal and object classes in the sequential", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "binary classification tasks (solid) and four-way followed by binary classification tasks (hollow) of Figures 8a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 442, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 506, + 453 + ], + "score": 1.0, + "content": "and Figures 8b. In the case of sequential binary tasks both object and animal second tasks are represented", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "extremely similarly to the initial object task and the slightly less similar, object task, forgets more. For the four", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "way classification task, animals are represented dissimilarly to the second object task and cause less forgetting.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + } + ], + "index": 12.25 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 527 + ], + "lines": [], + "index": 22, + "bbox_fs": [ + 105, + 492, + 506, + 529 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "Semantic similarity revisited Armed with these quantitative measures, we revisit the task semantics", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "puzzle in Figure 8 where (i) for sequential binary classification, semantically more similar categories", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "were forgotten less, while in (ii) four class classification followed by binary classification and input", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "score": 1.0, + "content": "distribution shift, similar classes were forgotten more. Figure 10c (solid dots) shows that in (i) the net", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "didn’t represent objects and animals differently, and the slightly more similar task is forgotten less.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "But in (ii) Figure 10c (hollow dots), the model encodes animals and objects differently, minimizing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 599, + 493, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 493, + 612 + ], + "score": 1.0, + "content": "forgetting on the dissimilar tasks, consistent with maximal forgetting for intermediate similarity.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 532, + 506, + 612 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 626, + 195, + 639 + ], + "lines": [ + { + "bbox": [ + 104, + 624, + 198, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 198, + 642 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 658 + ], + "score": 1.0, + "content": "In this paper, we have studied some of the fundamental properties of catastrophic forgetting, answering", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "important open questions on how it arises and interacts with hidden representations, mitigation", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "strategies and task semantics. By using representational analysis techniques, we demonstrated that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "forgetting is not evenly distributed throughout the deep learning model but concentrated at the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 686, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 507, + 702 + ], + "score": 1.0, + "content": "higher layers, which change significantly and erase earlier task subspaces through sequential training.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "Consistent with this, we find mitigation methods all stabilize higher layer representations, but vary", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "on whether they enforce more feature reuse, or store tasks in orthogonal subspaces. Informed by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "these insights, we formulate an analytic model to investigate connections between forgetting and task", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "semantics. This gives a quantitative measure of task similarity and shows that intermediate similarity", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "in sequential tasks leads to maximal forgetting. In summary, these results help provide a foundation", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "for a deeper understanding of catastrophic forgetting and suggest new approaches for developing and", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 232, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 232, + 127 + ], + "score": 1.0, + "content": "measuring mitigation methods.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 643, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "semantics. This gives a quantitative measure of task similarity and shows that intermediate similarity", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "in sequential tasks leads to maximal forgetting. In summary, these results help provide a foundation", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "for a deeper understanding of catastrophic forgetting and suggest new approaches for developing and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 232, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 232, + 127 + ], + "score": 1.0, + "content": "measuring mitigation methods.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 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": [ + 108, + 82, + 504, + 126 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 83, + 506, + 127 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 506, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "Naveen Arivazhagan, Ankur Bapna, Orhan Firat, Dmitry Lepikhin, Melvin Johnson, Maxim Krikun,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "Mia Xu Chen, Yuan Cao, George Foster, Colin Cherry, et al. Massively multilingual neural machine", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 121, + 475, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 475, + 134 + ], + "score": 1.0, + "content": "translation in the wild: Findings and challenges. arXiv preprint arXiv:1907.05019, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 104, + 140, + 504, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 506, + 154 + ], + "score": 1.0, + "content": "Dumitru Erhan, Y. Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer features of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 391, + 163 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 391, + 163 + ], + "score": 1.0, + "content": "a deep network. Technical Report, Univeriste de Montr ´ eal ´ , 01 2009.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 169, + 403, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 403, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 403, + 183 + ], + "score": 1.0, + "content": "Dar Gilboa and Guy Gur-Ari. Wider networks learn better features, 2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 211 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 507, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 507, + 202 + ], + "score": 1.0, + "content": "Raphael Gontijo-Lopes, Sylvia J Smullin, Ekin D Cubuk, and Ethan Dyer. Affinity and diversity:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 199, + 471, + 211 + ], + "spans": [ + { + "bbox": [ + 115, + 199, + 471, + 211 + ], + "score": 1.0, + "content": "Quantifying mechanisms of data augmentation. arXiv preprint arXiv:2002.08973, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 507, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "Ian J Goodfellow, Mehdi Mirza, Da Xiao, Aaron Courville, and Yoshua Bengio. An empirical investi-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 115, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "gation of catastrophic forgetting in gradient-based neural networks. arXiv preprint arXiv:1312.6211,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 239, + 142, + 251 + ], + "spans": [ + { + "bbox": [ + 115, + 239, + 142, + 251 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "Akhilesh Gotmare, Nitish Shirish Keskar, Caiming Xiong, and Richard Socher. A closer look", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 270, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 116, + 270, + 505, + 281 + ], + "score": 1.0, + "content": "at deep learning heuristics: Learning rate restarts, warmup and distillation. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 280, + 219, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 219, + 290 + ], + "score": 1.0, + "content": "arXiv:1810.13243, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 504, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "Arthur Gretton, Olivier Bousquet, Alex Smola, and Bernhard Scholkopf. Measuring statistical ¨", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 308, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 505, + 323 + ], + "score": 1.0, + "content": "dependence with hilbert-schmidt norms. In International conference on algorithmic learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 320, + 255, + 333 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 255, + 333 + ], + "score": 1.0, + "content": "theory, pp. 63–77. Springer, 2005.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 338, + 504, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 353 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 350, + 192, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 350, + 192, + 362 + ], + "score": 1.0, + "content": "recognition, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 367, + 505, + 391 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q. Weinberger. Densely connected", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 379, + 239, + 391 + ], + "spans": [ + { + "bbox": [ + 116, + 379, + 239, + 391 + ], + "score": 1.0, + "content": "convolutional networks, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 504, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "Arthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and ´", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 408, + 331, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 331, + 421 + ], + "score": 1.0, + "content": "generalization in neural networks. In NeurIPS, 2018.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 506, + 439 + ], + "score": 1.0, + "content": "Ronald Kemker, Marc McClure, Angelina Abitino, Tyler L Hayes, and Christopher Kanan. Mea-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "suring catastrophic forgetting in neural networks. In Thirty-second AAAI conference on artificial", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 449, + 193, + 461 + ], + "spans": [ + { + "bbox": [ + 117, + 449, + 193, + 461 + ], + "score": 1.0, + "content": "intelligence, 2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 506, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "score": 1.0, + "content": "James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 115, + 477, + 506, + 492 + ], + "score": 1.0, + "content": "Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "catastrophic forgetting in neural networks. Proceedings of the national academy of sciences, 114", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 500, + 210, + 512 + ], + "spans": [ + { + "bbox": [ + 116, + 500, + 210, + 512 + ], + "score": 1.0, + "content": "(13):3521–3526, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 518, + 504, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "Simon Kornblith, Mohammad Norouzi, Honglak Lee, and Geoffrey Hinton. Similarity of neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 530, + 417, + 542 + ], + "spans": [ + { + "bbox": [ + 115, + 530, + 417, + 542 + ], + "score": 1.0, + "content": "network representations revisited. arXiv preprint arXiv:1905.00414, 2019.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 105, + 547, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "Sneha Reddy Kudugunta, Ankur Bapna, Isaac Caswell, Naveen Arivazhagan, and Orhan Firat.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 559, + 500, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 559, + 500, + 572 + ], + "score": 1.0, + "content": "Investigating multilingual nmt representations at scale. arXiv preprint arXiv:1909.02197, 2019.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 577, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 591 + ], + "score": 1.0, + "content": "Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "catastrophic forgetting by incremental moment matching. In Advances in neural information", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 600, + 287, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 287, + 612 + ], + "score": 1.0, + "content": "processing systems, pp. 4652–4662, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "Xilai Li, Yingbo Zhou, Tianfu Wu, Richard Socher, and Caiming Xiong. Learn to grow: A", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 116, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "continual structure learning framework for overcoming catastrophic forgetting. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 640, + 219, + 650 + ], + "spans": [ + { + "bbox": [ + 116, + 640, + 219, + 650 + ], + "score": 1.0, + "content": "arXiv:1904.00310, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 507, + 671 + ], + "score": 1.0, + "content": "Jean M. Mandler and Laraine McDonough. Concept formation in infancy. Cogni-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 668, + 507, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 507, + 682 + ], + "score": 1.0, + "content": "tive Development, 8(3):291 – 318, 1993. ISSN 0885-2014. doi: https://doi.org/10.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "score": 1.0, + "content": "1016/S0885-2014(93)80003-C. URL http://www.sciencedirect.com/science/", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 691, + 295, + 703 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 295, + 703 + ], + "score": 1.0, + "content": "article/pii/S088520149380003C.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "score": 1.0, + "content": "Amil Merchant, Elahe Rahimtoroghi, Ellie Pavlick, and Ian Tenney. What happens to bert embeddings", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 223, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 223, + 732 + ], + "score": 1.0, + "content": "during fine-tuning?, 2020.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "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": "title", + "bbox": [ + 108, + 82, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 506, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "Naveen Arivazhagan, Ankur Bapna, Orhan Firat, Dmitry Lepikhin, Melvin Johnson, Maxim Krikun,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "Mia Xu Chen, Yuan Cao, George Foster, Colin Cherry, et al. Massively multilingual neural machine", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 121, + 475, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 475, + 134 + ], + "score": 1.0, + "content": "translation in the wild: Findings and challenges. arXiv preprint arXiv:1907.05019, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 99, + 506, + 134 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 140, + 504, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 506, + 154 + ], + "score": 1.0, + "content": "Dumitru Erhan, Y. Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer features of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 391, + 163 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 391, + 163 + ], + "score": 1.0, + "content": "a deep network. Technical Report, Univeriste de Montr ´ eal ´ , 01 2009.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 139, + 506, + 163 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 169, + 403, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 403, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 403, + 183 + ], + "score": 1.0, + "content": "Dar Gilboa and Guy Gur-Ari. Wider networks learn better features, 2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 168, + 403, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 211 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 507, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 507, + 202 + ], + "score": 1.0, + "content": "Raphael Gontijo-Lopes, Sylvia J Smullin, Ekin D Cubuk, and Ethan Dyer. Affinity and diversity:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 199, + 471, + 211 + ], + "spans": [ + { + "bbox": [ + 115, + 199, + 471, + 211 + ], + "score": 1.0, + "content": "Quantifying mechanisms of data augmentation. arXiv preprint arXiv:2002.08973, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 187, + 507, + 211 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 507, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "Ian J Goodfellow, Mehdi Mirza, Da Xiao, Aaron Courville, and Yoshua Bengio. An empirical investi-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 115, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "gation of catastrophic forgetting in gradient-based neural networks. arXiv preprint arXiv:1312.6211,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 239, + 142, + 251 + ], + "spans": [ + { + "bbox": [ + 115, + 239, + 142, + 251 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 217, + 506, + 251 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "Akhilesh Gotmare, Nitish Shirish Keskar, Caiming Xiong, and Richard Socher. A closer look", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 270, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 116, + 270, + 505, + 281 + ], + "score": 1.0, + "content": "at deep learning heuristics: Learning rate restarts, warmup and distillation. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 280, + 219, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 219, + 290 + ], + "score": 1.0, + "content": "arXiv:1810.13243, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 258, + 505, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 504, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "Arthur Gretton, Olivier Bousquet, Alex Smola, and Bernhard Scholkopf. Measuring statistical ¨", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 308, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 505, + 323 + ], + "score": 1.0, + "content": "dependence with hilbert-schmidt norms. In International conference on algorithmic learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 320, + 255, + 333 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 255, + 333 + ], + "score": 1.0, + "content": "theory, pp. 63–77. Springer, 2005.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 298, + 505, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 338, + 504, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 353 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 350, + 192, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 350, + 192, + 362 + ], + "score": 1.0, + "content": "recognition, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 336, + 506, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 367, + 505, + 391 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q. Weinberger. Densely connected", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 379, + 239, + 391 + ], + "spans": [ + { + "bbox": [ + 116, + 379, + 239, + 391 + ], + "score": 1.0, + "content": "convolutional networks, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 367, + 505, + 391 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 504, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "Arthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and ´", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 408, + 331, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 331, + 421 + ], + "score": 1.0, + "content": "generalization in neural networks. In NeurIPS, 2018.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 397, + 505, + 421 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 506, + 439 + ], + "score": 1.0, + "content": "Ronald Kemker, Marc McClure, Angelina Abitino, Tyler L Hayes, and Christopher Kanan. Mea-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "suring catastrophic forgetting in neural networks. In Thirty-second AAAI conference on artificial", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 449, + 193, + 461 + ], + "spans": [ + { + "bbox": [ + 117, + 449, + 193, + 461 + ], + "score": 1.0, + "content": "intelligence, 2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 427, + 506, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 506, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "score": 1.0, + "content": "James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 115, + 477, + 506, + 492 + ], + "score": 1.0, + "content": "Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "catastrophic forgetting in neural networks. Proceedings of the national academy of sciences, 114", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 500, + 210, + 512 + ], + "spans": [ + { + "bbox": [ + 116, + 500, + 210, + 512 + ], + "score": 1.0, + "content": "(13):3521–3526, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 467, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 518, + 504, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "Simon Kornblith, Mohammad Norouzi, Honglak Lee, and Geoffrey Hinton. Similarity of neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 530, + 417, + 542 + ], + "spans": [ + { + "bbox": [ + 115, + 530, + 417, + 542 + ], + "score": 1.0, + "content": "network representations revisited. arXiv preprint arXiv:1905.00414, 2019.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 518, + 505, + 542 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 547, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "Sneha Reddy Kudugunta, Ankur Bapna, Isaac Caswell, Naveen Arivazhagan, and Orhan Firat.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 559, + 500, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 559, + 500, + 572 + ], + "score": 1.0, + "content": "Investigating multilingual nmt representations at scale. arXiv preprint arXiv:1909.02197, 2019.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 547, + 506, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 577, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 591 + ], + "score": 1.0, + "content": "Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 116, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "catastrophic forgetting by incremental moment matching. In Advances in neural information", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 600, + 287, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 287, + 612 + ], + "score": 1.0, + "content": "processing systems, pp. 4652–4662, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 576, + 505, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "Xilai Li, Yingbo Zhou, Tianfu Wu, Richard Socher, and Caiming Xiong. Learn to grow: A", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 116, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "continual structure learning framework for overcoming catastrophic forgetting. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 640, + 219, + 650 + ], + "spans": [ + { + "bbox": [ + 116, + 640, + 219, + 650 + ], + "score": 1.0, + "content": "arXiv:1904.00310, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 617, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 507, + 671 + ], + "score": 1.0, + "content": "Jean M. Mandler and Laraine McDonough. Concept formation in infancy. Cogni-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 668, + 507, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 507, + 682 + ], + "score": 1.0, + "content": "tive Development, 8(3):291 – 318, 1993. ISSN 0885-2014. doi: https://doi.org/10.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "score": 1.0, + "content": "1016/S0885-2014(93)80003-C. URL http://www.sciencedirect.com/science/", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 691, + 295, + 703 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 295, + 703 + ], + "score": 1.0, + "content": "article/pii/S088520149380003C.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 657, + 507, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "score": 1.0, + "content": "Amil Merchant, Elahe Rahimtoroghi, Ellie Pavlick, and Ian Tenney. What happens to bert embeddings", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 223, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 223, + 732 + ], + "score": 1.0, + "content": "during fine-tuning?, 2020.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 707, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ari Morcos, Maithra Raghu, and Samy Bengio. Insights on representational similarity in neural", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "score": 1.0, + "content": "networks with canonical correlation. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 191, + 115 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 191, + 115 + ], + "score": 1.0, + "content": "5727–5736, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 122, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 136 + ], + "score": 1.0, + "content": "Behnam Neyshabur, Hanie Sedghi, and Chiyuan Zhang. What is being transferred in transfer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 183, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 183, + 146 + ], + "score": 1.0, + "content": "learning?, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "score": 1.0, + "content": "Cuong V Nguyen, Alessandro Achille, Michael Lam, Tal Hassner, Vijay Mahadevan, and Stefano", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "Soatto. Toward understanding catastrophic forgetting in continual learning. arXiv preprint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 173, + 219, + 185 + ], + "spans": [ + { + "bbox": [ + 115, + 173, + 219, + 185 + ], + "score": 1.0, + "content": "arXiv:1908.01091, 2019.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 191, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "Stephan Rabanser, Stephan Gunnemann, and Zachary Lipton. Failing loudly: an empirical study of ¨", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 201, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 114, + 201, + 507, + 217 + ], + "score": 1.0, + "content": "methods for detecting dataset shift. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 214, + 190, + 225 + ], + "spans": [ + { + "bbox": [ + 116, + 214, + 190, + 225 + ], + "score": 1.0, + "content": "1394–1406, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 105, + 231, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 245 + ], + "score": 1.0, + "content": "Maithra Raghu and Eric Schmidt. A survey of deep learning for scientific discovery. arXiv preprint", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 243, + 218, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 243, + 218, + 254 + ], + "score": 1.0, + "content": "arXiv:2003.11755, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 260, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "Maithra Raghu, Justin Gilmer, Jason Yosinski, and Jascha Sohl-Dickstein. Svcca: Singular vector", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 116, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "canonical correlation analysis for deep learning dynamics and interpretability. In Advances in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 282, + 369, + 296 + ], + "spans": [ + { + "bbox": [ + 115, + 282, + 369, + 296 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 6076–6085, 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 105, + 301, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "score": 1.0, + "content": "Roger Ratcliff. Connectionist models of recognition memory: constraints imposed by learning and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 312, + 375, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 312, + 375, + 324 + ], + "score": 1.0, + "content": "forgetting functions. Psychological review, 97 2:285–308, 1990.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 330, + 504, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "Benjamin Recht, Rebecca Roelofs, Ludwig Schmidt, and Vaishaal Shankar. Do imagenet classifiers", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 342, + 378, + 353 + ], + "spans": [ + { + "bbox": [ + 115, + 342, + 378, + 353 + ], + "score": 1.0, + "content": "generalize to imagenet? arXiv preprint arXiv:1902.10811, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "Hippolyt Ritter, Aleksandar Botev, and David Barber. Online structured laplace approximations for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 370, + 507, + 384 + ], + "spans": [ + { + "bbox": [ + 115, + 370, + 507, + 384 + ], + "score": 1.0, + "content": "overcoming catastrophic forgetting. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 381, + 191, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 191, + 393 + ], + "score": 1.0, + "content": "3738–3748, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 105, + 399, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 507, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 507, + 413 + ], + "score": 1.0, + "content": "Anthony Robins. Catastrophic forgetting, rehearsal and pseudorehearsal. Connection Science, 7(2):", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 410, + 180, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 180, + 421 + ], + "score": 1.0, + "content": "123–146, 1995.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "David Rolnick, Arun Ahuja, Jonathan Schwarz, Timothy Lillicrap, and Gregory Wayne. Experience", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "replay for continual learning. In Advances in Neural Information Processing Systems, pp. 348–358,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 449, + 143, + 463 + ], + "spans": [ + { + "bbox": [ + 115, + 449, + 143, + 463 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 506, + 514 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 481 + ], + "score": 1.0, + "content": "Andrew M. Saxe, James L. McClelland, and Surya Ganguli. A mathematical theory of semantic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 480, + 506, + 492 + ], + "score": 1.0, + "content": "development in deep neural networks. Proceedings of the National Academy of Sciences, 116", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 490, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 116, + 490, + 507, + 504 + ], + "score": 1.0, + "content": "(23):11537–11546, 2019. ISSN 0027-8424. doi: 10.1073/pnas.1820226116. URL https:", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 502, + 331, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 502, + 331, + 514 + ], + "score": 1.0, + "content": "//www.pnas.org/content/116/23/11537.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 519, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 531, + 254, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 254, + 543 + ], + "score": 1.0, + "content": "preprint arXiv:1511.05952, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 104, + 549, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "score": 1.0, + "content": "Joan Serra, Didac Suris, Marius Miron, and Alexandros Karatzoglou. Overcoming catastrophic `", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 445, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 445, + 572 + ], + "score": 1.0, + "content": "forgetting with hard attention to the task. arXiv preprint arXiv:1801.01423, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 104, + 578, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 592 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 589, + 192, + 601 + ], + "spans": [ + { + "bbox": [ + 115, + 589, + 192, + 601 + ], + "score": 1.0, + "content": "recognition, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 607, + 506, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "Jasper Snoek, Yaniv Ovadia, Emily Fertig, Balaji Lakshminarayanan, Sebastian Nowozin, D Sculley,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 114, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "Joshua Dillon, Jie Ren, and Zachary Nado. Can you trust your model’s uncertainty? evaluating", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 507, + 642 + ], + "score": 1.0, + "content": "predictive uncertainty under dataset shift. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 640, + 217, + 652 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 217, + 652 + ], + "score": 1.0, + "content": "pp. 13969–13980, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 108, + 658, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "Jonathan M Stokes, Kevin Yang, Kyle Swanson, Wengong Jin, Andres Cubillos-Ruiz, Nina M", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "Donghia, Craig R MacNair, Shawn French, Lindsey A Carfrae, Zohar Bloom-Ackerman, et al. A", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 423, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 423, + 694 + ], + "score": 1.0, + "content": "deep learning approach to antibiotic discovery. Cell, 180(4):688–702, 2020.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 507, + 712 + ], + "score": 1.0, + "content": "Mariya Toneva, Alessandro Sordoni, Remi Tachet des Combes, Adam Trischler, Yoshua Bengio,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "and Geoffrey J. Gordon. An empirical study of example forgetting during deep neural network", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 720, + 277, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 277, + 732 + ], + "score": 1.0, + "content": "learning. ArXiv, abs/1812.05159, 2019.", + "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, + 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, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ari Morcos, Maithra Raghu, and Samy Bengio. Insights on representational similarity in neural", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "score": 1.0, + "content": "networks with canonical correlation. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 191, + 115 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 191, + 115 + ], + "score": 1.0, + "content": "5727–5736, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 115 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 122, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 136 + ], + "score": 1.0, + "content": "Behnam Neyshabur, Hanie Sedghi, and Chiyuan Zhang. What is being transferred in transfer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 183, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 183, + 146 + ], + "score": 1.0, + "content": "learning?, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 121, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "score": 1.0, + "content": "Cuong V Nguyen, Alessandro Achille, Michael Lam, Tal Hassner, Vijay Mahadevan, and Stefano", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "Soatto. Toward understanding catastrophic forgetting in continual learning. arXiv preprint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 173, + 219, + 185 + ], + "spans": [ + { + "bbox": [ + 115, + 173, + 219, + 185 + ], + "score": 1.0, + "content": "arXiv:1908.01091, 2019.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 151, + 506, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 191, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "Stephan Rabanser, Stephan Gunnemann, and Zachary Lipton. Failing loudly: an empirical study of ¨", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 201, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 114, + 201, + 507, + 217 + ], + "score": 1.0, + "content": "methods for detecting dataset shift. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 214, + 190, + 225 + ], + "spans": [ + { + "bbox": [ + 116, + 214, + 190, + 225 + ], + "score": 1.0, + "content": "1394–1406, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 191, + 507, + 225 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 231, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 245 + ], + "score": 1.0, + "content": "Maithra Raghu and Eric Schmidt. A survey of deep learning for scientific discovery. arXiv preprint", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 243, + 218, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 243, + 218, + 254 + ], + "score": 1.0, + "content": "arXiv:2003.11755, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 230, + 505, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 260, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "Maithra Raghu, Justin Gilmer, Jason Yosinski, and Jascha Sohl-Dickstein. Svcca: Singular vector", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 116, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "canonical correlation analysis for deep learning dynamics and interpretability. In Advances in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 282, + 369, + 296 + ], + "spans": [ + { + "bbox": [ + 115, + 282, + 369, + 296 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 6076–6085, 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 260, + 506, + 296 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 301, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "score": 1.0, + "content": "Roger Ratcliff. Connectionist models of recognition memory: constraints imposed by learning and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 312, + 375, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 312, + 375, + 324 + ], + "score": 1.0, + "content": "forgetting functions. Psychological review, 97 2:285–308, 1990.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 300, + 505, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 330, + 504, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "Benjamin Recht, Rebecca Roelofs, Ludwig Schmidt, and Vaishaal Shankar. Do imagenet classifiers", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 342, + 378, + 353 + ], + "spans": [ + { + "bbox": [ + 115, + 342, + 378, + 353 + ], + "score": 1.0, + "content": "generalize to imagenet? arXiv preprint arXiv:1902.10811, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 329, + 505, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "Hippolyt Ritter, Aleksandar Botev, and David Barber. Online structured laplace approximations for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 370, + 507, + 384 + ], + "spans": [ + { + "bbox": [ + 115, + 370, + 507, + 384 + ], + "score": 1.0, + "content": "overcoming catastrophic forgetting. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 381, + 191, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 191, + 393 + ], + "score": 1.0, + "content": "3738–3748, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 359, + 507, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 399, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 507, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 507, + 413 + ], + "score": 1.0, + "content": "Anthony Robins. Catastrophic forgetting, rehearsal and pseudorehearsal. Connection Science, 7(2):", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 410, + 180, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 180, + 421 + ], + "score": 1.0, + "content": "123–146, 1995.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 398, + 507, + 421 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "David Rolnick, Arun Ahuja, Jonathan Schwarz, Timothy Lillicrap, and Gregory Wayne. Experience", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "replay for continual learning. In Advances in Neural Information Processing Systems, pp. 348–358,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 449, + 143, + 463 + ], + "spans": [ + { + "bbox": [ + 115, + 449, + 143, + 463 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 428, + 506, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 506, + 514 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 481 + ], + "score": 1.0, + "content": "Andrew M. Saxe, James L. McClelland, and Surya Ganguli. A mathematical theory of semantic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 480, + 506, + 492 + ], + "score": 1.0, + "content": "development in deep neural networks. Proceedings of the National Academy of Sciences, 116", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 490, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 116, + 490, + 507, + 504 + ], + "score": 1.0, + "content": "(23):11537–11546, 2019. ISSN 0027-8424. doi: 10.1073/pnas.1820226116. URL https:", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 502, + 331, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 502, + 331, + 514 + ], + "score": 1.0, + "content": "//www.pnas.org/content/116/23/11537.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 468, + 507, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 519, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 531, + 254, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 254, + 543 + ], + "score": 1.0, + "content": "preprint arXiv:1511.05952, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 518, + 506, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 549, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 563 + ], + "score": 1.0, + "content": "Joan Serra, Didac Suris, Marius Miron, and Alexandros Karatzoglou. Overcoming catastrophic `", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 445, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 445, + 572 + ], + "score": 1.0, + "content": "forgetting with hard attention to the task. arXiv preprint arXiv:1801.01423, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 547, + 505, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 578, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 592 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 589, + 192, + 601 + ], + "spans": [ + { + "bbox": [ + 115, + 589, + 192, + 601 + ], + "score": 1.0, + "content": "recognition, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 576, + 505, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 607, + 506, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "score": 1.0, + "content": "Jasper Snoek, Yaniv Ovadia, Emily Fertig, Balaji Lakshminarayanan, Sebastian Nowozin, D Sculley,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 114, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "Joshua Dillon, Jie Ren, and Zachary Nado. Can you trust your model’s uncertainty? evaluating", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 507, + 642 + ], + "score": 1.0, + "content": "predictive uncertainty under dataset shift. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 640, + 217, + 652 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 217, + 652 + ], + "score": 1.0, + "content": "pp. 13969–13980, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 606, + 507, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 658, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "Jonathan M Stokes, Kevin Yang, Kyle Swanson, Wengong Jin, Andres Cubillos-Ruiz, Nina M", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "Donghia, Craig R MacNair, Shawn French, Lindsey A Carfrae, Zohar Bloom-Ackerman, et al. A", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 423, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 423, + 694 + ], + "score": 1.0, + "content": "deep learning approach to antibiotic discovery. Cell, 180(4):688–702, 2020.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 658, + 505, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 507, + 712 + ], + "score": 1.0, + "content": "Mariya Toneva, Alessandro Sordoni, Remi Tachet des Combes, Adam Trischler, Yoshua Bengio,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "and Geoffrey J. Gordon. An empirical study of example forgetting during deep neural network", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 720, + 277, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 277, + 732 + ], + "score": 1.0, + "content": "learning. ArXiv, abs/1812.05159, 2019.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 696, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 80, + 507, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 388, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 388, + 108 + ], + "score": 1.0, + "content": "Similarity analysis of contextual word representation models, 2020.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 507, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 507, + 126 + ], + "score": 1.0, + "content": "Shijie Wu, Alexis Conneau, Haoran Li, Luke Zettlemoyer, and Veselin Stoyanov. Emerging cross-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 478, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 478, + 137 + ], + "score": 1.0, + "content": "lingual structure in pretrained language models. arXiv preprint arXiv:1911.01464, 2019a.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "Yuxin Wu, Alexander Kirillov, Francisco Massa, Wan-Yen Lo, and Ross Girshick. Detectron2.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 426, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 426, + 166 + ], + "score": 1.0, + "content": "https://github.com/facebookresearch/detectron2, 2019b.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "Friedemann Zenke, Ben Poole, and Surya Ganguli. Continual learning through synaptic intelligence.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 507, + 196 + ], + "score": 1.0, + "content": "In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 3987–", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 215, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 215, + 208 + ], + "score": 1.0, + "content": "3995. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 224, + 355, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 355, + 237 + ], + "score": 1.0, + "content": "risk minimization. arXiv preprint arXiv:1710.09412, 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + } + ], + "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, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 104, + 80, + 507, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass.", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 93, + 388, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 388, + 108 + ], + "score": 1.0, + "content": "Similarity analysis of contextual word representation models, 2020.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 112, + 507, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 507, + 126 + ], + "score": 1.0, + "content": "Shijie Wu, Alexis Conneau, Haoran Li, Luke Zettlemoyer, and Veselin Stoyanov. Emerging cross-", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 123, + 478, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 478, + 137 + ], + "score": 1.0, + "content": "lingual structure in pretrained language models. arXiv preprint arXiv:1911.01464, 2019a.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "Yuxin Wu, Alexander Kirillov, Francisco Massa, Wan-Yen Lo, and Ross Girshick. Detectron2.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 153, + 426, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 426, + 166 + ], + "score": 1.0, + "content": "https://github.com/facebookresearch/detectron2, 2019b.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "Friedemann Zenke, Ben Poole, and Surya Ganguli. Continual learning through synaptic intelligence.", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 183, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 507, + 196 + ], + "score": 1.0, + "content": "In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 3987–", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 215, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 215, + 208 + ], + "score": 1.0, + "content": "3995. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 224, + 355, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 355, + 237 + ], + "score": 1.0, + "content": "risk minimization. arXiv preprint arXiv:1710.09412, 2017.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + } + ], + "index": 5, + "bbox_fs": [ + 105, + 83, + 507, + 237 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 181, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 183, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 183, + 97 + ], + "score": 1.0, + "content": "A METHODS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 107, + 172, + 119 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 173, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 173, + 120 + ], + "score": 1.0, + "content": "A.1 MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 128, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "score": 1.0, + "content": "Here we detail the model architectures used in this study. We use standard versions of the popular", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 139, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 506, + 152 + ], + "score": 1.0, + "content": "VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015), and DenseNet (Huang et al., 2016)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "score": 1.0, + "content": "architectures. These architectures have varying structural properties (e.g., presence or absence of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 174 + ], + "score": 1.0, + "content": "skip connections), meaning observed behaviors common to all of them are likely to be robust and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 164, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 164, + 185 + ], + "score": 1.0, + "content": "generalizable.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 188, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 506, + 202 + ], + "score": 1.0, + "content": "VGG: The VGG model we use consists of five stages. Each stage comprises a convolutional layer, a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 199, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 104, + 199, + 505, + 213 + ], + "score": 1.0, + "content": "ReLU nonlinearity, another convolutional layer, another ReLU nonlinearity, and finally a MaxPool", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "score": 1.0, + "content": "layer. Each convolution uses a 3-by-3 kernel with unit stride and padding. The MaxPool operation", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "uses a 2-by-2 kernel with stride 2. The number of channels by stage is 16, 32, 64, 128, 128. We do", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 271, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 271, + 245 + ], + "score": 1.0, + "content": "not use batch normalization in the VGG.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 503, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "We test two different version of the VGG: one with just the stages described above, and another with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 398, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 398, + 273 + ], + "score": 1.0, + "content": "two fully connected layers, of width 1024, after the convolutional layers.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "ResNet: Our ResNet consists of a initial 3-by-3 convolutional layer with 32 channels, followed by a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "2d batch norm operation. This initial pair is followed by four stages, each consisting of two residual", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "blocks per stage. Each block consists of two conv-BN-ReLU sequences, with a shortcut layer directly", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 311, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 323 + ], + "score": 1.0, + "content": "routing the input to add to the final ReLU preactivations. All convolutions are 3-by-3, with unit", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "padding. In all but the first block, the first convolutional layer downsamples, with a stride of 2; the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "score": 1.0, + "content": "second convolutional layer maintains stride of 1. The number of channels doubles each block, starting", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 344, + 306, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 306, + 355 + ], + "score": 1.0, + "content": "from a base level of 32 channels in the first block.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "score": 1.0, + "content": "DenseNet: Like ResNet, our DenseNet consists of an initial 3-by-3 convolution, followed by four", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "dense blocks. In between each pair of dense blocks is a transition block. Following the final dense", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 381, + 507, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 507, + 395 + ], + "score": 1.0, + "content": "block is a batch-normalization, ReLU, and average pooling operation to generate the final features.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "Our DenseNet is characterized by a growth rate of 12 and compression rate of 0.5. The first stage of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 402, + 483, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 483, + 418 + ], + "score": 1.0, + "content": "the DenseNet features 6 blocks, with the number of blocks doubling in each subsequent stage.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 177, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 180, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 180, + 444 + ], + "score": 1.0, + "content": "A.2 TRAINING", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 413, + 465 + ], + "score": 1.0, + "content": "All networks are trained using cross-entropy loss with SGD with momentum", + "type": "text" + }, + { + "bbox": [ + 414, + 453, + 445, + 464 + ], + "score": 0.86, + "content": "\\beta = 0 . 9 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 452, + 506, + 465 + ], + "score": 1.0, + "content": "), using a batch", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "size 128. We do not use learning-rate schedules here, leaving that investigation to future work. To", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "better correspond with practical situations, however, we choose a learning rate and total number of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "epochs such that interpolation (of the training set) occurs. For the split CIFAR-10 task, this typically", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "corresponds to training for 30 epochs per task with a learning rate of 0.01 (VGG), 0.03 (ResNet), and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 507, + 521 + ], + "score": 1.0, + "content": "0.03 (DenseNet). We use weight decay with strength 1e-4, and do not apply any data augmentation.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 516, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 104, + 516, + 507, + 532 + ], + "score": 1.0, + "content": "For the split CIFAR-100 task, we usually train for 60 or 90 epochs per task, with other the other", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 529, + 304, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 304, + 541 + ], + "score": 1.0, + "content": "hyperparameters identical to the CIFAR-10 case.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 109, + 546, + 503, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "For multi-head networks (used in split CIFAR-10), each head is initialized with weights drawn from", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 249, + 569 + ], + "score": 1.0, + "content": "a normal distribution with variance", + "type": "text" + }, + { + "bbox": [ + 249, + 557, + 271, + 569 + ], + "score": 0.93, + "content": "1 / n _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 557, + 302, + 569 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 302, + 559, + 315, + 569 + ], + "score": 0.87, + "content": "n _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "is the number of features; biases are initialized", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 568, + 472, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 472, + 581 + ], + "score": 1.0, + "content": "to zero. We do not copy the parameters from the old head to the new when switching tasks.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "For the split CIFAR-10 setup, the plots shown in the main text refer to experiments in which the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "score": 1.0, + "content": "initial task was classifying between the five categories airplane, automobile, bird, cat, and deer;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "and the second task comprising dog, frog, horse, ship, and truck. To verify that our results were not", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "unique to the particular split of CIFAR-10 we chose, we used three other splits: airplane, bird, deer,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "frog, ship (task 1) and automobile, cat, dog, horse, truck (task 2); automobile, cat, dog, horse, truck", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "score": 1.0, + "content": "(task 1) and airplane, bird, deer, frog, ship (task 2); and dog, frog, horse, ship, truck (task 1) and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 651, + 289, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 289, + 663 + ], + "score": 1.0, + "content": "airplane, automobile, bird, cat, deer (task 2).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 304, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 307, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 307, + 691 + ], + "score": 1.0, + "content": "A.3 CIFAR-100 DISTRIBUTION SHIFT TASK", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "Here we provide the concrete example of the CIFAR-100 distribution-shift task shown in Figure 1.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "This is meant to capture it the scenario where catastrophic forgetting arises through input distribution", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "shift — the input data to the neural network undergoes a distribution shift, causing the neural network", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 181, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 183, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 183, + 97 + ], + "score": 1.0, + "content": "A METHODS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 107, + 172, + 119 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 173, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 173, + 120 + ], + "score": 1.0, + "content": "A.1 MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 128, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "score": 1.0, + "content": "Here we detail the model architectures used in this study. We use standard versions of the popular", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 139, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 506, + 152 + ], + "score": 1.0, + "content": "VGG (Simonyan & Zisserman, 2014), ResNet (He et al., 2015), and DenseNet (Huang et al., 2016)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "score": 1.0, + "content": "architectures. These architectures have varying structural properties (e.g., presence or absence of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 174 + ], + "score": 1.0, + "content": "skip connections), meaning observed behaviors common to all of them are likely to be robust and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 164, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 164, + 185 + ], + "score": 1.0, + "content": "generalizable.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 128, + 506, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 188, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 506, + 202 + ], + "score": 1.0, + "content": "VGG: The VGG model we use consists of five stages. Each stage comprises a convolutional layer, a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 199, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 104, + 199, + 505, + 213 + ], + "score": 1.0, + "content": "ReLU nonlinearity, another convolutional layer, another ReLU nonlinearity, and finally a MaxPool", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "score": 1.0, + "content": "layer. Each convolution uses a 3-by-3 kernel with unit stride and padding. The MaxPool operation", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "uses a 2-by-2 kernel with stride 2. The number of channels by stage is 16, 32, 64, 128, 128. We do", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 271, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 271, + 245 + ], + "score": 1.0, + "content": "not use batch normalization in the VGG.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 188, + 506, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 503, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "We test two different version of the VGG: one with just the stages described above, and another with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 398, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 398, + 273 + ], + "score": 1.0, + "content": "two fully connected layers, of width 1024, after the convolutional layers.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 249, + 505, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "ResNet: Our ResNet consists of a initial 3-by-3 convolutional layer with 32 channels, followed by a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "2d batch norm operation. This initial pair is followed by four stages, each consisting of two residual", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "blocks per stage. Each block consists of two conv-BN-ReLU sequences, with a shortcut layer directly", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 311, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 323 + ], + "score": 1.0, + "content": "routing the input to add to the final ReLU preactivations. All convolutions are 3-by-3, with unit", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "padding. In all but the first block, the first convolutional layer downsamples, with a stride of 2; the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "score": 1.0, + "content": "second convolutional layer maintains stride of 1. The number of channels doubles each block, starting", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 344, + 306, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 306, + 355 + ], + "score": 1.0, + "content": "from a base level of 32 channels in the first block.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 277, + 506, + 355 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "score": 1.0, + "content": "DenseNet: Like ResNet, our DenseNet consists of an initial 3-by-3 convolution, followed by four", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "dense blocks. In between each pair of dense blocks is a transition block. Following the final dense", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 381, + 507, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 507, + 395 + ], + "score": 1.0, + "content": "block is a batch-normalization, ReLU, and average pooling operation to generate the final features.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "Our DenseNet is characterized by a growth rate of 12 and compression rate of 0.5. The first stage of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 402, + 483, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 483, + 418 + ], + "score": 1.0, + "content": "the DenseNet features 6 blocks, with the number of blocks doubling in each subsequent stage.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 361, + 507, + 418 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 177, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 180, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 180, + 444 + ], + "score": 1.0, + "content": "A.2 TRAINING", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 413, + 465 + ], + "score": 1.0, + "content": "All networks are trained using cross-entropy loss with SGD with momentum", + "type": "text" + }, + { + "bbox": [ + 414, + 453, + 445, + 464 + ], + "score": 0.86, + "content": "\\beta = 0 . 9 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 452, + 506, + 465 + ], + "score": 1.0, + "content": "), using a batch", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "size 128. We do not use learning-rate schedules here, leaving that investigation to future work. To", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "better correspond with practical situations, however, we choose a learning rate and total number of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "epochs such that interpolation (of the training set) occurs. For the split CIFAR-10 task, this typically", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "corresponds to training for 30 epochs per task with a learning rate of 0.01 (VGG), 0.03 (ResNet), and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 507, + 521 + ], + "score": 1.0, + "content": "0.03 (DenseNet). We use weight decay with strength 1e-4, and do not apply any data augmentation.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 516, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 104, + 516, + 507, + 532 + ], + "score": 1.0, + "content": "For the split CIFAR-100 task, we usually train for 60 or 90 epochs per task, with other the other", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 529, + 304, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 304, + 541 + ], + "score": 1.0, + "content": "hyperparameters identical to the CIFAR-10 case.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 452, + 507, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 546, + 503, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "For multi-head networks (used in split CIFAR-10), each head is initialized with weights drawn from", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 249, + 569 + ], + "score": 1.0, + "content": "a normal distribution with variance", + "type": "text" + }, + { + "bbox": [ + 249, + 557, + 271, + 569 + ], + "score": 0.93, + "content": "1 / n _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 557, + 302, + 569 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 302, + 559, + 315, + 569 + ], + "score": 0.87, + "content": "n _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "is the number of features; biases are initialized", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 568, + 472, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 472, + 581 + ], + "score": 1.0, + "content": "to zero. We do not copy the parameters from the old head to the new when switching tasks.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 546, + 505, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "For the split CIFAR-10 setup, the plots shown in the main text refer to experiments in which the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "score": 1.0, + "content": "initial task was classifying between the five categories airplane, automobile, bird, cat, and deer;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "and the second task comprising dog, frog, horse, ship, and truck. To verify that our results were not", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "unique to the particular split of CIFAR-10 we chose, we used three other splits: airplane, bird, deer,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "frog, ship (task 1) and automobile, cat, dog, horse, truck (task 2); automobile, cat, dog, horse, truck", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "score": 1.0, + "content": "(task 1) and airplane, bird, deer, frog, ship (task 2); and dog, frog, horse, ship, truck (task 1) and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 651, + 289, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 289, + 663 + ], + "score": 1.0, + "content": "airplane, automobile, bird, cat, deer (task 2).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 585, + 506, + 663 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 304, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 307, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 307, + 691 + ], + "score": 1.0, + "content": "A.3 CIFAR-100 DISTRIBUTION SHIFT TASK", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "Here we provide the concrete example of the CIFAR-100 distribution-shift task shown in Figure 1.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "This is meant to capture it the scenario where catastrophic forgetting arises through input distribution", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "shift — the input data to the neural network undergoes a distribution shift, causing the neural network", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "to perform poorly on earlier data distributions (Arivazhagan et al., 2019; Snoek et al., 2019; Rabanser", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "et al., 2019). As mentioned in the main text, in this task, the model must identify, for CIFAR-100", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "images, which of the 20 superclasses the image belongs to. The difference in tasks comes from the", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "difference in subclasses which make up the superclass. As an example, we take the five superclasses", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 457, + 138 + ], + "score": 1.0, + "content": "aquatic mammals, fruits and vegetables, household electrical devices, trees, and vehicles-", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 457, + 126, + 467, + 137 + ], + "score": 0.81, + "content": "I ^ { \\hat { 1 } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 467, + 126, + 505, + 138 + ], + "score": 1.0, + "content": ", with the", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "corresponding task 1 subclasses (1) dolphin, (2) apple, (3) lamp, (4) maple tree, and (5) bicycle and", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "task 2 subclasses (1) whale, (2) orange, (3) television, (4) willow, and (5) motorcycle. A key feature", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "of this setting is that task-specific components (including multiple heads) are precluded since the", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "model does not know the task identity either at inference or time. While we do not explore it here,", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "this setup also allows for continuously varying the data distribution, another situation likely to occur", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 192, + 154, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 154, + 205 + ], + "score": 1.0, + "content": "in practice.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 47, + "bbox_fs": [ + 106, + 699, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "to perform poorly on earlier data distributions (Arivazhagan et al., 2019; Snoek et al., 2019; Rabanser", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "et al., 2019). As mentioned in the main text, in this task, the model must identify, for CIFAR-100", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "images, which of the 20 superclasses the image belongs to. The difference in tasks comes from the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "difference in subclasses which make up the superclass. As an example, we take the five superclasses", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 457, + 138 + ], + "score": 1.0, + "content": "aquatic mammals, fruits and vegetables, household electrical devices, trees, and vehicles-", + "type": "text" + }, + { + "bbox": [ + 457, + 126, + 467, + 137 + ], + "score": 0.81, + "content": "I ^ { \\hat { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 126, + 505, + 138 + ], + "score": 1.0, + "content": ", with the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "corresponding task 1 subclasses (1) dolphin, (2) apple, (3) lamp, (4) maple tree, and (5) bicycle and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "task 2 subclasses (1) whale, (2) orange, (3) television, (4) willow, and (5) motorcycle. A key feature", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "of this setting is that task-specific components (including multiple heads) are precluded since the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "model does not know the task identity either at inference or time. While we do not explore it here,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "this setup also allows for continuously varying the data distribution, another situation likely to occur", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 192, + 154, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 154, + 205 + ], + "score": 1.0, + "content": "in practice.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 108, + 222, + 441, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 442, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 442, + 234 + ], + "score": 1.0, + "content": "A.4 REPRESENTATIONAL SIMILARITY AND CENTERED KERNEL ALIGNMENT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 244, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "To understand properties of neural network hidden representations, we turn to representational", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "similarity algorithms. A key challenge in analyzing neural network hidden representations is the lack", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "of alignment — no natural correspondence exists between hidden neurons across different neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "networks. Representational similarity algorithms propose different ways to overcome this — one", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "score": 1.0, + "content": "of the first such algorithms, SVCCA (Raghu et al., 2017; Morcos et al., 2018), uses a Canonical", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 299, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 507, + 312 + ], + "score": 1.0, + "content": "Correlation Analysis (CCA) step to align neurons (enable invariance) through linear transformations.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "We use centered kernel alignment (CKA), proposed by Kornblith et al. (2019), to measure the similar-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "ity between two representations of the same dataset which is invariant to orthogonal transformation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 436, + 352 + ], + "score": 1.0, + "content": "and isotropic scaling (but not arbitrary linear transformations). Given a dataset of", + "type": "text" + }, + { + "bbox": [ + 437, + 340, + 447, + 349 + ], + "score": 0.69, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "examples, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 350, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 226, + 362 + ], + "score": 1.0, + "content": "compare two representations", + "type": "text" + }, + { + "bbox": [ + 227, + 350, + 237, + 360 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 350, + 255, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 255, + 350, + 265, + 360 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 350, + 506, + 362 + ], + "score": 1.0, + "content": "of that dataset (say, from two different neural networks or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 369, + 373 + ], + "score": 1.0, + "content": "from the same neural network with different parameters), with", + "type": "text" + }, + { + "bbox": [ + 370, + 362, + 382, + 371 + ], + "score": 0.86, + "content": "n _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 360, + 402, + 373 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 402, + 362, + 414, + 372 + ], + "score": 0.87, + "content": "n _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 360, + 506, + 373 + ], + "score": 1.0, + "content": "features respectively;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 137, + 384 + ], + "score": 1.0, + "content": "that is,", + "type": "text" + }, + { + "bbox": [ + 138, + 371, + 192, + 381 + ], + "score": 0.92, + "content": "X \\in \\mathbb { R } ^ { m \\times n _ { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 369, + 213, + 384 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 371, + 266, + 381 + ], + "score": 0.91, + "content": "Y \\in \\mathbb { R } ^ { m \\times n _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 369, + 506, + 384 + ], + "score": 1.0, + "content": ". Then the linear-kernel CKA similarity between the two", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 383, + 215, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 215, + 396 + ], + "score": 1.0, + "content": "representations is given by", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 403, + 381, + 432 + ], + "lines": [ + { + "bbox": [ + 230, + 403, + 381, + 432 + ], + "spans": [ + { + "bbox": [ + 230, + 403, + 381, + 432 + ], + "score": 0.94, + "content": "\\mathrm { C K A } ( X , Y ) = { \\frac { | | X ^ { T } Y | | _ { F } ^ { 2 } } { | | X ^ { T } X | | _ { F } ^ { 2 } | | Y ^ { T } Y | | _ { F } ^ { 2 } } }", + "type": "interline_equation", + "image_path": "64f3ffea5fbcf33063fe5ee2b4b7af43bffb11f768520c54eb86ddd34960eda8.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 403, + 381, + 417.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 230, + 417.5, + 381, + 432.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 449, + 233, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 233, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 233, + 461 + ], + "score": 1.0, + "content": "A.5 SUBSPACE SIMILARITY", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 380, + 484 + ], + "score": 1.0, + "content": "For the subspace similarity computations we pick a fixed threshold", + "type": "text" + }, + { + "bbox": [ + 380, + 472, + 387, + 482 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "for all layers so that the first", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 114, + 492 + ], + "score": 0.74, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 482, + 237, + 494 + ], + "score": 1.0, + "content": "principal components capture", + "type": "text" + }, + { + "bbox": [ + 237, + 482, + 257, + 493 + ], + "score": 0.89, + "content": "\\mathrm { \\bar { 8 0 \\% } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 482, + 421, + 494 + ], + "score": 1.0, + "content": "of variance in the final layer. This gives", + "type": "text" + }, + { + "bbox": [ + 421, + 483, + 447, + 493 + ], + "score": 0.9, + "content": "k = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "for Resnet on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 494, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 153, + 505 + ], + "score": 1.0, + "content": "CIFAR-10,", + "type": "text" + }, + { + "bbox": [ + 154, + 494, + 179, + 504 + ], + "score": 0.89, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 494, + 289, + 505 + ], + "score": 1.0, + "content": "for Resnet on CIFAR-100,", + "type": "text" + }, + { + "bbox": [ + 289, + 494, + 314, + 504 + ], + "score": 0.89, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 494, + 428, + 505 + ], + "score": 1.0, + "content": "for VGG on CIFAR-10 and", + "type": "text" + }, + { + "bbox": [ + 428, + 494, + 453, + 504 + ], + "score": 0.89, + "content": "k = 7", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 494, + 505, + 505 + ], + "score": 1.0, + "content": "for VGG on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 505, + 474, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 172, + 515 + ], + "score": 1.0, + "content": "CIFAR-100 and", + "type": "text" + }, + { + "bbox": [ + 173, + 505, + 198, + 515 + ], + "score": 0.9, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 505, + 328, + 515 + ], + "score": 1.0, + "content": "for DenseNet on CIFAR-10 and", + "type": "text" + }, + { + "bbox": [ + 329, + 505, + 354, + 515 + ], + "score": 0.9, + "content": "k = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 505, + 474, + 515 + ], + "score": 1.0, + "content": "for DenseNet on CIFAR-100.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "image", + "bbox": [ + 80, + 531, + 546, + 658 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 80, + 531, + 546, + 658 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 80, + 531, + 546, + 658 + ], + "spans": [ + { + "bbox": [ + 80, + 531, + 546, + 658 + ], + "score": 0.548, + "type": "image", + "image_path": "cb405a4306c40a91294d386db635da43d561bc8adf93279d58ee48b5de102b43.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 80, + 531, + 546, + 573.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 80, + 573.3333333333334, + 546, + 615.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 80, + 615.6666666666667, + 546, + 658.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 672, + 505, + 692 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "Figure 11: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 680, + 172, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 172, + 694 + ], + "score": 1.0, + "content": "in higher layers.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "index": 34.25 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 721, + 456, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 457, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 457, + 733 + ], + "score": 1.0, + "content": "1The CIFAR-100 dataset features two vehicle superclasses, denoted vehicles-1 and vehicles-2", + "type": "text" + } + ] + } + ] + }, + { + "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, + 203 + ], + "lines": [], + "index": 5, + "bbox_fs": [ + 105, + 82, + 506, + 205 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 222, + 441, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 442, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 442, + 234 + ], + "score": 1.0, + "content": "A.4 REPRESENTATIONAL SIMILARITY AND CENTERED KERNEL ALIGNMENT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 244, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "To understand properties of neural network hidden representations, we turn to representational", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "similarity algorithms. A key challenge in analyzing neural network hidden representations is the lack", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "of alignment — no natural correspondence exists between hidden neurons across different neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "networks. Representational similarity algorithms propose different ways to overcome this — one", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 300 + ], + "score": 1.0, + "content": "of the first such algorithms, SVCCA (Raghu et al., 2017; Morcos et al., 2018), uses a Canonical", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 299, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 507, + 312 + ], + "score": 1.0, + "content": "Correlation Analysis (CCA) step to align neurons (enable invariance) through linear transformations.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 244, + 507, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "We use centered kernel alignment (CKA), proposed by Kornblith et al. (2019), to measure the similar-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "ity between two representations of the same dataset which is invariant to orthogonal transformation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 436, + 352 + ], + "score": 1.0, + "content": "and isotropic scaling (but not arbitrary linear transformations). Given a dataset of", + "type": "text" + }, + { + "bbox": [ + 437, + 340, + 447, + 349 + ], + "score": 0.69, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "examples, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 350, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 226, + 362 + ], + "score": 1.0, + "content": "compare two representations", + "type": "text" + }, + { + "bbox": [ + 227, + 350, + 237, + 360 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 350, + 255, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 255, + 350, + 265, + 360 + ], + "score": 0.78, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 350, + 506, + 362 + ], + "score": 1.0, + "content": "of that dataset (say, from two different neural networks or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 369, + 373 + ], + "score": 1.0, + "content": "from the same neural network with different parameters), with", + "type": "text" + }, + { + "bbox": [ + 370, + 362, + 382, + 371 + ], + "score": 0.86, + "content": "n _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 360, + 402, + 373 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 402, + 362, + 414, + 372 + ], + "score": 0.87, + "content": "n _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 360, + 506, + 373 + ], + "score": 1.0, + "content": "features respectively;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 137, + 384 + ], + "score": 1.0, + "content": "that is,", + "type": "text" + }, + { + "bbox": [ + 138, + 371, + 192, + 381 + ], + "score": 0.92, + "content": "X \\in \\mathbb { R } ^ { m \\times n _ { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 369, + 213, + 384 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 371, + 266, + 381 + ], + "score": 0.91, + "content": "Y \\in \\mathbb { R } ^ { m \\times n _ { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 369, + 506, + 384 + ], + "score": 1.0, + "content": ". Then the linear-kernel CKA similarity between the two", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 383, + 215, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 215, + 396 + ], + "score": 1.0, + "content": "representations is given by", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 316, + 506, + 396 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 403, + 381, + 432 + ], + "lines": [ + { + "bbox": [ + 230, + 403, + 381, + 432 + ], + "spans": [ + { + "bbox": [ + 230, + 403, + 381, + 432 + ], + "score": 0.94, + "content": "\\mathrm { C K A } ( X , Y ) = { \\frac { | | X ^ { T } Y | | _ { F } ^ { 2 } } { | | X ^ { T } X | | _ { F } ^ { 2 } | | Y ^ { T } Y | | _ { F } ^ { 2 } } }", + "type": "interline_equation", + "image_path": "64f3ffea5fbcf33063fe5ee2b4b7af43bffb11f768520c54eb86ddd34960eda8.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 403, + 381, + 417.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 230, + 417.5, + 381, + 432.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 449, + 233, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 233, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 233, + 461 + ], + "score": 1.0, + "content": "A.5 SUBSPACE SIMILARITY", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 380, + 484 + ], + "score": 1.0, + "content": "For the subspace similarity computations we pick a fixed threshold", + "type": "text" + }, + { + "bbox": [ + 380, + 472, + 387, + 482 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "for all layers so that the first", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 114, + 492 + ], + "score": 0.74, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 482, + 237, + 494 + ], + "score": 1.0, + "content": "principal components capture", + "type": "text" + }, + { + "bbox": [ + 237, + 482, + 257, + 493 + ], + "score": 0.89, + "content": "\\mathrm { \\bar { 8 0 \\% } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 482, + 421, + 494 + ], + "score": 1.0, + "content": "of variance in the final layer. This gives", + "type": "text" + }, + { + "bbox": [ + 421, + 483, + 447, + 493 + ], + "score": 0.9, + "content": "k = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "for Resnet on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 494, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 153, + 505 + ], + "score": 1.0, + "content": "CIFAR-10,", + "type": "text" + }, + { + "bbox": [ + 154, + 494, + 179, + 504 + ], + "score": 0.89, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 494, + 289, + 505 + ], + "score": 1.0, + "content": "for Resnet on CIFAR-100,", + "type": "text" + }, + { + "bbox": [ + 289, + 494, + 314, + 504 + ], + "score": 0.89, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 494, + 428, + 505 + ], + "score": 1.0, + "content": "for VGG on CIFAR-10 and", + "type": "text" + }, + { + "bbox": [ + 428, + 494, + 453, + 504 + ], + "score": 0.89, + "content": "k = 7", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 494, + 505, + 505 + ], + "score": 1.0, + "content": "for VGG on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 505, + 474, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 172, + 515 + ], + "score": 1.0, + "content": "CIFAR-100 and", + "type": "text" + }, + { + "bbox": [ + 173, + 505, + 198, + 515 + ], + "score": 0.9, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 505, + 328, + 515 + ], + "score": 1.0, + "content": "for DenseNet on CIFAR-10 and", + "type": "text" + }, + { + "bbox": [ + 329, + 505, + 354, + 515 + ], + "score": 0.9, + "content": "k = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 505, + 474, + 515 + ], + "score": 1.0, + "content": "for DenseNet on CIFAR-100.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 471, + 506, + 515 + ] + }, + { + "type": "image", + "bbox": [ + 80, + 531, + 546, + 658 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 80, + 531, + 546, + 658 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 80, + 531, + 546, + 658 + ], + "spans": [ + { + "bbox": [ + 80, + 531, + 546, + 658 + ], + "score": 0.548, + "type": "image", + "image_path": "cb405a4306c40a91294d386db635da43d561bc8adf93279d58ee48b5de102b43.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 80, + 531, + 546, + 573.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 80, + 573.3333333333334, + 546, + 615.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 80, + 615.6666666666667, + 546, + 658.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 672, + 505, + 692 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "Figure 11: Subspace similarity analysis shows feature reuse in lower layers and Task 1 subspace erasure", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 680, + 172, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 172, + 694 + ], + "score": 1.0, + "content": "in higher layers.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "index": 34.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 235, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 235, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 235, + 95 + ], + "score": 1.0, + "content": "A.6 MITIGATION METHODS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 102, + 293, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 294, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 294, + 115 + ], + "score": 1.0, + "content": "A.6.1 ELASTIC WEIGHT CONSOLIDATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 504, + 147 + ], + "lines": [ + { + "bbox": [ + 107, + 122, + 504, + 133 + ], + "spans": [ + { + "bbox": [ + 107, + 122, + 504, + 133 + ], + "score": 1.0, + "content": "Developed by Kirkpatrick et al. in 2017, elastic weight consolidation (EWC) adds a term to the loss", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 133, + 370, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 345, + 147 + ], + "score": 1.0, + "content": "function of the new task to get the regularized loss function", + "type": "text" + }, + { + "bbox": [ + 346, + 133, + 366, + 147 + ], + "score": 0.92, + "content": "\\mathcal { L } ( \\vec { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 134, + 370, + 147 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 150, + 392, + 181 + ], + "lines": [ + { + "bbox": [ + 219, + 150, + 392, + 181 + ], + "spans": [ + { + "bbox": [ + 219, + 150, + 392, + 181 + ], + "score": 0.95, + "content": "\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } F _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "7738d8883272e0945f00bf3a03556f8e5d11b18a8f681f0f28faec91860b6a4a.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 150, + 392, + 165.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 219, + 165.5, + 392, + 181.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 186, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 132, + 199 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 133, + 185, + 140, + 197 + ], + "score": 0.82, + "content": "\\vec { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 186, + 253, + 199 + ], + "score": 1.0, + "content": "are the model parameters;", + "type": "text" + }, + { + "bbox": [ + 253, + 185, + 281, + 199 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { B } ( \\vec { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 186, + 496, + 199 + ], + "score": 1.0, + "content": "is the unregularized loss function of the new task;", + "type": "text" + }, + { + "bbox": [ + 497, + 187, + 504, + 198 + ], + "score": 0.66, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 373, + 210 + ], + "score": 1.0, + "content": "is a parameter which controls the strength of the regularization;", + "type": "text" + }, + { + "bbox": [ + 373, + 199, + 384, + 209 + ], + "score": 0.88, + "content": "F _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "is the diagonal of the Fisher", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 333, + 225 + ], + "score": 1.0, + "content": "information matrix with respect to the parameters; and", + "type": "text" + }, + { + "bbox": [ + 334, + 209, + 345, + 223 + ], + "score": 0.9, + "content": "\\vec { \\theta } _ { A } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 210, + 506, + 225 + ], + "score": 1.0, + "content": "are the model parameters after having", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "been trained on task A. We compute the Fisher information via using the squared gradients of the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 232, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 507, + 246 + ], + "score": 1.0, + "content": "log-likelihood, averaged over a subset of the trainset. We use the empirical Fisher as an approximation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "Following standard practice, in our experiments we estimate the Fisher information using a subset", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "of the full training data; for all of our models on CIFAR-10, 200 samples proved sufficient to be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "reasonably confident of a converged estimate. We do not include a delay between the start of second-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "task training and the application of the EWC penalty. Naturally, we do not apply the EWC penalty to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 293, + 316, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 316, + 307 + ], + "score": 1.0, + "content": "the parameters of the head in the multi-head setting.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 317, + 253, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 254, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 254, + 330 + ], + "score": 1.0, + "content": "A.6.2 SYNAPTIC INTELLIGENCE", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 108, + 336, + 504, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "Developed by Zenke et al. (2017), synaptic intelligence, like EWC, is a structural regularization", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 348, + 394, + 360 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 394, + 360 + ], + "score": 1.0, + "content": "method which adds an elastic penalty to the second task’s loss function:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 362, + 392, + 393 + ], + "lines": [ + { + "bbox": [ + 219, + 362, + 392, + 393 + ], + "spans": [ + { + "bbox": [ + 219, + 362, + 392, + 393 + ], + "score": 0.94, + "content": "\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } C _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "2dfff9c926eeb6d9fa33ca0d0d8bcf0e7abfc1985e3fec48909c31dcd8b984d5.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 362, + 392, + 377.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 219, + 377.5, + 392, + 393.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "The difference from EWC is in how the elastic penalties are calculated. In synaptic intelligence, for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "each parameter, a contribution to the loss is tracked via the product of the gradient of the loss and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "score": 1.0, + "content": "the stepwise change in the parameter value. The coefficient is then constructed such that changing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "score": 1.0, + "content": "the parameter by an amount equal to its change during task-1 training will incur a loss penalty equal", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "to the change in loss from the initial value. Our implementation does not differ from the standard", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 458, + 174, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 174, + 470 + ], + "score": 1.0, + "content": "implementation.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 108, + 484, + 269, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 271, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 271, + 498 + ], + "score": 1.0, + "content": "B SUPPORTING EXPERIMENTS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Here we present experiments omitted from the main text for space, which help flesh out some of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "conclusions. This section is roughly organized with layerwise experiments first, followed by semantic", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 531, + 160, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 160, + 545 + ], + "score": 1.0, + "content": "experiments.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 255, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 255, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 255, + 568 + ], + "score": 1.0, + "content": "B.1 LAYER RESET EXPERIMENTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "score": 1.0, + "content": "As described in the main text, we perform an additional experiment to check that deeper repre-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "sentations get corrupted more than shallower representations. This experiment, corresponding to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "Figure 12, shows that when layers are reset to their pre-forgetting value, performance improves more", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 610, + 294, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 294, + 622 + ], + "score": 1.0, + "content": "dramatically when deeper layers are reset first.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 107, + 634, + 233, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 234, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 234, + 647 + ], + "score": 1.0, + "content": "B.2 TASK-SPECIFIC STAGES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "Our observations that forgetting is driven primarily by the higher layers suggests that in a setting", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "with known task identities (i.e. in the split CIFAR-10 setting described in the main text but not the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "CIFAR-100 distribution-shift setting), making the deeper stages of the network task-specific would", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "likely mitigate a large portion of forgetting on the old tasks while still allowing for full performance", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "on the new tasks. In particular, since the changes in deeper represntations are much greater than", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "their shallower counterparts, only a few task-specific stages should be necessary to get significant", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "performance increases on the old task. For each of the three network architectures we considered", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + } + ], + "page_idx": 15, + "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": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 235, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 235, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 235, + 95 + ], + "score": 1.0, + "content": "A.6 MITIGATION METHODS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 102, + 293, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 294, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 294, + 115 + ], + "score": 1.0, + "content": "A.6.1 ELASTIC WEIGHT CONSOLIDATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 504, + 147 + ], + "lines": [ + { + "bbox": [ + 107, + 122, + 504, + 133 + ], + "spans": [ + { + "bbox": [ + 107, + 122, + 504, + 133 + ], + "score": 1.0, + "content": "Developed by Kirkpatrick et al. in 2017, elastic weight consolidation (EWC) adds a term to the loss", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 133, + 370, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 345, + 147 + ], + "score": 1.0, + "content": "function of the new task to get the regularized loss function", + "type": "text" + }, + { + "bbox": [ + 346, + 133, + 366, + 147 + ], + "score": 0.92, + "content": "\\mathcal { L } ( \\vec { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 134, + 370, + 147 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 122, + 504, + 147 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 150, + 392, + 181 + ], + "lines": [ + { + "bbox": [ + 219, + 150, + 392, + 181 + ], + "spans": [ + { + "bbox": [ + 219, + 150, + 392, + 181 + ], + "score": 0.95, + "content": "\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } F _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "7738d8883272e0945f00bf3a03556f8e5d11b18a8f681f0f28faec91860b6a4a.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 150, + 392, + 165.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 219, + 165.5, + 392, + 181.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 186, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 132, + 199 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 133, + 185, + 140, + 197 + ], + "score": 0.82, + "content": "\\vec { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 186, + 253, + 199 + ], + "score": 1.0, + "content": "are the model parameters;", + "type": "text" + }, + { + "bbox": [ + 253, + 185, + 281, + 199 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { B } ( \\vec { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 186, + 496, + 199 + ], + "score": 1.0, + "content": "is the unregularized loss function of the new task;", + "type": "text" + }, + { + "bbox": [ + 497, + 187, + 504, + 198 + ], + "score": 0.66, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 373, + 210 + ], + "score": 1.0, + "content": "is a parameter which controls the strength of the regularization;", + "type": "text" + }, + { + "bbox": [ + 373, + 199, + 384, + 209 + ], + "score": 0.88, + "content": "F _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "is the diagonal of the Fisher", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 333, + 225 + ], + "score": 1.0, + "content": "information matrix with respect to the parameters; and", + "type": "text" + }, + { + "bbox": [ + 334, + 209, + 345, + 223 + ], + "score": 0.9, + "content": "\\vec { \\theta } _ { A } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 210, + 506, + 225 + ], + "score": 1.0, + "content": "are the model parameters after having", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "been trained on task A. We compute the Fisher information via using the squared gradients of the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 232, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 507, + 246 + ], + "score": 1.0, + "content": "log-likelihood, averaged over a subset of the trainset. We use the empirical Fisher as an approximation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 185, + 507, + 246 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "Following standard practice, in our experiments we estimate the Fisher information using a subset", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "of the full training data; for all of our models on CIFAR-10, 200 samples proved sufficient to be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "reasonably confident of a converged estimate. We do not include a delay between the start of second-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "task training and the application of the EWC penalty. Naturally, we do not apply the EWC penalty to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 293, + 316, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 316, + 307 + ], + "score": 1.0, + "content": "the parameters of the head in the multi-head setting.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 250, + 506, + 307 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 317, + 253, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 254, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 254, + 330 + ], + "score": 1.0, + "content": "A.6.2 SYNAPTIC INTELLIGENCE", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 108, + 336, + 504, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "Developed by Zenke et al. (2017), synaptic intelligence, like EWC, is a structural regularization", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 348, + 394, + 360 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 394, + 360 + ], + "score": 1.0, + "content": "method which adds an elastic penalty to the second task’s loss function:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 336, + 505, + 360 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 362, + 392, + 393 + ], + "lines": [ + { + "bbox": [ + 219, + 362, + 392, + 393 + ], + "spans": [ + { + "bbox": [ + 219, + 362, + 392, + 393 + ], + "score": 0.94, + "content": "\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } C _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "2dfff9c926eeb6d9fa33ca0d0d8bcf0e7abfc1985e3fec48909c31dcd8b984d5.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 362, + 392, + 377.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 219, + 377.5, + 392, + 393.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "The difference from EWC is in how the elastic penalties are calculated. In synaptic intelligence, for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "each parameter, a contribution to the loss is tracked via the product of the gradient of the loss and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 439 + ], + "score": 1.0, + "content": "the stepwise change in the parameter value. The coefficient is then constructed such that changing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "score": 1.0, + "content": "the parameter by an amount equal to its change during task-1 training will incur a loss penalty equal", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "to the change in loss from the initial value. Our implementation does not differ from the standard", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 458, + 174, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 174, + 470 + ], + "score": 1.0, + "content": "implementation.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 403, + 506, + 470 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 484, + 269, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 271, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 271, + 498 + ], + "score": 1.0, + "content": "B SUPPORTING EXPERIMENTS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Here we present experiments omitted from the main text for space, which help flesh out some of the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "conclusions. This section is roughly organized with layerwise experiments first, followed by semantic", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 531, + 160, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 160, + 545 + ], + "score": 1.0, + "content": "experiments.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 509, + 505, + 545 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 255, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 255, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 255, + 568 + ], + "score": 1.0, + "content": "B.1 LAYER RESET EXPERIMENTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "score": 1.0, + "content": "As described in the main text, we perform an additional experiment to check that deeper repre-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "sentations get corrupted more than shallower representations. This experiment, corresponding to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "Figure 12, shows that when layers are reset to their pre-forgetting value, performance improves more", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 610, + 294, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 294, + 622 + ], + "score": 1.0, + "content": "dramatically when deeper layers are reset first.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 576, + 507, + 622 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 634, + 233, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 234, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 234, + 647 + ], + "score": 1.0, + "content": "B.2 TASK-SPECIFIC STAGES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "Our observations that forgetting is driven primarily by the higher layers suggests that in a setting", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "with known task identities (i.e. in the split CIFAR-10 setting described in the main text but not the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "CIFAR-100 distribution-shift setting), making the deeper stages of the network task-specific would", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "likely mitigate a large portion of forgetting on the old tasks while still allowing for full performance", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "on the new tasks. In particular, since the changes in deeper represntations are much greater than", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "their shallower counterparts, only a few task-specific stages should be necessary to get significant", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "performance increases on the old task. For each of the three network architectures we considered", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 259, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 273 + ], + "score": 1.0, + "content": "(VGG, ResNet, and DenseNet), we investigated the performance of these task-specific networks on", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "the split CIFAR task. We intend these results to be further evidence of the role of deeper layers in", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 283, + 290, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 290, + 295 + ], + "score": 1.0, + "content": "forgetting, not a proposed mitigation scheme.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 654, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 82, + 495, + 188 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 82, + 495, + 188 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 82, + 495, + 188 + ], + "spans": [ + { + "bbox": [ + 110, + 82, + 495, + 188 + ], + "score": 0.969, + "type": "image", + "image_path": "7293a1d894a7f86a197ce3820d943a538ecfac8bc07c8388599461e278723e74.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 82, + 495, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 117.33333333333334, + 495, + 152.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 152.66666666666669, + 495, + 188.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 196, + 506, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "score": 1.0, + "content": "Figure 12: Layer reset experiments. After training on Task 2 we reset contiguous blocks of layers to their", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 206, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 506, + 218 + ], + "score": 1.0, + "content": "values before training and record the resulting accuracy on Task 1 (bottom row). We see a significant increase in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 215, + 507, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 237, + 228 + ], + "score": 1.0, + "content": "accuracy when resetting the highest", + "type": "text" + }, + { + "bbox": [ + 237, + 216, + 246, + 225 + ], + "score": 0.74, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 215, + 404, + 228 + ], + "score": 1.0, + "content": "layers (blue line) compared to resetting the", + "type": "text" + }, + { + "bbox": [ + 404, + 216, + 414, + 225 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 215, + 507, + 228 + ], + "score": 1.0, + "content": "lowest layers (gray line).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 224, + 475, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 475, + 239 + ], + "score": 1.0, + "content": "Together, these results demonstrate that higher layers are disproportionately responsible for forgetting.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 260, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 273 + ], + "score": 1.0, + "content": "(VGG, ResNet, and DenseNet), we investigated the performance of these task-specific networks on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "the split CIFAR task. We intend these results to be further evidence of the role of deeper layers in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 283, + 290, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 290, + 295 + ], + "score": 1.0, + "content": "forgetting, not a proposed mitigation scheme.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "image", + "bbox": [ + 116, + 308, + 496, + 407 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 308, + 496, + 407 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 116, + 308, + 496, + 407 + ], + "spans": [ + { + "bbox": [ + 116, + 308, + 496, + 407 + ], + "score": 0.966, + "type": "image", + "image_path": "01d8bc010e7bc4cba69e6bb815584d87d90580f0eaebed9a2484fb7036781be0.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 116, + 308, + 496, + 341.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 116, + 341.0, + 496, + 374.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 116, + 374.0, + 496, + 407.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 419, + 505, + 469 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "Figure 13: Forgetting in networks with task-specific stages on CIFAR-10. Using the same settings as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "Figure 1 of the main text, we run networks with task-specific layers on split CIFAR-10. We make deeper", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 439, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 450 + ], + "score": 1.0, + "content": "layers task-specific before shallower layers. Performance increases with number of task-specific layers, denoted", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "by the line color (see legend). In all architectures, two task-specific stages is sufficient to recover significant", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 460, + 156, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 156, + 470 + ], + "score": 1.0, + "content": "performance.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + } + ], + "index": 13.0 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "Results, shown in figure 13, show that for all architectures, performance dramatically rises with the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 495, + 504, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 504, + 507 + ], + "score": 1.0, + "content": "number of task-specific stages. For all architectures, having the deepest two stages be task-specific", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 506, + 366, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 366, + 519 + ], + "score": 1.0, + "content": "recovers a significant fraction of the forgotten task performance.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 107, + 534, + 316, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 318, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 318, + 545 + ], + "score": 1.0, + "content": "B.3 LAYER RESET AND RETRAIN EXPERIMENTS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "As an additional probe of the degree to which catastrophic forgetting impacts the representations", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "score": 1.0, + "content": "of various network layers, we perform a reset-and-retrain experiment on the split CIFAR-10 task,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "using the same training setup as in Figure 3 of the main text. The reset-and-retrain experiment is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "designed to probe the degree to which network representations get corrupted and can no longer be", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "used by a network of the same architecture to productively classify images. To investigate this, after", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 610, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 417, + 622 + ], + "score": 1.0, + "content": "having trained the network on Task 2, we freeze parameters of stages 1 through", + "type": "text" + }, + { + "bbox": [ + 417, + 610, + 428, + 620 + ], + "score": 0.78, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 610, + 506, + 622 + ], + "score": 1.0, + "content": "to their post-task-2", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 261, + 633 + ], + "score": 1.0, + "content": "values, reset the parameters of stages", + "type": "text" + }, + { + "bbox": [ + 261, + 621, + 289, + 632 + ], + "score": 0.9, + "content": "N + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "onwards to their post-task-1 values, and then retrain", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "those parameters on the Task 1 loss function. This is a natural, operational measure of the degree to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 642, + 356, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 196, + 657 + ], + "score": 1.0, + "content": "which layer 1 through", + "type": "text" + }, + { + "bbox": [ + 196, + 644, + 207, + 653 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 642, + 356, + 657 + ], + "score": 1.0, + "content": "representations have been corrupted.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 660, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "The results of this experiment, shown in Figure 14, tell a similar story to that of Figure ?? of the main", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "text. In particular, we see even retraining the network with all but the last couple of layers frozen", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 681, + 358, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 358, + 694 + ], + "score": 1.0, + "content": "recovers nearly the pre-forgetting performance of the network.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 713 + ], + "score": 1.0, + "content": "Some of the performances in Figure 14 even outperform the pre-forgetting network performance,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "suggesting that network representations of intermediate layers may actually be improved by training", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "on Task 2. Further suggestive results are shown in Figure 15, in which we retrain the full network", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + } + ], + "page_idx": 16, + "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": "image", + "bbox": [ + 110, + 82, + 495, + 188 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 82, + 495, + 188 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 82, + 495, + 188 + ], + "spans": [ + { + "bbox": [ + 110, + 82, + 495, + 188 + ], + "score": 0.969, + "type": "image", + "image_path": "7293a1d894a7f86a197ce3820d943a538ecfac8bc07c8388599461e278723e74.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 82, + 495, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 117.33333333333334, + 495, + 152.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 152.66666666666669, + 495, + 188.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 196, + 506, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 209 + ], + "score": 1.0, + "content": "Figure 12: Layer reset experiments. After training on Task 2 we reset contiguous blocks of layers to their", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 206, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 506, + 218 + ], + "score": 1.0, + "content": "values before training and record the resulting accuracy on Task 1 (bottom row). We see a significant increase in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 215, + 507, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 237, + 228 + ], + "score": 1.0, + "content": "accuracy when resetting the highest", + "type": "text" + }, + { + "bbox": [ + 237, + 216, + 246, + 225 + ], + "score": 0.74, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 215, + 404, + 228 + ], + "score": 1.0, + "content": "layers (blue line) compared to resetting the", + "type": "text" + }, + { + "bbox": [ + 404, + 216, + 414, + 225 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 215, + 507, + 228 + ], + "score": 1.0, + "content": "lowest layers (gray line).", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 224, + 475, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 475, + 239 + ], + "score": 1.0, + "content": "Together, these results demonstrate that higher layers are disproportionately responsible for forgetting.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 260, + 505, + 294 + ], + "lines": [], + "index": 8, + "bbox_fs": [ + 105, + 259, + 505, + 295 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 116, + 308, + 496, + 407 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 308, + 496, + 407 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 116, + 308, + 496, + 407 + ], + "spans": [ + { + "bbox": [ + 116, + 308, + 496, + 407 + ], + "score": 0.966, + "type": "image", + "image_path": "01d8bc010e7bc4cba69e6bb815584d87d90580f0eaebed9a2484fb7036781be0.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 116, + 308, + 496, + 341.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 116, + 341.0, + 496, + 374.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 116, + 374.0, + 496, + 407.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 419, + 505, + 469 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "Figure 13: Forgetting in networks with task-specific stages on CIFAR-10. Using the same settings as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "Figure 1 of the main text, we run networks with task-specific layers on split CIFAR-10. We make deeper", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 439, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 450 + ], + "score": 1.0, + "content": "layers task-specific before shallower layers. Performance increases with number of task-specific layers, denoted", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "by the line color (see legend). In all architectures, two task-specific stages is sufficient to recover significant", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 460, + 156, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 156, + 470 + ], + "score": 1.0, + "content": "performance.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + } + ], + "index": 13.0 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "Results, shown in figure 13, show that for all architectures, performance dramatically rises with the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 495, + 504, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 504, + 507 + ], + "score": 1.0, + "content": "number of task-specific stages. For all architectures, having the deepest two stages be task-specific", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 506, + 366, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 366, + 519 + ], + "score": 1.0, + "content": "recovers a significant fraction of the forgotten task performance.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 483, + 505, + 519 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 534, + 316, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 318, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 318, + 545 + ], + "score": 1.0, + "content": "B.3 LAYER RESET AND RETRAIN EXPERIMENTS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "As an additional probe of the degree to which catastrophic forgetting impacts the representations", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 578 + ], + "score": 1.0, + "content": "of various network layers, we perform a reset-and-retrain experiment on the split CIFAR-10 task,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "using the same training setup as in Figure 3 of the main text. The reset-and-retrain experiment is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "designed to probe the degree to which network representations get corrupted and can no longer be", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "used by a network of the same architecture to productively classify images. To investigate this, after", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 610, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 417, + 622 + ], + "score": 1.0, + "content": "having trained the network on Task 2, we freeze parameters of stages 1 through", + "type": "text" + }, + { + "bbox": [ + 417, + 610, + 428, + 620 + ], + "score": 0.78, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 610, + 506, + 622 + ], + "score": 1.0, + "content": "to their post-task-2", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 261, + 633 + ], + "score": 1.0, + "content": "values, reset the parameters of stages", + "type": "text" + }, + { + "bbox": [ + 261, + 621, + 289, + 632 + ], + "score": 0.9, + "content": "N + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "onwards to their post-task-1 values, and then retrain", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "those parameters on the Task 1 loss function. This is a natural, operational measure of the degree to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 642, + 356, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 196, + 657 + ], + "score": 1.0, + "content": "which layer 1 through", + "type": "text" + }, + { + "bbox": [ + 196, + 644, + 207, + 653 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 642, + 356, + 657 + ], + "score": 1.0, + "content": "representations have been corrupted.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 555, + 506, + 657 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 660, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "The results of this experiment, shown in Figure 14, tell a similar story to that of Figure ?? of the main", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "text. In particular, we see even retraining the network with all but the last couple of layers frozen", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 681, + 358, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 358, + 694 + ], + "score": 1.0, + "content": "recovers nearly the pre-forgetting performance of the network.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 660, + 505, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 713 + ], + "score": 1.0, + "content": "Some of the performances in Figure 14 even outperform the pre-forgetting network performance,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "suggesting that network representations of intermediate layers may actually be improved by training", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "on Task 2. Further suggestive results are shown in Figure 15, in which we retrain the full network", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "again on Task 1 after the training on Task 2. For ResNet and, to some degree, VGG, training on the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 324, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 324, + 105 + ], + "score": 1.0, + "content": "second task clearly improves performance on the first.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 698, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "again on Task 1 after the training on Task 2. For ResNet and, to some degree, VGG, training on the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 324, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 324, + 105 + ], + "score": 1.0, + "content": "second task clearly improves performance on the first.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "image", + "bbox": [ + 110, + 120, + 504, + 223 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 120, + 504, + 223 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 120, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 110, + 120, + 504, + 223 + ], + "score": 0.963, + "type": "image", + "image_path": "e56e761d9357dbd46d926b1676ec05908246c98a27d7e5af13aab5d544b04e4a.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 110, + 120, + 504, + 154.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 110, + 154.33333333333334, + 504, + 188.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 110, + 188.66666666666669, + 504, + 223.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 235, + 506, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "Figure 14: Layer reset and retrain experiments. Consistent with the observations in the freeze-training, layer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "score": 1.0, + "content": "reset, and CKA experiments, resetting and retraining only a few stages from the top is enough to recover the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 254, + 219, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 219, + 267 + ], + "score": 1.0, + "content": "performance before forgetting.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "image", + "bbox": [ + 110, + 292, + 504, + 394 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 292, + 504, + 394 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 292, + 504, + 394 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 504, + 394 + ], + "score": 0.961, + "type": "image", + "image_path": "7759e854b7587e327c6df0e10615bce5aefeb4f71e514d7eedcbbb714d9f4590.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 110, + 292, + 504, + 326.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 110, + 326.0, + 504, + 360.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 360.0, + 504, + 394.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 406, + 506, + 486 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "Figure 15: Training on a different task can improve performance on the original task. Networks are", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 414, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 104, + 414, + 506, + 430 + ], + "score": 1.0, + "content": "trained on two five-class splits of CIFAR-10. The gray curve shows the test accuracy on task 0 during training", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 426, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 438 + ], + "score": 1.0, + "content": "on solely that task for 270 epochs; the teal curve shows the task-0 test accuracy when training on task 0 for 90", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "epochs, then on task 1 for 90 epochs, and task 0 again for 90 epochs. While we see a sharp performance drop", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "score": 1.0, + "content": "for the duration of training on task 1, the performance is quickly recovered once we begin training on task 0,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 456, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 468 + ], + "score": 1.0, + "content": "and in fact surpasses the performance of the model only exposed to task-0 data. This effect is consistent across", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "different splits of the original dataset. Of the architectures we studied, this effect is most pronounced for ResNet,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 477, + 333, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 333, + 487 + ], + "score": 1.0, + "content": "but also exists to some degree for VGG and DenseNet models.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + } + ], + "index": 11.75 + }, + { + "type": "title", + "bbox": [ + 105, + 515, + 493, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 495, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 495, + 527 + ], + "score": 1.0, + "content": "B.4 REPRESENTATION CHANGES IN THE CIFAR-100 DISTRIBUTION SHIFT EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "Here we show the change in representations due to training on distribution-shifted CIFAR-100 for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "the VGG (Figure 16) and DenseNet (Figure 17) networks, to accompany the ResNet results in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 560, + 149, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 149, + 571 + ], + "score": 1.0, + "content": "main text.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "image", + "bbox": [ + 110, + 586, + 504, + 696 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 586, + 504, + 696 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 110, + 586, + 504, + 696 + ], + "spans": [ + { + "bbox": [ + 110, + 586, + 504, + 696 + ], + "score": 0.966, + "type": "image", + "image_path": "bef6f0ad266969173dec939f3382fcdf9650004af675922a954db3cdce264098.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 110, + 586, + 504, + 622.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 110, + 622.6666666666666, + 504, + 659.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 110, + 659.3333333333333, + 504, + 695.9999999999999 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 126, + 707, + 483, + 720 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 126, + 707, + 483, + 720 + ], + "spans": [ + { + "bbox": [ + 126, + 707, + 483, + 720 + ], + "score": 1.0, + "content": "Figure 16: Change in Densenet representations under CIFAR-100 distribution shift.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 25.0 + } + ], + "page_idx": 17, + "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, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 105 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 110, + 120, + 504, + 223 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 120, + 504, + 223 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 120, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 110, + 120, + 504, + 223 + ], + "score": 0.963, + "type": "image", + "image_path": "e56e761d9357dbd46d926b1676ec05908246c98a27d7e5af13aab5d544b04e4a.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 110, + 120, + 504, + 154.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 110, + 154.33333333333334, + 504, + 188.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 110, + 188.66666666666669, + 504, + 223.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 235, + 506, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "Figure 14: Layer reset and retrain experiments. Consistent with the observations in the freeze-training, layer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "score": 1.0, + "content": "reset, and CKA experiments, resetting and retraining only a few stages from the top is enough to recover the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 254, + 219, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 219, + 267 + ], + "score": 1.0, + "content": "performance before forgetting.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "image", + "bbox": [ + 110, + 292, + 504, + 394 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 292, + 504, + 394 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 292, + 504, + 394 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 504, + 394 + ], + "score": 0.961, + "type": "image", + "image_path": "7759e854b7587e327c6df0e10615bce5aefeb4f71e514d7eedcbbb714d9f4590.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 110, + 292, + 504, + 326.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 110, + 326.0, + 504, + 360.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 360.0, + 504, + 394.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 406, + 506, + 486 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "Figure 15: Training on a different task can improve performance on the original task. Networks are", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 414, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 104, + 414, + 506, + 430 + ], + "score": 1.0, + "content": "trained on two five-class splits of CIFAR-10. The gray curve shows the test accuracy on task 0 during training", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 426, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 438 + ], + "score": 1.0, + "content": "on solely that task for 270 epochs; the teal curve shows the task-0 test accuracy when training on task 0 for 90", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "epochs, then on task 1 for 90 epochs, and task 0 again for 90 epochs. While we see a sharp performance drop", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "score": 1.0, + "content": "for the duration of training on task 1, the performance is quickly recovered once we begin training on task 0,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 456, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 468 + ], + "score": 1.0, + "content": "and in fact surpasses the performance of the model only exposed to task-0 data. This effect is consistent across", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "different splits of the original dataset. Of the architectures we studied, this effect is most pronounced for ResNet,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 477, + 333, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 333, + 487 + ], + "score": 1.0, + "content": "but also exists to some degree for VGG and DenseNet models.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + } + ], + "index": 11.75 + }, + { + "type": "title", + "bbox": [ + 105, + 515, + 493, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 495, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 495, + 527 + ], + "score": 1.0, + "content": "B.4 REPRESENTATION CHANGES IN THE CIFAR-100 DISTRIBUTION SHIFT EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "Here we show the change in representations due to training on distribution-shifted CIFAR-100 for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "the VGG (Figure 16) and DenseNet (Figure 17) networks, to accompany the ResNet results in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 560, + 149, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 149, + 571 + ], + "score": 1.0, + "content": "main text.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 538, + 505, + 571 + ] + }, + { + "type": "image", + "bbox": [ + 110, + 586, + 504, + 696 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 586, + 504, + 696 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 110, + 586, + 504, + 696 + ], + "spans": [ + { + "bbox": [ + 110, + 586, + 504, + 696 + ], + "score": 0.966, + "type": "image", + "image_path": "bef6f0ad266969173dec939f3382fcdf9650004af675922a954db3cdce264098.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 110, + 586, + 504, + 622.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 110, + 622.6666666666666, + 504, + 659.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 110, + 659.3333333333333, + 504, + 695.9999999999999 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 126, + 707, + 483, + 720 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 126, + 707, + 483, + 720 + ], + "spans": [ + { + "bbox": [ + 126, + 707, + 483, + 720 + ], + "score": 1.0, + "content": "Figure 16: Change in Densenet representations under CIFAR-100 distribution shift.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 25.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 83, + 503, + 193 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 83, + 503, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 83, + 503, + 193 + ], + "spans": [ + { + "bbox": [ + 110, + 83, + 503, + 193 + ], + "score": 0.962, + "type": "image", + "image_path": "b7f4682f0d383ae44ae63e7bb1b04ff9eb952c7c7164efeee34f4d84732f6cac.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 83, + 503, + 119.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 119.66666666666666, + 503, + 156.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 156.33333333333331, + 503, + 192.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 134, + 204, + 474, + 216 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 204, + 475, + 217 + ], + "spans": [ + { + "bbox": [ + 135, + 204, + 475, + 217 + ], + "score": 1.0, + "content": "Figure 17: Change in VGG representations under CIFAR-100 distribution shift.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 490, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 491, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 491, + 249 + ], + "score": 1.0, + "content": "B.5 ADDITIONAL EXPERIMENTS FOR SUBSPACE SIMILARITY OF MITIGATION METHODS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "We include additional experiments on computing subspace similarities for different mitigation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "methods across different architectures. The results support the orthogonal storage of Task 1, Task 2", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 280, + 487, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 487, + 293 + ], + "score": 1.0, + "content": "representations by replay, while EWC and SI enforce greater feature reuse in the higher layers.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "image", + "bbox": [ + 99, + 305, + 504, + 481 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 99, + 305, + 504, + 481 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 99, + 305, + 504, + 481 + ], + "spans": [ + { + "bbox": [ + 99, + 305, + 504, + 481 + ], + "score": 0.973, + "type": "image", + "image_path": "a220ef5a5b19d8f1139d06f902adf47173caf647598a19fac8a8ab98235b275e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 99, + 305, + 504, + 363.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 99, + 363.6666666666667, + 504, + 422.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 99, + 422.33333333333337, + 504, + 481.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 483, + 505, + 513 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "Figure 18: Subspace similarity analysis reveals differences between different mitigation methods, with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 505 + ], + "score": 1.0, + "content": "replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 502, + 441, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 441, + 514 + ], + "score": 1.0, + "content": "feature reuse in the higher layers. Additional results, compare to Figure 6 in the main text.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 541, + 397, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 398, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 398, + 552 + ], + "score": 1.0, + "content": "B.6 LINEAR REGRESSION ON FORGOTTEN NETWORK ACTIVATIONS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "To further probe the manner in which catastrophic forgetting affects the internal representation of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "networks, we perform the following experiment (in the split CIFAR-10 setting). We train a (multi-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 366, + 596 + ], + "score": 1.0, + "content": "head) model on the first task for some time, resulting in model", + "type": "text" + }, + { + "bbox": [ + 367, + 583, + 382, + 594 + ], + "score": 0.89, + "content": "M _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 582, + 506, + 596 + ], + "score": 1.0, + "content": ", and then train on the second", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 266, + 606 + ], + "score": 1.0, + "content": "task for some time, resulting in model", + "type": "text" + }, + { + "bbox": [ + 267, + 594, + 282, + 605 + ], + "score": 0.89, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 594, + 407, + 606 + ], + "score": 1.0, + "content": ". Due to forgetting, the model", + "type": "text" + }, + { + "bbox": [ + 408, + 594, + 423, + 605 + ], + "score": 0.89, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "of course performs", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 223, + 617 + ], + "score": 1.0, + "content": "significantly worse than does", + "type": "text" + }, + { + "bbox": [ + 223, + 605, + 238, + 616 + ], + "score": 0.89, + "content": "M _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "on the first task. But, to probe how much information has been lost", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "internally, we train a linear model to classify between the first-task categories using only the internal", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 163, + 639 + ], + "score": 1.0, + "content": "activations of", + "type": "text" + }, + { + "bbox": [ + 163, + 627, + 178, + 638 + ], + "score": 0.89, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "on the first-task images. We measure both the amount of performance which we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "can recover using this linear regression, and the weight placed by the linear model on various stages", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 649, + 169, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 169, + 660 + ], + "score": 1.0, + "content": "of the network.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Model performances are given in Table 2. For all three architectures, the performance of the model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "before forgetting is naturally the highest, with a performance drop of up to forty percent due to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "forgetting. Remarkably, however, training a linear model on the internal post-forgetting activations", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "recovers a substantial fraction of the performance loss: for ResNet and VGG, the linear model on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "post-forgetting activations is only a percent less accurate than the model before forgetting. As a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "control, we also train a linear model on the activations of networks at initialization (denoted the", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + } + ], + "page_idx": 18, + "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, + 752, + 311, + 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": "image", + "bbox": [ + 110, + 83, + 503, + 193 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 83, + 503, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 83, + 503, + 193 + ], + "spans": [ + { + "bbox": [ + 110, + 83, + 503, + 193 + ], + "score": 0.962, + "type": "image", + "image_path": "b7f4682f0d383ae44ae63e7bb1b04ff9eb952c7c7164efeee34f4d84732f6cac.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 83, + 503, + 119.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 119.66666666666666, + 503, + 156.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 156.33333333333331, + 503, + 192.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 134, + 204, + 474, + 216 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 204, + 475, + 217 + ], + "spans": [ + { + "bbox": [ + 135, + 204, + 475, + 217 + ], + "score": 1.0, + "content": "Figure 17: Change in VGG representations under CIFAR-100 distribution shift.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 490, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 491, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 491, + 249 + ], + "score": 1.0, + "content": "B.5 ADDITIONAL EXPERIMENTS FOR SUBSPACE SIMILARITY OF MITIGATION METHODS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 237, + 491, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "We include additional experiments on computing subspace similarities for different mitigation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 506, + 282 + ], + "score": 1.0, + "content": "methods across different architectures. The results support the orthogonal storage of Task 1, Task 2", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 280, + 487, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 487, + 293 + ], + "score": 1.0, + "content": "representations by replay, while EWC and SI enforce greater feature reuse in the higher layers.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 258, + 506, + 293 + ] + }, + { + "type": "image", + "bbox": [ + 99, + 305, + 504, + 481 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 99, + 305, + 504, + 481 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 99, + 305, + 504, + 481 + ], + "spans": [ + { + "bbox": [ + 99, + 305, + 504, + 481 + ], + "score": 0.973, + "type": "image", + "image_path": "a220ef5a5b19d8f1139d06f902adf47173caf647598a19fac8a8ab98235b275e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 99, + 305, + 504, + 363.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 99, + 363.6666666666667, + 504, + 422.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 99, + 422.33333333333337, + 504, + 481.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 483, + 505, + 513 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "Figure 18: Subspace similarity analysis reveals differences between different mitigation methods, with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 505 + ], + "score": 1.0, + "content": "replay storing Task 1 and Task 2 representations in orthogonal subspaces, while EWC and SI promote", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 502, + 441, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 441, + 514 + ], + "score": 1.0, + "content": "feature reuse in the higher layers. Additional results, compare to Figure 6 in the main text.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 541, + 397, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 398, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 398, + 552 + ], + "score": 1.0, + "content": "B.6 LINEAR REGRESSION ON FORGOTTEN NETWORK ACTIVATIONS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "To further probe the manner in which catastrophic forgetting affects the internal representation of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "networks, we perform the following experiment (in the split CIFAR-10 setting). We train a (multi-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 366, + 596 + ], + "score": 1.0, + "content": "head) model on the first task for some time, resulting in model", + "type": "text" + }, + { + "bbox": [ + 367, + 583, + 382, + 594 + ], + "score": 0.89, + "content": "M _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 582, + 506, + 596 + ], + "score": 1.0, + "content": ", and then train on the second", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 266, + 606 + ], + "score": 1.0, + "content": "task for some time, resulting in model", + "type": "text" + }, + { + "bbox": [ + 267, + 594, + 282, + 605 + ], + "score": 0.89, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 594, + 407, + 606 + ], + "score": 1.0, + "content": ". Due to forgetting, the model", + "type": "text" + }, + { + "bbox": [ + 408, + 594, + 423, + 605 + ], + "score": 0.89, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "of course performs", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 223, + 617 + ], + "score": 1.0, + "content": "significantly worse than does", + "type": "text" + }, + { + "bbox": [ + 223, + 605, + 238, + 616 + ], + "score": 0.89, + "content": "M _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "on the first task. But, to probe how much information has been lost", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "internally, we train a linear model to classify between the first-task categories using only the internal", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 163, + 639 + ], + "score": 1.0, + "content": "activations of", + "type": "text" + }, + { + "bbox": [ + 163, + 627, + 178, + 638 + ], + "score": 0.89, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "on the first-task images. We measure both the amount of performance which we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "can recover using this linear regression, and the weight placed by the linear model on various stages", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 649, + 169, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 169, + 660 + ], + "score": 1.0, + "content": "of the network.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 561, + 506, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Model performances are given in Table 2. For all three architectures, the performance of the model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "before forgetting is naturally the highest, with a performance drop of up to forty percent due to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "forgetting. Remarkably, however, training a linear model on the internal post-forgetting activations", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "recovers a substantial fraction of the performance loss: for ResNet and VGG, the linear model on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "post-forgetting activations is only a percent less accurate than the model before forgetting. As a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "control, we also train a linear model on the activations of networks at initialization (denoted the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "score": 1.0, + "content": "random lift in the table). Because the number of activations is much higher than the number of pixels", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "in a CIFAR-10 image, this control is necessary to ensure that the boost in performance we see is not", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "simply due to performing a high-dimensional lift which renders the data linearly separable. As the", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 367, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 367, + 237 + ], + "score": 1.0, + "content": "table shows, however, this random lift performance is quite poor.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 165, + 80, + 444, + 144 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 165, + 80, + 444, + 144 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 80, + 444, + 144 + ], + "spans": [ + { + "bbox": [ + 165, + 80, + 444, + 144 + ], + "score": 0.976, + "html": "
DenseNetResNetVGG
Pre-forgetting accuracy0.8690.77140.7970
Post-forgetting accuracy0.47540.59240.5877
Linear regression on activations0.8020.75920.7896
Linear regression on random lift0.4470.41980.543
", + "type": "table", + "image_path": "0a1d478159be5dbd8574320620780d68cbad18ce3b69b75d88525c34721145d0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 80, + 444, + 101.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 101.33333333333333, + 444, + 122.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 122.66666666666666, + 444, + 144.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 160, + 157, + 450, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 157, + 451, + 170 + ], + "spans": [ + { + "bbox": [ + 159, + 157, + 451, + 170 + ], + "score": 1.0, + "content": "Table 2: Performance of linear model trained on internal activations.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 190, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 203 + ], + "score": 1.0, + "content": "random lift in the table). Because the number of activations is much higher than the number of pixels", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "in a CIFAR-10 image, this control is necessary to ensure that the boost in performance we see is not", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "simply due to performing a high-dimensional lift which renders the data linearly separable. As the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 367, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 367, + 237 + ], + "score": 1.0, + "content": "table shows, however, this random lift performance is quite poor.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "Figure 19 shows the weights placed by the linear model on the various internal activations of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "network. We use the activations both before and after forgetting. Before forgetting, a linear model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 263, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 506, + 275 + ], + "score": 1.0, + "content": "trained on the activations places most importance on the final layers, as expected; however, after", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "forgetting, the model learns to use information stored in earlier-layer representations of the network.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "score": 1.0, + "content": "The reduced weighting of the final layers is consistent with the experiments we describe in the main", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 295, + 397, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 397, + 309 + ], + "score": 1.0, + "content": "text showing that deeper representations suffer the most from forgetting.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "image", + "bbox": [ + 109, + 320, + 503, + 543 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 320, + 503, + 543 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 320, + 503, + 543 + ], + "spans": [ + { + "bbox": [ + 109, + 320, + 503, + 543 + ], + "score": 0.975, + "type": "image", + "image_path": "ccc557677afea0bb941be42ae608ad511067870b50d6a63b79a1bb7484dc60b5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 109, + 320, + 503, + 394.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 109, + 394.3333333333333, + 503, + 468.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 109, + 468.66666666666663, + 503, + 543.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 162, + 554, + 446, + 566 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 160, + 553, + 447, + 568 + ], + "spans": [ + { + "bbox": [ + 160, + 553, + 447, + 568 + ], + "score": 1.0, + "content": "Figure 19: Weights of linear models trained on internal activations.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + } + ], + "index": 16.0 + }, + { + "type": "title", + "bbox": [ + 107, + 588, + 340, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 342, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 342, + 600 + ], + "score": 1.0, + "content": "B.7 CKA MEASUREMENTS ON MITIGATION METHODS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 506, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "This section gives CKA similarity measurements to accompany those in the main text presented in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "figure 5. The main text figure showed results for ResNet; here we show corresponding results for all", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 629, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 644 + ], + "score": 1.0, + "content": "architectures on both split CIFAR10 and split CIFAR100 tasks, in figures 20 and 21, repsectively.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "These plots show that the results discussed in the main text apply broadly across architectures and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 651, + 144, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 144, + 665 + ], + "score": 1.0, + "content": "datasets.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 678, + 334, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 335, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 335, + 690 + ], + "score": 1.0, + "content": "B.8 OTHER CATEGORY IN RESNET AND DENSENET", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "In Figure 9 of the main text, we showed for the VGG architecture that adding an ‘other’ category", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "(by sampling from all images in the dataset which are not in either of the main tasks) can mitigate", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "forgetting by reducing the similarity between the model’s representations of the task 1 data versus", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 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": [ + 165, + 80, + 444, + 144 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 165, + 80, + 444, + 144 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 80, + 444, + 144 + ], + "spans": [ + { + "bbox": [ + 165, + 80, + 444, + 144 + ], + "score": 0.976, + "html": "
DenseNetResNetVGG
Pre-forgetting accuracy0.8690.77140.7970
Post-forgetting accuracy0.47540.59240.5877
Linear regression on activations0.8020.75920.7896
Linear regression on random lift0.4470.41980.543
", + "type": "table", + "image_path": "0a1d478159be5dbd8574320620780d68cbad18ce3b69b75d88525c34721145d0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 80, + 444, + 101.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 101.33333333333333, + 444, + 122.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 122.66666666666666, + 444, + 144.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 160, + 157, + 450, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 157, + 451, + 170 + ], + "spans": [ + { + "bbox": [ + 159, + 157, + 451, + 170 + ], + "score": 1.0, + "content": "Table 2: Performance of linear model trained on internal activations.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 190, + 505, + 235 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 105, + 191, + 506, + 237 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "Figure 19 shows the weights placed by the linear model on the various internal activations of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "network. We use the activations both before and after forgetting. Before forgetting, a linear model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 263, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 506, + 275 + ], + "score": 1.0, + "content": "trained on the activations places most importance on the final layers, as expected; however, after", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "forgetting, the model learns to use information stored in earlier-layer representations of the network.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "score": 1.0, + "content": "The reduced weighting of the final layers is consistent with the experiments we describe in the main", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 295, + 397, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 397, + 309 + ], + "score": 1.0, + "content": "text showing that deeper representations suffer the most from forgetting.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 240, + 506, + 309 + ] + }, + { + "type": "image", + "bbox": [ + 109, + 320, + 503, + 543 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 320, + 503, + 543 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 320, + 503, + 543 + ], + "spans": [ + { + "bbox": [ + 109, + 320, + 503, + 543 + ], + "score": 0.975, + "type": "image", + "image_path": "ccc557677afea0bb941be42ae608ad511067870b50d6a63b79a1bb7484dc60b5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 109, + 320, + 503, + 394.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 109, + 394.3333333333333, + 503, + 468.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 109, + 468.66666666666663, + 503, + 543.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 162, + 554, + 446, + 566 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 160, + 553, + 447, + 568 + ], + "spans": [ + { + "bbox": [ + 160, + 553, + 447, + 568 + ], + "score": 1.0, + "content": "Figure 19: Weights of linear models trained on internal activations.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + } + ], + "index": 16.0 + }, + { + "type": "title", + "bbox": [ + 107, + 588, + 340, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 342, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 342, + 600 + ], + "score": 1.0, + "content": "B.7 CKA MEASUREMENTS ON MITIGATION METHODS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 506, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "This section gives CKA similarity measurements to accompany those in the main text presented in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "figure 5. The main text figure showed results for ResNet; here we show corresponding results for all", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 629, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 644 + ], + "score": 1.0, + "content": "architectures on both split CIFAR10 and split CIFAR100 tasks, in figures 20 and 21, repsectively.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "These plots show that the results discussed in the main text apply broadly across architectures and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 651, + 144, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 144, + 665 + ], + "score": 1.0, + "content": "datasets.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 607, + 506, + 665 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 678, + 334, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 335, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 335, + 690 + ], + "score": 1.0, + "content": "B.8 OTHER CATEGORY IN RESNET AND DENSENET", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "In Figure 9 of the main text, we showed for the VGG architecture that adding an ‘other’ category", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "(by sampling from all images in the dataset which are not in either of the main tasks) can mitigate", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "forgetting by reducing the similarity between the model’s representations of the task 1 data versus", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 698, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 100, + 223, + 493, + 562 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 223, + 493, + 562 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 100, + 223, + 493, + 562 + ], + "spans": [ + { + "bbox": [ + 100, + 223, + 493, + 562 + ], + "score": 0.971, + "type": "image", + "image_path": "e18234e09a6d3786a709ac998864e82b0db00b76a82fe85a20bb62a7d2fb3d21.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 100, + 223, + 493, + 336.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 100, + 336.0, + 493, + 449.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 100, + 449.0, + 493, + 562.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 160, + 575, + 449, + 587 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 574, + 450, + 588 + ], + "spans": [ + { + "bbox": [ + 159, + 574, + 450, + 588 + ], + "score": 1.0, + "content": "Figure 20: CKA Analysis of mitigation methods on the split CIFAR10 task", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ], + "page_idx": 20, + "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": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 100, + 223, + 493, + 562 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 223, + 493, + 562 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 100, + 223, + 493, + 562 + ], + "spans": [ + { + "bbox": [ + 100, + 223, + 493, + 562 + ], + "score": 0.971, + "type": "image", + "image_path": "e18234e09a6d3786a709ac998864e82b0db00b76a82fe85a20bb62a7d2fb3d21.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 100, + 223, + 493, + 336.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 100, + 336.0, + 493, + 449.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 100, + 449.0, + 493, + 562.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 160, + 575, + 449, + 587 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 574, + 450, + 588 + ], + "spans": [ + { + "bbox": [ + 159, + 574, + 450, + 588 + ], + "score": 1.0, + "content": "Figure 20: CKA Analysis of mitigation methods on the split CIFAR10 task", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 100, + 225, + 493, + 562 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 225, + 493, + 562 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 100, + 225, + 493, + 562 + ], + "spans": [ + { + "bbox": [ + 100, + 225, + 493, + 562 + ], + "score": 0.972, + "type": "image", + "image_path": "caeb1d9636133db42d4e9678e00a9fea90d0bf39678be050d5092c7b521b1d94.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 100, + 225, + 493, + 337.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 100, + 337.3333333333333, + 493, + 449.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 100, + 449.66666666666663, + 493, + 562.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 158, + 575, + 451, + 586 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 574, + 451, + 588 + ], + "spans": [ + { + "bbox": [ + 157, + 574, + 451, + 588 + ], + "score": 1.0, + "content": "Figure 21: CKA Analysis of mitigation methods on the split CIFAR100 task", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 396, + 227, + 480, + 233 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 100, + 225, + 493, + 562 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 225, + 493, + 562 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 100, + 225, + 493, + 562 + ], + "spans": [ + { + "bbox": [ + 100, + 225, + 493, + 562 + ], + "score": 0.972, + "type": "image", + "image_path": "caeb1d9636133db42d4e9678e00a9fea90d0bf39678be050d5092c7b521b1d94.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 100, + 225, + 493, + 337.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 100, + 337.3333333333333, + 493, + 449.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 100, + 449.66666666666663, + 493, + 562.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 158, + 575, + 451, + 586 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 574, + 451, + 588 + ], + "spans": [ + { + "bbox": [ + 157, + 574, + 451, + 588 + ], + "score": 1.0, + "content": "Figure 21: CKA Analysis of mitigation methods on the split CIFAR100 task", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 100, + 85, + 516, + 200 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 85, + 516, + 200 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 100, + 85, + 516, + 200 + ], + "spans": [ + { + "bbox": [ + 100, + 85, + 516, + 200 + ], + "score": 0.97, + "type": "image", + "image_path": "1286bf3918cde9573bebe81d7c0c35537c5f1f5d9a005f6ec519eaa214fa23a7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 100, + 85, + 516, + 123.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 100, + 123.33333333333334, + 516, + 161.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 100, + 161.66666666666669, + 516, + 200.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 214, + 506, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "score": 1.0, + "content": "Figure 22: Adding an ‘other’ category during initial training helps performance through orthogonaliza-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 225, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 236 + ], + "score": 1.0, + "content": "tion: Densenet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 235, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 246 + ], + "score": 1.0, + "content": "two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "score": 1.0, + "content": "other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 254, + 221, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 221, + 268 + ], + "score": 1.0, + "content": "to improved continual learning.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 100, + 282, + 516, + 398 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 282, + 516, + 398 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 100, + 282, + 516, + 398 + ], + "spans": [ + { + "bbox": [ + 100, + 282, + 516, + 398 + ], + "score": 0.967, + "type": "image", + "image_path": "c7bd96d0456a4214ccd862ce782a9ad0e92ab5b7c2ee612857f364b68e67f3d0.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 100, + 282, + 516, + 320.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 100, + 320.6666666666667, + 516, + 359.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 100, + 359.33333333333337, + 516, + 398.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 413, + 506, + 464 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 411, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 507, + 425 + ], + "score": 1.0, + "content": "Figure 23: Adding an ‘other’ category during initial training helps performance through orthogonaliza-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "tion: Resnet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 441, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 456 + ], + "score": 1.0, + "content": "other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 451, + 221, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 221, + 466 + ], + "score": 1.0, + "content": "to improved continual learning.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + } + ], + "index": 11.0 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 507, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 507, + 500 + ], + "score": 1.0, + "content": "the task 2 data. As our analytic model suggested, increasing this dissimilarity should help forgetting.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 496, + 459, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 459, + 511 + ], + "score": 1.0, + "content": "Figures 22 and 23 show corresponding plots for the Resnet and Densenet architectures.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 524, + 298, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 300, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 300, + 536 + ], + "score": 1.0, + "content": "B.9 ADDITIONAL SEMANTIC EXPERIMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "In this section, comprising figures 24, 25, and 26, we present additional realizations of the semantic", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "experiments presented in Section 6, Figure 8. In particular we present results for sequential binary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "classification tasks, four-class classification followed by two-class classification, and the CIFAR-100", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "distribution shift task. We find consistent results across different choices of objects and animals", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "and across VGG, ResNet, and DenseNet architectures. In particular, we find that when models are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "encouraged to distinguish objects and animals, dissimilar categories lead to less forgetting. In contrast", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "when models are trained with only a single semantic category, there is no pressure to distinguish", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 1.0, + "content": "objects from animals and similar categories lead to less forgetting. We observe one exception to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "score": 1.0, + "content": "the intuitive semantic groupings of categories. For VGG in Setup 2 (Figure 25) the truck category", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "behaves similarly to animal classes in that the performance suffers more when the second task is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 655, + 335, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 335, + 667 + ], + "score": 1.0, + "content": "animal classification then when it is object classification.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 106, + 685, + 362, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 363, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 363, + 699 + ], + "score": 1.0, + "content": "C FROZEN-FEATURE MODEL: FURTHER DETAILS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Here we consider extensions and applications of the analytic model introduced in Section 6.2. Both", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "the single and multi-head models relate the change in predictions during training on a second task to", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + } + ], + "page_idx": 22, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 100, + 85, + 516, + 200 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 85, + 516, + 200 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 100, + 85, + 516, + 200 + ], + "spans": [ + { + "bbox": [ + 100, + 85, + 516, + 200 + ], + "score": 0.97, + "type": "image", + "image_path": "1286bf3918cde9573bebe81d7c0c35537c5f1f5d9a005f6ec519eaa214fa23a7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 100, + 85, + 516, + 123.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 100, + 123.33333333333334, + 516, + 161.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 100, + 161.66666666666669, + 516, + 200.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 214, + 506, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "score": 1.0, + "content": "Figure 22: Adding an ‘other’ category during initial training helps performance through orthogonaliza-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 225, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 236 + ], + "score": 1.0, + "content": "tion: Densenet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 235, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 246 + ], + "score": 1.0, + "content": "two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "score": 1.0, + "content": "other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 254, + 221, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 221, + 268 + ], + "score": 1.0, + "content": "to improved continual learning.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 100, + 282, + 516, + 398 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 100, + 282, + 516, + 398 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 100, + 282, + 516, + 398 + ], + "spans": [ + { + "bbox": [ + 100, + 282, + 516, + 398 + ], + "score": 0.967, + "type": "image", + "image_path": "c7bd96d0456a4214ccd862ce782a9ad0e92ab5b7c2ee612857f364b68e67f3d0.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 100, + 282, + 516, + 320.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 100, + 320.6666666666667, + 516, + 359.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 100, + 359.33333333333337, + 516, + 398.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 413, + 506, + 464 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 411, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 507, + 425 + ], + "score": 1.0, + "content": "Figure 23: Adding an ‘other’ category during initial training helps performance through orthogonaliza-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "tion: Resnet. Model is trained initially on classifying two objects: airplane/automobile, and subsequently on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "two animals: deer/dog. When we add the ‘other’ category, it comprises a random sampling of images from all", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 441, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 456 + ], + "score": 1.0, + "content": "other classes. This reduces the similarity between the model’s representations of each tasks’ datapoints, leading", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 451, + 221, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 221, + 466 + ], + "score": 1.0, + "content": "to improved continual learning.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + } + ], + "index": 11.0 + }, + { + "type": "list", + "bbox": [ + 107, + 486, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 507, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 507, + 500 + ], + "score": 1.0, + "content": "the task 2 data. As our analytic model suggested, increasing this dissimilarity should help forgetting.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 496, + 459, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 459, + 511 + ], + "score": 1.0, + "content": "Figures 22 and 23 show corresponding plots for the Resnet and Densenet architectures.", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 484, + 507, + 511 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 524, + 298, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 300, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 300, + 536 + ], + "score": 1.0, + "content": "B.9 ADDITIONAL SEMANTIC EXPERIMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "In this section, comprising figures 24, 25, and 26, we present additional realizations of the semantic", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "experiments presented in Section 6, Figure 8. In particular we present results for sequential binary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "classification tasks, four-class classification followed by two-class classification, and the CIFAR-100", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "distribution shift task. We find consistent results across different choices of objects and animals", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "and across VGG, ResNet, and DenseNet architectures. In particular, we find that when models are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "encouraged to distinguish objects and animals, dissimilar categories lead to less forgetting. In contrast", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "when models are trained with only a single semantic category, there is no pressure to distinguish", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 1.0, + "content": "objects from animals and similar categories lead to less forgetting. We observe one exception to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 646 + ], + "score": 1.0, + "content": "the intuitive semantic groupings of categories. For VGG in Setup 2 (Figure 25) the truck category", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "behaves similarly to animal classes in that the performance suffers more when the second task is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 655, + 335, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 335, + 667 + ], + "score": 1.0, + "content": "animal classification then when it is object classification.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 545, + 506, + 667 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 685, + 362, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 363, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 363, + 699 + ], + "score": 1.0, + "content": "C FROZEN-FEATURE MODEL: FURTHER DETAILS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Here we consider extensions and applications of the analytic model introduced in Section 6.2. Both", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "the single and multi-head models relate the change in predictions during training on a second task to", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 709, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 130, + 114, + 467, + 527 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 114, + 467, + 527 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 114, + 467, + 527 + ], + "spans": [ + { + "bbox": [ + 130, + 114, + 467, + 527 + ], + "score": 0.909, + "type": "image", + "image_path": "9b5309de8e13131c7c40487d0e4b169bea844843307575030317507dedb50c0e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 114, + 467, + 251.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 251.66666666666666, + 467, + 389.3333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 389.3333333333333, + 467, + 527.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 210, + 526, + 402, + 536 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 209, + 525, + 403, + 537 + ], + "spans": [ + { + "bbox": [ + 209, + 525, + 403, + 537 + ], + "score": 1.0, + "content": "Task 1 - deer, dog, Task 2 - cat, horse or plane, car", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 561, + 505, + 592 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "Figure 24: Sequential binary classification tasks show consistent semantic structure. We train on sequen-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 569, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 584 + ], + "score": 1.0, + "content": "tial binary subsets of CIFAR-10, distinguishing between two animals or two objects. We find that less forgetting", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 581, + 331, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 331, + 592 + ], + "score": 1.0, + "content": "occurs when the initial task is more similar to the second task.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 617, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 226, + 632 + ], + "score": 1.0, + "content": "the overlap between features,", + "type": "text" + }, + { + "bbox": [ + 226, + 617, + 342, + 632 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( x ) g _ { \\mu } ( x ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 616, + 506, + 632 + ], + "score": 1.0, + "content": ", evaluated on the initial and second task", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 103, + 628, + 133, + 644 + ], + "spans": [ + { + "bbox": [ + 103, + 628, + 133, + 644 + ], + "score": 1.0, + "content": "data.2", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 503, + 683 + ], + "lines": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "Multi-head model In the main text we focused for simplicity on an analytic model of single head", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 672, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 505, + 683 + ], + "score": 1.0, + "content": "forgetting. Here we construct a solvable model for the multi-head setup. We consider a model", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 117, + 698, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 698, + 506, + 714 + ], + "score": 1.0, + "content": "2This feature overlap matrix shows up frequently when studying linear models, where it is sometimes known", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 712, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 506, + 722 + ], + "score": 1.0, + "content": "as a reproducing kernel, or wide neural networks, where it is called the neural tangent kernel Jacot et al. (2018)", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 210, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 210, + 733 + ], + "score": 1.0, + "content": "and governs SGD evolution.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 130, + 114, + 467, + 527 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 114, + 467, + 527 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 114, + 467, + 527 + ], + "spans": [ + { + "bbox": [ + 130, + 114, + 467, + 527 + ], + "score": 0.909, + "type": "image", + "image_path": "9b5309de8e13131c7c40487d0e4b169bea844843307575030317507dedb50c0e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 114, + 467, + 251.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 251.66666666666666, + 467, + 389.3333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 389.3333333333333, + 467, + 527.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 210, + 526, + 402, + 536 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 209, + 525, + 403, + 537 + ], + "spans": [ + { + "bbox": [ + 209, + 525, + 403, + 537 + ], + "score": 1.0, + "content": "Task 1 - deer, dog, Task 2 - cat, horse or plane, car", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 561, + 505, + 592 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "Figure 24: Sequential binary classification tasks show consistent semantic structure. We train on sequen-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 569, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 584 + ], + "score": 1.0, + "content": "tial binary subsets of CIFAR-10, distinguishing between two animals or two objects. We find that less forgetting", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 581, + 331, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 331, + 592 + ], + "score": 1.0, + "content": "occurs when the initial task is more similar to the second task.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 617, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 226, + 632 + ], + "score": 1.0, + "content": "the overlap between features,", + "type": "text" + }, + { + "bbox": [ + 226, + 617, + 342, + 632 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( x ) g _ { \\mu } ( x ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 616, + 506, + 632 + ], + "score": 1.0, + "content": ", evaluated on the initial and second task", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 103, + 628, + 133, + 644 + ], + "spans": [ + { + "bbox": [ + 103, + 628, + 133, + 644 + ], + "score": 1.0, + "content": "data.2", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 103, + 616, + 506, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 503, + 683 + ], + "lines": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "Multi-head model In the main text we focused for simplicity on an analytic model of single head", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 672, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 505, + 683 + ], + "score": 1.0, + "content": "forgetting. Here we construct a solvable model for the multi-head setup. We consider a model", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 660, + 505, + 683 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 130, + 114, + 466, + 529 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 114, + 466, + 529 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 114, + 466, + 529 + ], + "spans": [ + { + "bbox": [ + 130, + 114, + 466, + 529 + ], + "score": 0.964, + "type": "image", + "image_path": "e0aae519536daa021aaa0f0f7cc8abb09571f71f4be45205b3d066c312214874.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 114, + 466, + 252.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 252.33333333333334, + 466, + 390.6666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 390.6666666666667, + 466, + 529.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 213, + 526, + 399, + 536 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 212, + 525, + 399, + 536 + ], + "spans": [ + { + "bbox": [ + 212, + 525, + 399, + 536 + ], + "score": 1.0, + "content": "Task 1 - deer, dog, ship, truck, Task 2 - cat, horse", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 561, + 505, + 602 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Figure 25: Sequential four class and binary tasks show decreased forgetting for dissimilar tasks. We", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 572, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 582 + ], + "score": 1.0, + "content": "train on sequential subsets of CIFAR-10, initially distinguishing between four classes (two animals and two", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "score": 1.0, + "content": "objects) and then distinguishing between either two animals or two objects. We find that less forgetting occurs", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 591, + 342, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 342, + 603 + ], + "score": 1.0, + "content": "for categories that are dissimilar to those used in the second task.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 105, + 621, + 492, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 490, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 237, + 635 + ], + "score": 1.0, + "content": "consisting of non-linear features", + "type": "text" + }, + { + "bbox": [ + 238, + 622, + 269, + 634 + ], + "score": 0.93, + "content": "g ( w ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 619, + 384, + 635 + ], + "score": 1.0, + "content": ", a linear layer with weights,", + "type": "text" + }, + { + "bbox": [ + 384, + 622, + 390, + 632 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 619, + 474, + 635 + ], + "score": 1.0, + "content": ", and a read out head", + "type": "text" + }, + { + "bbox": [ + 474, + 621, + 490, + 632 + ], + "score": 0.89, + "content": "\\it { h ^ { ( i ) } }", + "type": "inline_equation" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 637, + 371, + 664 + ], + "lines": [ + { + "bbox": [ + 240, + 637, + 371, + 664 + ], + "spans": [ + { + "bbox": [ + 240, + 637, + 371, + 664 + ], + "score": 0.94, + "content": "f ^ { ( i ) } ( x ) = \\sum _ { a , \\mu } h _ { a } ^ { ( i ) } \\theta _ { a \\mu } g _ { \\mu } ( w ; x ) .", + "type": "interline_equation", + "image_path": "f60a3bba076bfdddd01c2acb94dc82366ab2a5daff26a28a2f1a02eaa5331c18.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 637, + 371, + 650.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 240, + 650.5, + 371, + 664.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 128, + 680 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 128, + 669, + 136, + 679 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 667, + 297, + 680 + ], + "score": 1.0, + "content": "runs over the feature dimensions, while", + "type": "text" + }, + { + "bbox": [ + 298, + 671, + 303, + 677 + ], + "score": 0.78, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 667, + 504, + 680 + ], + "score": 1.0, + "content": "runs over the output dimensions of our additional", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 293, + 692 + ], + "score": 1.0, + "content": "linear layer. For the initial task we use the head", + "type": "text" + }, + { + "bbox": [ + 294, + 679, + 311, + 690 + ], + "score": 0.9, + "content": "h ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 678, + 505, + 692 + ], + "score": 1.0, + "content": ", while for the second task, we swap the head and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 690, + 144, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 122, + 702 + ], + "score": 1.0, + "content": "use", + "type": "text" + }, + { + "bbox": [ + 122, + 690, + 140, + 702 + ], + "score": 0.89, + "content": "h ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 691, + 144, + 702 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 708, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 707, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 420, + 721 + ], + "score": 1.0, + "content": "Again we consider a model trained without restrictions on Task 1 using head", + "type": "text" + }, + { + "bbox": [ + 420, + 707, + 437, + 719 + ], + "score": 0.89, + "content": "h ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 707, + 506, + 721 + ], + "score": 1.0, + "content": ". For Task 2, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 718, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 370, + 734 + ], + "score": 1.0, + "content": "first swap the head and then perform head only training on head", + "type": "text" + }, + { + "bbox": [ + 370, + 720, + 387, + 730 + ], + "score": 0.89, + "content": "h ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 718, + 506, + 734 + ], + "score": 1.0, + "content": ". After training the head, we", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + } + ], + "page_idx": 24, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "25", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 130, + 114, + 466, + 529 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 114, + 466, + 529 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 114, + 466, + 529 + ], + "spans": [ + { + "bbox": [ + 130, + 114, + 466, + 529 + ], + "score": 0.964, + "type": "image", + "image_path": "e0aae519536daa021aaa0f0f7cc8abb09571f71f4be45205b3d066c312214874.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 114, + 466, + 252.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 252.33333333333334, + 466, + 390.6666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 390.6666666666667, + 466, + 529.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 213, + 526, + 399, + 536 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 212, + 525, + 399, + 536 + ], + "spans": [ + { + "bbox": [ + 212, + 525, + 399, + 536 + ], + "score": 1.0, + "content": "Task 1 - deer, dog, ship, truck, Task 2 - cat, horse", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 561, + 505, + 602 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Figure 25: Sequential four class and binary tasks show decreased forgetting for dissimilar tasks. We", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 572, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 582 + ], + "score": 1.0, + "content": "train on sequential subsets of CIFAR-10, initially distinguishing between four classes (two animals and two", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "score": 1.0, + "content": "objects) and then distinguishing between either two animals or two objects. We find that less forgetting occurs", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 591, + 342, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 342, + 603 + ], + "score": 1.0, + "content": "for categories that are dissimilar to those used in the second task.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 105, + 621, + 492, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 490, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 237, + 635 + ], + "score": 1.0, + "content": "consisting of non-linear features", + "type": "text" + }, + { + "bbox": [ + 238, + 622, + 269, + 634 + ], + "score": 0.93, + "content": "g ( w ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 619, + 384, + 635 + ], + "score": 1.0, + "content": ", a linear layer with weights,", + "type": "text" + }, + { + "bbox": [ + 384, + 622, + 390, + 632 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 619, + 474, + 635 + ], + "score": 1.0, + "content": ", and a read out head", + "type": "text" + }, + { + "bbox": [ + 474, + 621, + 490, + 632 + ], + "score": 0.89, + "content": "\\it { h ^ { ( i ) } }", + "type": "inline_equation" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 619, + 490, + 635 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 637, + 371, + 664 + ], + "lines": [ + { + "bbox": [ + 240, + 637, + 371, + 664 + ], + "spans": [ + { + "bbox": [ + 240, + 637, + 371, + 664 + ], + "score": 0.94, + "content": "f ^ { ( i ) } ( x ) = \\sum _ { a , \\mu } h _ { a } ^ { ( i ) } \\theta _ { a \\mu } g _ { \\mu } ( w ; x ) .", + "type": "interline_equation", + "image_path": "f60a3bba076bfdddd01c2acb94dc82366ab2a5daff26a28a2f1a02eaa5331c18.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 637, + 371, + 650.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 240, + 650.5, + 371, + 664.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 128, + 680 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 128, + 669, + 136, + 679 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 667, + 297, + 680 + ], + "score": 1.0, + "content": "runs over the feature dimensions, while", + "type": "text" + }, + { + "bbox": [ + 298, + 671, + 303, + 677 + ], + "score": 0.78, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 667, + 504, + 680 + ], + "score": 1.0, + "content": "runs over the output dimensions of our additional", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 293, + 692 + ], + "score": 1.0, + "content": "linear layer. For the initial task we use the head", + "type": "text" + }, + { + "bbox": [ + 294, + 679, + 311, + 690 + ], + "score": 0.9, + "content": "h ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 678, + 505, + 692 + ], + "score": 1.0, + "content": ", while for the second task, we swap the head and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 690, + 144, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 122, + 702 + ], + "score": 1.0, + "content": "use", + "type": "text" + }, + { + "bbox": [ + 122, + 690, + 140, + 702 + ], + "score": 0.89, + "content": "h ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 691, + 144, + 702 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 667, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 708, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 707, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 420, + 721 + ], + "score": 1.0, + "content": "Again we consider a model trained without restrictions on Task 1 using head", + "type": "text" + }, + { + "bbox": [ + 420, + 707, + 437, + 719 + ], + "score": 0.89, + "content": "h ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 707, + 506, + 721 + ], + "score": 1.0, + "content": ". For Task 2, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 718, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 370, + 734 + ], + "score": 1.0, + "content": "first swap the head and then perform head only training on head", + "type": "text" + }, + { + "bbox": [ + 370, + 720, + 387, + 730 + ], + "score": 0.89, + "content": "h ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 718, + 506, + 734 + ], + "score": 1.0, + "content": ". After training the head, we", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 707, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 82, + 493, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 82, + 493, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 82, + 493, + 205 + ], + "spans": [ + { + "bbox": [ + 119, + 82, + 493, + 205 + ], + "score": 0.906, + "type": "image", + "image_path": "8553198ed3ce878f4463feb1b92ca6ac388c507393962c63efe02df85ed9a425.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 82, + 493, + 123.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 123.0, + 493, + 164.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 164.0, + 493, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 216, + 504, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Figure 26: Semantic structure of forgetting on the CIFAR-100 distribution-shfit task for VGG", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 227, + 200, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 200, + 239 + ], + "score": 1.0, + "content": "and DenseNet models", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 139, + 249, + 468, + 286 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 139, + 249, + 468, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 139, + 249, + 468, + 286 + ], + "spans": [ + { + "bbox": [ + 139, + 249, + 468, + 286 + ], + "score": 0.94, + "html": "
VGGResNetDenseNet
No headfirst training5 epochs headfirst training0.147 ± 0.0510.550±0.0290.183 ± 0.0010.673 ± 0.0100.162 ± 0.0080.700 ± 0.012
", + "type": "table", + "image_path": "b3baf907d90078054e843944810b8fa928376820b863fcf18688c2c62f336f5b.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 139, + 249, + 468, + 261.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 139, + 261.3333333333333, + 468, + 273.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 139, + 273.66666666666663, + 468, + 285.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 105, + 302, + 504, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "Table 3: Headfirst CKA similarity. CKA similarity between the readout layer after headfirst training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 313, + 276, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 276, + 325 + ], + "score": 1.0, + "content": "and after final training on the second task.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 170, + 364 + ], + "score": 1.0, + "content": "freeze the head,", + "type": "text" + }, + { + "bbox": [ + 171, + 349, + 188, + 361 + ], + "score": 0.87, + "content": "h ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 349, + 256, + 364 + ], + "score": 1.0, + "content": ", and the features", + "type": "text" + }, + { + "bbox": [ + 256, + 351, + 331, + 363 + ], + "score": 0.93, + "content": "g ( w ; x ) = g ( \\hat { w } ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 349, + 361, + 364 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 361, + 351, + 370, + 361 + ], + "score": 0.82, + "content": "\\hat { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 349, + 506, + 364 + ], + "score": 1.0, + "content": "is the value of the feature weights", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "after training on the initial task. This model is again inspired by our observation that forgetting is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "driven by changes in the latter network layers. The multi head model is additionally inspired by our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "observing that after head first training, the CKA similarity between the second task head before and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 394, + 334, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 334, + 406 + ], + "score": 1.0, + "content": "after second task training is relatively high (see Table 3).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 379, + 425 + ], + "score": 1.0, + "content": "After training the second task head, we continue training the weights", + "type": "text" + }, + { + "bbox": [ + 380, + 412, + 385, + 421 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 409, + 506, + 425 + ], + "score": 1.0, + "content": ". The model output evolves as", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 426, + 431, + 464 + ], + "lines": [ + { + "bbox": [ + 180, + 426, + 431, + 464 + ], + "spans": [ + { + "bbox": [ + 180, + 426, + 431, + 464 + ], + "score": 0.94, + "content": "\\Delta f _ { t } ^ { ( i ) } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ^ { ( j ) } ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } h ^ { T ( j ) } h ^ { ( i ) } .", + "type": "interline_equation", + "image_path": "b52d8cd137912b64f9ecf3880dd9f2d238e5a880fcedcca4dfffe3d60785038b.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 180, + 426, + 431, + 438.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 180, + 438.6666666666667, + 431, + 451.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 180, + 451.33333333333337, + 431, + 464.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 330, + 482 + ], + "score": 1.0, + "content": "Again we find that if the representation overlap matrix", + "type": "text" + }, + { + "bbox": [ + 330, + 468, + 469, + 483 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 467, + 505, + 482 + ], + "score": 1.0, + "content": "is small", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "between the features evaluated on the initial task and second task data then the predictions do not", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 490, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 506, + 506 + ], + "score": 1.0, + "content": "change significantly. If this overlap is zero, then the predictions are constant. In the multi-head setup", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "score": 1.0, + "content": "we are considering here, we see that the change in predictions is further proportional to the similarity", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 513, + 254, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 212, + 525 + ], + "score": 1.0, + "content": "between the model heads,", + "type": "text" + }, + { + "bbox": [ + 212, + 513, + 250, + 525 + ], + "score": 0.91, + "content": "h ^ { T ( j ) } h ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 514, + 254, + 525 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "score": 1.0, + "content": "Finally, we note that we have considered a final linear layer before the readout head for simplicity.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "One can instead include a ReLU non-linearity without changing the essential point, that the change", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 554, + 324, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 311, + 566 + ], + "score": 1.0, + "content": "in model output is governed by the overlap matrix,", + "type": "text" + }, + { + "bbox": [ + 311, + 554, + 320, + 563 + ], + "score": 0.81, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 554, + 324, + 566 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "Rotating representations in the analytic model. We can use our analytic model (Section 6.2) to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "investigate how forgetting depends on representation similarity. We again consider sequential binary", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 598, + 504, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 504, + 610 + ], + "score": 1.0, + "content": "tasks (car vs plane) followed by (cat vs horse). We then tune the overlap of our initial task and final", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 609, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 624 + ], + "score": 1.0, + "content": "task features by explicitly rotating the frozen features for the second task to produce new features", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 619, + 155, + 635 + ], + "spans": [ + { + "bbox": [ + 107, + 621, + 150, + 633 + ], + "score": 0.93, + "content": "g ^ { \\prime } ( \\theta ; \\hat { w } ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 619, + 155, + 635 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 636, + 362, + 650 + ], + "lines": [ + { + "bbox": [ + 248, + 636, + 362, + 650 + ], + "spans": [ + { + "bbox": [ + 248, + 636, + 362, + 650 + ], + "score": 0.91, + "content": "\\begin{array} { r } { g ^ { \\prime } ( \\theta ; \\hat { w } ; x ) = R ( \\theta ) g ( \\hat { w } ; x ) . } \\end{array}", + "type": "interline_equation", + "image_path": "7f40507bbc084480cf35a8735d106497f333c573a088bfb5e52c81ffb580b5fa.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 248, + 636, + 362, + 650 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 174, + 669 + ], + "score": 1.0, + "content": "Here, if we have", + "type": "text" + }, + { + "bbox": [ + 174, + 657, + 183, + 666 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 654, + 221, + 669 + ], + "score": 1.0, + "content": "features,", + "type": "text" + }, + { + "bbox": [ + 221, + 655, + 281, + 668 + ], + "score": 0.93, + "content": "R ( \\theta ) \\in \\mathbb { R } ^ { P \\times P }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 654, + 506, + 669 + ], + "score": 1.0, + "content": "is a one-parameter family of rotation matrices designed", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 661, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 101, + 661, + 144, + 689 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 144, + 670, + 185, + 682 + ], + "score": 0.93, + "content": "R ( 0 ) = { \\bf 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 661, + 202, + 689 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 203, + 669, + 297, + 682 + ], + "score": 0.91, + "content": "g ^ { T } ( \\hat { w } ; x ) g ^ { \\prime } ( \\pi / 2 ; \\hat { w } ; x ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 661, + 311, + 689 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 312, + 667, + 350, + 682 + ], + "score": 0.93, + "content": "x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 666, + 415, + 685 + ], + "score": 1.0, + "content": ")t and x0 ∈ X (2)train", + "type": "text" + }, + { + "bbox": [ + 411, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "is small. Explicitly, we", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 681, + 127, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 127, + 694 + ], + "score": 1.0, + "content": "take", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 695, + 368, + 731 + ], + "lines": [ + { + "bbox": [ + 243, + 695, + 368, + 731 + ], + "spans": [ + { + "bbox": [ + 243, + 695, + 368, + 731 + ], + "score": 0.95, + "content": "R ( \\theta ) = V ^ { T } \\prod _ { i = 1 } ^ { \\lfloor P / 2 \\rfloor } r _ { i , P - i } ( \\theta ) V ,", + "type": "interline_equation", + "image_path": "7fba10e508e8f15bcb45cb632a24368a6cd6bfdd6a174508e91812284ace6119.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 243, + 695, + 368, + 713.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 243, + 713.0, + 368, + 731.0 + ], + "spans": [], + "index": 37 + } + ] + } + ], + "page_idx": 25, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 82, + 493, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 82, + 493, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 82, + 493, + 205 + ], + "spans": [ + { + "bbox": [ + 119, + 82, + 493, + 205 + ], + "score": 0.906, + "type": "image", + "image_path": "8553198ed3ce878f4463feb1b92ca6ac388c507393962c63efe02df85ed9a425.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 82, + 493, + 123.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 123.0, + 493, + 164.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 164.0, + 493, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 216, + 504, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Figure 26: Semantic structure of forgetting on the CIFAR-100 distribution-shfit task for VGG", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 227, + 200, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 200, + 239 + ], + "score": 1.0, + "content": "and DenseNet models", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 139, + 249, + 468, + 286 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 139, + 249, + 468, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 139, + 249, + 468, + 286 + ], + "spans": [ + { + "bbox": [ + 139, + 249, + 468, + 286 + ], + "score": 0.94, + "html": "
VGGResNetDenseNet
No headfirst training5 epochs headfirst training0.147 ± 0.0510.550±0.0290.183 ± 0.0010.673 ± 0.0100.162 ± 0.0080.700 ± 0.012
", + "type": "table", + "image_path": "b3baf907d90078054e843944810b8fa928376820b863fcf18688c2c62f336f5b.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 139, + 249, + 468, + 261.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 139, + 261.3333333333333, + 468, + 273.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 139, + 273.66666666666663, + 468, + 285.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 105, + 302, + 504, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "Table 3: Headfirst CKA similarity. CKA similarity between the readout layer after headfirst training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 313, + 276, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 276, + 325 + ], + "score": 1.0, + "content": "and after final training on the second task.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 300, + 506, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 170, + 364 + ], + "score": 1.0, + "content": "freeze the head,", + "type": "text" + }, + { + "bbox": [ + 171, + 349, + 188, + 361 + ], + "score": 0.87, + "content": "h ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 349, + 256, + 364 + ], + "score": 1.0, + "content": ", and the features", + "type": "text" + }, + { + "bbox": [ + 256, + 351, + 331, + 363 + ], + "score": 0.93, + "content": "g ( w ; x ) = g ( \\hat { w } ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 349, + 361, + 364 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 361, + 351, + 370, + 361 + ], + "score": 0.82, + "content": "\\hat { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 349, + 506, + 364 + ], + "score": 1.0, + "content": "is the value of the feature weights", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "after training on the initial task. This model is again inspired by our observation that forgetting is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "driven by changes in the latter network layers. The multi head model is additionally inspired by our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "observing that after head first training, the CKA similarity between the second task head before and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 394, + 334, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 334, + 406 + ], + "score": 1.0, + "content": "after second task training is relatively high (see Table 3).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 349, + 506, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 379, + 425 + ], + "score": 1.0, + "content": "After training the second task head, we continue training the weights", + "type": "text" + }, + { + "bbox": [ + 380, + 412, + 385, + 421 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 409, + 506, + 425 + ], + "score": 1.0, + "content": ". The model output evolves as", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 409, + 506, + 425 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 426, + 431, + 464 + ], + "lines": [ + { + "bbox": [ + 180, + 426, + 431, + 464 + ], + "spans": [ + { + "bbox": [ + 180, + 426, + 431, + 464 + ], + "score": 0.94, + "content": "\\Delta f _ { t } ^ { ( i ) } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ^ { ( j ) } ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } h ^ { T ( j ) } h ^ { ( i ) } .", + "type": "interline_equation", + "image_path": "b52d8cd137912b64f9ecf3880dd9f2d238e5a880fcedcca4dfffe3d60785038b.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 180, + 426, + 431, + 438.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 180, + 438.6666666666667, + 431, + 451.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 180, + 451.33333333333337, + 431, + 464.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 330, + 482 + ], + "score": 1.0, + "content": "Again we find that if the representation overlap matrix", + "type": "text" + }, + { + "bbox": [ + 330, + 468, + 469, + 483 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 467, + 505, + 482 + ], + "score": 1.0, + "content": "is small", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "between the features evaluated on the initial task and second task data then the predictions do not", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 490, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 506, + 506 + ], + "score": 1.0, + "content": "change significantly. If this overlap is zero, then the predictions are constant. In the multi-head setup", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "score": 1.0, + "content": "we are considering here, we see that the change in predictions is further proportional to the similarity", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 513, + 254, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 212, + 525 + ], + "score": 1.0, + "content": "between the model heads,", + "type": "text" + }, + { + "bbox": [ + 212, + 513, + 250, + 525 + ], + "score": 0.91, + "content": "h ^ { T ( j ) } h ^ { ( i ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 514, + 254, + 525 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 467, + 506, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "score": 1.0, + "content": "Finally, we note that we have considered a final linear layer before the readout head for simplicity.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "One can instead include a ReLU non-linearity without changing the essential point, that the change", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 554, + 324, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 311, + 566 + ], + "score": 1.0, + "content": "in model output is governed by the overlap matrix,", + "type": "text" + }, + { + "bbox": [ + 311, + 554, + 320, + 563 + ], + "score": 0.81, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 554, + 324, + 566 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 530, + 506, + 566 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "Rotating representations in the analytic model. We can use our analytic model (Section 6.2) to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "investigate how forgetting depends on representation similarity. We again consider sequential binary", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 598, + 504, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 504, + 610 + ], + "score": 1.0, + "content": "tasks (car vs plane) followed by (cat vs horse). We then tune the overlap of our initial task and final", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 609, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 624 + ], + "score": 1.0, + "content": "task features by explicitly rotating the frozen features for the second task to produce new features", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 619, + 155, + 635 + ], + "spans": [ + { + "bbox": [ + 107, + 621, + 150, + 633 + ], + "score": 0.93, + "content": "g ^ { \\prime } ( \\theta ; \\hat { w } ; x )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 619, + 155, + 635 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 576, + 506, + 635 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 636, + 362, + 650 + ], + "lines": [ + { + "bbox": [ + 248, + 636, + 362, + 650 + ], + "spans": [ + { + "bbox": [ + 248, + 636, + 362, + 650 + ], + "score": 0.91, + "content": "\\begin{array} { r } { g ^ { \\prime } ( \\theta ; \\hat { w } ; x ) = R ( \\theta ) g ( \\hat { w } ; x ) . } \\end{array}", + "type": "interline_equation", + "image_path": "7f40507bbc084480cf35a8735d106497f333c573a088bfb5e52c81ffb580b5fa.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 248, + 636, + 362, + 650 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 174, + 669 + ], + "score": 1.0, + "content": "Here, if we have", + "type": "text" + }, + { + "bbox": [ + 174, + 657, + 183, + 666 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 654, + 221, + 669 + ], + "score": 1.0, + "content": "features,", + "type": "text" + }, + { + "bbox": [ + 221, + 655, + 281, + 668 + ], + "score": 0.93, + "content": "R ( \\theta ) \\in \\mathbb { R } ^ { P \\times P }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 654, + 506, + 669 + ], + "score": 1.0, + "content": "is a one-parameter family of rotation matrices designed", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 661, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 101, + 661, + 144, + 689 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 144, + 670, + 185, + 682 + ], + "score": 0.93, + "content": "R ( 0 ) = { \\bf 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 661, + 202, + 689 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 203, + 669, + 297, + 682 + ], + "score": 0.91, + "content": "g ^ { T } ( \\hat { w } ; x ) g ^ { \\prime } ( \\pi / 2 ; \\hat { w } ; x ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 661, + 311, + 689 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 312, + 667, + 350, + 682 + ], + "score": 0.93, + "content": "x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 666, + 415, + 685 + ], + "score": 1.0, + "content": ")t and x0 ∈ X (2)train", + "type": "text" + }, + { + "bbox": [ + 411, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "is small. Explicitly, we", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 681, + 127, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 127, + 694 + ], + "score": 1.0, + "content": "take", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 101, + 654, + 506, + 694 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 695, + 368, + 731 + ], + "lines": [ + { + "bbox": [ + 243, + 695, + 368, + 731 + ], + "spans": [ + { + "bbox": [ + 243, + 695, + 368, + 731 + ], + "score": 0.95, + "content": "R ( \\theta ) = V ^ { T } \\prod _ { i = 1 } ^ { \\lfloor P / 2 \\rfloor } r _ { i , P - i } ( \\theta ) V ,", + "type": "interline_equation", + "image_path": "7fba10e508e8f15bcb45cb632a24368a6cd6bfdd6a174508e91812284ace6119.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 243, + 695, + 368, + 713.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 243, + 713.0, + 368, + 731.0 + ], + "spans": [], + "index": 37 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 84, + 497, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 84, + 497, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 84, + 497, + 227 + ], + "spans": [ + { + "bbox": [ + 117, + 84, + 497, + 227 + ], + "score": 0.952, + "type": "image", + "image_path": "2b3c2a4076751d50ef22d3907dc455f84464a1aed3850e086b4306ebb52d726e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 84, + 497, + 131.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 131.66666666666666, + 497, + 179.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 179.33333333333331, + 497, + 226.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 506, + 299 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "Figure 27: Rotating representations shows diminished forgetting for dissimilar tasks. Here we", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "consider the performance of our frozen feature model on sequential binary CIFAR-10 tasks (Task 1:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "car vs plane, Task 2: cat vs horse). We use a model built from a two hidden-layer fully connected", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 274, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 104, + 274, + 506, + 290 + ], + "score": 1.0, + "content": "network with ReLU activations. We increase decrease representational similarity by explicitly rotating", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 285, + 447, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 447, + 301 + ], + "score": 1.0, + "content": "the second task features and find as predicted that this leads to diminished forgetting.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 122, + 324, + 497, + 468 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 324, + 497, + 468 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 122, + 324, + 497, + 468 + ], + "spans": [ + { + "bbox": [ + 122, + 324, + 497, + 468 + ], + "score": 0.969, + "type": "image", + "image_path": "b1d85f3a5fa54339a3b6bb967c722fbbb4516faa7a86ac3690f9f44842797f8f.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 122, + 324, + 497, + 372.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 122, + 372.0, + 497, + 420.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 122, + 420.0, + 497, + 468.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 482, + 506, + 527 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "Figure 28: Stabilizing final layer weights is not necessary to stop forgetting. Here we look at the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "change in final layer weights during second task training for a model with severe forgetting (gray)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "score": 1.0, + "content": "and forgetting mitigated by rotating the second task representations (teal). We see that final layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 515, + 451, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 451, + 528 + ], + "score": 1.0, + "content": "weights become less and less similar in both cases. The setup is identical to Figure 27", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "index": 10.75 + }, + { + "type": "text", + "bbox": [ + 106, + 557, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 133, + 570 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 558, + 159, + 570 + ], + "score": 0.93, + "content": "r _ { i j } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 558, + 374, + 570 + ], + "score": 1.0, + "content": "is the two dimensional rotation matrix between axes", + "type": "text" + }, + { + "bbox": [ + 374, + 559, + 379, + 568 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 558, + 397, + 570 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 559, + 403, + 569 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 558, + 424, + 570 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 424, + 558, + 433, + 568 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "is the orthogonal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "matrix appearing in the singular value decomposition of the feature by data matrix on the initial task,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 577, + 508, + 599 + ], + "spans": [ + { + "bbox": [ + 107, + 579, + 178, + 594 + ], + "score": 0.92, + "content": "g ( X _ { \\mathrm { t e s t } } ^ { ( 1 ) } ) = U D V", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 577, + 508, + 599 + ], + "score": 1.0, + "content": ". We find that explicitly enforcing task dissimilarity via a large rotation minimizes", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 593, + 248, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 248, + 605 + ], + "score": 1.0, + "content": "the effect of forgetting (Figure 27).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Stopping forgetting without stabilizing weights We saw in Section 4 that both EWC and replay", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "buffers stabilize deeper network representations. As mentioned above, this need not be the case a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "priori. As an illustrative example, we construct a setup where sequential training leads to no forgetting", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "despite a significant change to final layer weights. We consider the single head model of Section 6.2", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 100, + 668, + 503, + 694 + ], + "spans": [ + { + "bbox": [ + 100, + 668, + 396, + 694 + ], + "score": 1.0, + "content": "where the Task 1 and Task 2 representations are completely orthogonal,", + "type": "text" + }, + { + "bbox": [ + 396, + 673, + 450, + 686 + ], + "score": 0.93, + "content": "\\Theta ( x , x ^ { \\prime } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 668, + 465, + 694 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 465, + 671, + 503, + 686 + ], + "score": 0.92, + "content": "x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 101, + 681, + 510, + 706 + ], + "spans": [ + { + "bbox": [ + 101, + 681, + 123, + 706 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 685, + 167, + 700 + ], + "score": 0.92, + "content": "x ^ { \\prime } \\in X _ { \\mathrm { t r a i n } } ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 681, + 510, + 706 + ], + "score": 1.0, + "content": ". In this case the Task 1 predictions remain constant throughout all of Task 2 training,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "despite significant changes to the final layer weights and predictions on the second task. In Figure 28", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "we present an example of this setup. The representations are again made orthogonal by explicitly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 721, + 496, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 329, + 733 + ], + "score": 1.0, + "content": "rotating the second task features by the rotation matrix,", + "type": "text" + }, + { + "bbox": [ + 329, + 721, + 361, + 732 + ], + "score": 0.92, + "content": "R ( \\pi / 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 721, + 496, + 733 + ], + "score": 1.0, + "content": "defined in Equation equation 11.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + } + ], + "page_idx": 26, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 84, + 497, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 84, + 497, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 84, + 497, + 227 + ], + "spans": [ + { + "bbox": [ + 117, + 84, + 497, + 227 + ], + "score": 0.952, + "type": "image", + "image_path": "2b3c2a4076751d50ef22d3907dc455f84464a1aed3850e086b4306ebb52d726e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 84, + 497, + 131.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 131.66666666666666, + 497, + 179.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 179.33333333333331, + 497, + 226.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 506, + 299 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "Figure 27: Rotating representations shows diminished forgetting for dissimilar tasks. Here we", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "consider the performance of our frozen feature model on sequential binary CIFAR-10 tasks (Task 1:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "car vs plane, Task 2: cat vs horse). We use a model built from a two hidden-layer fully connected", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 274, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 104, + 274, + 506, + 290 + ], + "score": 1.0, + "content": "network with ReLU activations. We increase decrease representational similarity by explicitly rotating", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 285, + 447, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 447, + 301 + ], + "score": 1.0, + "content": "the second task features and find as predicted that this leads to diminished forgetting.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 122, + 324, + 497, + 468 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 324, + 497, + 468 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 122, + 324, + 497, + 468 + ], + "spans": [ + { + "bbox": [ + 122, + 324, + 497, + 468 + ], + "score": 0.969, + "type": "image", + "image_path": "b1d85f3a5fa54339a3b6bb967c722fbbb4516faa7a86ac3690f9f44842797f8f.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 122, + 324, + 497, + 372.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 122, + 372.0, + 497, + 420.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 122, + 420.0, + 497, + 468.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 482, + 506, + 527 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "Figure 28: Stabilizing final layer weights is not necessary to stop forgetting. Here we look at the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "change in final layer weights during second task training for a model with severe forgetting (gray)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "score": 1.0, + "content": "and forgetting mitigated by rotating the second task representations (teal). We see that final layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 515, + 451, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 451, + 528 + ], + "score": 1.0, + "content": "weights become less and less similar in both cases. The setup is identical to Figure 27", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "index": 10.75 + }, + { + "type": "text", + "bbox": [ + 106, + 557, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 133, + 570 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 558, + 159, + 570 + ], + "score": 0.93, + "content": "r _ { i j } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 558, + 374, + 570 + ], + "score": 1.0, + "content": "is the two dimensional rotation matrix between axes", + "type": "text" + }, + { + "bbox": [ + 374, + 559, + 379, + 568 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 558, + 397, + 570 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 559, + 403, + 569 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 558, + 424, + 570 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 424, + 558, + 433, + 568 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "is the orthogonal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "matrix appearing in the singular value decomposition of the feature by data matrix on the initial task,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 577, + 508, + 599 + ], + "spans": [ + { + "bbox": [ + 107, + 579, + 178, + 594 + ], + "score": 0.92, + "content": "g ( X _ { \\mathrm { t e s t } } ^ { ( 1 ) } ) = U D V", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 577, + 508, + 599 + ], + "score": 1.0, + "content": ". We find that explicitly enforcing task dissimilarity via a large rotation minimizes", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 593, + 248, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 248, + 605 + ], + "score": 1.0, + "content": "the effect of forgetting (Figure 27).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 558, + 508, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Stopping forgetting without stabilizing weights We saw in Section 4 that both EWC and replay", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "buffers stabilize deeper network representations. As mentioned above, this need not be the case a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "priori. As an illustrative example, we construct a setup where sequential training leads to no forgetting", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "despite a significant change to final layer weights. We consider the single head model of Section 6.2", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 100, + 668, + 503, + 694 + ], + "spans": [ + { + "bbox": [ + 100, + 668, + 396, + 694 + ], + "score": 1.0, + "content": "where the Task 1 and Task 2 representations are completely orthogonal,", + "type": "text" + }, + { + "bbox": [ + 396, + 673, + 450, + 686 + ], + "score": 0.93, + "content": "\\Theta ( x , x ^ { \\prime } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 668, + 465, + 694 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 465, + 671, + 503, + 686 + ], + "score": 0.92, + "content": "x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 101, + 681, + 510, + 706 + ], + "spans": [ + { + "bbox": [ + 101, + 681, + 123, + 706 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 685, + 167, + 700 + ], + "score": 0.92, + "content": "x ^ { \\prime } \\in X _ { \\mathrm { t r a i n } } ^ { ( 2 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 681, + 510, + 706 + ], + "score": 1.0, + "content": ". In this case the Task 1 predictions remain constant throughout all of Task 2 training,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "despite significant changes to the final layer weights and predictions on the second task. In Figure 28", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "we present an example of this setup. The representations are again made orthogonal by explicitly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 721, + 496, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 329, + 733 + ], + "score": 1.0, + "content": "rotating the second task features by the rotation matrix,", + "type": "text" + }, + { + "bbox": [ + 329, + 721, + 361, + 732 + ], + "score": 0.92, + "content": "R ( \\pi / 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 721, + 496, + 733 + ], + "score": 1.0, + "content": "defined in Equation equation 11.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 100, + 626, + 510, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 271, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "score": 1.0, + "content": "D ADDITIONAL EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 114, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "score": 1.0, + "content": "This section presents two additional experiments which are slightly unrelated to the main thrust of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 126, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 137 + ], + "score": 1.0, + "content": "the paper. We examine how the degree to which a network forgets is influenced by its width, and also", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "how training the head independently of the rest of the network, in a multi-head setting, can mitigate", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 151, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 151, + 162 + ], + "score": 1.0, + "content": "forgetting.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 106, + 186, + 304, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 304, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 304, + 197 + ], + "score": 1.0, + "content": "D.1 FORGETTING VERSUS NETWORK WIDTH", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "image", + "bbox": [ + 116, + 227, + 495, + 359 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 227, + 495, + 359 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 227, + 495, + 359 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 495, + 359 + ], + "score": 0.972, + "type": "image", + "image_path": "ec04da581d739ba7b6e3e6a23542ce72fd4e6a3953ad5f4e73573d2c1199f81e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 116, + 227, + 495, + 271.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 116, + 271.0, + 495, + 315.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 116, + 315.0, + 495, + 359.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 371, + 506, + 448 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 371, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 506, + 383 + ], + "score": 1.0, + "content": "Figure 29: Forgetting as a function of network width. (a) VGG, (b) ResNet, and (c) DenseNet", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 382, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 394 + ], + "score": 1.0, + "content": "networks of varying widths were trained on two subsets of CIFAR-10 classes. We trained each of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 388, + 405 + ], + "score": 1.0, + "content": "these (multi-head) networks for 30 epochs on each task with constant", + "type": "text" + }, + { + "bbox": [ + 389, + 395, + 395, + 405 + ], + "score": 0.72, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 393, + 505, + 405 + ], + "score": 1.0, + "content": ", enough to achieve perfect", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "training accuracy. Further training details can be found in the text. From the plots, which show the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 427 + ], + "score": 1.0, + "content": "percent drop in accuracy (on task 1) due to training on task 2, the effect of width on the performance", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "score": 1.0, + "content": "drop seems to be minimal, even sweeping across roughly a factor of ten in the number of model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 438, + 155, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 155, + 449 + ], + "score": 1.0, + "content": "parameters.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "Inspired by recent work of Gilboa & Gur-Ari (2019) showing that wider networks can learn better", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "features than their narrower counterparts, we sought to determine whether wider networks also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "exhibit less catastrophic forgetting than narrower ones. We tested forgetting versus width for VGG,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "DenseNet, and ResNet networks on the split CIFAR-10 task in the multi-head setting. For VGG and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 517, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 532 + ], + "score": 1.0, + "content": "ResNet, the width was varied by changing the number of channels in the initial convolutional layer", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "and scaling the rest of the network layers concurrently while maintaining the network shape; for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 540, + 365, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 365, + 553 + ], + "score": 1.0, + "content": "DenseNet, the width was varied by by changing the growth rate.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 558, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "Surprisingly, though we found that the performances of the networks on each task improved as they", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "grew wider, the amount of forgetting in each network, measured by the percent drop in accuracy (on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "task 1) due to training on task, exhibited a minimal dependence on network width. These results are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 590, + 188, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 188, + 602 + ], + "score": 1.0, + "content": "shown in Figure 29.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 108, + 628, + 228, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 629, + 229, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 229, + 641 + ], + "score": 1.0, + "content": "D.2 HEADFIRST TRAINING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "When training multi-head networks on sequences of tasks, we found that the networks suffered a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "smaller performance drop on the original task, i.e. forgot less, if only the new task head was trained", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "for a few epochs prior to training the full network. In Figure 30, this effect is shown for all three", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "network architectures on the split CIFAR-10 task. Training only the head for up to five epochs seemed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "to improve the original-task performance without sacrificing performance on the new task. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "suggests that coadaptation between the freshly-initialized head and the rest of the model contributes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 721, + 299, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 299, + 734 + ], + "score": 1.0, + "content": "to forgetting when there is no headfirst training.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31 + } + ], + "page_idx": 27, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "28", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 271, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "score": 1.0, + "content": "D ADDITIONAL EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 114, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 506, + 126 + ], + "score": 1.0, + "content": "This section presents two additional experiments which are slightly unrelated to the main thrust of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 126, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 137 + ], + "score": 1.0, + "content": "the paper. We examine how the degree to which a network forgets is influenced by its width, and also", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "how training the head independently of the rest of the network, in a multi-head setting, can mitigate", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 151, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 151, + 162 + ], + "score": 1.0, + "content": "forgetting.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 113, + 506, + 162 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 186, + 304, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 304, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 304, + 197 + ], + "score": 1.0, + "content": "D.1 FORGETTING VERSUS NETWORK WIDTH", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "image", + "bbox": [ + 116, + 227, + 495, + 359 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 227, + 495, + 359 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 227, + 495, + 359 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 495, + 359 + ], + "score": 0.972, + "type": "image", + "image_path": "ec04da581d739ba7b6e3e6a23542ce72fd4e6a3953ad5f4e73573d2c1199f81e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 116, + 227, + 495, + 271.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 116, + 271.0, + 495, + 315.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 116, + 315.0, + 495, + 359.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 371, + 506, + 448 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 371, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 506, + 383 + ], + "score": 1.0, + "content": "Figure 29: Forgetting as a function of network width. (a) VGG, (b) ResNet, and (c) DenseNet", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 382, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 394 + ], + "score": 1.0, + "content": "networks of varying widths were trained on two subsets of CIFAR-10 classes. We trained each of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 388, + 405 + ], + "score": 1.0, + "content": "these (multi-head) networks for 30 epochs on each task with constant", + "type": "text" + }, + { + "bbox": [ + 389, + 395, + 395, + 405 + ], + "score": 0.72, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 393, + 505, + 405 + ], + "score": 1.0, + "content": ", enough to achieve perfect", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "training accuracy. Further training details can be found in the text. From the plots, which show the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 427 + ], + "score": 1.0, + "content": "percent drop in accuracy (on task 1) due to training on task 2, the effect of width on the performance", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 439 + ], + "score": 1.0, + "content": "drop seems to be minimal, even sweeping across roughly a factor of ten in the number of model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 438, + 155, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 155, + 449 + ], + "score": 1.0, + "content": "parameters.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "Inspired by recent work of Gilboa & Gur-Ari (2019) showing that wider networks can learn better", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "features than their narrower counterparts, we sought to determine whether wider networks also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "exhibit less catastrophic forgetting than narrower ones. We tested forgetting versus width for VGG,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "DenseNet, and ResNet networks on the split CIFAR-10 task in the multi-head setting. For VGG and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 517, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 532 + ], + "score": 1.0, + "content": "ResNet, the width was varied by changing the number of channels in the initial convolutional layer", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "and scaling the rest of the network layers concurrently while maintaining the network shape; for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 540, + 365, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 365, + 553 + ], + "score": 1.0, + "content": "DenseNet, the width was varied by by changing the growth rate.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 475, + 506, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 558, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "Surprisingly, though we found that the performances of the networks on each task improved as they", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "grew wider, the amount of forgetting in each network, measured by the percent drop in accuracy (on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "task 1) due to training on task, exhibited a minimal dependence on network width. These results are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 590, + 188, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 188, + 602 + ], + "score": 1.0, + "content": "shown in Figure 29.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 557, + 506, + 602 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 628, + 228, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 629, + 229, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 229, + 641 + ], + "score": 1.0, + "content": "D.2 HEADFIRST TRAINING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "When training multi-head networks on sequences of tasks, we found that the networks suffered a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "smaller performance drop on the original task, i.e. forgot less, if only the new task head was trained", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "for a few epochs prior to training the full network. In Figure 30, this effect is shown for all three", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "network architectures on the split CIFAR-10 task. Training only the head for up to five epochs seemed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "to improve the original-task performance without sacrificing performance on the new task. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "suggests that coadaptation between the freshly-initialized head and the rest of the model contributes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 721, + 299, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 299, + 734 + ], + "score": 1.0, + "content": "to forgetting when there is no headfirst training.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 655, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 80, + 496, + 462 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 80, + 496, + 462 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 80, + 496, + 462 + ], + "spans": [ + { + "bbox": [ + 115, + 80, + 496, + 462 + ], + "score": 0.975, + "type": "image", + "image_path": "5507a75b14a33e01fef517018ef0ba97edcb85a091b929d800a7fc761023b095.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 80, + 496, + 207.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 207.33333333333331, + 496, + 334.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 334.66666666666663, + 496, + 461.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 472, + 506, + 572 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "Figure 30: Effect of training readout layer separately between task switches. (a) VGG, (b)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "score": 1.0, + "content": "ResNet, and (c) DenseNet models were trained on two subsets of CIFAR-10 classes: task 0 (dog,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "frog, horse, ship, and truck), and task 1 (airplane, automobile, bird, cat, deer). When switching", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "score": 1.0, + "content": "tasks, we first trained only the final classification layer (known as the readout layer or head) for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "a specified number of epochs (here 0, 1, 2, and 5) from a random Gaussian initialization. During", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "this period, the rest of the model parameters are held fixed; after the head-only training, the entire", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "model is trained as usual. Across all architectures, training only the head consistently improves the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "forgetting performance of the model (its accuracy on task 0) while having a negligible impact on the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 560, + 260, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 260, + 573 + ], + "score": 1.0, + "content": "performance on the next task (task 1).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 108, + 597, + 293, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 294, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 294, + 611 + ], + "score": 1.0, + "content": "E FIGURES FOR ANONREVIEWER2", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 623, + 352, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 352, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 352, + 639 + ], + "score": 1.0, + "content": "F IMAGENET RESULTS FOR TASK SEMANTICS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 649, + 329, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 330, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 330, + 663 + ], + "score": 1.0, + "content": "Figures corresponding to results tables in the main text.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + } + ], + "page_idx": 28, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "29", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 80, + 496, + 462 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 80, + 496, + 462 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 80, + 496, + 462 + ], + "spans": [ + { + "bbox": [ + 115, + 80, + 496, + 462 + ], + "score": 0.975, + "type": "image", + "image_path": "5507a75b14a33e01fef517018ef0ba97edcb85a091b929d800a7fc761023b095.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 80, + 496, + 207.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 207.33333333333331, + 496, + 334.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 334.66666666666663, + 496, + 461.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 472, + 506, + 572 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "Figure 30: Effect of training readout layer separately between task switches. (a) VGG, (b)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 507, + 498 + ], + "score": 1.0, + "content": "ResNet, and (c) DenseNet models were trained on two subsets of CIFAR-10 classes: task 0 (dog,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 506, + 509 + ], + "score": 1.0, + "content": "frog, horse, ship, and truck), and task 1 (airplane, automobile, bird, cat, deer). When switching", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "score": 1.0, + "content": "tasks, we first trained only the final classification layer (known as the readout layer or head) for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "a specified number of epochs (here 0, 1, 2, and 5) from a random Gaussian initialization. During", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "this period, the rest of the model parameters are held fixed; after the head-only training, the entire", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "model is trained as usual. Across all architectures, training only the head consistently improves the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "forgetting performance of the model (its accuracy on task 0) while having a negligible impact on the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 560, + 260, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 260, + 573 + ], + "score": 1.0, + "content": "performance on the next task (task 1).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 108, + 597, + 293, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 294, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 294, + 611 + ], + "score": 1.0, + "content": "E FIGURES FOR ANONREVIEWER2", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 623, + 352, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 352, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 352, + 639 + ], + "score": 1.0, + "content": "F IMAGENET RESULTS FOR TASK SEMANTICS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 649, + 329, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 330, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 330, + 663 + ], + "score": 1.0, + "content": "Figures corresponding to results tables in the main text.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 648, + 330, + 663 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 95, + 503, + 222 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 95, + 503, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 95, + 503, + 222 + ], + "spans": [ + { + "bbox": [ + 108, + 95, + 503, + 222 + ], + "score": 0.809, + "type": "image", + "image_path": "0c1f93a5e253061e71524d4448169be4eb17a45238f9076dd080fa8de7682520.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 95, + 503, + 137.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 137.33333333333334, + 503, + 179.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 179.66666666666669, + 503, + 222.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 231, + 505, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "Figure 31: Stage-wise weight change between initial weights and weights after Task 1 (blue) and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "between weights after Task 1 and Task2 (orange) for a model trained sequentially on disjoint 5 class", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 235, + 267 + ], + "score": 1.0, + "content": "subsets of CIFAR10. (a) Mean", + "type": "text" + }, + { + "bbox": [ + 235, + 254, + 245, + 265 + ], + "score": 0.86, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "distance. (b) Cosine similarity. We see no sign of significantly", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 265, + 433, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 383, + 277 + ], + "score": 1.0, + "content": "more change in last layer weights, and in fact see the reverse trend in", + "type": "text" + }, + { + "bbox": [ + 383, + 265, + 393, + 276 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 265, + 433, + 277 + ], + "score": 1.0, + "content": "distance.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 194, + 312, + 417, + 466 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 194, + 312, + 417, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 194, + 312, + 417, + 466 + ], + "spans": [ + { + "bbox": [ + 194, + 312, + 417, + 466 + ], + "score": 0.959, + "type": "image", + "image_path": "ec90b583322ceabb7cc1c372fbe73932285491b6e11d3b83b592d3267593afe4.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 312, + 417, + 324.8333333333333 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 194, + 324.8333333333333, + 417, + 337.66666666666663 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 194, + 337.66666666666663, + 417, + 350.49999999999994 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 350.49999999999994, + 417, + 363.33333333333326 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 363.33333333333326, + 417, + 376.1666666666666 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 194, + 376.1666666666666, + 417, + 388.9999999999999 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 194, + 388.9999999999999, + 417, + 401.8333333333332 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 194, + 401.8333333333332, + 417, + 414.6666666666665 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 194, + 414.6666666666665, + 417, + 427.49999999999983 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 194, + 427.49999999999983, + 417, + 440.33333333333314 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 194, + 440.33333333333314, + 417, + 453.16666666666646 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 194, + 453.16666666666646, + 417, + 465.9999999999998 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 478, + 504, + 512 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 321, + 490 + ], + "score": 1.0, + "content": "Figure 32: Mean and std deviation for the residual,", + "type": "text" + }, + { + "bbox": [ + 322, + 479, + 353, + 490 + ], + "score": 0.9, + "content": "p _ { i } - y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 477, + 506, + 490 + ], + "score": 1.0, + "content": ", for a model trained on ship v truck", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "evaluated on cat, horse data (blue) and plane, car (orange). We see no clear separation between", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 500, + 441, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 441, + 513 + ], + "score": 1.0, + "content": "object and animal data. Each point represents a model trained with a different seed.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + } + ], + "index": 16.25 + }, + { + "type": "image", + "bbox": [ + 114, + 563, + 285, + 677 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 155, + 547, + 262, + 563 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 155, + 548, + 217, + 555 + ], + "spans": [ + { + "bbox": [ + 155, + 548, + 217, + 555 + ], + "score": 0.985, + "content": "Task1:10Artifacts", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 156, + 555, + 262, + 563 + ], + "spans": [ + { + "bbox": [ + 156, + 555, + 262, + 563 + ], + "score": 0.945, + "content": "Task2:10 Animals or 10 Artifacts", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "image_body", + "bbox": [ + 114, + 563, + 285, + 677 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 114, + 563, + 285, + 677 + ], + "spans": [ + { + "bbox": [ + 114, + 563, + 285, + 677 + ], + "score": 0.879, + "type": "image", + "image_path": "c45b34098840087b001418b5c2e872344856165330e725c8dd983b94f41ea99e.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 114, + 563, + 285, + 575.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 114, + 575.6666666666666, + 285, + 588.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 114, + 588.3333333333333, + 285, + 600.9999999999999 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 114, + 600.9999999999999, + 285, + 613.6666666666665 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 114, + 613.6666666666665, + 285, + 626.3333333333331 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 114, + 626.3333333333331, + 285, + 638.9999999999998 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 114, + 638.9999999999998, + 285, + 651.6666666666664 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 114, + 651.6666666666664, + 285, + 664.333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 114, + 664.333333333333, + 285, + 676.9999999999997 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 112, + 704, + 495, + 716 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 114, + 702, + 495, + 720 + ], + "spans": [ + { + "bbox": [ + 114, + 702, + 495, + 720 + ], + "score": 1.0, + "content": "Figure 33: ImageNet Two-task 10 class sequences in which similar tasks cause less forgetting.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 117, + 684, + 275, + 695 + ], + "lines": [ + { + "bbox": [ + 117, + 684, + 276, + 695 + ], + "spans": [ + { + "bbox": [ + 117, + 684, + 276, + 695 + ], + "score": 1.0, + "content": "(a) Initial classification between 10 artifacts", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "image", + "bbox": [ + 331, + 563, + 502, + 677 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 373, + 548, + 480, + 563 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 373, + 547, + 434, + 556 + ], + "spans": [ + { + "bbox": [ + 373, + 547, + 434, + 556 + ], + "score": 0.957, + "content": "Task 1:10 Animals", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 373, + 554, + 480, + 563 + ], + "spans": [ + { + "bbox": [ + 373, + 554, + 480, + 563 + ], + "score": 0.964, + "content": "Task2:10 Animals or10 Artifacts", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "image_body", + "bbox": [ + 331, + 563, + 502, + 677 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 331, + 563, + 502, + 677 + ], + "spans": [ + { + "bbox": [ + 331, + 563, + 502, + 677 + ], + "score": 0.885, + "type": "image", + "image_path": "8b45eecffc780f8e5ffdd981f1c29720590080639d5294339abfdcd35e7e827d.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 331, + 563, + 502, + 575.6666666666666 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 331, + 575.6666666666666, + 502, + 588.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 331, + 588.3333333333333, + 502, + 600.9999999999999 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 331, + 600.9999999999999, + 502, + 613.6666666666665 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 331, + 613.6666666666665, + 502, + 626.3333333333331 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 331, + 626.3333333333331, + 502, + 638.9999999999998 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 331, + 638.9999999999998, + 502, + 651.6666666666664 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 331, + 651.6666666666664, + 502, + 664.333333333333 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 331, + 664.333333333333, + 502, + 676.9999999999997 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 335, + 684, + 493, + 695 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 334, + 684, + 494, + 696 + ], + "spans": [ + { + "bbox": [ + 334, + 684, + 494, + 696 + ], + "score": 1.0, + "content": "(b) Initial classification between 10 animals", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + } + ], + "index": 40 + } + ], + "page_idx": 29, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "30", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 95, + 503, + 222 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 95, + 503, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 95, + 503, + 222 + ], + "spans": [ + { + "bbox": [ + 108, + 95, + 503, + 222 + ], + "score": 0.809, + "type": "image", + "image_path": "0c1f93a5e253061e71524d4448169be4eb17a45238f9076dd080fa8de7682520.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 95, + 503, + 137.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 137.33333333333334, + 503, + 179.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 179.66666666666669, + 503, + 222.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 231, + 505, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "Figure 31: Stage-wise weight change between initial weights and weights after Task 1 (blue) and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "between weights after Task 1 and Task2 (orange) for a model trained sequentially on disjoint 5 class", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 235, + 267 + ], + "score": 1.0, + "content": "subsets of CIFAR10. (a) Mean", + "type": "text" + }, + { + "bbox": [ + 235, + 254, + 245, + 265 + ], + "score": 0.86, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "distance. (b) Cosine similarity. We see no sign of significantly", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 265, + 433, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 383, + 277 + ], + "score": 1.0, + "content": "more change in last layer weights, and in fact see the reverse trend in", + "type": "text" + }, + { + "bbox": [ + 383, + 265, + 393, + 276 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 265, + 433, + 277 + ], + "score": 1.0, + "content": "distance.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 194, + 312, + 417, + 466 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 194, + 312, + 417, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 194, + 312, + 417, + 466 + ], + "spans": [ + { + "bbox": [ + 194, + 312, + 417, + 466 + ], + "score": 0.959, + "type": "image", + "image_path": "ec90b583322ceabb7cc1c372fbe73932285491b6e11d3b83b592d3267593afe4.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 312, + 417, + 324.8333333333333 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 194, + 324.8333333333333, + 417, + 337.66666666666663 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 194, + 337.66666666666663, + 417, + 350.49999999999994 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 350.49999999999994, + 417, + 363.33333333333326 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 363.33333333333326, + 417, + 376.1666666666666 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 194, + 376.1666666666666, + 417, + 388.9999999999999 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 194, + 388.9999999999999, + 417, + 401.8333333333332 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 194, + 401.8333333333332, + 417, + 414.6666666666665 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 194, + 414.6666666666665, + 417, + 427.49999999999983 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 194, + 427.49999999999983, + 417, + 440.33333333333314 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 194, + 440.33333333333314, + 417, + 453.16666666666646 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 194, + 453.16666666666646, + 417, + 465.9999999999998 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 478, + 504, + 512 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 321, + 490 + ], + "score": 1.0, + "content": "Figure 32: Mean and std deviation for the residual,", + "type": "text" + }, + { + "bbox": [ + 322, + 479, + 353, + 490 + ], + "score": 0.9, + "content": "p _ { i } - y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 477, + 506, + 490 + ], + "score": 1.0, + "content": ", for a model trained on ship v truck", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "evaluated on cat, horse data (blue) and plane, car (orange). We see no clear separation between", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 500, + 441, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 441, + 513 + ], + "score": 1.0, + "content": "object and animal data. Each point represents a model trained with a different seed.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + } + ], + "index": 16.25 + }, + { + "type": "image", + "bbox": [ + 114, + 563, + 285, + 677 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 155, + 547, + 262, + 563 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 155, + 548, + 217, + 555 + ], + "spans": [ + { + "bbox": [ + 155, + 548, + 217, + 555 + ], + "score": 0.985, + "content": "Task1:10Artifacts", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 156, + 555, + 262, + 563 + ], + "spans": [ + { + "bbox": [ + 156, + 555, + 262, + 563 + ], + "score": 0.945, + "content": "Task2:10 Animals or 10 Artifacts", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "image_body", + "bbox": [ + 114, + 563, + 285, + 677 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 114, + 563, + 285, + 677 + ], + "spans": [ + { + "bbox": [ + 114, + 563, + 285, + 677 + ], + "score": 0.879, + "type": "image", + "image_path": "c45b34098840087b001418b5c2e872344856165330e725c8dd983b94f41ea99e.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 114, + 563, + 285, + 575.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 114, + 575.6666666666666, + 285, + 588.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 114, + 588.3333333333333, + 285, + 600.9999999999999 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 114, + 600.9999999999999, + 285, + 613.6666666666665 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 114, + 613.6666666666665, + 285, + 626.3333333333331 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 114, + 626.3333333333331, + 285, + 638.9999999999998 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 114, + 638.9999999999998, + 285, + 651.6666666666664 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 114, + 651.6666666666664, + 285, + 664.333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 114, + 664.333333333333, + 285, + 676.9999999999997 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 112, + 704, + 495, + 716 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 114, + 702, + 495, + 720 + ], + "spans": [ + { + "bbox": [ + 114, + 702, + 495, + 720 + ], + "score": 1.0, + "content": "Figure 33: ImageNet Two-task 10 class sequences in which similar tasks cause less forgetting.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 117, + 684, + 275, + 695 + ], + "lines": [ + { + "bbox": [ + 117, + 684, + 276, + 695 + ], + "spans": [ + { + "bbox": [ + 117, + 684, + 276, + 695 + ], + "score": 1.0, + "content": "(a) Initial classification between 10 artifacts", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 117, + 684, + 276, + 695 + ] + }, + { + "type": "image", + "bbox": [ + 331, + 563, + 502, + 677 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 373, + 548, + 480, + 563 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 373, + 547, + 434, + 556 + ], + "spans": [ + { + "bbox": [ + 373, + 547, + 434, + 556 + ], + "score": 0.957, + "content": "Task 1:10 Animals", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 373, + 554, + 480, + 563 + ], + "spans": [ + { + "bbox": [ + 373, + 554, + 480, + 563 + ], + "score": 0.964, + "content": "Task2:10 Animals or10 Artifacts", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "image_body", + "bbox": [ + 331, + 563, + 502, + 677 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 331, + 563, + 502, + 677 + ], + "spans": [ + { + "bbox": [ + 331, + 563, + 502, + 677 + ], + "score": 0.885, + "type": "image", + "image_path": "8b45eecffc780f8e5ffdd981f1c29720590080639d5294339abfdcd35e7e827d.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 331, + 563, + 502, + 575.6666666666666 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 331, + 575.6666666666666, + 502, + 588.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 331, + 588.3333333333333, + 502, + 600.9999999999999 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 331, + 600.9999999999999, + 502, + 613.6666666666665 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 331, + 613.6666666666665, + 502, + 626.3333333333331 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 331, + 626.3333333333331, + 502, + 638.9999999999998 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 331, + 638.9999999999998, + 502, + 651.6666666666664 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 331, + 651.6666666666664, + 502, + 664.333333333333 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 331, + 664.333333333333, + 502, + 676.9999999999997 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 335, + 684, + 493, + 695 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 334, + 684, + 494, + 696 + ], + "spans": [ + { + "bbox": [ + 334, + 684, + 494, + 696 + ], + "score": 1.0, + "content": "(b) Initial classification between 10 animals", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + } + ], + "index": 40 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 329, + 502, + 463 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 155, + 317, + 259, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 317, + 260, + 325 + ], + "spans": [ + { + "bbox": [ + 155, + 317, + 216, + 325 + ], + "score": 0.95, + "content": "Task 1:10 Artifacts", + "type": "text" + }, + { + "bbox": [ + 216, + 317, + 233, + 325 + ], + "score": 0.32, + "content": "+ ~ 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 317, + 260, + 325 + ], + "score": 0.998, + "content": "Animals", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 155, + 324, + 217, + 333 + ], + "spans": [ + { + "bbox": [ + 155, + 324, + 217, + 333 + ], + "score": 0.939, + "content": "Task 2: 10 Artifacts", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "image_caption", + "bbox": [ + 373, + 317, + 477, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 373, + 317, + 478, + 325 + ], + "spans": [ + { + "bbox": [ + 373, + 317, + 478, + 325 + ], + "score": 0.957, + "content": "Task 1:10 Artifacts + 10 Animals", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 374, + 324, + 434, + 332 + ], + "spans": [ + { + "bbox": [ + 374, + 324, + 434, + 332 + ], + "score": 0.94, + "content": "Task 2:10 Animals", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "image_body", + "bbox": [ + 112, + 329, + 502, + 463 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 329, + 502, + 463 + ], + "spans": [ + { + "bbox": [ + 112, + 329, + 502, + 463 + ], + "score": 0.648, + "type": "image", + "image_path": "9a572e7033cd77924c6de4eba1e53eae57b8a03857e2e5c7c1e96aeb78ed10f9.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 112, + 329, + 502, + 373.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 112, + 373.6666666666667, + 502, + 418.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 112, + 418.33333333333337, + 502, + 463.00000000000006 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 471, + 506, + 495 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "Figure 34: ImageNet Two-task 20-class followed by 10-class sequences in which similar categories", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 483, + 185, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 185, + 496 + ], + "score": 1.0, + "content": "are forgotten more.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 3.75 + } + ], + "page_idx": 30, + "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": [ + 298, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 329, + 502, + 463 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 155, + 317, + 259, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 317, + 260, + 325 + ], + "spans": [ + { + "bbox": [ + 155, + 317, + 216, + 325 + ], + "score": 0.95, + "content": "Task 1:10 Artifacts", + "type": "text" + }, + { + "bbox": [ + 216, + 317, + 233, + 325 + ], + "score": 0.32, + "content": "+ ~ 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 317, + 260, + 325 + ], + "score": 0.998, + "content": "Animals", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 155, + 324, + 217, + 333 + ], + "spans": [ + { + "bbox": [ + 155, + 324, + 217, + 333 + ], + "score": 0.939, + "content": "Task 2: 10 Artifacts", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "image_caption", + "bbox": [ + 373, + 317, + 477, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 373, + 317, + 478, + 325 + ], + "spans": [ + { + "bbox": [ + 373, + 317, + 478, + 325 + ], + "score": 0.957, + "content": "Task 1:10 Artifacts + 10 Animals", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 374, + 324, + 434, + 332 + ], + "spans": [ + { + "bbox": [ + 374, + 324, + 434, + 332 + ], + "score": 0.94, + "content": "Task 2:10 Animals", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "image_body", + "bbox": [ + 112, + 329, + 502, + 463 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 329, + 502, + 463 + ], + "spans": [ + { + "bbox": [ + 112, + 329, + 502, + 463 + ], + "score": 0.648, + "type": "image", + "image_path": "9a572e7033cd77924c6de4eba1e53eae57b8a03857e2e5c7c1e96aeb78ed10f9.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 112, + 329, + 502, + 373.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 112, + 373.6666666666667, + 502, + 418.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 112, + 418.33333333333337, + 502, + 463.00000000000006 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 471, + 506, + 495 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "Figure 34: ImageNet Two-task 20-class followed by 10-class sequences in which similar categories", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 483, + 185, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 185, + 496 + ], + "score": 1.0, + "content": "are forgotten more.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 3.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_model.json b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_model.json new file mode 100644 index 0000000000000000000000000000000000000000..0e689a7ca97531576ee7de9e13d5c8c02cc01eff --- /dev/null +++ b/parse/train/LhY8QdUGSuw/LhY8QdUGSuw_model.json @@ -0,0 +1,64751 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 624, + 1304, + 624, + 1304, + 990, + 398, + 990 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1118, + 1404, + 1118, + 1404, + 1423, + 298, + 1423 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1438, + 1405, + 1438, + 1405, + 1683, + 298, + 1683 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 301, + 220, + 1350, + 220, + 1350, + 324, + 301, + 324 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 683, + 376, + 909, + 376, + 909, + 468, + 683, + 468 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 1048, + 377, + 1276, + 377, + 1276, + 468, + 1048, + 468 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 302, + 1063, + 573, + 1063, + 573, + 1097, + 302, + 1097 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 545, + 377, + 545, + 468, + 313, + 468 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 293, + 1697, + 1407, + 1697, + 1407, + 2035, + 293, + 2035 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 772, + 550, + 927, + 550, + 927, + 583, + 772, + 583 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.729 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 217.0, + 1205.0, + 217.0, + 1205.0, + 272.0, + 294.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 275.0, + 1352.0, + 275.0, + 1352.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 579.0, + 1059.0, + 579.0, + 1105.0, + 294.0, + 1105.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": [ + 769.0, + 549.0, + 932.0, + 549.0, + 932.0, + 586.0, + 769.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 626.0, + 1307.0, + 626.0, + 1307.0, + 658.0, + 396.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 656.0, + 1304.0, + 656.0, + 1304.0, + 690.0, + 393.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 685.0, + 1306.0, + 685.0, + 1306.0, + 721.0, + 393.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 715.0, + 1305.0, + 715.0, + 1305.0, + 751.0, + 394.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 747.0, + 1307.0, + 747.0, + 1307.0, + 782.0, + 392.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 778.0, + 1309.0, + 778.0, + 1309.0, + 813.0, + 393.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 808.0, + 1308.0, + 808.0, + 1308.0, + 843.0, + 393.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 837.0, + 1306.0, + 837.0, + 1306.0, + 873.0, + 393.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 868.0, + 1304.0, + 868.0, + 1304.0, + 904.0, + 393.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 899.0, + 1304.0, + 899.0, + 1304.0, + 934.0, + 393.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 929.0, + 1305.0, + 929.0, + 1305.0, + 966.0, + 393.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 960.0, + 925.0, + 960.0, + 925.0, + 994.0, + 393.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1112.0, + 1406.0, + 1112.0, + 1406.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1145.0, + 1409.0, + 1145.0, + 1409.0, + 1184.0, + 292.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1176.0, + 1405.0, + 1176.0, + 1405.0, + 1216.0, + 293.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1208.0, + 1404.0, + 1208.0, + 1404.0, + 1244.0, + 296.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1273.0, + 293.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1268.0, + 1405.0, + 1268.0, + 1405.0, + 1305.0, + 292.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1296.0, + 1406.0, + 1296.0, + 1406.0, + 1339.0, + 292.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1369.0, + 292.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1362.0, + 1405.0, + 1362.0, + 1405.0, + 1393.0, + 296.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1391.0, + 1017.0, + 1391.0, + 1017.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1437.0, + 1410.0, + 1437.0, + 1410.0, + 1474.0, + 295.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1468.0, + 1407.0, + 1468.0, + 1407.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1405.0, + 1501.0, + 1405.0, + 1534.0, + 295.0, + 1534.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, + 1560.0, + 1407.0, + 1560.0, + 1407.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 1405.0, + 1590.0, + 1405.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1622.0, + 1406.0, + 1622.0, + 1406.0, + 1655.0, + 295.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 1314.0, + 1652.0, + 1314.0, + 1689.0, + 293.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 375.0, + 829.0, + 375.0, + 829.0, + 411.0, + 680.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 407.0, + 908.0, + 407.0, + 908.0, + 439.0, + 681.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 437.0, + 913.0, + 437.0, + 913.0, + 469.0, + 681.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 372.0, + 1240.0, + 372.0, + 1240.0, + 413.0, + 1045.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 406.0, + 1208.0, + 406.0, + 1208.0, + 440.0, + 1045.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 435.0, + 1278.0, + 435.0, + 1278.0, + 470.0, + 1045.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 377.0, + 546.0, + 377.0, + 546.0, + 409.0, + 314.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 407.0, + 540.0, + 407.0, + 540.0, + 438.0, + 312.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 438.0, + 542.0, + 438.0, + 542.0, + 467.0, + 313.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1727.0, + 1405.0, + 1727.0, + 1405.0, + 1766.0, + 328.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1758.0, + 1406.0, + 1758.0, + 1406.0, + 1799.0, + 328.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1789.0, + 585.0, + 1789.0, + 585.0, + 1824.0, + 329.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1817.0, + 1406.0, + 1817.0, + 1406.0, + 1857.0, + 296.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1886.0, + 328.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1885.0, + 1169.0, + 1885.0, + 1169.0, + 1916.0, + 330.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1908.0, + 1403.0, + 1908.0, + 1403.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1941.0, + 1131.0, + 1941.0, + 1131.0, + 1979.0, + 328.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2010.0, + 297.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2036.0, + 328.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1330, + 1405, + 1330, + 1405, + 1607, + 298, + 1607 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1069, + 1405, + 1069, + 1405, + 1315, + 298, + 1315 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 839, + 1405, + 839, + 1405, + 1056, + 298, + 1056 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1742, + 1404, + 1742, + 1404, + 1926, + 298, + 1926 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1943, + 1402, + 1943, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 298, + 446, + 1403, + 446, + 1403, + 558, + 298, + 558 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 303, + 224, + 1390, + 224, + 1390, + 443, + 303, + 443 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 320, + 641, + 1401, + 641, + 1401, + 704, + 320, + 704 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 301, + 773, + 587, + 773, + 587, + 809, + 301, + 809 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 1677, + 445, + 1677, + 445, + 1712, + 300, + 1712 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.659 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.316 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 444.0, + 1407.0, + 444.0, + 1407.0, + 478.0, + 294.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 472.0, + 1404.0, + 472.0, + 1404.0, + 505.0, + 294.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 494.0, + 1407.0, + 494.0, + 1407.0, + 539.0, + 292.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 528.0, + 588.0, + 528.0, + 588.0, + 562.0, + 294.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 231.0, + 504.0, + 231.0, + 504.0, + 251.0, + 390.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 231.0, + 793.0, + 231.0, + 793.0, + 251.0, + 662.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 231.0, + 1076.0, + 231.0, + 1076.0, + 251.0, + 938.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 231.0, + 1365.0, + 231.0, + 1365.0, + 251.0, + 1211.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 245.0, + 1189.0, + 245.0, + 1189.0, + 264.0, + 1162.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 257.0, + 349.0, + 257.0, + 349.0, + 276.0, + 320.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 286.0, + 347.0, + 286.0, + 347.0, + 376.0, + 302.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 270.0, + 630.0, + 270.0, + 630.0, + 374.0, + 587.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 275.0, + 910.0, + 275.0, + 910.0, + 360.0, + 866.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 281.0, + 1190.0, + 281.0, + 1190.0, + 360.0, + 1147.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 340.0, + 348.0, + 340.0, + 348.0, + 362.0, + 319.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 337.0, + 629.0, + 337.0, + 629.0, + 360.0, + 599.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 351.0, + 910.0, + 351.0, + 910.0, + 370.0, + 881.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 355.0, + 1189.0, + 355.0, + 1189.0, + 373.0, + 1162.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 383.0, + 347.0, + 383.0, + 347.0, + 402.0, + 321.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 367.0, + 539.0, + 367.0, + 539.0, + 402.0, + 492.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 373.0, + 628.0, + 373.0, + 628.0, + 392.0, + 600.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 367.0, + 819.0, + 367.0, + 819.0, + 403.0, + 772.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 385.0, + 914.0, + 385.0, + 914.0, + 412.0, + 880.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 367.0, + 1100.0, + 367.0, + 1100.0, + 402.0, + 1053.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 390.0, + 1190.0, + 390.0, + 1190.0, + 408.0, + 1162.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 365.0, + 1381.0, + 365.0, + 1381.0, + 403.0, + 1332.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 412.0, + 368.0, + 412.0, + 368.0, + 427.0, + 353.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 410.0, + 430.0, + 410.0, + 430.0, + 429.0, + 406.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 410.0, + 488.0, + 410.0, + 488.0, + 429.0, + 464.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 410.0, + 546.0, + 410.0, + 546.0, + 429.0, + 521.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 411.0, + 647.0, + 411.0, + 647.0, + 428.0, + 633.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 410.0, + 710.0, + 410.0, + 710.0, + 429.0, + 686.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 410.0, + 769.0, + 410.0, + 769.0, + 429.0, + 745.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 410.0, + 827.0, + 410.0, + 827.0, + 429.0, + 802.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 412.0, + 929.0, + 412.0, + 929.0, + 427.0, + 913.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 410.0, + 981.0, + 410.0, + 981.0, + 429.0, + 958.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 411.0, + 1032.0, + 411.0, + 1032.0, + 429.0, + 1004.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 411.0, + 1081.0, + 411.0, + 1081.0, + 429.0, + 1052.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 412.0, + 1209.0, + 412.0, + 1209.0, + 427.0, + 1194.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 410.0, + 1262.0, + 410.0, + 1262.0, + 429.0, + 1237.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 411.0, + 1313.0, + 411.0, + 1313.0, + 429.0, + 1283.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 408.0, + 1362.0, + 408.0, + 1362.0, + 431.0, + 1330.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 426.0, + 492.0, + 426.0, + 492.0, + 446.0, + 404.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 426.0, + 771.0, + 426.0, + 771.0, + 446.0, + 683.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 426.0, + 1052.0, + 426.0, + 1052.0, + 446.0, + 963.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 426.0, + 1332.0, + 426.0, + 1332.0, + 446.0, + 1243.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 770.0, + 594.0, + 770.0, + 594.0, + 817.0, + 291.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1671.0, + 451.0, + 1671.0, + 451.0, + 1719.0, + 290.0, + 1719.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, + 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, + 1328.0, + 1408.0, + 1328.0, + 1408.0, + 1368.0, + 293.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1406.0, + 1360.0, + 1406.0, + 1397.0, + 295.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1408.0, + 1391.0, + 1408.0, + 1428.0, + 295.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1420.0, + 1407.0, + 1420.0, + 1407.0, + 1461.0, + 295.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1454.0, + 1407.0, + 1454.0, + 1407.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1520.0, + 293.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1550.0, + 293.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1538.0, + 1406.0, + 1538.0, + 1406.0, + 1584.0, + 292.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1568.0, + 608.0, + 1568.0, + 608.0, + 1615.0, + 292.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1071.0, + 1405.0, + 1071.0, + 1405.0, + 1104.0, + 296.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1100.0, + 1410.0, + 1100.0, + 1410.0, + 1136.0, + 292.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1128.0, + 1409.0, + 1128.0, + 1409.0, + 1169.0, + 292.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 1407.0, + 1162.0, + 1407.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1227.0, + 295.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1223.0, + 1406.0, + 1223.0, + 1406.0, + 1257.0, + 295.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1254.0, + 1407.0, + 1254.0, + 1407.0, + 1288.0, + 295.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1282.0, + 658.0, + 1282.0, + 658.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 837.0, + 1406.0, + 837.0, + 1406.0, + 878.0, + 292.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 872.0, + 1405.0, + 872.0, + 1405.0, + 907.0, + 295.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 902.0, + 1407.0, + 902.0, + 1407.0, + 936.0, + 295.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 930.0, + 1407.0, + 930.0, + 1407.0, + 967.0, + 293.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 1405.0, + 959.0, + 1405.0, + 997.0, + 293.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 990.0, + 1405.0, + 990.0, + 1405.0, + 1029.0, + 292.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1019.0, + 560.0, + 1019.0, + 560.0, + 1063.0, + 292.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1743.0, + 1404.0, + 1743.0, + 1404.0, + 1774.0, + 297.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1806.0, + 296.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1801.0, + 1406.0, + 1801.0, + 1406.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1404.0, + 1834.0, + 1404.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 1404.0, + 1864.0, + 1404.0, + 1899.0, + 293.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 1014.0, + 1895.0, + 1014.0, + 1928.0, + 294.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1406.0, + 1938.0, + 1406.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1407.0, + 1969.0, + 1407.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1282.0, + 2002.0, + 1282.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 638.0, + 1407.0, + 638.0, + 1407.0, + 678.0, + 328.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 667.0, + 451.0, + 667.0, + 451.0, + 708.0, + 327.0, + 708.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1211, + 1405, + 1211, + 1405, + 1427, + 297, + 1427 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1651, + 1404, + 1651, + 1404, + 1869, + 297, + 1869 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 633, + 1405, + 633, + 1405, + 879, + 297, + 879 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 953, + 1405, + 953, + 1405, + 1137, + 298, + 1137 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 1943, + 1402, + 1943, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 449, + 1405, + 449, + 1405, + 533, + 296, + 533 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1439, + 1402, + 1439, + 1402, + 1503, + 297, + 1503 + ], + "score": 0.949 + }, + { + "category_id": 3, + "poly": [ + 302, + 226, + 1391, + 226, + 1391, + 445, + 302, + 445 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 509, + 1514, + 1188, + 1514, + 1188, + 1597, + 509, + 1597 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 297, + 1905, + 876, + 1905, + 876, + 1936, + 297, + 1936 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 298, + 1606, + 1402, + 1606, + 1402, + 1639, + 298, + 1639 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 294, + 584, + 1347, + 584, + 1347, + 621, + 294, + 621 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 299, + 916, + 810, + 916, + 810, + 947, + 299, + 947 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1540, + 1400, + 1540, + 1400, + 1569, + 1366, + 1569 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 299, + 1174, + 1176, + 1174, + 1176, + 1205, + 299, + 1205 + ], + "score": 0.739 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.624 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.366 + }, + { + "category_id": 1, + "poly": [ + 299, + 1174, + 1176, + 1174, + 1176, + 1205, + 299, + 1205 + ], + "score": 0.182 + }, + { + "category_id": 14, + "poly": [ + 509, + 1513, + 1189, + 1513, + 1189, + 1598, + 509, + 1598 + ], + "score": 0.94, + "latex": "\\mathrm { C K A } ( \\mathrm { X } , \\mathrm { Y } ) = \\frac { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { Y Y ^ { T } } ) } { \\sqrt { \\mathrm { H S I C } ( \\mathrm { X X ^ { T } } , \\mathrm { X X ^ { T } } ) } \\sqrt { \\mathrm { H S I C } ( \\mathrm { Y Y ^ { T } } , \\mathrm { Y Y ^ { T } } ) } }" + }, + { + "category_id": 13, + "poly": [ + 695, + 1440, + 818, + 1440, + 818, + 1470, + 695, + 1470 + ], + "score": 0.92, + "latex": "Y \\in \\mathbb { R } ^ { n \\times p }" + }, + { + "category_id": 13, + "poly": [ + 519, + 1440, + 644, + 1440, + 644, + 1470, + 519, + 1470 + ], + "score": 0.91, + "latex": "\\ b X \\in \\mathbb { R } ^ { n \\times p }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1972, + 1142, + 1972, + 1142, + 2001, + 1017, + 2001 + ], + "score": 0.91, + "latex": "\\ b X \\in \\mathbb R ^ { n \\times p }" + }, + { + "category_id": 13, + "poly": [ + 1279, + 2004, + 1307, + 2004, + 1307, + 2030, + 1279, + 2030 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 488, + 1477, + 506, + 1477, + 506, + 1503, + 488, + 1503 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 700, + 2010, + 717, + 2010, + 717, + 2035, + 700, + 2035 + ], + "score": 0.78, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 527, + 2008, + 547, + 2008, + 547, + 2030, + 527, + 2030 + ], + "score": 0.73, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 298, + 1479, + 317, + 1479, + 317, + 1499, + 298, + 1499 + ], + "score": 0.71, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 444.0, + 1408.0, + 444.0, + 1408.0, + 483.0, + 293.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 507.0, + 294.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 501.0, + 1402.0, + 501.0, + 1402.0, + 538.0, + 293.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 252.0, + 377.0, + 252.0, + 377.0, + 279.0, + 319.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 230.0, + 512.0, + 230.0, + 512.0, + 272.0, + 394.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 243.0, + 656.0, + 243.0, + 656.0, + 273.0, + 595.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 231.0, + 799.0, + 231.0, + 799.0, + 281.0, + 663.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 257.0, + 938.0, + 257.0, + 938.0, + 283.0, + 875.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 237.0, + 1081.0, + 237.0, + 1081.0, + 257.0, + 944.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 237.0, + 1365.0, + 237.0, + 1365.0, + 283.0, + 1151.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 275.0, + 369.0, + 275.0, + 369.0, + 382.0, + 285.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 272.0, + 445.0, + 272.0, + 445.0, + 287.0, + 428.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 282.0, + 633.0, + 282.0, + 633.0, + 303.0, + 598.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 288.0, + 781.0, + 288.0, + 781.0, + 301.0, + 770.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 284.0, + 917.0, + 284.0, + 917.0, + 307.0, + 875.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 283.0, + 975.0, + 283.0, + 975.0, + 294.0, + 963.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 274.0, + 1195.0, + 274.0, + 1195.0, + 296.0, + 1151.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 284.0, + 1297.0, + 284.0, + 1297.0, + 301.0, + 1284.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 294.0, + 1209.0, + 294.0, + 1209.0, + 385.0, + 1123.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 295.0, + 881.0, + 295.0, + 881.0, + 372.0, + 856.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 295.0, + 1195.0, + 295.0, + 1195.0, + 323.0, + 1136.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 296.0, + 1020.0, + 296.0, + 1020.0, + 311.0, + 1005.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 307.0, + 917.0, + 307.0, + 917.0, + 329.0, + 874.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 316.0, + 356.0, + 316.0, + 356.0, + 338.0, + 319.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 325.0, + 511.0, + 325.0, + 511.0, + 347.0, + 498.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 316.0, + 635.0, + 316.0, + 635.0, + 337.0, + 595.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 328.0, + 916.0, + 328.0, + 916.0, + 353.0, + 874.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 323.0, + 1193.0, + 323.0, + 1193.0, + 345.0, + 1151.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 337.0, + 1336.0, + 337.0, + 1336.0, + 359.0, + 1322.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 349.0, + 916.0, + 349.0, + 916.0, + 375.0, + 871.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 375.0, + 359.0, + 375.0, + 359.0, + 398.0, + 319.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 375.0, + 917.0, + 375.0, + 917.0, + 397.0, + 875.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 372.0, + 1193.0, + 372.0, + 1193.0, + 394.0, + 1151.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 385.0, + 635.0, + 385.0, + 635.0, + 408.0, + 596.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 390.0, + 832.0, + 390.0, + 832.0, + 412.0, + 813.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 398.0, + 917.0, + 398.0, + 917.0, + 419.0, + 874.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 385.0, + 1101.0, + 385.0, + 1101.0, + 409.0, + 1083.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 397.0, + 1196.0, + 397.0, + 1196.0, + 418.0, + 1151.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 412.0, + 375.0, + 412.0, + 375.0, + 429.0, + 359.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 412.0, + 409.0, + 412.0, + 409.0, + 429.0, + 394.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 412.0, + 444.0, + 412.0, + 444.0, + 429.0, + 429.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 412.0, + 479.0, + 412.0, + 479.0, + 429.0, + 464.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 413.0, + 515.0, + 413.0, + 515.0, + 429.0, + 498.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 412.0, + 549.0, + 412.0, + 549.0, + 429.0, + 534.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 412.0, + 652.0, + 412.0, + 652.0, + 429.0, + 637.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 412.0, + 697.0, + 412.0, + 697.0, + 429.0, + 682.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 412.0, + 739.0, + 412.0, + 739.0, + 429.0, + 724.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 412.0, + 783.0, + 412.0, + 783.0, + 429.0, + 768.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 413.0, + 828.0, + 413.0, + 828.0, + 429.0, + 812.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 413.0, + 934.0, + 413.0, + 934.0, + 430.0, + 920.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 413.0, + 978.0, + 413.0, + 978.0, + 430.0, + 963.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 413.0, + 1020.0, + 413.0, + 1020.0, + 430.0, + 1005.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 413.0, + 1063.0, + 413.0, + 1063.0, + 430.0, + 1047.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 413.0, + 1105.0, + 413.0, + 1105.0, + 429.0, + 1090.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 413.0, + 1213.0, + 413.0, + 1213.0, + 430.0, + 1197.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 413.0, + 1299.0, + 413.0, + 1299.0, + 430.0, + 1282.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 413.0, + 1341.0, + 413.0, + 1341.0, + 430.0, + 1326.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 413.0, + 1384.0, + 413.0, + 1384.0, + 429.0, + 1368.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 424.0, + 501.0, + 424.0, + 501.0, + 448.0, + 406.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 424.0, + 779.0, + 424.0, + 779.0, + 448.0, + 683.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 425.0, + 1059.0, + 425.0, + 1059.0, + 449.0, + 965.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 425.0, + 1336.0, + 425.0, + 1336.0, + 449.0, + 1243.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.25, + 295.5, + 475.25, + 295.5, + 475.25, + 304.5, + 471.25, + 304.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.75, + 329.5, + 1055.75, + 329.5, + 1055.75, + 338.0, + 1051.75, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.75, + 392.0, + 1374.75, + 392.0, + 1374.75, + 401.0, + 1369.75, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 386.0, + 558.0, + 386.0, + 558.0, + 411.0, + 527.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.25, + 412.0, + 1257.25, + 412.0, + 1257.25, + 430.0, + 1238.25, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1904.0, + 879.0, + 1904.0, + 879.0, + 1939.0, + 294.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 584.0, + 1350.0, + 584.0, + 1350.0, + 624.0, + 292.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 915.0, + 813.0, + 915.0, + 813.0, + 950.0, + 295.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1172.0, + 1178.0, + 1172.0, + 1178.0, + 1210.0, + 294.0, + 1210.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": [ + 294.0, + 1209.0, + 1406.0, + 1209.0, + 1406.0, + 1246.0, + 294.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1240.0, + 1407.0, + 1240.0, + 1407.0, + 1282.0, + 292.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1305.0, + 292.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1303.0, + 1405.0, + 1303.0, + 1405.0, + 1338.0, + 292.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1330.0, + 1406.0, + 1330.0, + 1406.0, + 1371.0, + 291.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1363.0, + 1403.0, + 1363.0, + 1403.0, + 1398.0, + 294.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1394.0, + 905.0, + 1394.0, + 905.0, + 1429.0, + 295.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1653.0, + 1406.0, + 1653.0, + 1406.0, + 1688.0, + 295.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1683.0, + 1404.0, + 1683.0, + 1404.0, + 1718.0, + 295.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 1406.0, + 1713.0, + 1406.0, + 1751.0, + 294.0, + 1751.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, + 1776.0, + 1406.0, + 1776.0, + 1406.0, + 1811.0, + 295.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1805.0, + 1402.0, + 1805.0, + 1402.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1837.0, + 1392.0, + 1837.0, + 1392.0, + 1874.0, + 292.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 635.0, + 1406.0, + 635.0, + 1406.0, + 668.0, + 295.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 666.0, + 1405.0, + 666.0, + 1405.0, + 700.0, + 295.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 694.0, + 1405.0, + 694.0, + 1405.0, + 732.0, + 294.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 724.0, + 1406.0, + 724.0, + 1406.0, + 763.0, + 292.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 756.0, + 1403.0, + 756.0, + 1403.0, + 790.0, + 295.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 1406.0, + 786.0, + 1406.0, + 823.0, + 294.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 818.0, + 1403.0, + 818.0, + 1403.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 849.0, + 825.0, + 849.0, + 825.0, + 882.0, + 296.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 951.0, + 1405.0, + 951.0, + 1405.0, + 987.0, + 295.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 984.0, + 1406.0, + 984.0, + 1406.0, + 1020.0, + 293.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1013.0, + 1408.0, + 1013.0, + 1408.0, + 1048.0, + 292.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1041.0, + 1406.0, + 1041.0, + 1406.0, + 1081.0, + 292.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1073.0, + 1406.0, + 1073.0, + 1406.0, + 1111.0, + 292.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1101.0, + 1322.0, + 1101.0, + 1322.0, + 1144.0, + 292.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1016.0, + 1969.0, + 1016.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2009.0, + 1143.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 526.0, + 2002.0, + 526.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 2002.0, + 699.0, + 2002.0, + 699.0, + 2037.0, + 548.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 2002.0, + 1278.0, + 2002.0, + 1278.0, + 2037.0, + 718.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2037.0, + 1308.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1435.0, + 518.0, + 1435.0, + 518.0, + 1479.0, + 295.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1435.0, + 694.0, + 1435.0, + 694.0, + 1479.0, + 645.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1435.0, + 1407.0, + 1435.0, + 1407.0, + 1479.0, + 819.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1471.0, + 297.0, + 1471.0, + 297.0, + 1507.0, + 293.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1471.0, + 487.0, + 1471.0, + 487.0, + 1507.0, + 318.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1471.0, + 789.0, + 1471.0, + 789.0, + 1507.0, + 507.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1603.0, + 1407.0, + 1603.0, + 1407.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1172.0, + 1178.0, + 1172.0, + 1178.0, + 1210.0, + 294.0, + 1210.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1678, + 1405, + 1678, + 1405, + 1958, + 297, + 1958 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 303, + 223, + 1394, + 223, + 1394, + 696, + 303, + 696 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 296, + 1138, + 1405, + 1138, + 1405, + 1362, + 296, + 1362 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 297, + 709, + 1405, + 709, + 1405, + 822, + 297, + 822 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 300, + 1572, + 1400, + 1572, + 1400, + 1666, + 300, + 1666 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 1380, + 1400, + 1380, + 1400, + 1476, + 298, + 1476 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 329, + 856, + 1308, + 856, + 1308, + 1135, + 329, + 1135 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1400, + 1971, + 1400, + 2035, + 297, + 2035 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 628, + 1493, + 1069, + 1493, + 1069, + 1557, + 628, + 1557 + ], + "score": 0.939 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.776 + }, + { + "category_id": 14, + "poly": [ + 628, + 1491, + 1070, + 1491, + 1070, + 1557, + 628, + 1557 + ], + "score": 0.93, + "latex": "\\mathrm { S u b s p a c e S i m } _ { k } ( X , Y ) = \\frac { 1 } { k } | | V _ { k } ^ { T } U _ { k } | | _ { F } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 902, + 1573, + 1025, + 1573, + 1025, + 1607, + 902, + 1607 + ], + "score": 0.92, + "latex": "( v _ { 1 } , . . . , v _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 750, + 1384, + 863, + 1384, + 863, + 1416, + 750, + 1416 + ], + "score": 0.92, + "latex": "( \\lambda _ { 1 } , \\lambda _ { 2 } . . . )" + }, + { + "category_id": 13, + "poly": [ + 443, + 1386, + 563, + 1386, + 563, + 1415, + 443, + 1415 + ], + "score": 0.91, + "latex": "( v _ { 1 } , v _ { 2 } , \\ldots )" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1573, + 1205, + 1573, + 1205, + 1607, + 1077, + 1607 + ], + "score": 0.91, + "latex": "( u _ { 1 } , . . . , u _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 898, + 1381, + 968, + 1381, + 968, + 1412, + 898, + 1412 + ], + "score": 0.91, + "latex": "X ^ { T } X" + }, + { + "category_id": 13, + "poly": [ + 630, + 1419, + 733, + 1419, + 733, + 1445, + 630, + 1445 + ], + "score": 0.91, + "latex": "v _ { 1 } , . . . , v _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1384, + 1100, + 1384, + 1100, + 1414, + 1067, + 1414 + ], + "score": 0.9, + "latex": "V _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1044, + 1682, + 1105, + 1682, + 1105, + 1713, + 1044, + 1713 + ], + "score": 0.9, + "latex": "X , Y" + }, + { + "category_id": 13, + "poly": [ + 922, + 1415, + 956, + 1415, + 956, + 1444, + 922, + 1444 + ], + "score": 0.88, + "latex": "U _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1605, + 1292, + 1605, + 1292, + 1638, + 1151, + 1638 + ], + "score": 0.87, + "latex": "s \\mathrm { i m } _ { k } ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 492, + 1445, + 516, + 1445, + 516, + 1471, + 492, + 1471 + ], + "score": 0.81, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 540, + 1636, + 558, + 1636, + 558, + 1662, + 540, + 1662 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1575, + 1401, + 1575, + 1401, + 1601, + 1373, + 1601 + ], + "score": 0.79, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 380, + 1415, + 399, + 1415, + 399, + 1441, + 380, + 1441 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 343, + 1605, + 369, + 1605, + 369, + 1632, + 343, + 1632 + ], + "score": 0.77, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 903, + 1681, + 998, + 1681, + 998, + 1715, + 903, + 1715 + ], + "score": 0.53, + "latex": "{ } _ { k } ( X , Y )" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 229.0, + 511.0, + 229.0, + 511.0, + 254.0, + 392.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 232.0, + 799.0, + 232.0, + 799.0, + 252.0, + 664.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 232.0, + 1083.0, + 232.0, + 1083.0, + 252.0, + 940.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 237.0, + 1372.0, + 237.0, + 1372.0, + 257.0, + 1217.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 247.0, + 372.0, + 247.0, + 372.0, + 380.0, + 303.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 257.0, + 417.0, + 257.0, + 417.0, + 280.0, + 397.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 271.0, + 461.0, + 271.0, + 461.0, + 292.0, + 442.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 305.0, + 506.0, + 305.0, + 506.0, + 326.0, + 487.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 319.0, + 631.0, + 319.0, + 631.0, + 347.0, + 600.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 261.0, + 687.0, + 261.0, + 687.0, + 283.0, + 669.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 275.0, + 722.0, + 275.0, + 722.0, + 292.0, + 706.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 295.0, + 758.0, + 295.0, + 758.0, + 310.0, + 741.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 250.0, + 930.0, + 250.0, + 930.0, + 392.0, + 852.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 286.0, + 966.0, + 286.0, + 966.0, + 302.0, + 949.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 296.0, + 1002.0, + 296.0, + 1002.0, + 312.0, + 986.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 311.0, + 1037.0, + 311.0, + 1037.0, + 328.0, + 1021.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 260.0, + 1197.0, + 260.0, + 1197.0, + 381.0, + 1143.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 269.0, + 1216.0, + 269.0, + 1216.0, + 287.0, + 1200.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 300.0, + 1275.0, + 300.0, + 1275.0, + 321.0, + 1255.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 351.0, + 351.0, + 351.0, + 351.0, + 374.0, + 319.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 360.0, + 629.0, + 360.0, + 629.0, + 379.0, + 599.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 376.0, + 793.0, + 376.0, + 793.0, + 393.0, + 778.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 370.0, + 908.0, + 370.0, + 908.0, + 389.0, + 882.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 362.0, + 1195.0, + 362.0, + 1195.0, + 385.0, + 1160.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 356.0, + 1331.0, + 356.0, + 1331.0, + 374.0, + 1315.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 385.0, + 350.0, + 385.0, + 350.0, + 408.0, + 320.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 392.0, + 552.0, + 392.0, + 552.0, + 416.0, + 532.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 394.0, + 631.0, + 394.0, + 631.0, + 417.0, + 600.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 384.0, + 1073.0, + 384.0, + 1073.0, + 402.0, + 1057.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 388.0, + 1110.0, + 388.0, + 1110.0, + 410.0, + 1092.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 390.0, + 1197.0, + 390.0, + 1197.0, + 412.0, + 1160.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 387.0, + 1389.0, + 387.0, + 1389.0, + 405.0, + 1373.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 417.0, + 371.0, + 417.0, + 371.0, + 435.0, + 355.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 417.0, + 414.0, + 417.0, + 414.0, + 434.0, + 399.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 416.0, + 459.0, + 416.0, + 459.0, + 434.0, + 444.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 416.0, + 504.0, + 416.0, + 504.0, + 435.0, + 489.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 416.0, + 548.0, + 416.0, + 548.0, + 434.0, + 533.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 417.0, + 650.0, + 417.0, + 650.0, + 434.0, + 635.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 417.0, + 686.0, + 417.0, + 686.0, + 434.0, + 671.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 416.0, + 721.0, + 416.0, + 721.0, + 434.0, + 706.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 416.0, + 757.0, + 416.0, + 757.0, + 435.0, + 742.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 417.0, + 793.0, + 417.0, + 793.0, + 434.0, + 777.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 417.0, + 829.0, + 417.0, + 829.0, + 435.0, + 813.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 417.0, + 930.0, + 417.0, + 930.0, + 435.0, + 914.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 420.0, + 964.0, + 420.0, + 964.0, + 433.0, + 953.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 416.0, + 1001.0, + 416.0, + 1001.0, + 435.0, + 986.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 417.0, + 1037.0, + 417.0, + 1037.0, + 435.0, + 1022.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 417.0, + 1073.0, + 417.0, + 1073.0, + 434.0, + 1057.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 416.0, + 1108.0, + 416.0, + 1108.0, + 435.0, + 1093.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 419.0, + 1214.0, + 419.0, + 1214.0, + 435.0, + 1200.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 420.0, + 1273.0, + 420.0, + 1273.0, + 435.0, + 1258.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 417.0, + 1331.0, + 417.0, + 1331.0, + 435.0, + 1316.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 417.0, + 1388.0, + 417.0, + 1388.0, + 435.0, + 1373.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 428.0, + 473.0, + 428.0, + 473.0, + 455.0, + 430.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 430.0, + 754.0, + 430.0, + 754.0, + 455.0, + 709.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 431.0, + 1033.0, + 431.0, + 1033.0, + 453.0, + 990.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 430.0, + 1316.0, + 430.0, + 1316.0, + 455.0, + 1273.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 495.0, + 798.0, + 495.0, + 798.0, + 516.0, + 615.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 489.0, + 1092.0, + 489.0, + 1092.0, + 513.0, + 944.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 508.0, + 919.0, + 508.0, + 919.0, + 527.0, + 904.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 518.0, + 589.0, + 518.0, + 589.0, + 538.0, + 568.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 521.0, + 903.0, + 521.0, + 903.0, + 539.0, + 878.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 525.0, + 633.0, + 525.0, + 633.0, + 536.0, + 623.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 526.0, + 687.0, + 526.0, + 687.0, + 541.0, + 666.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 527.0, + 606.0, + 527.0, + 606.0, + 653.0, + 550.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 529.0, + 646.0, + 529.0, + 646.0, + 539.0, + 633.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 529.0, + 661.0, + 529.0, + 661.0, + 544.0, + 646.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 529.0, + 915.0, + 529.0, + 915.0, + 649.0, + 851.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 534.0, + 960.0, + 534.0, + 960.0, + 544.0, + 949.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 561.0, + 712.0, + 561.0, + 712.0, + 571.0, + 702.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 553.0, + 902.0, + 553.0, + 902.0, + 572.0, + 878.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 571.0, + 767.0, + 571.0, + 767.0, + 580.0, + 757.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 576.0, + 587.0, + 576.0, + 587.0, + 591.0, + 571.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 589.0, + 820.0, + 589.0, + 820.0, + 599.0, + 806.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 604.0, + 588.0, + 604.0, + 588.0, + 619.0, + 571.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 601.0, + 1045.0, + 601.0, + 1045.0, + 614.0, + 1033.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 632.0, + 588.0, + 632.0, + 588.0, + 648.0, + 569.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 640.0, + 1088.0, + 640.0, + 1088.0, + 658.0, + 1073.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 660.0, + 589.0, + 660.0, + 589.0, + 676.0, + 569.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 649.0, + 904.0, + 649.0, + 904.0, + 667.0, + 877.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 656.0, + 1133.0, + 656.0, + 1133.0, + 667.0, + 1118.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 671.0, + 619.0, + 671.0, + 619.0, + 682.0, + 608.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 671.0, + 727.0, + 671.0, + 727.0, + 681.0, + 713.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 671.0, + 753.0, + 671.0, + 753.0, + 681.0, + 739.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 671.0, + 779.0, + 671.0, + 779.0, + 682.0, + 767.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 668.0, + 808.0, + 668.0, + 808.0, + 683.0, + 791.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 669.0, + 917.0, + 669.0, + 917.0, + 681.0, + 908.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 669.0, + 1043.0, + 669.0, + 1043.0, + 681.0, + 1035.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 669.0, + 1085.0, + 669.0, + 1085.0, + 681.0, + 1076.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 667.0, + 1130.0, + 667.0, + 1130.0, + 683.0, + 1115.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 677.0, + 780.0, + 677.0, + 780.0, + 697.0, + 631.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.75, + 247.5, + 653.75, + 247.5, + 653.75, + 276.5, + 598.75, + 276.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 391.0, + 836.0, + 391.0, + 836.0, + 419.0, + 808.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.25, + 675.0, + 1039.25, + 675.0, + 1039.25, + 698.0, + 995.25, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1137.0, + 1406.0, + 1137.0, + 1406.0, + 1169.0, + 295.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1163.0, + 1407.0, + 1163.0, + 1407.0, + 1199.0, + 291.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1192.0, + 1407.0, + 1192.0, + 1407.0, + 1228.0, + 291.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 1407.0, + 1220.0, + 1407.0, + 1254.0, + 293.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1246.0, + 1406.0, + 1246.0, + 1406.0, + 1283.0, + 293.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1277.0, + 1406.0, + 1277.0, + 1406.0, + 1308.0, + 294.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1301.0, + 1406.0, + 1301.0, + 1406.0, + 1337.0, + 293.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1330.0, + 541.0, + 1330.0, + 541.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 707.0, + 1405.0, + 707.0, + 1405.0, + 743.0, + 295.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 735.0, + 1402.0, + 735.0, + 1402.0, + 768.0, + 295.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 797.0, + 297.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 787.0, + 1016.0, + 787.0, + 1016.0, + 831.0, + 292.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 859.0, + 652.0, + 859.0, + 652.0, + 880.0, + 337.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 859.0, + 977.0, + 859.0, + 977.0, + 880.0, + 679.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 859.0, + 1312.0, + 859.0, + 1312.0, + 880.0, + 995.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 875.0, + 660.0, + 875.0, + 660.0, + 895.0, + 345.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 874.0, + 994.0, + 874.0, + 994.0, + 894.0, + 680.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 875.0, + 1310.0, + 875.0, + 1310.0, + 895.0, + 1007.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 888.0, + 397.0, + 888.0, + 397.0, + 911.0, + 343.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 895.0, + 440.0, + 895.0, + 440.0, + 907.0, + 419.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 901.0, + 479.0, + 901.0, + 479.0, + 908.0, + 470.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 889.0, + 724.0, + 889.0, + 724.0, + 910.0, + 675.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 890.0, + 1038.0, + 890.0, + 1038.0, + 908.0, + 1006.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 919.0, + 371.0, + 919.0, + 371.0, + 938.0, + 343.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 906.0, + 525.0, + 906.0, + 525.0, + 914.0, + 515.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 914.0, + 573.0, + 914.0, + 573.0, + 926.0, + 559.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 912.0, + 616.0, + 912.0, + 616.0, + 921.0, + 606.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 917.0, + 704.0, + 917.0, + 704.0, + 940.0, + 675.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 904.0, + 776.0, + 904.0, + 776.0, + 912.0, + 767.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 919.0, + 1034.0, + 919.0, + 1034.0, + 938.0, + 1006.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 908.0, + 1095.0, + 908.0, + 1095.0, + 918.0, + 1085.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 921.0, + 1276.0, + 921.0, + 1276.0, + 930.0, + 1266.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 926.0, + 954.0, + 926.0, + 954.0, + 938.0, + 940.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 929.0, + 1142.0, + 929.0, + 1142.0, + 942.0, + 1129.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 935.0, + 370.0, + 935.0, + 370.0, + 1063.0, + 327.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 935.0, + 703.0, + 935.0, + 703.0, + 1063.0, + 660.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 951.0, + 893.0, + 951.0, + 893.0, + 961.0, + 881.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 935.0, + 1033.0, + 935.0, + 1033.0, + 1064.0, + 990.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 946.0, + 1049.0, + 946.0, + 1049.0, + 956.0, + 1039.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 952.0, + 1185.0, + 952.0, + 1185.0, + 961.0, + 1176.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 978.0, + 368.0, + 978.0, + 368.0, + 996.0, + 344.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 974.0, + 700.0, + 974.0, + 700.0, + 997.0, + 675.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 978.0, + 1031.0, + 978.0, + 1031.0, + 996.0, + 1007.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1007.0, + 370.0, + 1007.0, + 370.0, + 1027.0, + 342.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1006.0, + 702.0, + 1006.0, + 702.0, + 1027.0, + 675.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1007.0, + 1033.0, + 1007.0, + 1033.0, + 1027.0, + 1006.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1017.0, + 1231.0, + 1017.0, + 1231.0, + 1026.0, + 1221.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1039.0, + 368.0, + 1039.0, + 368.0, + 1056.0, + 344.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1050.0, + 397.0, + 1050.0, + 397.0, + 1063.0, + 384.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1047.0, + 495.0, + 1047.0, + 495.0, + 1064.0, + 406.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1035.0, + 700.0, + 1035.0, + 700.0, + 1057.0, + 675.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1051.0, + 727.0, + 1051.0, + 727.0, + 1062.0, + 717.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1047.0, + 826.0, + 1047.0, + 826.0, + 1064.0, + 739.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1035.0, + 951.0, + 1035.0, + 951.0, + 1045.0, + 940.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1037.0, + 1033.0, + 1037.0, + 1033.0, + 1057.0, + 1006.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1050.0, + 1060.0, + 1050.0, + 1060.0, + 1063.0, + 1047.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1047.0, + 1159.0, + 1047.0, + 1159.0, + 1064.0, + 1069.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1045.0, + 1276.0, + 1045.0, + 1276.0, + 1054.0, + 1266.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1067.0, + 372.0, + 1067.0, + 372.0, + 1086.0, + 343.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1065.0, + 398.0, + 1065.0, + 398.0, + 1081.0, + 384.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1063.0, + 558.0, + 1063.0, + 558.0, + 1081.0, + 406.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1064.0, + 618.0, + 1064.0, + 618.0, + 1077.0, + 605.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1068.0, + 702.0, + 1068.0, + 702.0, + 1084.0, + 676.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1067.0, + 729.0, + 1067.0, + 729.0, + 1081.0, + 716.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1062.0, + 894.0, + 1062.0, + 894.0, + 1080.0, + 737.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1067.0, + 1034.0, + 1067.0, + 1034.0, + 1086.0, + 1006.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1068.0, + 1059.0, + 1068.0, + 1059.0, + 1078.0, + 1049.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1063.0, + 1221.0, + 1063.0, + 1221.0, + 1081.0, + 1069.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1072.0, + 953.0, + 1072.0, + 953.0, + 1085.0, + 939.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1083.0, + 398.0, + 1083.0, + 398.0, + 1097.0, + 384.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1079.0, + 558.0, + 1079.0, + 558.0, + 1097.0, + 407.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1090.0, + 571.0, + 1090.0, + 571.0, + 1101.0, + 561.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1082.0, + 730.0, + 1082.0, + 730.0, + 1097.0, + 715.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1079.0, + 889.0, + 1079.0, + 889.0, + 1097.0, + 739.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1083.0, + 1060.0, + 1083.0, + 1060.0, + 1097.0, + 1047.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1079.0, + 1220.0, + 1079.0, + 1220.0, + 1097.0, + 1069.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1078.0, + 1277.0, + 1078.0, + 1277.0, + 1092.0, + 1265.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1096.0, + 370.0, + 1096.0, + 370.0, + 1115.0, + 343.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1099.0, + 617.0, + 1099.0, + 617.0, + 1106.0, + 607.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1096.0, + 702.0, + 1096.0, + 702.0, + 1115.0, + 675.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1096.0, + 1034.0, + 1096.0, + 1034.0, + 1115.0, + 1006.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1109.0, + 386.0, + 1109.0, + 386.0, + 1119.0, + 376.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1106.0, + 433.0, + 1106.0, + 433.0, + 1121.0, + 421.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1106.0, + 479.0, + 1106.0, + 479.0, + 1121.0, + 467.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1106.0, + 525.0, + 1106.0, + 525.0, + 1121.0, + 513.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1106.0, + 572.0, + 1106.0, + 572.0, + 1120.0, + 559.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1105.0, + 618.0, + 1105.0, + 618.0, + 1121.0, + 605.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1106.0, + 720.0, + 1106.0, + 720.0, + 1120.0, + 706.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1107.0, + 777.0, + 1107.0, + 777.0, + 1121.0, + 765.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1106.0, + 835.0, + 1106.0, + 835.0, + 1120.0, + 823.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1106.0, + 894.0, + 1106.0, + 894.0, + 1121.0, + 881.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1110.0, + 951.0, + 1110.0, + 951.0, + 1118.0, + 942.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1107.0, + 1050.0, + 1107.0, + 1050.0, + 1121.0, + 1038.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1106.0, + 1096.0, + 1106.0, + 1096.0, + 1123.0, + 1083.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1106.0, + 1141.0, + 1106.0, + 1141.0, + 1121.0, + 1129.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1106.0, + 1186.0, + 1106.0, + 1186.0, + 1121.0, + 1174.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1109.0, + 1231.0, + 1109.0, + 1231.0, + 1119.0, + 1221.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1109.0, + 1276.0, + 1109.0, + 1276.0, + 1119.0, + 1266.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1116.0, + 520.0, + 1116.0, + 520.0, + 1139.0, + 473.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1115.0, + 853.0, + 1115.0, + 853.0, + 1140.0, + 806.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1116.0, + 1180.0, + 1116.0, + 1180.0, + 1139.0, + 1135.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 912.0, + 843.0, + 912.0, + 843.0, + 923.0, + 826.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.75, + 924.5, + 432.75, + 924.5, + 432.75, + 941.5, + 410.75, + 941.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 966.0, + 812.0, + 966.0, + 812.0, + 997.0, + 710.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 987.0, + 542.0, + 987.0, + 542.0, + 1001.0, + 478.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 965.5, + 1138.0, + 965.5, + 1138.0, + 982.5, + 1089.0, + 982.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.75, + 928.0, + 1233.75, + 928.0, + 1233.75, + 940.0, + 1214.75, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 960.0, + 1046.0, + 960.0, + 1046.0, + 977.0, + 1042.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1025.0, + 853.0, + 1025.0, + 853.0, + 1038.5, + 827.0, + 1038.5 + ], + "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, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1681.0, + 902.0, + 1681.0, + 902.0, + 1718.0, + 295.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1681.0, + 1043.0, + 1681.0, + 1043.0, + 1718.0, + 999.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1681.0, + 1407.0, + 1681.0, + 1407.0, + 1718.0, + 1106.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1714.0, + 1406.0, + 1714.0, + 1406.0, + 1747.0, + 295.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1781.0, + 292.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 1407.0, + 1803.0, + 1407.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1834.0, + 1407.0, + 1834.0, + 1407.0, + 1871.0, + 292.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1865.0, + 1406.0, + 1865.0, + 1406.0, + 1898.0, + 295.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1889.0, + 1410.0, + 1889.0, + 1410.0, + 1934.0, + 291.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1925.0, + 618.0, + 1925.0, + 618.0, + 1962.0, + 295.0, + 1962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1570.0, + 901.0, + 1570.0, + 901.0, + 1612.0, + 292.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1570.0, + 1076.0, + 1570.0, + 1076.0, + 1612.0, + 1026.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1570.0, + 1372.0, + 1570.0, + 1372.0, + 1612.0, + 1206.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1570.0, + 1405.0, + 1570.0, + 1405.0, + 1612.0, + 1402.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1604.0, + 342.0, + 1604.0, + 342.0, + 1638.0, + 295.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1604.0, + 1150.0, + 1604.0, + 1150.0, + 1638.0, + 370.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1604.0, + 1404.0, + 1604.0, + 1404.0, + 1638.0, + 1293.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1632.0, + 539.0, + 1632.0, + 539.0, + 1669.0, + 294.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1632.0, + 1195.0, + 1632.0, + 1195.0, + 1669.0, + 559.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1380.0, + 442.0, + 1380.0, + 442.0, + 1418.0, + 292.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1380.0, + 749.0, + 1380.0, + 749.0, + 1418.0, + 564.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1380.0, + 897.0, + 1380.0, + 897.0, + 1418.0, + 864.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1380.0, + 1066.0, + 1380.0, + 1066.0, + 1418.0, + 969.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1380.0, + 1405.0, + 1380.0, + 1405.0, + 1418.0, + 1101.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1412.0, + 379.0, + 1412.0, + 379.0, + 1450.0, + 293.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1412.0, + 629.0, + 1412.0, + 629.0, + 1450.0, + 400.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1412.0, + 921.0, + 1412.0, + 921.0, + 1450.0, + 734.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1450.0, + 957.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 491.0, + 1443.0, + 491.0, + 1478.0, + 293.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1443.0, + 669.0, + 1443.0, + 669.0, + 1478.0, + 517.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 277, + 632, + 1401, + 632, + 1401, + 1120, + 277, + 1120 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1819, + 1403, + 1819, + 1403, + 2034, + 297, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1681, + 1403, + 1681, + 1403, + 1805, + 298, + 1805 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1543, + 1403, + 1543, + 1403, + 1666, + 298, + 1666 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 295, + 1126, + 1405, + 1126, + 1405, + 1321, + 295, + 1321 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 295, + 450, + 1404, + 450, + 1404, + 591, + 295, + 591 + ], + "score": 0.955 + }, + { + "category_id": 3, + "poly": [ + 287, + 224, + 1366, + 224, + 1366, + 442, + 287, + 442 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 294, + 1382, + 1402, + 1382, + 1402, + 1446, + 294, + 1446 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 300, + 1491, + 1229, + 1491, + 1229, + 1528, + 300, + 1528 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.712 + }, + { + "category_id": 15, + "poly": [ + 343.0, + 632.0, + 508.0, + 632.0, + 508.0, + 661.0, + 343.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 637.0, + 789.0, + 637.0, + 789.0, + 658.0, + 638.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 632.0, + 1080.0, + 632.0, + 1080.0, + 661.0, + 906.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 628.0, + 1357.0, + 628.0, + 1357.0, + 665.0, + 1191.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 653.0, + 502.0, + 653.0, + 502.0, + 699.0, + 288.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 661.0, + 637.0, + 661.0, + 637.0, + 698.0, + 573.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 653.0, + 787.0, + 653.0, + 787.0, + 686.0, + 643.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 666.0, + 886.0, + 666.0, + 886.0, + 686.0, + 854.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 653.0, + 1070.0, + 653.0, + 1070.0, + 674.0, + 924.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 659.0, + 1156.0, + 659.0, + 1156.0, + 678.0, + 1131.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 667.0, + 1172.0, + 667.0, + 1172.0, + 691.0, + 1159.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 669.0, + 1215.0, + 669.0, + 1215.0, + 680.0, + 1204.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 683.0, + 372.0, + 683.0, + 372.0, + 699.0, + 356.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 679.0, + 454.0, + 679.0, + 454.0, + 690.0, + 444.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 678.0, + 896.0, + 678.0, + 896.0, + 691.0, + 885.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 684.0, + 937.0, + 684.0, + 937.0, + 696.0, + 926.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 683.0, + 1154.0, + 683.0, + 1154.0, + 703.0, + 1131.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 678.0, + 1214.0, + 678.0, + 1214.0, + 694.0, + 1177.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 690.0, + 321.0, + 690.0, + 321.0, + 822.0, + 265.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 691.0, + 609.0, + 691.0, + 609.0, + 824.0, + 553.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 691.0, + 658.0, + 691.0, + 658.0, + 703.0, + 646.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 690.0, + 891.0, + 690.0, + 891.0, + 824.0, + 831.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 700.0, + 979.0, + 700.0, + 979.0, + 711.0, + 969.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 694.0, + 1141.0, + 694.0, + 1141.0, + 810.0, + 1117.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 692.0, + 1260.0, + 692.0, + 1260.0, + 703.0, + 1250.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 713.0, + 310.0, + 713.0, + 310.0, + 734.0, + 288.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 729.0, + 497.0, + 729.0, + 497.0, + 742.0, + 486.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 725.0, + 538.0, + 725.0, + 538.0, + 736.0, + 528.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 713.0, + 598.0, + 713.0, + 598.0, + 734.0, + 575.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 715.0, + 879.0, + 715.0, + 879.0, + 734.0, + 856.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 709.0, + 941.0, + 709.0, + 941.0, + 728.0, + 882.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 725.0, + 1065.0, + 725.0, + 1065.0, + 736.0, + 1053.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 729.0, + 1104.0, + 729.0, + 1104.0, + 736.0, + 1098.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 708.0, + 1154.0, + 708.0, + 1154.0, + 728.0, + 1131.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 705.0, + 1302.0, + 705.0, + 1302.0, + 716.0, + 1293.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 737.0, + 597.0, + 737.0, + 597.0, + 758.0, + 575.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 747.0, + 741.0, + 747.0, + 741.0, + 758.0, + 731.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 737.0, + 879.0, + 737.0, + 879.0, + 757.0, + 854.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 746.0, + 1021.0, + 746.0, + 1021.0, + 757.0, + 1012.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 732.0, + 1153.0, + 732.0, + 1153.0, + 751.0, + 1131.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 761.0, + 1021.0, + 761.0, + 1021.0, + 774.0, + 1010.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 755.0, + 1154.0, + 755.0, + 1154.0, + 776.0, + 1131.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 781.0, + 310.0, + 781.0, + 310.0, + 804.0, + 288.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 795.0, + 337.0, + 795.0, + 337.0, + 810.0, + 321.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 791.0, + 417.0, + 791.0, + 417.0, + 812.0, + 340.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 796.0, + 622.0, + 796.0, + 622.0, + 809.0, + 611.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 791.0, + 705.0, + 791.0, + 705.0, + 812.0, + 627.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 795.0, + 904.0, + 795.0, + 904.0, + 810.0, + 889.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 791.0, + 986.0, + 791.0, + 986.0, + 812.0, + 908.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 781.0, + 1154.0, + 781.0, + 1154.0, + 801.0, + 1131.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 792.0, + 1181.0, + 792.0, + 1181.0, + 808.0, + 1165.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 788.0, + 1266.0, + 788.0, + 1266.0, + 809.0, + 1183.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 809.0, + 311.0, + 809.0, + 311.0, + 850.0, + 288.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 808.0, + 338.0, + 808.0, + 338.0, + 858.0, + 316.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 804.0, + 471.0, + 804.0, + 471.0, + 874.0, + 339.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 825.0, + 500.0, + 825.0, + 500.0, + 859.0, + 483.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 842.0, + 542.0, + 842.0, + 542.0, + 858.0, + 527.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 809.0, + 599.0, + 809.0, + 599.0, + 850.0, + 575.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 809.0, + 624.0, + 809.0, + 624.0, + 859.0, + 602.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 804.0, + 759.0, + 804.0, + 759.0, + 872.0, + 627.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 808.0, + 785.0, + 808.0, + 785.0, + 856.0, + 773.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 812.0, + 826.0, + 812.0, + 826.0, + 858.0, + 816.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 809.0, + 880.0, + 809.0, + 880.0, + 851.0, + 854.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 808.0, + 904.0, + 808.0, + 904.0, + 859.0, + 881.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 804.0, + 1038.0, + 804.0, + 1038.0, + 872.0, + 907.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 843.0, + 1063.0, + 843.0, + 1063.0, + 856.0, + 1053.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 843.0, + 1107.0, + 843.0, + 1107.0, + 856.0, + 1095.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 806.0, + 1155.0, + 806.0, + 1155.0, + 850.0, + 1130.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 805.0, + 1181.0, + 805.0, + 1181.0, + 858.0, + 1158.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 802.0, + 1321.0, + 802.0, + 1321.0, + 873.0, + 1182.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 842.0, + 1346.0, + 842.0, + 1346.0, + 855.0, + 1336.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 841.0, + 1392.0, + 841.0, + 1392.0, + 858.0, + 1378.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 881.0, + 559.0, + 881.0, + 559.0, + 902.0, + 316.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 883.0, + 835.0, + 883.0, + 835.0, + 900.0, + 604.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 881.0, + 1108.0, + 881.0, + 1108.0, + 902.0, + 891.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 881.0, + 1401.0, + 881.0, + 1401.0, + 902.0, + 1149.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 894.0, + 556.0, + 894.0, + 556.0, + 915.0, + 321.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 897.0, + 838.0, + 897.0, + 838.0, + 914.0, + 604.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 894.0, + 1120.0, + 894.0, + 1120.0, + 915.0, + 885.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 892.0, + 1395.0, + 892.0, + 1395.0, + 918.0, + 1157.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 917.0, + 384.0, + 917.0, + 384.0, + 932.0, + 366.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 921.0, + 938.0, + 921.0, + 938.0, + 931.0, + 928.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 907.0, + 1164.0, + 907.0, + 1164.0, + 930.0, + 1128.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 917.0, + 1383.0, + 917.0, + 1383.0, + 935.0, + 1348.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 264.0, + 932.0, + 335.0, + 932.0, + 335.0, + 1076.0, + 264.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 932.0, + 616.0, + 932.0, + 616.0, + 1076.0, + 545.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 932.0, + 785.0, + 932.0, + 785.0, + 942.0, + 775.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 932.0, + 898.0, + 932.0, + 898.0, + 1077.0, + 822.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 929.0, + 941.0, + 929.0, + 941.0, + 947.0, + 927.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 930.0, + 1201.0, + 930.0, + 1201.0, + 964.0, + 1159.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 932.0, + 1344.0, + 932.0, + 1344.0, + 948.0, + 1329.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 930.0, + 1375.0, + 930.0, + 1375.0, + 950.0, + 1348.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 939.0, + 320.0, + 939.0, + 320.0, + 957.0, + 291.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 953.0, + 505.0, + 953.0, + 505.0, + 964.0, + 493.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 948.0, + 546.0, + 948.0, + 546.0, + 957.0, + 536.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 939.0, + 599.0, + 939.0, + 599.0, + 957.0, + 571.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 951.0, + 789.0, + 951.0, + 789.0, + 967.0, + 774.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 948.0, + 831.0, + 948.0, + 831.0, + 959.0, + 817.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 939.0, + 881.0, + 939.0, + 881.0, + 957.0, + 850.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 950.0, + 1071.0, + 950.0, + 1071.0, + 977.0, + 1053.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 943.0, + 1112.0, + 943.0, + 1112.0, + 959.0, + 1102.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 939.0, + 1160.0, + 939.0, + 1160.0, + 1061.0, + 1118.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 950.0, + 1341.0, + 950.0, + 1341.0, + 961.0, + 1331.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 944.0, + 1380.0, + 944.0, + 1380.0, + 964.0, + 1348.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 968.0, + 321.0, + 968.0, + 321.0, + 988.0, + 291.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 968.0, + 601.0, + 968.0, + 601.0, + 988.0, + 571.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 968.0, + 881.0, + 968.0, + 881.0, + 988.0, + 849.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 965.0, + 1160.0, + 965.0, + 1160.0, + 989.0, + 1132.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 964.0, + 1382.0, + 964.0, + 1382.0, + 976.0, + 1369.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 984.0, + 1340.0, + 984.0, + 1340.0, + 994.0, + 1331.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 989.0, + 479.0, + 989.0, + 479.0, + 1005.0, + 470.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 998.0, + 1159.0, + 998.0, + 1159.0, + 1018.0, + 1131.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1027.0, + 320.0, + 1027.0, + 320.0, + 1047.0, + 291.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1027.0, + 601.0, + 1027.0, + 601.0, + 1047.0, + 570.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1030.0, + 667.0, + 1030.0, + 667.0, + 1048.0, + 617.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1027.0, + 1159.0, + 1027.0, + 1159.0, + 1045.0, + 1131.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1038.0, + 388.0, + 1038.0, + 388.0, + 1066.0, + 348.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1040.0, + 548.0, + 1040.0, + 548.0, + 1061.0, + 534.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1047.0, + 627.0, + 1047.0, + 627.0, + 1062.0, + 611.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1041.0, + 669.0, + 1041.0, + 669.0, + 1064.0, + 629.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1041.0, + 946.0, + 1041.0, + 946.0, + 1064.0, + 908.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1040.0, + 1355.0, + 1040.0, + 1355.0, + 1065.0, + 1327.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1056.0, + 321.0, + 1056.0, + 321.0, + 1076.0, + 291.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1060.0, + 347.0, + 1060.0, + 347.0, + 1077.0, + 330.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1057.0, + 379.0, + 1057.0, + 379.0, + 1077.0, + 349.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1056.0, + 602.0, + 1056.0, + 602.0, + 1076.0, + 571.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1062.0, + 625.0, + 1062.0, + 625.0, + 1074.0, + 612.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1056.0, + 671.0, + 1056.0, + 671.0, + 1078.0, + 629.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1056.0, + 881.0, + 1056.0, + 881.0, + 1076.0, + 850.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1057.0, + 937.0, + 1057.0, + 937.0, + 1077.0, + 890.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1056.0, + 1160.0, + 1056.0, + 1160.0, + 1076.0, + 1131.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1054.0, + 1382.0, + 1054.0, + 1382.0, + 1068.0, + 1372.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1070.0, + 384.0, + 1070.0, + 384.0, + 1093.0, + 330.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1074.0, + 627.0, + 1074.0, + 627.0, + 1090.0, + 611.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1070.0, + 671.0, + 1070.0, + 671.0, + 1093.0, + 629.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1072.0, + 936.0, + 1072.0, + 936.0, + 1090.0, + 890.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1086.0, + 321.0, + 1086.0, + 321.0, + 1104.0, + 291.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1086.0, + 602.0, + 1086.0, + 602.0, + 1104.0, + 571.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1086.0, + 881.0, + 1086.0, + 881.0, + 1104.0, + 850.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1086.0, + 1160.0, + 1086.0, + 1160.0, + 1104.0, + 1131.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1095.0, + 338.0, + 1095.0, + 338.0, + 1111.0, + 323.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1095.0, + 380.0, + 1095.0, + 380.0, + 1112.0, + 366.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1096.0, + 462.0, + 1096.0, + 462.0, + 1127.0, + 409.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1098.0, + 505.0, + 1098.0, + 505.0, + 1110.0, + 493.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1098.0, + 546.0, + 1098.0, + 546.0, + 1110.0, + 536.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1095.0, + 618.0, + 1095.0, + 618.0, + 1111.0, + 603.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1095.0, + 662.0, + 1095.0, + 662.0, + 1111.0, + 646.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1096.0, + 745.0, + 1096.0, + 745.0, + 1127.0, + 691.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1098.0, + 788.0, + 1098.0, + 788.0, + 1110.0, + 777.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1098.0, + 830.0, + 1098.0, + 830.0, + 1110.0, + 819.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1096.0, + 896.0, + 1096.0, + 896.0, + 1110.0, + 885.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1096.0, + 938.0, + 1096.0, + 938.0, + 1110.0, + 928.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1096.0, + 1025.0, + 1096.0, + 1025.0, + 1127.0, + 972.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1098.0, + 1069.0, + 1098.0, + 1069.0, + 1110.0, + 1057.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1098.0, + 1112.0, + 1098.0, + 1112.0, + 1110.0, + 1100.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1095.0, + 1177.0, + 1095.0, + 1177.0, + 1111.0, + 1162.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1099.0, + 1216.0, + 1099.0, + 1216.0, + 1110.0, + 1206.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1096.0, + 1299.0, + 1096.0, + 1299.0, + 1127.0, + 1247.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1098.0, + 1341.0, + 1098.0, + 1341.0, + 1110.0, + 1330.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1098.0, + 1382.0, + 1098.0, + 1382.0, + 1110.0, + 1372.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.25, + 674.0, + 824.25, + 674.0, + 824.25, + 683.0, + 818.25, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 707.5, + 718.0, + 707.5, + 718.0, + 728.5, + 665.0, + 728.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 746.0, + 1300.0, + 746.0, + 1300.0, + 761.0, + 1272.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 765.0, + 1388.0, + 765.0, + 1388.0, + 790.5, + 1340.0, + 790.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 784.5, + 596.0, + 784.5, + 596.0, + 803.5, + 576.0, + 803.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 802.5, + 1061.0, + 802.5, + 1061.0, + 812.5, + 1056.0, + 812.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 908.0, + 340.0, + 908.0, + 340.0, + 930.5, + 290.0, + 930.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 908.0, + 622.0, + 908.0, + 622.0, + 930.5, + 570.0, + 930.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.75, + 916.0, + 749.75, + 916.0, + 749.75, + 946.0, + 666.75, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.25, + 908.0, + 925.25, + 908.0, + 925.25, + 933.0, + 848.25, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 916.5, + 1029.0, + 916.5, + 1029.0, + 948.0, + 951.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.75, + 945.0, + 1053.75, + 945.0, + 1053.75, + 960.5, + 1039.75, + 960.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 953.0, + 1230.0, + 953.0, + 1230.0, + 970.5, + 1210.0, + 970.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.75, + 993.5, + 1282.75, + 993.5, + 1282.75, + 1007.5, + 1241.75, + 1007.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1032.0, + 493.0, + 1032.0, + 493.0, + 1040.0, + 490.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1123.0, + 1402.0, + 1123.0, + 1402.0, + 1156.0, + 295.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1152.0, + 1406.0, + 1152.0, + 1406.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1180.0, + 1406.0, + 1180.0, + 1406.0, + 1213.0, + 294.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1205.0, + 1407.0, + 1205.0, + 1407.0, + 1243.0, + 292.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1234.0, + 1406.0, + 1234.0, + 1406.0, + 1268.0, + 293.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1262.0, + 1405.0, + 1262.0, + 1405.0, + 1300.0, + 292.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1287.0, + 1377.0, + 1287.0, + 1377.0, + 1328.0, + 292.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 450.0, + 1406.0, + 450.0, + 1406.0, + 482.0, + 297.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 477.0, + 1406.0, + 477.0, + 1406.0, + 510.0, + 293.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 505.0, + 1406.0, + 505.0, + 1406.0, + 539.0, + 293.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 534.0, + 1404.0, + 534.0, + 1404.0, + 566.0, + 295.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 558.0, + 1161.0, + 558.0, + 1161.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 225.0, + 528.0, + 225.0, + 528.0, + 249.0, + 350.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 226.0, + 795.0, + 226.0, + 795.0, + 246.0, + 626.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 225.0, + 1080.0, + 225.0, + 1080.0, + 250.0, + 889.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 226.0, + 1336.0, + 226.0, + 1336.0, + 246.0, + 1178.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 245.0, + 388.0, + 245.0, + 388.0, + 391.0, + 285.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 261.0, + 429.0, + 261.0, + 429.0, + 287.0, + 411.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 278.0, + 469.0, + 278.0, + 469.0, + 306.0, + 452.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 334.0, + 510.0, + 334.0, + 510.0, + 370.0, + 492.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 344.0, + 551.0, + 344.0, + 551.0, + 386.0, + 534.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 247.0, + 672.0, + 247.0, + 672.0, + 378.0, + 570.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 251.0, + 702.0, + 251.0, + 702.0, + 278.0, + 684.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 257.0, + 738.0, + 257.0, + 738.0, + 286.0, + 723.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 304.0, + 776.0, + 304.0, + 776.0, + 347.0, + 759.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 353.0, + 814.0, + 353.0, + 814.0, + 381.0, + 797.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 245.0, + 894.0, + 245.0, + 894.0, + 388.0, + 825.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 255.0, + 935.0, + 255.0, + 935.0, + 370.0, + 897.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 258.0, + 973.0, + 258.0, + 973.0, + 297.0, + 955.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 273.0, + 1013.0, + 273.0, + 1013.0, + 314.0, + 998.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 283.0, + 1055.0, + 283.0, + 1055.0, + 327.0, + 1038.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 293.0, + 1094.0, + 293.0, + 1094.0, + 337.0, + 1081.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 237.0, + 1178.0, + 237.0, + 1178.0, + 378.0, + 1115.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 251.0, + 1227.0, + 251.0, + 1227.0, + 372.0, + 1179.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 254.0, + 1247.0, + 254.0, + 1247.0, + 290.0, + 1229.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 268.0, + 1283.0, + 268.0, + 1283.0, + 312.0, + 1270.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 319.0, + 1320.0, + 319.0, + 1320.0, + 359.0, + 1307.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 317.0, + 1361.0, + 317.0, + 1361.0, + 350.0, + 1344.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 363.0, + 391.0, + 363.0, + 391.0, + 396.0, + 335.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 381.0, + 508.0, + 381.0, + 508.0, + 398.0, + 494.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 374.0, + 608.0, + 374.0, + 608.0, + 389.0, + 587.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 365.0, + 677.0, + 365.0, + 677.0, + 396.0, + 616.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 369.0, + 775.0, + 369.0, + 775.0, + 384.0, + 760.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 372.0, + 869.0, + 372.0, + 869.0, + 386.0, + 849.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 364.0, + 935.0, + 364.0, + 935.0, + 396.0, + 881.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 381.0, + 1054.0, + 381.0, + 1054.0, + 398.0, + 1039.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 376.0, + 1153.0, + 376.0, + 1153.0, + 391.0, + 1132.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 367.0, + 1178.0, + 367.0, + 1178.0, + 396.0, + 1162.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 365.0, + 1227.0, + 365.0, + 1227.0, + 398.0, + 1179.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 390.0, + 328.0, + 390.0, + 328.0, + 408.0, + 302.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 391.0, + 349.0, + 391.0, + 349.0, + 406.0, + 334.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 390.0, + 389.0, + 390.0, + 389.0, + 408.0, + 351.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 395.0, + 550.0, + 395.0, + 550.0, + 410.0, + 535.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 398.0, + 612.0, + 398.0, + 612.0, + 415.0, + 586.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 395.0, + 630.0, + 395.0, + 630.0, + 406.0, + 618.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 391.0, + 683.0, + 391.0, + 683.0, + 410.0, + 635.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 395.0, + 815.0, + 395.0, + 815.0, + 411.0, + 798.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 390.0, + 872.0, + 390.0, + 872.0, + 409.0, + 847.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 394.0, + 893.0, + 394.0, + 893.0, + 405.0, + 883.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 389.0, + 936.0, + 389.0, + 936.0, + 410.0, + 897.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 398.0, + 1094.0, + 398.0, + 1094.0, + 409.0, + 1082.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 391.0, + 1177.0, + 391.0, + 1177.0, + 408.0, + 1162.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 389.0, + 1217.0, + 389.0, + 1217.0, + 410.0, + 1179.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 415.0, + 343.0, + 415.0, + 343.0, + 426.0, + 333.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 415.0, + 383.0, + 415.0, + 383.0, + 426.0, + 375.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 421.0, + 486.0, + 421.0, + 486.0, + 445.0, + 393.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 416.0, + 506.0, + 416.0, + 506.0, + 426.0, + 497.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 415.0, + 625.0, + 415.0, + 625.0, + 427.0, + 614.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 417.0, + 662.0, + 417.0, + 662.0, + 427.0, + 652.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 421.0, + 756.0, + 421.0, + 756.0, + 445.0, + 666.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 416.0, + 809.0, + 416.0, + 809.0, + 426.0, + 799.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 415.0, + 888.0, + 415.0, + 888.0, + 426.0, + 878.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 415.0, + 930.0, + 415.0, + 930.0, + 426.0, + 919.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 421.0, + 1032.0, + 421.0, + 1032.0, + 445.0, + 938.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 416.0, + 1051.0, + 416.0, + 1051.0, + 426.0, + 1041.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 415.0, + 1168.0, + 415.0, + 1168.0, + 427.0, + 1157.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 416.0, + 1206.0, + 416.0, + 1206.0, + 427.0, + 1195.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 415.0, + 1302.0, + 415.0, + 1302.0, + 444.0, + 1212.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 419.0, + 1318.0, + 419.0, + 1318.0, + 425.0, + 1312.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.75, + 396.0, + 1158.75, + 396.0, + 1158.75, + 415.0, + 1131.75, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 416.0, + 701.0, + 416.0, + 701.0, + 425.0, + 684.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1490.0, + 1233.0, + 1490.0, + 1233.0, + 1532.0, + 292.0, + 1532.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, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1908.0, + 1407.0, + 1908.0, + 1407.0, + 1949.0, + 291.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2004.0, + 295.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1021.0, + 2003.0, + 1021.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1715.0, + 296.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1712.0, + 1407.0, + 1712.0, + 1407.0, + 1746.0, + 292.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1403.0, + 1742.0, + 1403.0, + 1777.0, + 293.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 1203.0, + 1772.0, + 1203.0, + 1808.0, + 293.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1544.0, + 1404.0, + 1544.0, + 1404.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1573.0, + 1405.0, + 1573.0, + 1405.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1605.0, + 1404.0, + 1605.0, + 1404.0, + 1641.0, + 293.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1634.0, + 1075.0, + 1634.0, + 1075.0, + 1670.0, + 293.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1385.0, + 1404.0, + 1385.0, + 1404.0, + 1417.0, + 296.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1413.0, + 1178.0, + 1413.0, + 1178.0, + 1449.0, + 294.0, + 1449.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1316, + 1404, + 1316, + 1404, + 1499, + 297, + 1499 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1590, + 1404, + 1590, + 1404, + 1956, + 297, + 1956 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 297, + 489, + 1405, + 489, + 1405, + 599, + 297, + 599 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 297, + 668, + 1404, + 668, + 1404, + 822, + 297, + 822 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 297, + 838, + 1406, + 838, + 1406, + 1205, + 297, + 1205 + ], + "score": 0.953 + }, + { + "category_id": 3, + "poly": [ + 363, + 226, + 1317, + 226, + 1317, + 486, + 363, + 486 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1401, + 1972, + 1401, + 2034, + 297, + 2034 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 298, + 1260, + 521, + 1260, + 521, + 1295, + 298, + 1295 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 299, + 1548, + 1085, + 1548, + 1085, + 1580, + 299, + 1580 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.774 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 485.0, + 1405.0, + 485.0, + 1405.0, + 520.0, + 295.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 515.0, + 1405.0, + 515.0, + 1405.0, + 548.0, + 295.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 539.0, + 1405.0, + 539.0, + 1405.0, + 577.0, + 292.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 570.0, + 723.0, + 570.0, + 723.0, + 603.0, + 295.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 229.0, + 641.0, + 229.0, + 641.0, + 247.0, + 418.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 229.0, + 982.0, + 229.0, + 982.0, + 247.0, + 720.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 229.0, + 1299.0, + 229.0, + 1299.0, + 247.0, + 1072.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 241.0, + 424.0, + 241.0, + 424.0, + 264.0, + 373.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 247.0, + 467.0, + 247.0, + 467.0, + 260.0, + 449.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 256.0, + 561.0, + 256.0, + 561.0, + 270.0, + 546.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 256.0, + 606.0, + 256.0, + 606.0, + 264.0, + 596.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 259.0, + 653.0, + 259.0, + 653.0, + 267.0, + 645.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 244.0, + 748.0, + 244.0, + 748.0, + 261.0, + 701.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 248.0, + 791.0, + 248.0, + 791.0, + 260.0, + 771.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 251.0, + 927.0, + 251.0, + 927.0, + 265.0, + 914.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 241.0, + 1300.0, + 241.0, + 1300.0, + 277.0, + 1024.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 272.0, + 401.0, + 272.0, + 401.0, + 412.0, + 361.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 281.0, + 512.0, + 281.0, + 512.0, + 291.0, + 501.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 273.0, + 725.0, + 273.0, + 725.0, + 413.0, + 685.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 284.0, + 880.0, + 284.0, + 880.0, + 299.0, + 867.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 288.0, + 1056.0, + 288.0, + 1056.0, + 420.0, + 1010.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 286.0, + 1211.0, + 286.0, + 1211.0, + 296.0, + 1202.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 273.0, + 1259.0, + 273.0, + 1259.0, + 288.0, + 1246.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 285.0, + 1306.0, + 285.0, + 1306.0, + 295.0, + 1295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 322.0, + 461.0, + 322.0, + 461.0, + 328.0, + 456.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 319.0, + 1057.0, + 319.0, + 1057.0, + 339.0, + 1026.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 332.0, + 399.0, + 332.0, + 399.0, + 349.0, + 376.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 330.0, + 725.0, + 330.0, + 725.0, + 352.0, + 701.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 334.0, + 1166.0, + 334.0, + 1166.0, + 344.0, + 1156.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 339.0, + 416.0, + 339.0, + 416.0, + 348.0, + 406.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 345.0, + 1213.0, + 345.0, + 1213.0, + 359.0, + 1201.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 350.0, + 1292.0, + 350.0, + 1292.0, + 356.0, + 1287.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 359.0, + 401.0, + 359.0, + 401.0, + 380.0, + 374.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 363.0, + 605.0, + 363.0, + 605.0, + 372.0, + 596.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 360.0, + 725.0, + 360.0, + 725.0, + 378.0, + 702.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 354.0, + 1055.0, + 354.0, + 1055.0, + 370.0, + 1026.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 365.0, + 1302.0, + 365.0, + 1302.0, + 382.0, + 1290.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 383.0, + 878.0, + 383.0, + 878.0, + 394.0, + 869.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 385.0, + 970.0, + 385.0, + 970.0, + 394.0, + 961.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 384.0, + 1057.0, + 384.0, + 1057.0, + 403.0, + 1026.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 390.0, + 399.0, + 390.0, + 399.0, + 407.0, + 374.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 389.0, + 726.0, + 389.0, + 726.0, + 409.0, + 699.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 393.0, + 973.0, + 393.0, + 973.0, + 409.0, + 959.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 408.0, + 425.0, + 408.0, + 425.0, + 418.0, + 414.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 403.0, + 517.0, + 403.0, + 517.0, + 421.0, + 434.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 407.0, + 751.0, + 407.0, + 751.0, + 420.0, + 738.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 404.0, + 841.0, + 404.0, + 841.0, + 419.0, + 760.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 420.0, + 401.0, + 420.0, + 401.0, + 437.0, + 376.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 420.0, + 426.0, + 420.0, + 426.0, + 435.0, + 412.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 418.0, + 575.0, + 418.0, + 575.0, + 436.0, + 434.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 418.0, + 727.0, + 418.0, + 727.0, + 438.0, + 699.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 420.0, + 751.0, + 420.0, + 751.0, + 435.0, + 738.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 418.0, + 899.0, + 418.0, + 899.0, + 436.0, + 760.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 416.0, + 1057.0, + 416.0, + 1057.0, + 436.0, + 1026.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 418.0, + 1128.0, + 418.0, + 1128.0, + 437.0, + 1089.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 435.0, + 426.0, + 435.0, + 426.0, + 449.0, + 412.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 431.0, + 578.0, + 431.0, + 578.0, + 453.0, + 433.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 435.0, + 751.0, + 435.0, + 751.0, + 449.0, + 737.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 431.0, + 901.0, + 431.0, + 901.0, + 453.0, + 759.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 436.0, + 1085.0, + 436.0, + 1085.0, + 450.0, + 1069.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 431.0, + 1117.0, + 431.0, + 1117.0, + 453.0, + 1088.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 447.0, + 403.0, + 447.0, + 403.0, + 467.0, + 374.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 458.0, + 417.0, + 458.0, + 417.0, + 473.0, + 404.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 458.0, + 465.0, + 458.0, + 465.0, + 474.0, + 452.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 457.0, + 513.0, + 457.0, + 513.0, + 473.0, + 500.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 457.0, + 561.0, + 457.0, + 561.0, + 473.0, + 547.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 458.0, + 608.0, + 458.0, + 608.0, + 473.0, + 595.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 458.0, + 654.0, + 458.0, + 654.0, + 473.0, + 642.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 447.0, + 728.0, + 447.0, + 728.0, + 467.0, + 699.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 458.0, + 743.0, + 458.0, + 743.0, + 473.0, + 729.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 457.0, + 788.0, + 457.0, + 788.0, + 474.0, + 775.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 457.0, + 835.0, + 457.0, + 835.0, + 474.0, + 821.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 457.0, + 881.0, + 457.0, + 881.0, + 474.0, + 867.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 458.0, + 927.0, + 458.0, + 927.0, + 473.0, + 914.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 458.0, + 973.0, + 458.0, + 973.0, + 473.0, + 960.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 448.0, + 1058.0, + 448.0, + 1058.0, + 467.0, + 1024.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 458.0, + 1075.0, + 458.0, + 1075.0, + 473.0, + 1062.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 457.0, + 1121.0, + 457.0, + 1121.0, + 474.0, + 1108.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 458.0, + 1167.0, + 458.0, + 1167.0, + 474.0, + 1154.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 458.0, + 1214.0, + 458.0, + 1214.0, + 474.0, + 1201.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 458.0, + 1261.0, + 458.0, + 1261.0, + 473.0, + 1247.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 458.0, + 1307.0, + 458.0, + 1307.0, + 473.0, + 1293.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 467.0, + 552.0, + 467.0, + 552.0, + 490.0, + 509.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 467.0, + 873.0, + 467.0, + 873.0, + 490.0, + 829.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 467.0, + 1205.0, + 467.0, + 1205.0, + 490.0, + 1163.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.25, + 261.0, + 847.25, + 261.0, + 847.25, + 275.5, + 825.25, + 275.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.25, + 267.0, + 1119.25, + 267.0, + 1119.25, + 279.0, + 1115.25, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 290.0, + 967.0, + 290.0, + 967.0, + 301.5, + 951.0, + 301.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.75, + 339.0, + 862.75, + 339.0, + 862.75, + 357.0, + 780.75, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.25, + 362.5, + 533.25, + 362.5, + 533.25, + 375.5, + 483.25, + 375.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.25, + 373.0, + 952.25, + 373.0, + 952.25, + 390.5, + 915.25, + 390.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1255.0, + 525.0, + 1255.0, + 525.0, + 1302.0, + 292.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1546.0, + 1091.0, + 1546.0, + 1091.0, + 1585.0, + 294.0, + 1585.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, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1406.0, + 1346.0, + 1406.0, + 1382.0, + 294.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1377.0, + 1404.0, + 1377.0, + 1404.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1439.0, + 1405.0, + 1439.0, + 1405.0, + 1474.0, + 295.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1469.0, + 643.0, + 1469.0, + 643.0, + 1501.0, + 296.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1586.0, + 1404.0, + 1586.0, + 1404.0, + 1629.0, + 294.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1655.0, + 292.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1686.0, + 295.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1718.0, + 292.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 1406.0, + 1712.0, + 1406.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1741.0, + 1405.0, + 1741.0, + 1405.0, + 1778.0, + 292.0, + 1778.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": [ + 292.0, + 1801.0, + 1404.0, + 1801.0, + 1404.0, + 1839.0, + 292.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": [ + 294.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1902.0, + 294.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1933.0, + 291.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1927.0, + 786.0, + 1927.0, + 786.0, + 1959.0, + 293.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 670.0, + 1404.0, + 670.0, + 1404.0, + 703.0, + 296.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 699.0, + 1405.0, + 699.0, + 1405.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 729.0, + 1405.0, + 729.0, + 1405.0, + 765.0, + 294.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 761.0, + 1404.0, + 761.0, + 1404.0, + 794.0, + 295.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 791.0, + 624.0, + 791.0, + 624.0, + 824.0, + 295.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 839.0, + 1406.0, + 839.0, + 1406.0, + 873.0, + 301.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 871.0, + 1407.0, + 871.0, + 1407.0, + 901.0, + 324.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 897.0, + 1111.0, + 897.0, + 1111.0, + 934.0, + 319.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 927.0, + 1407.0, + 927.0, + 1407.0, + 967.0, + 300.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 957.0, + 1406.0, + 957.0, + 1406.0, + 996.0, + 321.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 989.0, + 1408.0, + 989.0, + 1408.0, + 1028.0, + 320.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1023.0, + 1403.0, + 1023.0, + 1403.0, + 1057.0, + 323.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1052.0, + 684.0, + 1052.0, + 684.0, + 1086.0, + 319.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1081.0, + 1404.0, + 1081.0, + 1404.0, + 1119.0, + 300.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1111.0, + 1406.0, + 1111.0, + 1406.0, + 1147.0, + 320.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1143.0, + 1404.0, + 1143.0, + 1404.0, + 1177.0, + 321.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1175.0, + 1015.0, + 1175.0, + 1015.0, + 1209.0, + 323.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 377, + 1416, + 1323, + 1416, + 1323, + 1711, + 377, + 1711 + ], + "score": 0.984, + "html": "
Task DescriptionPerformance Drop on Task 1 Animals Artifacts
Task1:animals Task2:animals0.0885 ± 0.0259
Task1:animals Task2:artifacts0.1832 ± 0.0484
Task1:artifacts Task2:artifacts0.2884 ± 0.0187
Task1:artifacts Task2:animals0.3720 ± 0.0288
Task1:animals and artifacts Task2:animals0.1752 ± 0.01930.1532 ± 0.0231
Task1:animals and artifacts Task2:artifacts0.2057 ± 0.03120.2330 ± 0.0292
" + }, + { + "category_id": 3, + "poly": [ + 306, + 358, + 1383, + 358, + 1383, + 946, + 306, + 946 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 295, + 954, + 1406, + 954, + 1406, + 1149, + 295, + 1149 + ], + "score": 0.969 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.754 + }, + { + "category_id": 6, + "poly": [ + 295, + 1733, + 1406, + 1733, + 1406, + 1903, + 295, + 1903 + ], + "score": 0.67 + }, + { + "category_id": 1, + "poly": [ + 295, + 1733, + 1406, + 1733, + 1406, + 1903, + 295, + 1903 + ], + "score": 0.251 + }, + { + "category_id": 13, + "poly": [ + 1229, + 386, + 1246, + 386, + 1246, + 403, + 1229, + 403 + ], + "score": 0.6, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 364.0, + 614.0, + 364.0, + 614.0, + 387.0, + 401.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 363.0, + 988.0, + 363.0, + 988.0, + 387.0, + 764.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 363.0, + 1357.0, + 363.0, + 1357.0, + 387.0, + 1131.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 383.0, + 582.0, + 383.0, + 582.0, + 402.0, + 433.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 382.0, + 952.0, + 382.0, + 952.0, + 405.0, + 804.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 382.0, + 1228.0, + 382.0, + 1228.0, + 405.0, + 1119.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 382.0, + 1373.0, + 382.0, + 1373.0, + 405.0, + 1247.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 407.0, + 364.0, + 407.0, + 364.0, + 429.0, + 330.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 411.0, + 732.0, + 411.0, + 732.0, + 432.0, + 699.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 410.0, + 1098.0, + 410.0, + 1098.0, + 427.0, + 1068.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 445.0, + 361.0, + 445.0, + 361.0, + 468.0, + 328.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 436.0, + 417.0, + 436.0, + 417.0, + 463.0, + 385.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 448.0, + 730.0, + 448.0, + 730.0, + 574.0, + 672.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 455.0, + 1100.0, + 455.0, + 1100.0, + 476.0, + 1066.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 475.0, + 330.0, + 475.0, + 330.0, + 545.0, + 307.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 482.0, + 363.0, + 482.0, + 363.0, + 509.0, + 327.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 510.0, + 730.0, + 510.0, + 730.0, + 533.0, + 697.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 502.0, + 1101.0, + 502.0, + 1101.0, + 524.0, + 1066.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 523.0, + 360.0, + 523.0, + 360.0, + 546.0, + 328.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 536.0, + 633.0, + 536.0, + 633.0, + 561.0, + 532.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 539.0, + 972.0, + 539.0, + 972.0, + 561.0, + 871.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 536.0, + 1325.0, + 536.0, + 1325.0, + 561.0, + 1202.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 562.0, + 361.0, + 562.0, + 361.0, + 584.0, + 330.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 558.0, + 636.0, + 558.0, + 636.0, + 580.0, + 559.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 560.0, + 730.0, + 560.0, + 730.0, + 582.0, + 697.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 559.0, + 913.0, + 559.0, + 913.0, + 580.0, + 871.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 558.0, + 1003.0, + 558.0, + 1003.0, + 583.0, + 960.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 549.0, + 1101.0, + 549.0, + 1101.0, + 572.0, + 1066.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 560.0, + 1249.0, + 560.0, + 1249.0, + 580.0, + 1190.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 560.0, + 1373.0, + 560.0, + 1373.0, + 579.0, + 1297.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 571.0, + 425.0, + 571.0, + 425.0, + 608.0, + 382.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 578.0, + 636.0, + 578.0, + 636.0, + 602.0, + 561.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 572.0, + 792.0, + 572.0, + 792.0, + 605.0, + 754.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 575.0, + 911.0, + 575.0, + 911.0, + 605.0, + 872.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 578.0, + 1006.0, + 578.0, + 1006.0, + 602.0, + 960.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 576.0, + 1156.0, + 576.0, + 1156.0, + 602.0, + 1122.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 576.0, + 1251.0, + 576.0, + 1251.0, + 603.0, + 1189.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 579.0, + 1359.0, + 579.0, + 1359.0, + 599.0, + 1297.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 605.0, + 602.0, + 605.0, + 602.0, + 622.0, + 587.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 610.0, + 829.0, + 610.0, + 829.0, + 620.0, + 818.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 605.0, + 901.0, + 605.0, + 901.0, + 622.0, + 885.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 597.0, + 1100.0, + 597.0, + 1100.0, + 620.0, + 1066.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 609.0, + 1266.0, + 609.0, + 1266.0, + 620.0, + 1256.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 605.0, + 1339.0, + 605.0, + 1339.0, + 622.0, + 1324.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 623.0, + 395.0, + 623.0, + 395.0, + 644.0, + 376.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 622.0, + 468.0, + 622.0, + 468.0, + 645.0, + 441.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 620.0, + 543.0, + 620.0, + 543.0, + 646.0, + 505.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 617.0, + 614.0, + 617.0, + 614.0, + 647.0, + 575.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 625.0, + 762.0, + 625.0, + 762.0, + 641.0, + 746.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 621.0, + 838.0, + 621.0, + 838.0, + 645.0, + 810.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 621.0, + 913.0, + 621.0, + 913.0, + 646.0, + 874.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 620.0, + 982.0, + 620.0, + 982.0, + 645.0, + 943.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 625.0, + 1131.0, + 625.0, + 1131.0, + 641.0, + 1115.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 621.0, + 1206.0, + 621.0, + 1206.0, + 645.0, + 1178.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 620.0, + 1281.0, + 620.0, + 1281.0, + 646.0, + 1243.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 620.0, + 1351.0, + 620.0, + 1351.0, + 646.0, + 1313.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 659.0, + 587.0, + 659.0, + 587.0, + 682.0, + 439.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 659.0, + 951.0, + 659.0, + 951.0, + 682.0, + 803.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 659.0, + 1362.0, + 659.0, + 1362.0, + 682.0, + 1131.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 705.0, + 370.0, + 705.0, + 370.0, + 727.0, + 336.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 687.0, + 731.0, + 687.0, + 731.0, + 713.0, + 699.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 700.0, + 896.0, + 700.0, + 896.0, + 713.0, + 879.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 685.0, + 1100.0, + 685.0, + 1100.0, + 707.0, + 1066.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 724.0, + 417.0, + 724.0, + 417.0, + 736.0, + 406.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 727.0, + 696.0, + 727.0, + 696.0, + 851.0, + 673.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 739.0, + 730.0, + 739.0, + 730.0, + 762.0, + 697.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 726.0, + 1101.0, + 726.0, + 1101.0, + 748.0, + 1066.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 749.0, + 369.0, + 749.0, + 369.0, + 826.0, + 314.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 764.0, + 1104.0, + 764.0, + 1104.0, + 789.0, + 1065.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 793.0, + 369.0, + 793.0, + 369.0, + 816.0, + 337.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 789.0, + 730.0, + 789.0, + 730.0, + 812.0, + 697.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 806.0, + 1101.0, + 806.0, + 1101.0, + 829.0, + 1066.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 817.0, + 631.0, + 817.0, + 631.0, + 842.0, + 529.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 818.0, + 970.0, + 818.0, + 970.0, + 841.0, + 871.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 817.0, + 1334.0, + 817.0, + 1334.0, + 842.0, + 1211.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 837.0, + 371.0, + 837.0, + 371.0, + 860.0, + 337.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 850.0, + 433.0, + 850.0, + 433.0, + 887.0, + 388.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 837.0, + 636.0, + 837.0, + 636.0, + 883.0, + 556.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 841.0, + 730.0, + 841.0, + 730.0, + 862.0, + 697.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 853.0, + 792.0, + 853.0, + 792.0, + 886.0, + 754.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 839.0, + 917.0, + 839.0, + 917.0, + 881.0, + 866.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 840.0, + 1006.0, + 840.0, + 1006.0, + 885.0, + 963.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 847.0, + 1101.0, + 847.0, + 1101.0, + 869.0, + 1066.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 853.0, + 1155.0, + 853.0, + 1155.0, + 885.0, + 1115.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 841.0, + 1264.0, + 841.0, + 1264.0, + 883.0, + 1205.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 841.0, + 1374.0, + 841.0, + 1374.0, + 881.0, + 1308.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 904.0, + 402.0, + 904.0, + 402.0, + 924.0, + 384.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 902.0, + 474.0, + 902.0, + 474.0, + 926.0, + 446.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 903.0, + 545.0, + 903.0, + 545.0, + 924.0, + 510.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 903.0, + 613.0, + 903.0, + 613.0, + 924.0, + 577.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 904.0, + 764.0, + 904.0, + 764.0, + 924.0, + 745.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 902.0, + 837.0, + 902.0, + 837.0, + 926.0, + 810.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 902.0, + 911.0, + 902.0, + 911.0, + 924.0, + 875.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 903.0, + 979.0, + 903.0, + 979.0, + 924.0, + 945.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 904.0, + 1133.0, + 904.0, + 1133.0, + 924.0, + 1114.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 902.0, + 1206.0, + 902.0, + 1206.0, + 926.0, + 1178.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 902.0, + 1280.0, + 902.0, + 1280.0, + 924.0, + 1244.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 903.0, + 1348.0, + 903.0, + 1348.0, + 924.0, + 1314.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 927.0, + 538.0, + 927.0, + 538.0, + 951.0, + 486.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 927.0, + 902.0, + 927.0, + 902.0, + 951.0, + 852.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 927.0, + 1271.0, + 927.0, + 1271.0, + 951.0, + 1221.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 950.0, + 1406.0, + 950.0, + 1406.0, + 990.0, + 293.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 982.0, + 1404.0, + 982.0, + 1404.0, + 1015.0, + 295.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1008.0, + 1404.0, + 1008.0, + 1404.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1037.0, + 1407.0, + 1037.0, + 1407.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 1404.0, + 1065.0, + 1404.0, + 1098.0, + 294.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1091.0, + 1406.0, + 1091.0, + 1406.0, + 1124.0, + 295.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1120.0, + 1303.0, + 1120.0, + 1303.0, + 1153.0, + 295.0, + 1153.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, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1731.0, + 1404.0, + 1731.0, + 1404.0, + 1766.0, + 293.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1761.0, + 1403.0, + 1761.0, + 1403.0, + 1791.0, + 295.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1404.0, + 1789.0, + 1404.0, + 1820.0, + 294.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1816.0, + 1404.0, + 1816.0, + 1404.0, + 1849.0, + 296.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1845.0, + 1406.0, + 1845.0, + 1406.0, + 1877.0, + 294.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1872.0, + 628.0, + 1872.0, + 628.0, + 1906.0, + 294.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1731.0, + 1404.0, + 1731.0, + 1404.0, + 1766.0, + 293.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1761.0, + 1403.0, + 1761.0, + 1403.0, + 1791.0, + 295.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1404.0, + 1789.0, + 1404.0, + 1820.0, + 294.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1816.0, + 1404.0, + 1816.0, + 1404.0, + 1849.0, + 296.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1845.0, + 1406.0, + 1845.0, + 1406.0, + 1877.0, + 294.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1872.0, + 628.0, + 1872.0, + 628.0, + 1906.0, + 294.0, + 1906.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 367, + 1406, + 367, + 1406, + 618, + 296, + 618 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1840, + 1404, + 1840, + 1404, + 2037, + 297, + 2037 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1672, + 1404, + 1672, + 1404, + 1829, + 297, + 1829 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1388, + 1405, + 1388, + 1405, + 1483, + 297, + 1483 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 920, + 1405, + 920, + 1405, + 1066, + 296, + 1066 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1201, + 1404, + 1201, + 1404, + 1296, + 297, + 1296 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 791, + 1403, + 791, + 1403, + 895, + 297, + 895 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 577, + 670, + 1121, + 670, + 1121, + 770, + 577, + 770 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 571, + 1496, + 1126, + 1496, + 1126, + 1584, + 571, + 1584 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 668, + 1080, + 1028, + 1080, + 1028, + 1173, + 668, + 1173 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1595, + 1406, + 1595, + 1406, + 1659, + 299, + 1659 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1404, + 228, + 1404, + 294, + 296, + 294 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 296, + 330, + 985, + 330, + 985, + 362, + 296, + 362 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1525, + 1400, + 1525, + 1400, + 1555, + 1366, + 1555 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1110, + 1400, + 1110, + 1400, + 1141, + 1365, + 1141 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 299, + 1331, + 1172, + 1331, + 1172, + 1366, + 299, + 1366 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 707, + 1400, + 707, + 1400, + 737, + 1366, + 737 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.809 + }, + { + "category_id": 14, + "poly": [ + 667, + 1077, + 1032, + 1077, + 1032, + 1173, + 667, + 1173 + ], + "score": 0.94, + "latex": "| \\Delta f _ { t } ( x ) | \\leq \\eta | | { \\vec { \\Theta } } ( x ) | | | { \\frac { \\partial { \\vec { L } } } { \\partial f } } | | ." + }, + { + "category_id": 13, + "poly": [ + 827, + 793, + 1242, + 793, + 1242, + 833, + 827, + 833 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu = 1 } ^ { p } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 576, + 670, + 1121, + 670, + 1121, + 771, + 576, + 771 + ], + "score": 0.93, + "latex": "\\Delta f _ { t } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\operatorname { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } ." + }, + { + "category_id": 13, + "poly": [ + 942, + 554, + 1026, + 554, + 1026, + 588, + 942, + 588 + ], + "score": 0.93, + "latex": "L ( f , y )" + }, + { + "category_id": 13, + "poly": [ + 298, + 428, + 503, + 428, + 503, + 467, + 298, + 467 + ], + "score": 0.93, + "latex": "\\scriptstyle \\sum _ { \\mu = 1 } ^ { p } \\theta _ { \\mu } g _ { \\mu } ( w ; x )" + }, + { + "category_id": 13, + "poly": [ + 464, + 1420, + 560, + 1420, + 560, + 1453, + 464, + 1453 + ], + "score": 0.92, + "latex": "\\Theta ( x ^ { \\prime } , x )" + }, + { + "category_id": 14, + "poly": [ + 568, + 1495, + 1129, + 1495, + 1129, + 1583, + 568, + 1583 + ], + "score": 0.92, + "latex": "\\mathrm { T r a c e ~ o v e r l a p } = \\frac { \\mathrm { T r } \\left( \\Theta _ { 1 2 } \\Theta _ { 1 2 } ^ { T } \\right) } { \\sqrt { \\left( \\right)} \\mathrm { T r } \\left( \\Theta _ { 1 1 } \\Theta _ { 1 1 } ^ { T } \\right) \\mathrm { T r } \\left( \\Theta _ { 2 2 } \\Theta _ { 2 2 } ^ { T } \\right) } ." + }, + { + "category_id": 13, + "poly": [ + 1188, + 1933, + 1295, + 1933, + 1295, + 1967, + 1188, + 1967 + ], + "score": 0.92, + "latex": "\\lambda \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 297, + 861, + 393, + 861, + 393, + 895, + 297, + 895 + ], + "score": 0.92, + "latex": "\\Theta ( x , x ^ { \\bar { \\prime } } )" + }, + { + "category_id": 13, + "poly": [ + 359, + 788, + 419, + 788, + 419, + 831, + 359, + 831 + ], + "score": 0.92, + "latex": "{ \\mathcal { D } } _ { \\operatorname { t r a i n } } ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 400, + 523, + 635, + 523, + 635, + 558, + 400, + 558 + ], + "score": 0.92, + "latex": "g _ { \\mu } ( w ; x ) = g _ { \\mu } ( \\hat { w } ; x )" + }, + { + "category_id": 13, + "poly": [ + 771, + 984, + 1147, + 984, + 1147, + 1026, + 771, + 1026 + ], + "score": 0.91, + "latex": " { \\vec { \\Theta } } ( x ) : = \\{ \\Theta ( x , x ^ { \\prime } ) : x ^ { \\prime } \\in X _ { t r a i n } ^ { ( 2 ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1022, + 695, + 1022, + 695, + 1065, + 297, + 1065 + ], + "score": 0.91, + "latex": "\\vec { L } = \\{ L ( f ( x ^ { \\prime } ) , y ^ { \\prime } ) : x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { t r a i n } ^ { ( 2 ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 1312, + 399, + 1406, + 399, + 1406, + 432, + 1312, + 432 + ], + "score": 0.91, + "latex": "f ( x ) =" + }, + { + "category_id": 13, + "poly": [ + 780, + 1421, + 827, + 1421, + 827, + 1452, + 780, + 1452 + ], + "score": 0.9, + "latex": "\\Theta _ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1452, + 344, + 1452, + 344, + 1482, + 297, + 1482 + ], + "score": 0.89, + "latex": "\\Theta _ { 1 2 }" + }, + { + "category_id": 13, + "poly": [ + 486, + 1965, + 1076, + 1965, + 1076, + 2007, + 486, + 2007 + ], + "score": 0.87, + "latex": "\\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( \\lambda ) } = \\{ ( \\lambda x ^ { ( 2 ) } + ( 1 - \\lambda ) x ^ { ( 1 ) } , \\lambda y ^ { ( 2 ) } + ( 1 - \\lambda ) y ^ { ( 1 ) } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 1188, + 1422, + 1235, + 1422, + 1235, + 1451, + 1188, + 1451 + ], + "score": 0.87, + "latex": "\\Theta _ { 2 2 }" + }, + { + "category_id": 13, + "poly": [ + 469, + 924, + 495, + 924, + 495, + 955, + 469, + 955 + ], + "score": 0.85, + "latex": "f _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1207, + 832, + 1233, + 832, + 1233, + 859, + 1207, + 859 + ], + "score": 0.84, + "latex": "x ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1076, + 525, + 1100, + 525, + 1100, + 551, + 1076, + 551 + ], + "score": 0.8, + "latex": "\\hat { w }" + }, + { + "category_id": 13, + "poly": [ + 973, + 435, + 993, + 435, + 993, + 462, + 973, + 462 + ], + "score": 0.78, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1232, + 559, + 1251, + 559, + 1251, + 587, + 1232, + 587 + ], + "score": 0.78, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 596, + 430, + 615, + 430, + 615, + 458, + 596, + 458 + ], + "score": 0.77, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 645, + 588, + 659, + 588, + 659, + 612, + 645, + 612 + ], + "score": 0.77, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1137, + 838, + 1156, + 838, + 1156, + 859, + 1137, + 859 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1382, + 928, + 1401, + 928, + 1401, + 950, + 1382, + 950 + ], + "score": 0.63, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 330.0, + 986.0, + 330.0, + 986.0, + 366.0, + 296.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1172.0, + 1331.0, + 1172.0, + 1370.0, + 294.0, + 1370.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": [ + 295.0, + 368.0, + 1404.0, + 368.0, + 1404.0, + 402.0, + 295.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 399.0, + 297.0, + 399.0, + 297.0, + 484.0, + 283.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 399.0, + 595.0, + 399.0, + 595.0, + 484.0, + 504.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 399.0, + 972.0, + 399.0, + 972.0, + 484.0, + 616.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 399.0, + 1311.0, + 399.0, + 1311.0, + 484.0, + 994.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1407.0, + 399.0, + 1417.0, + 399.0, + 1417.0, + 484.0, + 1407.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 464.0, + 1406.0, + 464.0, + 1406.0, + 499.0, + 294.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 491.0, + 1406.0, + 491.0, + 1406.0, + 530.0, + 294.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 523.0, + 399.0, + 523.0, + 399.0, + 561.0, + 293.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 523.0, + 1075.0, + 523.0, + 1075.0, + 561.0, + 636.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 523.0, + 1407.0, + 523.0, + 1407.0, + 561.0, + 1101.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 553.0, + 941.0, + 553.0, + 941.0, + 591.0, + 294.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 553.0, + 1231.0, + 553.0, + 1231.0, + 591.0, + 1027.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 553.0, + 1407.0, + 553.0, + 1407.0, + 591.0, + 1252.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 584.0, + 644.0, + 584.0, + 644.0, + 622.0, + 295.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 584.0, + 690.0, + 584.0, + 690.0, + 622.0, + 660.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1839.0, + 1405.0, + 1839.0, + 1405.0, + 1878.0, + 294.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1871.0, + 1405.0, + 1871.0, + 1405.0, + 1908.0, + 295.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1904.0, + 1404.0, + 1904.0, + 1404.0, + 1937.0, + 296.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1933.0, + 1187.0, + 1933.0, + 1187.0, + 1970.0, + 295.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1933.0, + 1404.0, + 1933.0, + 1404.0, + 1970.0, + 1296.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1962.0, + 1409.0, + 1962.0, + 1409.0, + 2011.0, + 1077.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1963.5, + 560.0, + 1963.5, + 560.0, + 2010.5, + 290.0, + 2010.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1673.0, + 1404.0, + 1673.0, + 1404.0, + 1706.0, + 296.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1704.0, + 1406.0, + 1704.0, + 1406.0, + 1741.0, + 295.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1733.0, + 1406.0, + 1733.0, + 1406.0, + 1769.0, + 294.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1764.0, + 1406.0, + 1764.0, + 1406.0, + 1801.0, + 295.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1795.0, + 1356.0, + 1795.0, + 1356.0, + 1832.0, + 294.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1387.0, + 1405.0, + 1387.0, + 1405.0, + 1427.0, + 292.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1421.0, + 463.0, + 1421.0, + 463.0, + 1455.0, + 295.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1421.0, + 779.0, + 1421.0, + 779.0, + 1455.0, + 561.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1421.0, + 1187.0, + 1421.0, + 1187.0, + 1455.0, + 828.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1421.0, + 1405.0, + 1421.0, + 1405.0, + 1455.0, + 1236.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1451.0, + 716.0, + 1451.0, + 716.0, + 1485.0, + 345.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 468.0, + 919.0, + 468.0, + 957.0, + 294.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 919.0, + 1381.0, + 919.0, + 1381.0, + 957.0, + 496.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 919.0, + 1406.0, + 919.0, + 1406.0, + 957.0, + 1402.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 951.0, + 1403.0, + 951.0, + 1403.0, + 989.0, + 294.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 970.0, + 770.0, + 970.0, + 770.0, + 1043.0, + 285.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 970.0, + 1416.0, + 970.0, + 1416.0, + 1043.0, + 1148.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1005.0, + 296.0, + 1005.0, + 296.0, + 1085.0, + 283.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1005.0, + 1406.0, + 1005.0, + 1406.0, + 1085.0, + 696.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 1404.0, + 1201.0, + 1404.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1233.0, + 1404.0, + 1233.0, + 1404.0, + 1267.0, + 295.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1261.0, + 582.0, + 1261.0, + 582.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 780.0, + 826.0, + 780.0, + 826.0, + 844.0, + 420.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 780.0, + 1409.0, + 780.0, + 1409.0, + 844.0, + 1243.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 826.0, + 1136.0, + 826.0, + 1136.0, + 869.0, + 292.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 826.0, + 1206.0, + 826.0, + 1206.0, + 869.0, + 1157.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 826.0, + 1405.0, + 826.0, + 1405.0, + 869.0, + 1234.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 858.0, + 1341.0, + 858.0, + 1341.0, + 898.0, + 394.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 783.0, + 435.0, + 783.0, + 435.0, + 829.0, + 288.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1598.0, + 1403.0, + 1598.0, + 1403.0, + 1630.0, + 297.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1626.0, + 1373.0, + 1626.0, + 1373.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 766.0, + 261.0, + 766.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1480, + 1404, + 1480, + 1404, + 1695, + 298, + 1695 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1789, + 1404, + 1789, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 4, + "poly": [ + 296, + 1033, + 1405, + 1033, + 1405, + 1313, + 296, + 1313 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1372, + 1404, + 1372, + 1404, + 1466, + 298, + 1466 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 295, + 552, + 1406, + 552, + 1406, + 693, + 295, + 693 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 333, + 235, + 1337, + 235, + 1337, + 513, + 333, + 513 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 307, + 729, + 1390, + 729, + 1390, + 1007, + 307, + 1007 + ], + "score": 0.953 + }, + { + "category_id": 0, + "poly": [ + 300, + 1740, + 544, + 1740, + 544, + 1775, + 300, + 1775 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.789 + }, + { + "category_id": 3, + "poly": [ + 1045, + 731, + 1387, + 731, + 1387, + 1005, + 1045, + 1005 + ], + "score": 0.091 + }, + { + "category_id": 13, + "poly": [ + 1233, + 1091, + 1361, + 1091, + 1361, + 1118, + 1233, + 1118 + ], + "score": 0.89, + "latex": "\\sim 0 . 1 - 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1435, + 1335, + 1435, + 1335, + 1465, + 1194, + 1465 + ], + "score": 0.84, + "latex": "\\sim 0 . 1 - 0 . 2 " + }, + { + "category_id": 13, + "poly": [ + 689, + 1405, + 709, + 1405, + 709, + 1432, + 689, + 1432 + ], + "score": 0.76, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1406.0, + 1030.0, + 1406.0, + 1070.0, + 293.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1062.0, + 1407.0, + 1062.0, + 1407.0, + 1095.0, + 295.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 1232.0, + 1089.0, + 1232.0, + 1125.0, + 294.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1089.0, + 1407.0, + 1089.0, + 1407.0, + 1125.0, + 1362.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 1407.0, + 1116.0, + 1407.0, + 1153.0, + 294.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1178.0, + 295.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1173.0, + 1406.0, + 1173.0, + 1406.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1201.0, + 1406.0, + 1201.0, + 1406.0, + 1234.0, + 295.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1228.0, + 1406.0, + 1228.0, + 1406.0, + 1261.0, + 295.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 1405.0, + 1256.0, + 1405.0, + 1289.0, + 295.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1281.0, + 1403.0, + 1281.0, + 1403.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 1407.0, + 548.0, + 1407.0, + 585.0, + 294.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 612.0, + 295.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 607.0, + 1404.0, + 607.0, + 1404.0, + 641.0, + 295.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 631.0, + 1406.0, + 631.0, + 1406.0, + 673.0, + 292.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 664.0, + 1403.0, + 664.0, + 1403.0, + 695.0, + 295.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 238.0, + 581.0, + 238.0, + 581.0, + 261.0, + 470.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 239.0, + 957.0, + 239.0, + 957.0, + 262.0, + 767.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 236.0, + 1295.0, + 236.0, + 1295.0, + 263.0, + 1103.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 253.0, + 606.0, + 253.0, + 606.0, + 280.0, + 445.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 251.0, + 930.0, + 251.0, + 930.0, + 281.0, + 794.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 251.0, + 1260.0, + 251.0, + 1260.0, + 281.0, + 1138.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 275.0, + 723.0, + 275.0, + 723.0, + 297.0, + 691.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 272.0, + 1062.0, + 272.0, + 1062.0, + 298.0, + 1027.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 291.0, + 971.0, + 291.0, + 971.0, + 301.0, + 961.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 288.0, + 1311.0, + 288.0, + 1311.0, + 330.0, + 1295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 307.0, + 387.0, + 307.0, + 387.0, + 328.0, + 355.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 316.0, + 387.0, + 316.0, + 387.0, + 430.0, + 332.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 318.0, + 722.0, + 318.0, + 722.0, + 419.0, + 671.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 318.0, + 767.0, + 318.0, + 767.0, + 352.0, + 751.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 334.0, + 819.0, + 334.0, + 819.0, + 362.0, + 802.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 339.0, + 867.0, + 339.0, + 867.0, + 348.0, + 857.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 342.0, + 919.0, + 342.0, + 919.0, + 353.0, + 909.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 318.0, + 1060.0, + 318.0, + 1060.0, + 420.0, + 1008.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 337.0, + 1104.0, + 337.0, + 1104.0, + 363.0, + 1088.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 352.0, + 1156.0, + 352.0, + 1156.0, + 376.0, + 1139.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 352.0, + 1257.0, + 352.0, + 1257.0, + 370.0, + 1244.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 380.0, + 387.0, + 380.0, + 387.0, + 402.0, + 355.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 386.0, + 626.0, + 386.0, + 626.0, + 426.0, + 520.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 361.0, + 722.0, + 361.0, + 722.0, + 427.0, + 692.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 368.0, + 871.0, + 368.0, + 871.0, + 388.0, + 853.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 374.0, + 922.0, + 374.0, + 922.0, + 400.0, + 906.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 361.0, + 1060.0, + 361.0, + 1060.0, + 427.0, + 1028.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 362.0, + 1209.0, + 362.0, + 1209.0, + 391.0, + 1192.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 369.0, + 1259.0, + 369.0, + 1259.0, + 396.0, + 1242.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 414.0, + 388.0, + 414.0, + 388.0, + 440.0, + 354.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 421.0, + 458.0, + 421.0, + 458.0, + 465.0, + 403.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 414.0, + 650.0, + 414.0, + 650.0, + 456.0, + 603.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 422.0, + 793.0, + 422.0, + 793.0, + 459.0, + 741.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 421.0, + 974.0, + 421.0, + 974.0, + 445.0, + 958.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 421.0, + 1128.0, + 421.0, + 1128.0, + 460.0, + 1078.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 461.0, + 413.0, + 461.0, + 413.0, + 471.0, + 405.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 461.0, + 453.0, + 461.0, + 453.0, + 470.0, + 443.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 448.0, + 723.0, + 448.0, + 723.0, + 470.0, + 692.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 448.0, + 1060.0, + 448.0, + 1060.0, + 470.0, + 1028.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 471.0, + 416.0, + 471.0, + 416.0, + 491.0, + 399.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 470.0, + 462.0, + 470.0, + 462.0, + 492.0, + 435.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 470.0, + 503.0, + 470.0, + 503.0, + 491.0, + 474.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 470.0, + 542.0, + 470.0, + 542.0, + 491.0, + 513.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 470.0, + 581.0, + 470.0, + 581.0, + 491.0, + 553.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 470.0, + 621.0, + 470.0, + 621.0, + 491.0, + 593.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 471.0, + 659.0, + 471.0, + 659.0, + 490.0, + 635.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 470.0, + 768.0, + 470.0, + 768.0, + 491.0, + 750.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 471.0, + 819.0, + 471.0, + 819.0, + 491.0, + 802.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 471.0, + 871.0, + 471.0, + 871.0, + 491.0, + 853.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 471.0, + 922.0, + 471.0, + 922.0, + 491.0, + 905.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 471.0, + 975.0, + 471.0, + 975.0, + 491.0, + 957.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 471.0, + 1105.0, + 471.0, + 1105.0, + 491.0, + 1087.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 471.0, + 1156.0, + 471.0, + 1156.0, + 491.0, + 1139.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 470.0, + 1208.0, + 470.0, + 1208.0, + 491.0, + 1190.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 471.0, + 1259.0, + 471.0, + 1259.0, + 491.0, + 1242.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 471.0, + 1311.0, + 471.0, + 1311.0, + 491.0, + 1294.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 490.0, + 550.0, + 490.0, + 550.0, + 515.0, + 502.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 491.0, + 911.0, + 491.0, + 911.0, + 513.0, + 814.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 491.0, + 1247.0, + 491.0, + 1247.0, + 513.0, + 1151.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.25, + 330.0, + 634.25, + 330.0, + 634.25, + 373.0, + 527.25, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 731.0, + 584.0, + 731.0, + 584.0, + 759.0, + 441.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 732.0, + 947.0, + 732.0, + 947.0, + 757.0, + 806.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 731.0, + 1330.0, + 731.0, + 1330.0, + 759.0, + 1158.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 762.0, + 370.0, + 762.0, + 370.0, + 783.0, + 328.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 757.0, + 1102.0, + 757.0, + 1102.0, + 779.0, + 1067.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 785.0, + 370.0, + 785.0, + 370.0, + 810.0, + 327.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 795.0, + 500.0, + 795.0, + 500.0, + 809.0, + 485.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 789.0, + 523.0, + 789.0, + 523.0, + 798.0, + 510.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 791.0, + 624.0, + 791.0, + 624.0, + 808.0, + 582.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 777.0, + 733.0, + 777.0, + 733.0, + 799.0, + 698.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 790.0, + 910.0, + 790.0, + 910.0, + 805.0, + 893.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 784.0, + 936.0, + 784.0, + 936.0, + 798.0, + 916.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 782.0, + 958.0, + 782.0, + 958.0, + 796.0, + 942.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 783.0, + 1004.0, + 783.0, + 1004.0, + 792.0, + 994.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 791.0, + 1101.0, + 791.0, + 1101.0, + 814.0, + 1067.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 778.0, + 1173.0, + 778.0, + 1173.0, + 798.0, + 1152.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 778.0, + 1348.0, + 778.0, + 1348.0, + 801.0, + 1324.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 811.0, + 372.0, + 811.0, + 372.0, + 889.0, + 306.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 818.0, + 407.0, + 818.0, + 407.0, + 857.0, + 383.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 814.0, + 476.0, + 814.0, + 476.0, + 838.0, + 458.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 807.0, + 697.0, + 807.0, + 697.0, + 906.0, + 674.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 816.0, + 730.0, + 816.0, + 730.0, + 838.0, + 698.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 824.0, + 863.0, + 824.0, + 863.0, + 843.0, + 844.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 803.0, + 885.0, + 803.0, + 885.0, + 818.0, + 868.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 820.0, + 1100.0, + 820.0, + 1100.0, + 892.0, + 1044.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 805.0, + 1187.0, + 805.0, + 1187.0, + 822.0, + 1171.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 838.0, + 368.0, + 838.0, + 368.0, + 860.0, + 330.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 835.0, + 1322.0, + 835.0, + 1322.0, + 857.0, + 1298.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 862.0, + 370.0, + 862.0, + 370.0, + 887.0, + 328.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 856.0, + 731.0, + 856.0, + 731.0, + 879.0, + 697.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 849.0, + 837.0, + 849.0, + 837.0, + 870.0, + 818.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 860.0, + 1100.0, + 860.0, + 1100.0, + 882.0, + 1067.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 864.0, + 1274.0, + 864.0, + 1274.0, + 874.0, + 1260.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 857.0, + 1373.0, + 857.0, + 1373.0, + 880.0, + 1282.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 870.0, + 791.0, + 870.0, + 791.0, + 906.0, + 745.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 868.0, + 814.0, + 868.0, + 814.0, + 890.0, + 793.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 876.0, + 1369.0, + 876.0, + 1369.0, + 900.0, + 1283.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 888.0, + 370.0, + 888.0, + 370.0, + 913.0, + 327.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 895.0, + 629.0, + 895.0, + 629.0, + 920.0, + 521.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 895.0, + 734.0, + 895.0, + 734.0, + 918.0, + 698.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 892.0, + 1101.0, + 892.0, + 1101.0, + 919.0, + 1065.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 896.0, + 1277.0, + 896.0, + 1277.0, + 919.0, + 1258.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 894.0, + 1373.0, + 894.0, + 1373.0, + 920.0, + 1283.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 914.0, + 372.0, + 914.0, + 372.0, + 939.0, + 327.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 911.0, + 439.0, + 911.0, + 439.0, + 946.0, + 390.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 916.0, + 637.0, + 916.0, + 637.0, + 940.0, + 532.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 911.0, + 802.0, + 911.0, + 802.0, + 947.0, + 752.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 909.0, + 1169.0, + 909.0, + 1169.0, + 946.0, + 1120.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 915.0, + 1277.0, + 915.0, + 1277.0, + 937.0, + 1256.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 915.0, + 1369.0, + 915.0, + 1369.0, + 939.0, + 1283.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 947.0, + 545.0, + 947.0, + 545.0, + 957.0, + 535.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 935.0, + 733.0, + 935.0, + 733.0, + 958.0, + 697.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 926.0, + 1102.0, + 926.0, + 1102.0, + 952.0, + 1065.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 942.0, + 1298.0, + 942.0, + 1298.0, + 959.0, + 1272.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 944.0, + 1380.0, + 944.0, + 1380.0, + 957.0, + 1357.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 960.0, + 459.0, + 960.0, + 459.0, + 983.0, + 379.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 960.0, + 510.0, + 960.0, + 510.0, + 981.0, + 476.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 960.0, + 558.0, + 960.0, + 558.0, + 981.0, + 524.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 960.0, + 654.0, + 960.0, + 654.0, + 983.0, + 574.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 960.0, + 772.0, + 960.0, + 772.0, + 983.0, + 740.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 960.0, + 820.0, + 960.0, + 820.0, + 983.0, + 787.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 960.0, + 871.0, + 960.0, + 871.0, + 983.0, + 836.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 960.0, + 918.0, + 960.0, + 918.0, + 981.0, + 884.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 960.0, + 967.0, + 960.0, + 967.0, + 983.0, + 934.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 960.0, + 1014.0, + 960.0, + 1014.0, + 983.0, + 979.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 959.0, + 1222.0, + 959.0, + 1222.0, + 984.0, + 1180.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 959.0, + 1308.0, + 959.0, + 1308.0, + 985.0, + 1274.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 960.0, + 1393.0, + 960.0, + 1393.0, + 983.0, + 1360.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 985.0, + 563.0, + 985.0, + 563.0, + 1007.0, + 462.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 985.0, + 927.0, + 985.0, + 927.0, + 1007.0, + 826.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 984.0, + 1302.0, + 984.0, + 1302.0, + 1009.0, + 1184.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 867.5, + 462.0, + 867.5, + 462.0, + 900.0, + 400.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 917.5, + 519.0, + 917.5, + 519.0, + 936.5, + 510.0, + 936.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1734.0, + 550.0, + 1734.0, + 550.0, + 1785.0, + 291.0, + 1785.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, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 732.0, + 1328.0, + 732.0, + 1328.0, + 758.0, + 1160.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 755.0, + 1105.0, + 755.0, + 1105.0, + 780.0, + 1065.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 778.0, + 1173.0, + 778.0, + 1173.0, + 799.0, + 1152.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 776.0, + 1348.0, + 776.0, + 1348.0, + 802.0, + 1324.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 789.0, + 1106.0, + 789.0, + 1106.0, + 817.0, + 1064.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 805.0, + 1188.0, + 805.0, + 1188.0, + 821.0, + 1171.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 822.0, + 1067.0, + 822.0, + 1067.0, + 892.0, + 1045.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 824.0, + 1103.0, + 824.0, + 1103.0, + 849.0, + 1066.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 833.0, + 1322.0, + 833.0, + 1322.0, + 857.0, + 1297.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 858.0, + 1105.0, + 858.0, + 1105.0, + 884.0, + 1065.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 861.0, + 1275.0, + 861.0, + 1275.0, + 877.0, + 1258.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 856.0, + 1372.0, + 856.0, + 1372.0, + 879.0, + 1283.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 873.0, + 1368.0, + 873.0, + 1368.0, + 901.0, + 1283.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 881.0, + 1275.0, + 881.0, + 1275.0, + 896.0, + 1258.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 891.0, + 1105.0, + 891.0, + 1105.0, + 921.0, + 1064.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 896.0, + 1277.0, + 896.0, + 1277.0, + 919.0, + 1257.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 896.0, + 1371.0, + 896.0, + 1371.0, + 919.0, + 1284.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 909.0, + 1169.0, + 909.0, + 1169.0, + 946.0, + 1120.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 916.0, + 1278.0, + 916.0, + 1278.0, + 937.0, + 1256.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 915.0, + 1369.0, + 915.0, + 1369.0, + 940.0, + 1283.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 925.0, + 1105.0, + 925.0, + 1105.0, + 954.0, + 1064.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 942.0, + 1207.0, + 942.0, + 1207.0, + 959.0, + 1166.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 941.0, + 1298.0, + 941.0, + 1298.0, + 961.0, + 1250.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 941.0, + 1379.0, + 941.0, + 1379.0, + 958.0, + 1345.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 958.0, + 1223.0, + 958.0, + 1223.0, + 985.0, + 1179.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 959.0, + 1308.0, + 959.0, + 1308.0, + 985.0, + 1274.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 959.0, + 1394.0, + 959.0, + 1394.0, + 984.0, + 1360.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 982.0, + 1304.0, + 982.0, + 1304.0, + 1010.0, + 1184.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1480.0, + 1404.0, + 1480.0, + 1404.0, + 1516.0, + 295.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1512.0, + 1405.0, + 1512.0, + 1405.0, + 1546.0, + 294.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 1406.0, + 1573.0, + 1406.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1602.0, + 1408.0, + 1602.0, + 1408.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1631.0, + 1406.0, + 1631.0, + 1406.0, + 1671.0, + 292.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1664.0, + 1370.0, + 1664.0, + 1370.0, + 1702.0, + 293.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1828.0, + 292.0, + 1828.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": [ + 293.0, + 1850.0, + 1406.0, + 1850.0, + 1406.0, + 1884.0, + 293.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1907.0, + 1409.0, + 1907.0, + 1409.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1981.0, + 292.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1406.0, + 2004.0, + 1406.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1368.0, + 1406.0, + 1368.0, + 1406.0, + 1413.0, + 292.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1404.0, + 688.0, + 1404.0, + 688.0, + 1438.0, + 296.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1404.0, + 1404.0, + 1404.0, + 1404.0, + 1438.0, + 710.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1434.0, + 1193.0, + 1434.0, + 1193.0, + 1471.0, + 293.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1434.0, + 1350.0, + 1434.0, + 1350.0, + 1471.0, + 1336.0, + 1471.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 300, + 229, + 1402, + 229, + 1402, + 352, + 300, + 352 + ], + "score": 0.972 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2112, + 836, + 2112 + ], + "score": 0.833 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 324.0, + 647.0, + 324.0, + 647.0, + 354.0, + 295.0, + 354.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.884 + }, + { + "category_id": 1, + "poly": [ + 292, + 940, + 1402, + 940, + 1402, + 1005, + 292, + 1005 + ], + "score": 0.881 + }, + { + "category_id": 1, + "poly": [ + 298, + 470, + 1121, + 470, + 1121, + 504, + 298, + 504 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 296, + 1022, + 1403, + 1022, + 1403, + 1087, + 296, + 1087 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 297, + 522, + 1404, + 522, + 1404, + 587, + 297, + 587 + ], + "score": 0.855 + }, + { + "category_id": 1, + "poly": [ + 295, + 1103, + 1402, + 1103, + 1402, + 1169, + 295, + 1169 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 296, + 828, + 1401, + 828, + 1401, + 924, + 296, + 924 + ], + "score": 0.849 + }, + { + "category_id": 1, + "poly": [ + 298, + 1185, + 1402, + 1185, + 1402, + 1279, + 298, + 1279 + ], + "score": 0.839 + }, + { + "category_id": 1, + "poly": [ + 297, + 1297, + 1406, + 1297, + 1406, + 1421, + 297, + 1421 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 291, + 390, + 1401, + 390, + 1401, + 453, + 291, + 453 + ], + "score": 0.816 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1400, + 1971, + 1400, + 2035, + 296, + 2035 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 294, + 1440, + 1402, + 1440, + 1402, + 1506, + 294, + 1506 + ], + "score": 0.801 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 489, + 228, + 489, + 261, + 300, + 261 + ], + "score": 0.799 + }, + { + "category_id": 1, + "poly": [ + 301, + 1603, + 1403, + 1603, + 1403, + 1699, + 301, + 1699 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 293, + 1521, + 1402, + 1521, + 1402, + 1588, + 293, + 1588 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 298, + 716, + 1406, + 716, + 1406, + 810, + 298, + 810 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 297, + 603, + 1409, + 603, + 1409, + 697, + 297, + 697 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 298, + 279, + 1407, + 279, + 1407, + 371, + 298, + 371 + ], + "score": 0.754 + }, + { + "category_id": 1, + "poly": [ + 296, + 1716, + 1403, + 1716, + 1403, + 1810, + 296, + 1810 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 297, + 1828, + 1407, + 1828, + 1407, + 1953, + 297, + 1953 + ], + "score": 0.709 + }, + { + "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": [ + 295.0, + 227.0, + 491.0, + 227.0, + 491.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 934.0, + 1407.0, + 934.0, + 1407.0, + 983.0, + 293.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 973.0, + 536.0, + 973.0, + 536.0, + 1006.0, + 320.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 469.0, + 1120.0, + 469.0, + 1120.0, + 509.0, + 295.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1020.0, + 1404.0, + 1020.0, + 1404.0, + 1061.0, + 295.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1055.0, + 666.0, + 1055.0, + 666.0, + 1087.0, + 323.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 520.0, + 1409.0, + 520.0, + 1409.0, + 562.0, + 292.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 555.0, + 1309.0, + 555.0, + 1309.0, + 588.0, + 322.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1104.0, + 1404.0, + 1104.0, + 1404.0, + 1140.0, + 297.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1136.0, + 921.0, + 1136.0, + 921.0, + 1170.0, + 322.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 829.0, + 1403.0, + 829.0, + 1403.0, + 864.0, + 296.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 856.0, + 1405.0, + 856.0, + 1405.0, + 899.0, + 321.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 891.0, + 710.0, + 891.0, + 710.0, + 925.0, + 323.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1187.0, + 1406.0, + 1187.0, + 1406.0, + 1221.0, + 296.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1217.0, + 1406.0, + 1217.0, + 1406.0, + 1251.0, + 322.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1248.0, + 538.0, + 1248.0, + 538.0, + 1283.0, + 325.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1298.0, + 1407.0, + 1298.0, + 1407.0, + 1333.0, + 292.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1327.0, + 1406.0, + 1327.0, + 1406.0, + 1367.0, + 320.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1360.0, + 1406.0, + 1360.0, + 1406.0, + 1395.0, + 320.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1391.0, + 586.0, + 1391.0, + 586.0, + 1424.0, + 323.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 387.0, + 1407.0, + 387.0, + 1407.0, + 428.0, + 293.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 420.0, + 1088.0, + 420.0, + 1088.0, + 455.0, + 322.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1966.0, + 1405.0, + 1966.0, + 1405.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2000.0, + 620.0, + 2000.0, + 620.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1441.0, + 1404.0, + 1441.0, + 1404.0, + 1477.0, + 296.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1473.0, + 1160.0, + 1473.0, + 1160.0, + 1507.0, + 321.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1602.0, + 1404.0, + 1602.0, + 1404.0, + 1644.0, + 295.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1638.0, + 1403.0, + 1638.0, + 1403.0, + 1672.0, + 324.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1668.0, + 798.0, + 1668.0, + 798.0, + 1701.0, + 321.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1522.0, + 1407.0, + 1522.0, + 1407.0, + 1558.0, + 296.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1553.0, + 1390.0, + 1553.0, + 1390.0, + 1590.0, + 321.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 718.0, + 1404.0, + 718.0, + 1404.0, + 752.0, + 296.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 751.0, + 1403.0, + 751.0, + 1403.0, + 781.0, + 324.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 779.0, + 609.0, + 779.0, + 609.0, + 808.0, + 322.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 605.0, + 1407.0, + 605.0, + 1407.0, + 639.0, + 295.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 635.0, + 1408.0, + 635.0, + 1408.0, + 672.0, + 320.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 665.0, + 397.0, + 665.0, + 397.0, + 699.0, + 321.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 275.0, + 1408.0, + 275.0, + 1408.0, + 317.0, + 293.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 311.0, + 1405.0, + 311.0, + 1405.0, + 344.0, + 324.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 338.0, + 1320.0, + 338.0, + 1320.0, + 374.0, + 322.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1714.0, + 1405.0, + 1714.0, + 1405.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1750.0, + 1403.0, + 1750.0, + 1403.0, + 1784.0, + 323.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1779.0, + 610.0, + 1779.0, + 610.0, + 1808.0, + 323.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1826.0, + 1409.0, + 1826.0, + 1409.0, + 1865.0, + 292.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1857.0, + 1409.0, + 1857.0, + 1409.0, + 1895.0, + 320.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1889.0, + 1405.0, + 1889.0, + 1405.0, + 1923.0, + 323.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1922.0, + 820.0, + 1922.0, + 820.0, + 1955.0, + 323.0, + 1955.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.884 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1400, + 229, + 1400, + 323, + 296, + 323 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 295, + 532, + 1405, + 532, + 1405, + 627, + 295, + 627 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 293, + 643, + 1402, + 643, + 1402, + 708, + 293, + 708 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 291, + 1606, + 1403, + 1606, + 1403, + 1670, + 291, + 1670 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 295, + 339, + 1402, + 339, + 1402, + 404, + 295, + 404 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 293, + 1109, + 1404, + 1109, + 1404, + 1174, + 293, + 1174 + ], + "score": 0.789 + }, + { + "category_id": 1, + "poly": [ + 298, + 420, + 1402, + 420, + 1402, + 515, + 298, + 515 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 299, + 724, + 1402, + 724, + 1402, + 821, + 299, + 821 + ], + "score": 0.774 + }, + { + "category_id": 1, + "poly": [ + 299, + 1190, + 1404, + 1190, + 1404, + 1284, + 299, + 1284 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 290, + 1525, + 1401, + 1525, + 1401, + 1590, + 290, + 1590 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 296, + 1687, + 1406, + 1687, + 1406, + 1812, + 296, + 1812 + ], + "score": 0.752 + }, + { + "category_id": 1, + "poly": [ + 298, + 998, + 1403, + 998, + 1403, + 1093, + 298, + 1093 + ], + "score": 0.75 + }, + { + "category_id": 1, + "poly": [ + 295, + 1444, + 1402, + 1444, + 1402, + 1509, + 295, + 1509 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 294, + 837, + 1402, + 837, + 1402, + 901, + 294, + 901 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1404, + 1941, + 1404, + 2034, + 299, + 2034 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 293, + 917, + 1402, + 917, + 1402, + 983, + 293, + 983 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 297, + 1301, + 1406, + 1301, + 1406, + 1428, + 297, + 1428 + ], + "score": 0.718 + }, + { + "category_id": 1, + "poly": [ + 300, + 1829, + 1400, + 1829, + 1400, + 1924, + 300, + 1924 + ], + "score": 0.703 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 258.0, + 1404.0, + 258.0, + 1404.0, + 300.0, + 320.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 292.0, + 532.0, + 292.0, + 532.0, + 322.0, + 324.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 531.0, + 1407.0, + 531.0, + 1407.0, + 570.0, + 295.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 561.0, + 1410.0, + 561.0, + 1410.0, + 603.0, + 319.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 595.0, + 530.0, + 595.0, + 530.0, + 626.0, + 323.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 641.0, + 1405.0, + 641.0, + 1405.0, + 683.0, + 292.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 677.0, + 608.0, + 677.0, + 608.0, + 708.0, + 322.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1646.0, + 293.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1637.0, + 535.0, + 1637.0, + 535.0, + 1671.0, + 320.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 1405.0, + 338.0, + 1405.0, + 378.0, + 293.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 370.0, + 510.0, + 370.0, + 510.0, + 408.0, + 322.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1107.0, + 1409.0, + 1107.0, + 1409.0, + 1148.0, + 292.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1139.0, + 502.0, + 1139.0, + 502.0, + 1172.0, + 322.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 420.0, + 1406.0, + 420.0, + 1406.0, + 458.0, + 296.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 450.0, + 1406.0, + 450.0, + 1406.0, + 491.0, + 321.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 483.0, + 611.0, + 483.0, + 611.0, + 515.0, + 322.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 723.0, + 1404.0, + 723.0, + 1404.0, + 761.0, + 294.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 756.0, + 1406.0, + 756.0, + 1406.0, + 795.0, + 323.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 786.0, + 1027.0, + 786.0, + 1027.0, + 824.0, + 320.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1190.0, + 1404.0, + 1190.0, + 1404.0, + 1227.0, + 294.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1222.0, + 1408.0, + 1222.0, + 1408.0, + 1256.0, + 322.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1249.0, + 398.0, + 1249.0, + 398.0, + 1287.0, + 321.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1521.0, + 1403.0, + 1521.0, + 1403.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1558.0, + 1238.0, + 1558.0, + 1238.0, + 1591.0, + 322.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1408.0, + 1686.0, + 1408.0, + 1724.0, + 293.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1715.0, + 1407.0, + 1715.0, + 1407.0, + 1757.0, + 319.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1749.0, + 1411.0, + 1749.0, + 1411.0, + 1786.0, + 322.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1780.0, + 603.0, + 1780.0, + 603.0, + 1813.0, + 320.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 998.0, + 1405.0, + 998.0, + 1405.0, + 1036.0, + 294.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1028.0, + 1409.0, + 1028.0, + 1409.0, + 1069.0, + 320.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1059.0, + 533.0, + 1059.0, + 533.0, + 1093.0, + 322.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1440.0, + 1406.0, + 1440.0, + 1406.0, + 1483.0, + 294.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1477.0, + 706.0, + 1477.0, + 706.0, + 1510.0, + 320.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 877.0, + 293.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 868.0, + 1044.0, + 868.0, + 1044.0, + 902.0, + 322.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1936.0, + 1409.0, + 1936.0, + 1409.0, + 1980.0, + 292.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2002.0, + 770.0, + 2002.0, + 770.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 916.0, + 1404.0, + 916.0, + 1404.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 950.0, + 1051.0, + 950.0, + 1051.0, + 982.0, + 322.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1302.0, + 1406.0, + 1302.0, + 1406.0, + 1338.0, + 295.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1335.0, + 1406.0, + 1335.0, + 1406.0, + 1368.0, + 323.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1362.0, + 1409.0, + 1362.0, + 1409.0, + 1401.0, + 323.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1396.0, + 920.0, + 1396.0, + 920.0, + 1430.0, + 324.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1829.0, + 1405.0, + 1829.0, + 1405.0, + 1867.0, + 295.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1862.0, + 1405.0, + 1862.0, + 1405.0, + 1896.0, + 322.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1889.0, + 1175.0, + 1889.0, + 1175.0, + 1930.0, + 321.0, + 1930.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 291, + 224, + 1411, + 224, + 1411, + 659, + 291, + 659 + ], + "score": 0.539 + }, + { + "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, + 232.0, + 1406.0, + 232.0, + 1406.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1080.0, + 260.0, + 1080.0, + 300.0, + 322.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 312.0, + 1409.0, + 312.0, + 1409.0, + 350.0, + 294.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 344.0, + 1328.0, + 344.0, + 1328.0, + 382.0, + 321.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 394.0, + 1408.0, + 394.0, + 1408.0, + 431.0, + 296.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 427.0, + 1184.0, + 427.0, + 1184.0, + 462.0, + 321.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 477.0, + 1408.0, + 477.0, + 1408.0, + 516.0, + 293.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 511.0, + 1409.0, + 511.0, + 1409.0, + 547.0, + 322.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 539.0, + 598.0, + 539.0, + 598.0, + 579.0, + 323.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 595.0, + 1404.0, + 595.0, + 1404.0, + 631.0, + 294.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 624.0, + 988.0, + 624.0, + 988.0, + 659.0, + 321.0, + 659.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1625, + 1404, + 1625, + 1404, + 1840, + 298, + 1840 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 772, + 1404, + 772, + 1404, + 986, + 298, + 986 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1257, + 1405, + 1257, + 1405, + 1502, + 298, + 1502 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 525, + 1403, + 525, + 1403, + 679, + 298, + 679 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1001, + 1405, + 1001, + 1405, + 1155, + 298, + 1155 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 358, + 1404, + 358, + 1404, + 510, + 298, + 510 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1404, + 1942, + 1404, + 2034, + 300, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 303, + 1517, + 1399, + 1517, + 1399, + 1610, + 303, + 1610 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 295, + 695, + 1399, + 695, + 1399, + 757, + 295, + 757 + ], + "score": 0.952 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 504, + 226, + 504, + 262, + 300, + 262 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 300, + 1198, + 494, + 1198, + 494, + 1229, + 300, + 1229 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 300, + 298, + 478, + 298, + 478, + 331, + 300, + 331 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.838 + }, + { + "category_id": 0, + "poly": [ + 299, + 1882, + 845, + 1882, + 845, + 1914, + 299, + 1914 + ], + "score": 0.691 + }, + { + "category_id": 0, + "poly": [ + 300, + 1881, + 847, + 1881, + 847, + 1914, + 300, + 1914 + ], + "score": 0.335 + }, + { + "category_id": 13, + "poly": [ + 694, + 1549, + 755, + 1549, + 755, + 1583, + 694, + 1583 + ], + "score": 0.93, + "latex": "1 / n _ { f }" + }, + { + "category_id": 13, + "poly": [ + 841, + 1553, + 875, + 1553, + 875, + 1582, + 841, + 1582 + ], + "score": 0.87, + "latex": "n _ { f }" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1259, + 1237, + 1259, + 1237, + 1290, + 1150, + 1290 + ], + "score": 0.86, + "latex": "\\beta = 0 . 9 ," + }, + { + "category_id": 15, + "poly": [ + 293.0, + 220.0, + 510.0, + 220.0, + 510.0, + 271.0, + 293.0, + 271.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, + 1195.0, + 500.0, + 1195.0, + 500.0, + 1234.0, + 295.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 482.0, + 294.0, + 482.0, + 335.0, + 294.0, + 335.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": [ + 293.0, + 1879.0, + 853.0, + 1879.0, + 853.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 852.0, + 1882.0, + 852.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1625.0, + 1405.0, + 1625.0, + 1405.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1656.0, + 1408.0, + 1656.0, + 1408.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 1406.0, + 1685.0, + 1406.0, + 1721.0, + 293.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1718.0, + 1408.0, + 1718.0, + 1408.0, + 1752.0, + 294.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1746.0, + 1407.0, + 1746.0, + 1407.0, + 1782.0, + 292.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1779.0, + 1405.0, + 1779.0, + 1405.0, + 1814.0, + 294.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 805.0, + 1809.0, + 805.0, + 1843.0, + 294.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 771.0, + 1406.0, + 771.0, + 1406.0, + 808.0, + 293.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 800.0, + 1406.0, + 800.0, + 1406.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 835.0, + 1404.0, + 835.0, + 1404.0, + 869.0, + 294.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 866.0, + 1406.0, + 866.0, + 1406.0, + 899.0, + 293.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 896.0, + 1405.0, + 896.0, + 1405.0, + 929.0, + 293.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 922.0, + 1406.0, + 922.0, + 1406.0, + 964.0, + 292.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 956.0, + 852.0, + 956.0, + 852.0, + 987.0, + 296.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1257.0, + 1149.0, + 1257.0, + 1149.0, + 1294.0, + 293.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1257.0, + 1406.0, + 1257.0, + 1406.0, + 1294.0, + 1238.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1286.0, + 1406.0, + 1286.0, + 1406.0, + 1323.0, + 292.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1317.0, + 1407.0, + 1317.0, + 1407.0, + 1353.0, + 292.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1385.0, + 292.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1381.0, + 1405.0, + 1381.0, + 1405.0, + 1414.0, + 295.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1407.0, + 1409.0, + 1407.0, + 1409.0, + 1448.0, + 292.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1436.0, + 1409.0, + 1436.0, + 1409.0, + 1480.0, + 291.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1472.0, + 845.0, + 1472.0, + 845.0, + 1505.0, + 293.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 524.0, + 1407.0, + 524.0, + 1407.0, + 562.0, + 293.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 554.0, + 1405.0, + 554.0, + 1405.0, + 593.0, + 291.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 585.0, + 1405.0, + 585.0, + 1405.0, + 625.0, + 292.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 617.0, + 1405.0, + 617.0, + 1405.0, + 654.0, + 292.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 650.0, + 753.0, + 650.0, + 753.0, + 681.0, + 293.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1003.0, + 1405.0, + 1003.0, + 1405.0, + 1036.0, + 296.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1405.0, + 1030.0, + 1405.0, + 1069.0, + 293.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1061.0, + 1410.0, + 1061.0, + 1410.0, + 1099.0, + 293.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1091.0, + 1407.0, + 1091.0, + 1407.0, + 1130.0, + 293.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1119.0, + 1344.0, + 1119.0, + 1344.0, + 1163.0, + 292.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 357.0, + 1405.0, + 357.0, + 1405.0, + 392.0, + 295.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 387.0, + 1406.0, + 387.0, + 1406.0, + 424.0, + 296.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 417.0, + 1406.0, + 417.0, + 1406.0, + 456.0, + 293.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 448.0, + 1406.0, + 448.0, + 1406.0, + 485.0, + 294.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 480.0, + 457.0, + 480.0, + 457.0, + 514.0, + 293.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1976.0, + 295.0, + 1976.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, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1518.0, + 1403.0, + 1518.0, + 1403.0, + 1551.0, + 297.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1549.0, + 693.0, + 1549.0, + 693.0, + 1583.0, + 295.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1549.0, + 840.0, + 1549.0, + 840.0, + 1583.0, + 756.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1549.0, + 1404.0, + 1549.0, + 1404.0, + 1583.0, + 876.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1580.0, + 1313.0, + 1580.0, + 1313.0, + 1614.0, + 295.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 694.0, + 1404.0, + 694.0, + 1404.0, + 730.0, + 296.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 726.0, + 1108.0, + 726.0, + 1108.0, + 761.0, + 296.0, + 761.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1405, + 229, + 1405, + 565, + 298, + 565 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 878, + 1405, + 878, + 1405, + 1096, + 297, + 1096 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 680, + 1404, + 680, + 1404, + 865, + 298, + 865 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1310, + 1405, + 1310, + 1405, + 1433, + 296, + 1433 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 639, + 1122, + 1056, + 1122, + 1056, + 1202, + 639, + 1202 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 297, + 1867, + 1405, + 1867, + 1405, + 1924, + 297, + 1924 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 300, + 1248, + 648, + 1248, + 648, + 1279, + 300, + 1279 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 325, + 2005, + 1267, + 2005, + 1267, + 2034, + 325, + 2034 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1148, + 1400, + 1148, + 1400, + 1177, + 1366, + 1177 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 302, + 617, + 1226, + 617, + 1226, + 650, + 302, + 650 + ], + "score": 0.574 + }, + { + "category_id": 3, + "poly": [ + 224, + 1476, + 1519, + 1476, + 1519, + 1828, + 224, + 1828 + ], + "score": 0.548 + }, + { + "category_id": 1, + "poly": [ + 302, + 617, + 1226, + 617, + 1226, + 650, + 302, + 650 + ], + "score": 0.372 + }, + { + "category_id": 14, + "poly": [ + 639, + 1122, + 1061, + 1122, + 1061, + 1201, + 639, + 1201 + ], + "score": 0.94, + "latex": "\\mathrm { C K A } ( X , Y ) = { \\frac { | | X ^ { T } Y | | _ { F } ^ { 2 } } { | | X ^ { T } X | | _ { F } ^ { 2 } | | Y ^ { T } Y | | _ { F } ^ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 384, + 1032, + 536, + 1032, + 536, + 1061, + 384, + 1061 + ], + "score": 0.92, + "latex": "X \\in \\mathbb { R } ^ { m \\times n _ { x } }" + }, + { + "category_id": 13, + "poly": [ + 593, + 1033, + 741, + 1033, + 741, + 1061, + 593, + 1061 + ], + "score": 0.91, + "latex": "Y \\in \\mathbb { R } ^ { m \\times n _ { y } }" + }, + { + "category_id": 13, + "poly": [ + 481, + 1403, + 551, + 1403, + 551, + 1431, + 481, + 1431 + ], + "score": 0.9, + "latex": "k = 4" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1342, + 1242, + 1342, + 1242, + 1370, + 1172, + 1370 + ], + "score": 0.9, + "latex": "k = 3" + }, + { + "category_id": 13, + "poly": [ + 914, + 1403, + 984, + 1403, + 984, + 1431, + 914, + 1431 + ], + "score": 0.9, + "latex": "k = 5" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1373, + 1260, + 1373, + 1260, + 1401, + 1190, + 1401 + ], + "score": 0.89, + "latex": "k = 7" + }, + { + "category_id": 13, + "poly": [ + 428, + 1373, + 499, + 1373, + 499, + 1401, + 428, + 1401 + ], + "score": 0.89, + "latex": "k = 4" + }, + { + "category_id": 13, + "poly": [ + 660, + 1341, + 715, + 1341, + 715, + 1371, + 660, + 1371 + ], + "score": 0.89, + "latex": "\\mathrm { \\bar { 8 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 804, + 1373, + 874, + 1373, + 874, + 1401, + 804, + 1401 + ], + "score": 0.89, + "latex": "k = 4" + }, + { + "category_id": 13, + "poly": [ + 1118, + 1006, + 1152, + 1006, + 1152, + 1036, + 1118, + 1036 + ], + "score": 0.87, + "latex": "n _ { y }" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1007, + 1063, + 1007, + 1063, + 1033, + 1028, + 1033 + ], + "score": 0.86, + "latex": "n _ { x }" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1313, + 1077, + 1313, + 1077, + 1339, + 1058, + 1339 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 631, + 974, + 659, + 974, + 659, + 1000, + 631, + 1000 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1272, + 350, + 1298, + 350, + 1298, + 381, + 1272, + 381 + ], + "score": 0.81, + "latex": "I ^ { \\hat { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 711, + 974, + 737, + 974, + 737, + 1000, + 711, + 1000 + ], + "score": 0.78, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 297, + 1342, + 317, + 1342, + 317, + 1369, + 297, + 1369 + ], + "score": 0.74, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1214, + 946, + 1242, + 946, + 1242, + 970, + 1214, + 970 + ], + "score": 0.69, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1900.0, + 295.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1890.0, + 479.0, + 1890.0, + 479.0, + 1930.0, + 293.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1248.0, + 649.0, + 1248.0, + 649.0, + 1281.0, + 297.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 2000.0, + 1270.0, + 2000.0, + 1270.0, + 2038.0, + 333.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 617.0, + 1229.0, + 617.0, + 1229.0, + 652.0, + 296.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 222.0, + 1473.0, + 1062.0, + 1473.0, + 1062.0, + 1499.0, + 222.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1477.0, + 1511.0, + 1477.0, + 1511.0, + 1499.0, + 1126.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1495.0, + 639.0, + 1495.0, + 639.0, + 1518.0, + 242.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1494.0, + 1059.0, + 1494.0, + 1059.0, + 1521.0, + 658.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1494.0, + 1525.0, + 1494.0, + 1525.0, + 1521.0, + 1127.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1511.0, + 306.0, + 1511.0, + 306.0, + 1539.0, + 242.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1523.0, + 392.0, + 1523.0, + 392.0, + 1536.0, + 379.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1514.0, + 710.0, + 1514.0, + 710.0, + 1538.0, + 667.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1509.0, + 1190.0, + 1509.0, + 1190.0, + 1541.0, + 1121.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1535.0, + 486.0, + 1535.0, + 486.0, + 1546.0, + 470.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1538.0, + 578.0, + 1538.0, + 578.0, + 1550.0, + 566.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1536.0, + 722.0, + 1536.0, + 722.0, + 1549.0, + 709.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1543.0, + 810.0, + 1543.0, + 810.0, + 1553.0, + 799.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1533.0, + 905.0, + 1533.0, + 905.0, + 1546.0, + 890.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1545.0, + 1331.0, + 1545.0, + 1331.0, + 1562.0, + 1309.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 223.0, + 1552.0, + 279.0, + 1552.0, + 279.0, + 1735.0, + 223.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1603.0, + 302.0, + 1603.0, + 302.0, + 1635.0, + 282.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1552.0, + 701.0, + 1552.0, + 701.0, + 1734.0, + 648.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1603.0, + 729.0, + 1603.0, + 729.0, + 1627.0, + 706.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1564.0, + 994.0, + 1564.0, + 994.0, + 1577.0, + 979.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1552.0, + 1155.0, + 1552.0, + 1155.0, + 1734.0, + 1103.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1601.0, + 1176.0, + 1601.0, + 1176.0, + 1622.0, + 1159.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1583.0, + 1376.0, + 1583.0, + 1376.0, + 1596.0, + 1363.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 1600.0, + 1399.0, + 1600.0, + 1399.0, + 1614.0, + 1386.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1456.0, + 1588.0, + 1476.0, + 1588.0, + 1476.0, + 1604.0, + 1456.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1622.0, + 276.0, + 1622.0, + 276.0, + 1649.0, + 242.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1629.0, + 392.0, + 1629.0, + 392.0, + 1644.0, + 379.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1622.0, + 700.0, + 1622.0, + 700.0, + 1649.0, + 667.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1625.0, + 1153.0, + 1625.0, + 1153.0, + 1648.0, + 1123.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1622.0, + 1277.0, + 1622.0, + 1277.0, + 1639.0, + 1259.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1618.0, + 1399.0, + 1618.0, + 1399.0, + 1641.0, + 1287.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1642.0, + 1277.0, + 1642.0, + 1277.0, + 1659.0, + 1259.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1639.0, + 1477.0, + 1639.0, + 1477.0, + 1662.0, + 1287.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1651.0, + 815.0, + 1651.0, + 815.0, + 1668.0, + 797.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1659.0, + 277.0, + 1659.0, + 277.0, + 1687.0, + 242.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1660.0, + 701.0, + 1660.0, + 701.0, + 1687.0, + 667.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1662.0, + 1156.0, + 1662.0, + 1156.0, + 1687.0, + 1121.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1663.0, + 1278.0, + 1663.0, + 1278.0, + 1680.0, + 1259.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1660.0, + 1479.0, + 1660.0, + 1479.0, + 1683.0, + 1287.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1697.0, + 277.0, + 1697.0, + 277.0, + 1724.0, + 242.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1697.0, + 701.0, + 1697.0, + 701.0, + 1724.0, + 667.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1700.0, + 1153.0, + 1700.0, + 1153.0, + 1723.0, + 1123.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 312.0, + 1716.0, + 312.0, + 1734.0, + 295.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1713.0, + 436.0, + 1713.0, + 436.0, + 1735.0, + 324.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1723.0, + 578.0, + 1723.0, + 578.0, + 1734.0, + 566.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1716.0, + 736.0, + 1716.0, + 736.0, + 1733.0, + 719.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1713.0, + 861.0, + 1713.0, + 861.0, + 1735.0, + 747.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1735.0, + 279.0, + 1735.0, + 279.0, + 1761.0, + 242.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1737.0, + 312.0, + 1737.0, + 312.0, + 1755.0, + 293.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1733.0, + 515.0, + 1733.0, + 515.0, + 1755.0, + 324.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1735.0, + 704.0, + 1735.0, + 704.0, + 1761.0, + 667.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1737.0, + 736.0, + 1737.0, + 736.0, + 1754.0, + 717.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1733.0, + 940.0, + 1733.0, + 940.0, + 1755.0, + 747.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1735.0, + 1156.0, + 1735.0, + 1156.0, + 1761.0, + 1121.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1757.0, + 312.0, + 1757.0, + 312.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1754.0, + 515.0, + 1754.0, + 515.0, + 1776.0, + 324.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1757.0, + 736.0, + 1757.0, + 736.0, + 1775.0, + 717.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1754.0, + 940.0, + 1754.0, + 940.0, + 1776.0, + 747.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1774.0, + 276.0, + 1774.0, + 276.0, + 1795.0, + 240.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1772.0, + 703.0, + 1772.0, + 703.0, + 1799.0, + 667.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1773.0, + 1158.0, + 1773.0, + 1158.0, + 1799.0, + 1121.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1786.0, + 299.0, + 1786.0, + 299.0, + 1806.0, + 282.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1786.0, + 392.0, + 1786.0, + 392.0, + 1807.0, + 376.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1788.0, + 488.0, + 1788.0, + 488.0, + 1806.0, + 470.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1786.0, + 584.0, + 1786.0, + 584.0, + 1806.0, + 565.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1786.0, + 723.0, + 1786.0, + 723.0, + 1806.0, + 704.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1788.0, + 813.0, + 1788.0, + 813.0, + 1806.0, + 797.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1788.0, + 905.0, + 1788.0, + 905.0, + 1806.0, + 887.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1786.0, + 996.0, + 1786.0, + 996.0, + 1806.0, + 979.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1788.0, + 1180.0, + 1788.0, + 1180.0, + 1806.0, + 1161.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1790.0, + 1251.0, + 1790.0, + 1251.0, + 1805.0, + 1238.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1789.0, + 1325.0, + 1789.0, + 1325.0, + 1803.0, + 1312.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 1788.0, + 1400.0, + 1788.0, + 1400.0, + 1807.0, + 1384.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1460.0, + 1790.0, + 1473.0, + 1790.0, + 1473.0, + 1805.0, + 1460.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1797.0, + 461.0, + 1797.0, + 461.0, + 1829.0, + 402.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1797.0, + 881.0, + 1797.0, + 881.0, + 1829.0, + 822.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1797.0, + 1349.0, + 1797.0, + 1349.0, + 1829.0, + 1288.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.25, + 1700.0, + 988.25, + 1700.0, + 988.25, + 1728.5, + 900.25, + 1728.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.25, + 1678.0, + 480.25, + 1678.0, + 480.25, + 1694.5, + 454.25, + 1694.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.25, + 1721.0, + 1260.25, + 1721.0, + 1260.25, + 1748.0, + 1229.25, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 230.0, + 1406.0, + 230.0, + 1406.0, + 264.0, + 293.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 352.0, + 1271.0, + 352.0, + 1271.0, + 386.0, + 293.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 386.0, + 1299.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 412.0, + 1405.0, + 412.0, + 1405.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 444.0, + 1403.0, + 444.0, + 1403.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 474.0, + 1408.0, + 474.0, + 1408.0, + 510.0, + 293.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 503.0, + 1406.0, + 503.0, + 1406.0, + 541.0, + 293.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 536.0, + 429.0, + 536.0, + 429.0, + 572.0, + 292.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 879.0, + 1408.0, + 879.0, + 1408.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 945.0, + 295.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 940.0, + 1213.0, + 940.0, + 1213.0, + 978.0, + 294.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 940.0, + 1407.0, + 940.0, + 1407.0, + 978.0, + 1243.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 973.0, + 630.0, + 973.0, + 630.0, + 1007.0, + 294.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 973.0, + 710.0, + 973.0, + 710.0, + 1007.0, + 660.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 973.0, + 1407.0, + 973.0, + 1407.0, + 1007.0, + 738.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1001.0, + 1027.0, + 1001.0, + 1027.0, + 1038.0, + 292.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1001.0, + 1117.0, + 1001.0, + 1117.0, + 1038.0, + 1064.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1001.0, + 1407.0, + 1001.0, + 1407.0, + 1038.0, + 1153.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1027.0, + 383.0, + 1027.0, + 383.0, + 1069.0, + 292.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1027.0, + 592.0, + 1027.0, + 592.0, + 1069.0, + 537.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1027.0, + 1407.0, + 1027.0, + 1407.0, + 1069.0, + 742.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 598.0, + 1065.0, + 598.0, + 1100.0, + 294.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 717.0, + 293.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 711.0, + 1406.0, + 711.0, + 1406.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 1405.0, + 743.0, + 1405.0, + 775.0, + 294.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 1406.0, + 772.0, + 1406.0, + 808.0, + 293.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 804.0, + 1404.0, + 804.0, + 1404.0, + 836.0, + 296.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 832.0, + 1409.0, + 832.0, + 1409.0, + 869.0, + 293.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 1057.0, + 1310.0, + 1057.0, + 1345.0, + 293.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1310.0, + 1407.0, + 1310.0, + 1407.0, + 1345.0, + 1078.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1341.0, + 659.0, + 1341.0, + 659.0, + 1374.0, + 318.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1341.0, + 1171.0, + 1341.0, + 1171.0, + 1374.0, + 716.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1341.0, + 1403.0, + 1341.0, + 1403.0, + 1374.0, + 1243.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 427.0, + 1373.0, + 427.0, + 1405.0, + 294.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1373.0, + 803.0, + 1373.0, + 803.0, + 1405.0, + 500.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1373.0, + 1189.0, + 1373.0, + 1189.0, + 1405.0, + 875.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1373.0, + 1405.0, + 1373.0, + 1405.0, + 1405.0, + 1261.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1404.0, + 480.0, + 1404.0, + 480.0, + 1433.0, + 296.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1404.0, + 913.0, + 1404.0, + 913.0, + 1433.0, + 552.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1404.0, + 1319.0, + 1404.0, + 1319.0, + 1433.0, + 985.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 617.0, + 1229.0, + 617.0, + 1229.0, + 652.0, + 296.0, + 652.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1117, + 1404, + 1117, + 1404, + 1304, + 297, + 1304 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1818, + 1404, + 1818, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 695, + 1405, + 695, + 1405, + 850, + 298, + 850 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1602, + 1405, + 1602, + 1405, + 1726, + 298, + 1726 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 517, + 1404, + 517, + 1404, + 681, + 298, + 681 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1415, + 1404, + 1415, + 1404, + 1509, + 299, + 1509 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 610, + 1011, + 1087, + 1011, + 1087, + 1089, + 610, + 1089 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 611, + 423, + 1086, + 423, + 1086, + 500, + 611, + 500 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 295, + 338, + 1401, + 338, + 1401, + 409, + 295, + 409 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 300, + 935, + 1401, + 935, + 1401, + 998, + 300, + 998 + ], + "score": 0.954 + }, + { + "category_id": 0, + "poly": [ + 301, + 881, + 703, + 881, + 703, + 913, + 301, + 913 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 302, + 1347, + 749, + 1347, + 749, + 1383, + 302, + 1383 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 299, + 1762, + 648, + 1762, + 648, + 1794, + 299, + 1794 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 301, + 1546, + 709, + 1546, + 709, + 1577, + 301, + 1577 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 441, + 1400, + 441, + 1400, + 471, + 1366, + 471 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1030, + 1400, + 1030, + 1400, + 1061, + 1366, + 1061 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 653, + 228, + 653, + 262, + 300, + 262 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 298, + 285, + 814, + 285, + 814, + 320, + 298, + 320 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.857 + }, + { + "category_id": 14, + "poly": [ + 610, + 419, + 1089, + 419, + 1089, + 504, + 610, + 504 + ], + "score": 0.95, + "latex": "\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } F _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 609, + 1008, + 1090, + 1008, + 1090, + 1093, + 609, + 1093 + ], + "score": 0.94, + "latex": "\\mathcal { L } ( \\vec { \\theta } ) = \\mathcal { L } _ { B } ( \\vec { \\theta } ) + \\frac { \\lambda } { 2 } \\sum _ { i } C _ { i } \\cdot \\left( \\theta _ { i } - \\theta _ { A , i } ^ { * } \\right) ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 704, + 515, + 782, + 515, + 782, + 555, + 704, + 555 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { B } ( \\vec { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 962, + 371, + 1018, + 371, + 1018, + 410, + 962, + 410 + ], + "score": 0.92, + "latex": "\\mathcal { L } ( \\vec { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 928, + 582, + 961, + 582, + 961, + 621, + 928, + 621 + ], + "score": 0.9, + "latex": "\\vec { \\theta } _ { A } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1038, + 553, + 1069, + 553, + 1069, + 583, + 1038, + 583 + ], + "score": 0.88, + "latex": "F _ { i }" + }, + { + "category_id": 13, + "poly": [ + 370, + 515, + 389, + 515, + 389, + 549, + 370, + 549 + ], + "score": 0.82, + "latex": "\\vec { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 522, + 1402, + 522, + 1402, + 550, + 1381, + 550 + ], + "score": 0.66, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 881.0, + 706.0, + 881.0, + 706.0, + 917.0, + 296.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 753.0, + 1346.0, + 753.0, + 1386.0, + 294.0, + 1386.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, + 1759.0, + 651.0, + 1759.0, + 651.0, + 1799.0, + 293.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1546.0, + 710.0, + 1546.0, + 710.0, + 1578.0, + 296.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 655.0, + 226.0, + 655.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 286.0, + 817.0, + 286.0, + 817.0, + 321.0, + 296.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1120.0, + 1404.0, + 1120.0, + 1404.0, + 1152.0, + 296.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1150.0, + 1404.0, + 1150.0, + 1404.0, + 1182.0, + 296.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1176.0, + 1406.0, + 1176.0, + 1406.0, + 1220.0, + 292.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1212.0, + 1404.0, + 1212.0, + 1404.0, + 1244.0, + 296.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1240.0, + 1406.0, + 1240.0, + 1406.0, + 1275.0, + 292.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 485.0, + 1273.0, + 485.0, + 1307.0, + 295.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1878.0, + 1406.0, + 1878.0, + 1406.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1948.0, + 292.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 695.0, + 1403.0, + 695.0, + 1403.0, + 729.0, + 296.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 725.0, + 1403.0, + 725.0, + 1403.0, + 758.0, + 296.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 755.0, + 1408.0, + 755.0, + 1408.0, + 790.0, + 292.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 784.0, + 1405.0, + 784.0, + 1405.0, + 824.0, + 293.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 815.0, + 878.0, + 815.0, + 878.0, + 855.0, + 293.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1601.0, + 1409.0, + 1601.0, + 1409.0, + 1640.0, + 292.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1632.0, + 1405.0, + 1632.0, + 1405.0, + 1670.0, + 293.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1664.0, + 1405.0, + 1664.0, + 1405.0, + 1699.0, + 293.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1696.0, + 819.0, + 1696.0, + 819.0, + 1728.0, + 296.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 519.0, + 369.0, + 519.0, + 369.0, + 555.0, + 294.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 519.0, + 703.0, + 519.0, + 703.0, + 555.0, + 390.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 519.0, + 1380.0, + 519.0, + 1380.0, + 555.0, + 783.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 519.0, + 1406.0, + 519.0, + 1406.0, + 555.0, + 1403.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 549.0, + 1037.0, + 549.0, + 1037.0, + 586.0, + 293.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 549.0, + 1406.0, + 549.0, + 1406.0, + 586.0, + 1070.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 584.0, + 927.0, + 584.0, + 927.0, + 627.0, + 291.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 584.0, + 1406.0, + 584.0, + 1406.0, + 627.0, + 962.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 619.0, + 1404.0, + 619.0, + 1404.0, + 652.0, + 294.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 647.0, + 1409.0, + 647.0, + 1409.0, + 684.0, + 293.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1416.0, + 1404.0, + 1416.0, + 1404.0, + 1450.0, + 295.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1447.0, + 1403.0, + 1447.0, + 1403.0, + 1481.0, + 294.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1477.0, + 447.0, + 1477.0, + 447.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 339.0, + 1402.0, + 339.0, + 1402.0, + 372.0, + 298.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 374.0, + 961.0, + 374.0, + 961.0, + 411.0, + 297.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 374.0, + 1029.0, + 374.0, + 1029.0, + 411.0, + 1019.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 936.0, + 1403.0, + 936.0, + 1403.0, + 972.0, + 296.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 968.0, + 1097.0, + 968.0, + 1097.0, + 1000.0, + 298.0, + 1000.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1542, + 1404, + 1542, + 1404, + 1819, + 298, + 1819 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 300, + 1834, + 1403, + 1834, + 1403, + 1926, + 300, + 1926 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1345, + 1403, + 1345, + 1403, + 1438, + 299, + 1438 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 306, + 230, + 1375, + 230, + 1375, + 524, + 306, + 524 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1403, + 1942, + 1403, + 2034, + 300, + 2034 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 296, + 545, + 1406, + 545, + 1406, + 658, + 296, + 658 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 323, + 856, + 1380, + 856, + 1380, + 1131, + 323, + 1131 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 297, + 1164, + 1404, + 1164, + 1404, + 1303, + 297, + 1303 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 724, + 1404, + 724, + 1404, + 817, + 298, + 817 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 299, + 1484, + 880, + 1484, + 880, + 1514, + 299, + 1514 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 13, + "poly": [ + 726, + 1727, + 803, + 1727, + 803, + 1756, + 726, + 1756 + ], + "score": 0.9, + "latex": "N + 1" + }, + { + "category_id": 13, + "poly": [ + 1161, + 1697, + 1190, + 1697, + 1190, + 1723, + 1161, + 1723 + ], + "score": 0.78, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1124, + 602, + 1151, + 602, + 1151, + 626, + 1124, + 626 + ], + "score": 0.77, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 547, + 1789, + 576, + 1789, + 576, + 1815, + 547, + 1815 + ], + "score": 0.77, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 660, + 602, + 686, + 602, + 686, + 626, + 660, + 626 + ], + "score": 0.74, + "latex": "N" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 235.0, + 590.0, + 235.0, + 590.0, + 259.0, + 413.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 233.0, + 946.0, + 233.0, + 946.0, + 260.0, + 791.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 235.0, + 1335.0, + 235.0, + 1335.0, + 259.0, + 1136.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 259.0, + 367.0, + 259.0, + 367.0, + 286.0, + 328.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 271.0, + 732.0, + 271.0, + 732.0, + 298.0, + 694.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 270.0, + 777.0, + 270.0, + 777.0, + 278.0, + 765.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 269.0, + 977.0, + 269.0, + 977.0, + 281.0, + 949.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 255.0, + 1112.0, + 255.0, + 1112.0, + 281.0, + 1061.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 306.0, + 364.0, + 306.0, + 364.0, + 333.0, + 328.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 299.0, + 1100.0, + 299.0, + 1100.0, + 327.0, + 1061.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 319.0, + 331.0, + 319.0, + 331.0, + 420.0, + 307.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 318.0, + 730.0, + 318.0, + 730.0, + 421.0, + 670.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 318.0, + 1066.0, + 318.0, + 1066.0, + 421.0, + 1038.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 355.0, + 363.0, + 355.0, + 363.0, + 378.0, + 329.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 344.0, + 1099.0, + 344.0, + 1099.0, + 371.0, + 1061.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 387.0, + 731.0, + 387.0, + 731.0, + 410.0, + 696.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 391.0, + 1097.0, + 391.0, + 1097.0, + 414.0, + 1062.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 403.0, + 363.0, + 403.0, + 363.0, + 425.0, + 329.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 420.0, + 620.0, + 420.0, + 620.0, + 443.0, + 535.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 417.0, + 988.0, + 417.0, + 988.0, + 445.0, + 902.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 420.0, + 1354.0, + 420.0, + 1354.0, + 443.0, + 1270.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 447.0, + 364.0, + 447.0, + 364.0, + 476.0, + 328.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 437.0, + 629.0, + 437.0, + 629.0, + 470.0, + 536.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 443.0, + 730.0, + 443.0, + 730.0, + 467.0, + 696.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 438.0, + 994.0, + 438.0, + 994.0, + 467.0, + 903.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 434.0, + 1099.0, + 434.0, + 1099.0, + 461.0, + 1061.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 436.0, + 1361.0, + 436.0, + 1361.0, + 469.0, + 1269.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 480.0, + 391.0, + 480.0, + 391.0, + 503.0, + 373.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 481.0, + 448.0, + 481.0, + 448.0, + 502.0, + 430.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 480.0, + 512.0, + 480.0, + 512.0, + 504.0, + 492.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 472.0, + 573.0, + 472.0, + 573.0, + 505.0, + 551.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 482.0, + 631.0, + 482.0, + 631.0, + 503.0, + 612.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 480.0, + 759.0, + 480.0, + 759.0, + 503.0, + 739.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 482.0, + 805.0, + 482.0, + 805.0, + 503.0, + 787.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 480.0, + 854.0, + 480.0, + 854.0, + 504.0, + 836.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 480.0, + 903.0, + 480.0, + 903.0, + 504.0, + 882.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 480.0, + 950.0, + 480.0, + 950.0, + 503.0, + 931.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 480.0, + 999.0, + 480.0, + 999.0, + 504.0, + 978.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 480.0, + 1125.0, + 480.0, + 1125.0, + 503.0, + 1106.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 483.0, + 1183.0, + 483.0, + 1183.0, + 501.0, + 1168.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 480.0, + 1245.0, + 480.0, + 1245.0, + 504.0, + 1225.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 479.0, + 1304.0, + 479.0, + 1304.0, + 504.0, + 1285.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 482.0, + 1364.0, + 482.0, + 1364.0, + 503.0, + 1345.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 501.0, + 560.0, + 501.0, + 560.0, + 525.0, + 444.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 501.0, + 926.0, + 501.0, + 926.0, + 525.0, + 810.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 501.0, + 1293.0, + 501.0, + 1293.0, + 525.0, + 1177.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 540.0, + 1407.0, + 540.0, + 1407.0, + 583.0, + 293.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 574.0, + 1406.0, + 574.0, + 1406.0, + 607.0, + 295.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 659.0, + 598.0, + 659.0, + 635.0, + 294.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 598.0, + 1123.0, + 598.0, + 1123.0, + 635.0, + 687.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 598.0, + 1409.0, + 598.0, + 1409.0, + 635.0, + 1152.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 624.0, + 1322.0, + 624.0, + 1322.0, + 664.0, + 294.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 858.0, + 557.0, + 858.0, + 557.0, + 886.0, + 506.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 860.0, + 912.0, + 860.0, + 912.0, + 883.0, + 839.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 860.0, + 1266.0, + 860.0, + 1266.0, + 883.0, + 1172.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 879.0, + 374.0, + 879.0, + 374.0, + 895.0, + 345.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 879.0, + 717.0, + 879.0, + 717.0, + 895.0, + 688.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 879.0, + 1061.0, + 879.0, + 1061.0, + 895.0, + 1032.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 893.0, + 626.0, + 893.0, + 626.0, + 901.0, + 613.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 888.0, + 680.0, + 888.0, + 680.0, + 903.0, + 644.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 890.0, + 1283.0, + 890.0, + 1283.0, + 902.0, + 1252.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 886.0, + 1367.0, + 886.0, + 1367.0, + 901.0, + 1293.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 907.0, + 373.0, + 907.0, + 373.0, + 923.0, + 345.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 899.0, + 548.0, + 899.0, + 548.0, + 907.0, + 532.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 903.0, + 719.0, + 903.0, + 719.0, + 920.0, + 688.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 902.0, + 1020.0, + 902.0, + 1020.0, + 910.0, + 1000.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 903.0, + 1065.0, + 903.0, + 1065.0, + 920.0, + 1032.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 897.0, + 1174.0, + 897.0, + 1174.0, + 909.0, + 1153.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 918.0, + 355.0, + 918.0, + 355.0, + 1055.0, + 324.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 928.0, + 718.0, + 928.0, + 718.0, + 945.0, + 689.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 928.0, + 1066.0, + 928.0, + 1066.0, + 944.0, + 1032.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 936.0, + 374.0, + 936.0, + 374.0, + 952.0, + 345.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 954.0, + 717.0, + 954.0, + 717.0, + 970.0, + 689.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 954.0, + 1061.0, + 954.0, + 1061.0, + 971.0, + 1031.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 964.0, + 373.0, + 964.0, + 373.0, + 982.0, + 345.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 975.0, + 433.0, + 975.0, + 433.0, + 991.0, + 419.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 979.0, + 717.0, + 979.0, + 717.0, + 996.0, + 689.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 979.0, + 1065.0, + 979.0, + 1065.0, + 996.0, + 1032.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 994.0, + 374.0, + 994.0, + 374.0, + 1010.0, + 345.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 992.0, + 432.0, + 992.0, + 432.0, + 1009.0, + 419.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1009.0, + 433.0, + 1009.0, + 433.0, + 1027.0, + 419.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1004.0, + 718.0, + 1004.0, + 718.0, + 1022.0, + 689.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1003.0, + 1066.0, + 1003.0, + 1066.0, + 1023.0, + 1031.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1023.0, + 374.0, + 1023.0, + 374.0, + 1039.0, + 345.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1027.0, + 432.0, + 1027.0, + 432.0, + 1044.0, + 419.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1030.0, + 717.0, + 1030.0, + 717.0, + 1046.0, + 689.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1029.0, + 1066.0, + 1029.0, + 1066.0, + 1049.0, + 1031.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1045.0, + 433.0, + 1045.0, + 433.0, + 1060.0, + 419.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1042.0, + 1148.0, + 1042.0, + 1148.0, + 1061.0, + 1140.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1052.0, + 375.0, + 1052.0, + 375.0, + 1068.0, + 345.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1057.0, + 715.0, + 1057.0, + 715.0, + 1070.0, + 691.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1056.0, + 1065.0, + 1056.0, + 1065.0, + 1072.0, + 1032.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1063.0, + 433.0, + 1063.0, + 433.0, + 1079.0, + 419.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1071.0, + 804.0, + 1071.0, + 804.0, + 1083.0, + 796.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1064.0, + 1149.0, + 1064.0, + 1149.0, + 1086.0, + 1137.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1080.0, + 375.0, + 1080.0, + 375.0, + 1097.0, + 345.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1081.0, + 718.0, + 1081.0, + 718.0, + 1098.0, + 689.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1077.0, + 1063.0, + 1077.0, + 1063.0, + 1098.0, + 1033.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1093.0, + 391.0, + 1093.0, + 391.0, + 1110.0, + 365.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1094.0, + 425.0, + 1094.0, + 425.0, + 1108.0, + 406.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1095.0, + 459.0, + 1095.0, + 459.0, + 1107.0, + 448.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1095.0, + 495.0, + 1095.0, + 495.0, + 1107.0, + 485.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1092.0, + 538.0, + 1092.0, + 538.0, + 1110.0, + 518.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1092.0, + 576.0, + 1092.0, + 576.0, + 1110.0, + 555.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1094.0, + 612.0, + 1094.0, + 612.0, + 1108.0, + 594.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1094.0, + 649.0, + 1094.0, + 649.0, + 1108.0, + 631.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1094.0, + 686.0, + 1094.0, + 686.0, + 1108.0, + 670.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1093.0, + 735.0, + 1093.0, + 735.0, + 1110.0, + 709.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1094.0, + 768.0, + 1094.0, + 768.0, + 1108.0, + 750.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1095.0, + 801.0, + 1095.0, + 801.0, + 1107.0, + 791.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1095.0, + 838.0, + 1095.0, + 838.0, + 1107.0, + 830.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1094.0, + 880.0, + 1094.0, + 880.0, + 1108.0, + 862.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1094.0, + 917.0, + 1094.0, + 917.0, + 1110.0, + 901.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1092.0, + 956.0, + 1092.0, + 956.0, + 1110.0, + 936.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1094.0, + 993.0, + 1094.0, + 993.0, + 1108.0, + 974.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1092.0, + 1031.0, + 1092.0, + 1031.0, + 1110.0, + 1011.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1093.0, + 1078.0, + 1093.0, + 1078.0, + 1110.0, + 1053.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1094.0, + 1111.0, + 1094.0, + 1111.0, + 1108.0, + 1094.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1094.0, + 1147.0, + 1094.0, + 1147.0, + 1108.0, + 1132.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1095.0, + 1182.0, + 1095.0, + 1182.0, + 1107.0, + 1172.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1094.0, + 1224.0, + 1094.0, + 1224.0, + 1108.0, + 1206.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1094.0, + 1260.0, + 1094.0, + 1260.0, + 1108.0, + 1243.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1094.0, + 1297.0, + 1094.0, + 1297.0, + 1108.0, + 1282.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1094.0, + 1336.0, + 1094.0, + 1336.0, + 1108.0, + 1319.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1094.0, + 1373.0, + 1094.0, + 1373.0, + 1108.0, + 1356.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1105.0, + 565.0, + 1105.0, + 565.0, + 1133.0, + 500.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1105.0, + 908.0, + 1105.0, + 908.0, + 1133.0, + 843.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1106.0, + 1249.0, + 1106.0, + 1249.0, + 1131.0, + 1184.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 889.5, + 1252.0, + 889.5, + 1252.0, + 908.5, + 1174.0, + 908.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 903.5, + 483.0, + 903.5, + 483.0, + 913.0, + 458.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.75, + 906.0, + 910.75, + 906.0, + 910.75, + 926.5, + 820.75, + 926.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1197.0, + 295.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1191.0, + 1404.0, + 1191.0, + 1404.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1246.0, + 1406.0, + 1246.0, + 1406.0, + 1281.0, + 294.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1278.0, + 436.0, + 1278.0, + 436.0, + 1307.0, + 295.0, + 1307.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": [ + 296.0, + 1484.0, + 884.0, + 1484.0, + 884.0, + 1515.0, + 296.0, + 1515.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": [ + 294.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1580.0, + 294.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1406.0, + 1574.0, + 1406.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1606.0, + 1405.0, + 1606.0, + 1405.0, + 1639.0, + 296.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1636.0, + 1404.0, + 1636.0, + 1404.0, + 1669.0, + 296.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1666.0, + 1406.0, + 1666.0, + 1406.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 1160.0, + 1695.0, + 1160.0, + 1730.0, + 293.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1695.0, + 1406.0, + 1695.0, + 1406.0, + 1730.0, + 1191.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1728.0, + 725.0, + 1728.0, + 725.0, + 1760.0, + 296.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1728.0, + 1404.0, + 1728.0, + 1404.0, + 1760.0, + 804.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1755.0, + 1406.0, + 1755.0, + 1406.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 546.0, + 1785.0, + 546.0, + 1825.0, + 293.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1785.0, + 989.0, + 1785.0, + 989.0, + 1825.0, + 577.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1834.0, + 1403.0, + 1834.0, + 1403.0, + 1868.0, + 296.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1864.0, + 1403.0, + 1864.0, + 1403.0, + 1898.0, + 295.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1894.0, + 997.0, + 1894.0, + 997.0, + 1928.0, + 294.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1405.0, + 1344.0, + 1405.0, + 1382.0, + 294.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1377.0, + 1402.0, + 1377.0, + 1402.0, + 1411.0, + 295.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 1017.0, + 1406.0, + 1017.0, + 1443.0, + 294.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1409.0, + 1940.0, + 1409.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2008.0, + 295.0, + 2008.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": [ + 292.0, + 722.0, + 1404.0, + 722.0, + 1404.0, + 761.0, + 292.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 756.0, + 1404.0, + 756.0, + 1404.0, + 790.0, + 294.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 787.0, + 807.0, + 787.0, + 807.0, + 821.0, + 296.0, + 821.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 295, + 1129, + 1406, + 1129, + 1406, + 1352, + 295, + 1352 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 306, + 1628, + 1400, + 1628, + 1400, + 1936, + 306, + 1936 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 306, + 336, + 1400, + 336, + 1400, + 621, + 306, + 621 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 306, + 812, + 1401, + 812, + 1401, + 1097, + 306, + 1097 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 297, + 654, + 1406, + 654, + 1406, + 740, + 297, + 740 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1402, + 229, + 1402, + 293, + 296, + 293 + ], + "score": 0.938 + }, + { + "category_id": 4, + "poly": [ + 350, + 1965, + 1342, + 1965, + 1342, + 2000, + 350, + 2000 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 299, + 1494, + 1403, + 1494, + 1403, + 1588, + 299, + 1588 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 292, + 1432, + 1371, + 1432, + 1371, + 1465, + 292, + 1465 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.857 + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1126.0, + 1406.0, + 1126.0, + 1406.0, + 1162.0, + 293.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1152.0, + 1407.0, + 1152.0, + 1407.0, + 1195.0, + 290.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1184.0, + 1406.0, + 1184.0, + 1406.0, + 1219.0, + 293.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1247.0, + 294.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1241.0, + 1407.0, + 1241.0, + 1407.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1267.0, + 1407.0, + 1267.0, + 1407.0, + 1302.0, + 293.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1295.0, + 1408.0, + 1295.0, + 1408.0, + 1329.0, + 294.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1325.0, + 925.0, + 1325.0, + 925.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1625.0, + 1108.0, + 1625.0, + 1108.0, + 1658.0, + 596.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1652.0, + 353.0, + 1652.0, + 353.0, + 1671.0, + 328.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1662.0, + 720.0, + 1662.0, + 720.0, + 1681.0, + 689.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1679.0, + 353.0, + 1679.0, + 353.0, + 1698.0, + 328.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1671.0, + 747.0, + 1671.0, + 747.0, + 1866.0, + 645.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1670.0, + 1089.0, + 1670.0, + 1089.0, + 1693.0, + 1051.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1680.0, + 1114.0, + 1680.0, + 1114.0, + 1697.0, + 1097.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1688.0, + 1181.0, + 1688.0, + 1181.0, + 1706.0, + 1166.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1707.0, + 353.0, + 1707.0, + 353.0, + 1826.0, + 307.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1703.0, + 719.0, + 1703.0, + 719.0, + 1762.0, + 689.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1726.0, + 837.0, + 1726.0, + 837.0, + 1742.0, + 821.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1702.0, + 1089.0, + 1702.0, + 1089.0, + 1841.0, + 1026.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1711.0, + 1250.0, + 1711.0, + 1250.0, + 1728.0, + 1234.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1762.0, + 353.0, + 1762.0, + 353.0, + 1781.0, + 329.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1767.0, + 1087.0, + 1767.0, + 1087.0, + 1785.0, + 1053.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1787.0, + 352.0, + 1787.0, + 352.0, + 1808.0, + 328.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1785.0, + 719.0, + 1785.0, + 719.0, + 1802.0, + 689.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 1783.0, + 1318.0, + 1783.0, + 1318.0, + 1800.0, + 1302.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1799.0, + 1087.0, + 1799.0, + 1087.0, + 1816.0, + 1052.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1815.0, + 354.0, + 1815.0, + 354.0, + 1836.0, + 328.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1813.0, + 926.0, + 1813.0, + 926.0, + 1830.0, + 913.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1827.0, + 648.0, + 1827.0, + 648.0, + 1856.0, + 579.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1828.0, + 1087.0, + 1828.0, + 1087.0, + 1850.0, + 1051.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1843.0, + 354.0, + 1843.0, + 354.0, + 1889.0, + 327.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1847.0, + 423.0, + 1847.0, + 423.0, + 1884.0, + 373.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1851.0, + 649.0, + 1851.0, + 649.0, + 1881.0, + 579.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1864.0, + 721.0, + 1864.0, + 721.0, + 1887.0, + 689.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1844.0, + 791.0, + 1844.0, + 791.0, + 1884.0, + 741.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1861.0, + 1018.0, + 1861.0, + 1018.0, + 1878.0, + 1003.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1860.0, + 1088.0, + 1860.0, + 1088.0, + 1883.0, + 1051.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1843.0, + 1158.0, + 1843.0, + 1158.0, + 1887.0, + 1105.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1855.0, + 1387.0, + 1855.0, + 1387.0, + 1871.0, + 1372.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1897.0, + 375.0, + 1897.0, + 375.0, + 1908.0, + 364.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1893.0, + 419.0, + 1893.0, + 419.0, + 1912.0, + 398.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1893.0, + 457.0, + 1893.0, + 457.0, + 1912.0, + 435.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1893.0, + 542.0, + 1893.0, + 542.0, + 1939.0, + 472.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1893.0, + 573.0, + 1893.0, + 573.0, + 1912.0, + 547.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1890.0, + 614.0, + 1890.0, + 614.0, + 1913.0, + 583.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1893.0, + 649.0, + 1893.0, + 649.0, + 1913.0, + 623.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1893.0, + 751.0, + 1893.0, + 751.0, + 1913.0, + 726.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1893.0, + 796.0, + 1893.0, + 796.0, + 1913.0, + 771.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1893.0, + 933.0, + 1893.0, + 933.0, + 1941.0, + 818.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1895.0, + 976.0, + 1895.0, + 976.0, + 1911.0, + 955.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1894.0, + 1021.0, + 1894.0, + 1021.0, + 1913.0, + 999.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1893.0, + 1119.0, + 1893.0, + 1119.0, + 1913.0, + 1093.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1893.0, + 1332.0, + 1893.0, + 1332.0, + 1934.0, + 1127.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1895.0, + 1354.0, + 1895.0, + 1354.0, + 1911.0, + 1333.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1895.0, + 1388.0, + 1895.0, + 1388.0, + 1911.0, + 1367.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 338.0, + 551.0, + 338.0, + 551.0, + 367.0, + 496.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 340.0, + 923.0, + 340.0, + 923.0, + 364.0, + 846.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 340.0, + 1293.0, + 340.0, + 1293.0, + 364.0, + 1194.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 368.0, + 372.0, + 368.0, + 372.0, + 394.0, + 326.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 377.0, + 399.0, + 377.0, + 399.0, + 395.0, + 378.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 376.0, + 453.0, + 376.0, + 453.0, + 395.0, + 433.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 377.0, + 507.0, + 377.0, + 507.0, + 397.0, + 487.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 376.0, + 734.0, + 376.0, + 734.0, + 402.0, + 694.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 374.0, + 758.0, + 374.0, + 758.0, + 393.0, + 739.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 375.0, + 824.0, + 375.0, + 824.0, + 392.0, + 808.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 379.0, + 892.0, + 379.0, + 892.0, + 393.0, + 875.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 373.0, + 1092.0, + 373.0, + 1092.0, + 399.0, + 1052.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 374.0, + 1117.0, + 374.0, + 1117.0, + 394.0, + 1097.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 373.0, + 1185.0, + 373.0, + 1185.0, + 393.0, + 1165.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 394.0, + 394.0, + 394.0, + 394.0, + 541.0, + 289.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 389.0, + 562.0, + 389.0, + 562.0, + 404.0, + 543.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 409.0, + 615.0, + 409.0, + 615.0, + 429.0, + 596.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 387.0, + 960.0, + 387.0, + 960.0, + 404.0, + 944.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 385.0, + 1252.0, + 385.0, + 1252.0, + 399.0, + 1234.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 405.0, + 1321.0, + 405.0, + 1321.0, + 424.0, + 1301.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 420.0, + 732.0, + 420.0, + 732.0, + 446.0, + 694.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 417.0, + 1092.0, + 417.0, + 1092.0, + 444.0, + 1053.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 447.0, + 373.0, + 447.0, + 373.0, + 499.0, + 327.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 453.0, + 670.0, + 453.0, + 670.0, + 469.0, + 653.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 463.0, + 732.0, + 463.0, + 732.0, + 491.0, + 694.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 448.0, + 1027.0, + 448.0, + 1027.0, + 465.0, + 1011.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 459.0, + 1093.0, + 459.0, + 1093.0, + 491.0, + 1052.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 456.0, + 1388.0, + 456.0, + 1388.0, + 476.0, + 1369.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 499.0, + 372.0, + 499.0, + 372.0, + 525.0, + 327.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 506.0, + 734.0, + 506.0, + 734.0, + 534.0, + 694.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 503.0, + 1093.0, + 503.0, + 1093.0, + 534.0, + 1052.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 525.0, + 372.0, + 525.0, + 372.0, + 552.0, + 327.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 552.0, + 379.0, + 552.0, + 379.0, + 577.0, + 327.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 549.0, + 731.0, + 549.0, + 731.0, + 576.0, + 694.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 552.0, + 1091.0, + 552.0, + 1091.0, + 575.0, + 1054.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 575.0, + 398.0, + 575.0, + 398.0, + 596.0, + 379.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 576.0, + 450.0, + 576.0, + 450.0, + 594.0, + 435.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 572.0, + 507.0, + 572.0, + 507.0, + 596.0, + 487.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 572.0, + 562.0, + 572.0, + 562.0, + 596.0, + 542.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 575.0, + 615.0, + 575.0, + 615.0, + 595.0, + 596.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 574.0, + 669.0, + 574.0, + 669.0, + 596.0, + 650.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 575.0, + 757.0, + 575.0, + 757.0, + 596.0, + 739.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 576.0, + 823.0, + 576.0, + 823.0, + 594.0, + 808.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 572.0, + 893.0, + 572.0, + 893.0, + 595.0, + 874.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 572.0, + 961.0, + 572.0, + 961.0, + 596.0, + 941.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 575.0, + 1028.0, + 575.0, + 1028.0, + 595.0, + 1010.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 574.0, + 1117.0, + 574.0, + 1117.0, + 596.0, + 1098.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 575.0, + 1183.0, + 575.0, + 1183.0, + 595.0, + 1168.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 572.0, + 1252.0, + 572.0, + 1252.0, + 596.0, + 1232.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 572.0, + 1321.0, + 572.0, + 1321.0, + 596.0, + 1301.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 575.0, + 1388.0, + 575.0, + 1388.0, + 595.0, + 1369.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 592.0, + 596.0, + 592.0, + 596.0, + 618.0, + 450.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 593.0, + 956.0, + 593.0, + 956.0, + 619.0, + 809.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 593.0, + 1314.0, + 593.0, + 1314.0, + 619.0, + 1169.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 814.0, + 551.0, + 814.0, + 551.0, + 844.0, + 496.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 816.0, + 922.0, + 816.0, + 922.0, + 840.0, + 846.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 816.0, + 1293.0, + 816.0, + 1293.0, + 840.0, + 1195.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 829.0, + 376.0, + 829.0, + 376.0, + 858.0, + 324.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 831.0, + 1092.0, + 831.0, + 1092.0, + 857.0, + 1053.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 859.0, + 373.0, + 859.0, + 373.0, + 886.0, + 327.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 853.0, + 732.0, + 853.0, + 732.0, + 876.0, + 695.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 864.0, + 948.0, + 864.0, + 948.0, + 879.0, + 933.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 861.0, + 1309.0, + 861.0, + 1309.0, + 870.0, + 1297.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 871.0, + 1096.0, + 871.0, + 1096.0, + 898.0, + 1053.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 888.0, + 372.0, + 888.0, + 372.0, + 915.0, + 326.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 893.0, + 339.0, + 893.0, + 339.0, + 996.0, + 305.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 894.0, + 733.0, + 894.0, + 733.0, + 921.0, + 694.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 917.0, + 374.0, + 917.0, + 374.0, + 945.0, + 326.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 911.0, + 1092.0, + 911.0, + 1092.0, + 939.0, + 1053.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 945.0, + 374.0, + 945.0, + 374.0, + 975.0, + 326.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 936.0, + 733.0, + 936.0, + 733.0, + 963.0, + 694.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 952.0, + 1092.0, + 952.0, + 1092.0, + 979.0, + 1053.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 975.0, + 373.0, + 975.0, + 373.0, + 1001.0, + 327.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 979.0, + 733.0, + 979.0, + 733.0, + 1005.0, + 694.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1004.0, + 373.0, + 1004.0, + 373.0, + 1030.0, + 327.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1003.0, + 514.0, + 1003.0, + 514.0, + 1017.0, + 493.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1021.0, + 733.0, + 1021.0, + 733.0, + 1047.0, + 694.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1012.0, + 876.0, + 1012.0, + 876.0, + 1040.0, + 795.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1010.0, + 1010.0, + 1010.0, + 1010.0, + 1041.0, + 926.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 992.0, + 1092.0, + 992.0, + 1092.0, + 1019.0, + 1053.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1033.0, + 376.0, + 1033.0, + 376.0, + 1060.0, + 327.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1033.0, + 1101.0, + 1033.0, + 1101.0, + 1060.0, + 1053.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1051.0, + 384.0, + 1051.0, + 384.0, + 1072.0, + 364.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1047.0, + 448.0, + 1047.0, + 448.0, + 1075.0, + 413.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1048.0, + 509.0, + 1048.0, + 509.0, + 1074.0, + 465.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1047.0, + 562.0, + 1047.0, + 562.0, + 1074.0, + 519.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1048.0, + 618.0, + 1048.0, + 618.0, + 1074.0, + 573.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1048.0, + 672.0, + 1048.0, + 672.0, + 1074.0, + 629.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1051.0, + 744.0, + 1051.0, + 744.0, + 1072.0, + 724.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 1047.0, + 806.0, + 1047.0, + 806.0, + 1075.0, + 773.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1047.0, + 867.0, + 1047.0, + 867.0, + 1074.0, + 825.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1047.0, + 921.0, + 1047.0, + 921.0, + 1074.0, + 875.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1047.0, + 977.0, + 1047.0, + 977.0, + 1075.0, + 936.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1047.0, + 1032.0, + 1047.0, + 1032.0, + 1075.0, + 990.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1051.0, + 1102.0, + 1051.0, + 1102.0, + 1072.0, + 1083.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1047.0, + 1166.0, + 1047.0, + 1166.0, + 1075.0, + 1132.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1045.0, + 1282.0, + 1045.0, + 1282.0, + 1076.0, + 1181.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1048.0, + 1338.0, + 1048.0, + 1338.0, + 1074.0, + 1294.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1048.0, + 1390.0, + 1048.0, + 1390.0, + 1074.0, + 1349.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1068.0, + 559.0, + 1068.0, + 559.0, + 1098.0, + 487.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1068.0, + 918.0, + 1068.0, + 918.0, + 1098.0, + 846.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1068.0, + 1278.0, + 1068.0, + 1278.0, + 1097.0, + 1204.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 863.5, + 591.0, + 863.5, + 591.0, + 872.5, + 571.0, + 872.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 858.0, + 1154.0, + 858.0, + 1154.0, + 886.5, + 1087.0, + 886.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 866.5, + 434.0, + 866.5, + 434.0, + 890.5, + 369.0, + 890.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.75, + 884.0, + 777.75, + 884.0, + 777.75, + 904.0, + 723.75, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.25, + 991.0, + 1297.25, + 991.0, + 1297.25, + 1030.0, + 1196.25, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 650.0, + 1406.0, + 650.0, + 1406.0, + 689.0, + 294.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 683.0, + 1403.0, + 683.0, + 1403.0, + 712.0, + 295.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 707.0, + 610.0, + 707.0, + 610.0, + 744.0, + 294.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1964.0, + 1344.0, + 1964.0, + 1344.0, + 2001.0, + 352.0, + 2001.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": [ + 295.0, + 1432.0, + 1376.0, + 1432.0, + 1376.0, + 1465.0, + 295.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 900.0, + 262.0, + 900.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 1405.0, + 1495.0, + 1405.0, + 1529.0, + 295.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1525.0, + 1404.0, + 1525.0, + 1404.0, + 1559.0, + 295.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1557.0, + 415.0, + 1557.0, + 415.0, + 1588.0, + 294.0, + 1588.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1559, + 1404, + 1559, + 1404, + 1834, + 298, + 1834 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1403, + 1850, + 1403, + 2033, + 298, + 2033 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 277, + 848, + 1401, + 848, + 1401, + 1337, + 277, + 1337 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 718, + 1403, + 718, + 1403, + 811, + 297, + 811 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 306, + 232, + 1399, + 232, + 1399, + 538, + 306, + 538 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 297, + 1343, + 1403, + 1343, + 1403, + 1427, + 297, + 1427 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 373, + 568, + 1318, + 568, + 1318, + 601, + 373, + 601 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 0, + "poly": [ + 300, + 1505, + 1104, + 1505, + 1104, + 1533, + 300, + 1533 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 297, + 661, + 1362, + 661, + 1362, + 692, + 297, + 692 + ], + "score": 0.822 + }, + { + "category_id": 13, + "poly": [ + 621, + 1683, + 663, + 1683, + 663, + 1713, + 621, + 1713 + ], + "score": 0.89, + "latex": "M _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1020, + 1621, + 1062, + 1621, + 1062, + 1652, + 1020, + 1652 + ], + "score": 0.89, + "latex": "M _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1652, + 1177, + 1652, + 1177, + 1682, + 1134, + 1682 + ], + "score": 0.89, + "latex": "M _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 742, + 1652, + 784, + 1652, + 784, + 1682, + 742, + 1682 + ], + "score": 0.89, + "latex": "M _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 455, + 1743, + 497, + 1743, + 497, + 1773, + 455, + 1773 + ], + "score": 0.89, + "latex": "M _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 883.0, + 329.0, + 883.0, + 329.0, + 1040.0, + 265.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 852.0, + 516.0, + 852.0, + 516.0, + 890.0, + 334.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 883.0, + 615.0, + 883.0, + 615.0, + 1040.0, + 553.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 852.0, + 797.0, + 852.0, + 797.0, + 906.0, + 627.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 908.0, + 826.0, + 908.0, + 826.0, + 918.0, + 816.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 883.0, + 894.0, + 883.0, + 894.0, + 1042.0, + 833.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 853.0, + 1069.0, + 853.0, + 1069.0, + 919.0, + 918.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 877.0, + 1154.0, + 877.0, + 1154.0, + 1024.0, + 1117.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 890.0, + 1170.0, + 890.0, + 1170.0, + 902.0, + 1160.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 843.0, + 1372.0, + 843.0, + 1372.0, + 910.0, + 1175.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 933.0, + 1391.0, + 933.0, + 1391.0, + 947.0, + 1380.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 944.0, + 330.0, + 944.0, + 330.0, + 962.0, + 315.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 956.0, + 538.0, + 956.0, + 538.0, + 968.0, + 525.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 940.0, + 828.0, + 940.0, + 828.0, + 958.0, + 812.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 948.0, + 1153.0, + 948.0, + 1153.0, + 969.0, + 1131.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 977.0, + 310.0, + 977.0, + 310.0, + 998.0, + 288.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 972.0, + 1154.0, + 972.0, + 1154.0, + 993.0, + 1131.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 969.0, + 1318.0, + 969.0, + 1318.0, + 990.0, + 1307.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 989.0, + 471.0, + 989.0, + 471.0, + 1006.0, + 457.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 998.0, + 311.0, + 998.0, + 311.0, + 1020.0, + 288.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1011.0, + 337.0, + 1011.0, + 337.0, + 1027.0, + 321.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1010.0, + 416.0, + 1010.0, + 416.0, + 1027.0, + 342.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1014.0, + 622.0, + 1014.0, + 622.0, + 1025.0, + 611.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1010.0, + 704.0, + 1010.0, + 704.0, + 1027.0, + 629.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1014.0, + 903.0, + 1014.0, + 903.0, + 1025.0, + 890.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1010.0, + 986.0, + 1010.0, + 986.0, + 1027.0, + 909.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 998.0, + 1154.0, + 998.0, + 1154.0, + 1019.0, + 1131.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1011.0, + 1179.0, + 1011.0, + 1179.0, + 1023.0, + 1167.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1007.0, + 1265.0, + 1007.0, + 1265.0, + 1024.0, + 1185.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1025.0, + 311.0, + 1025.0, + 311.0, + 1045.0, + 288.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1024.0, + 337.0, + 1024.0, + 337.0, + 1040.0, + 320.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1023.0, + 469.0, + 1023.0, + 469.0, + 1040.0, + 340.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1025.0, + 599.0, + 1025.0, + 599.0, + 1045.0, + 575.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1025.0, + 622.0, + 1025.0, + 622.0, + 1037.0, + 611.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1023.0, + 756.0, + 1023.0, + 756.0, + 1040.0, + 629.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1025.0, + 880.0, + 1025.0, + 880.0, + 1045.0, + 854.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1024.0, + 904.0, + 1024.0, + 904.0, + 1040.0, + 889.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1023.0, + 1037.0, + 1023.0, + 1037.0, + 1040.0, + 908.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1023.0, + 1155.0, + 1023.0, + 1155.0, + 1043.0, + 1131.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1023.0, + 1178.0, + 1023.0, + 1178.0, + 1036.0, + 1167.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1020.0, + 1318.0, + 1020.0, + 1318.0, + 1037.0, + 1185.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1022.0, + 1390.0, + 1022.0, + 1390.0, + 1032.0, + 1380.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1049.0, + 312.0, + 1049.0, + 312.0, + 1069.0, + 288.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1037.0, + 337.0, + 1037.0, + 337.0, + 1054.0, + 320.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1035.0, + 471.0, + 1035.0, + 471.0, + 1056.0, + 340.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1044.0, + 542.0, + 1044.0, + 542.0, + 1060.0, + 525.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1050.0, + 598.0, + 1050.0, + 598.0, + 1066.0, + 576.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1037.0, + 624.0, + 1037.0, + 624.0, + 1054.0, + 608.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1035.0, + 757.0, + 1035.0, + 757.0, + 1056.0, + 627.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1049.0, + 880.0, + 1049.0, + 880.0, + 1069.0, + 854.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1037.0, + 904.0, + 1037.0, + 904.0, + 1054.0, + 889.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1035.0, + 1038.0, + 1035.0, + 1038.0, + 1056.0, + 908.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1048.0, + 1155.0, + 1048.0, + 1155.0, + 1068.0, + 1130.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1036.0, + 1181.0, + 1036.0, + 1181.0, + 1053.0, + 1165.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1033.0, + 1320.0, + 1033.0, + 1320.0, + 1054.0, + 1185.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1060.0, + 326.0, + 1060.0, + 326.0, + 1073.0, + 316.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1061.0, + 398.0, + 1061.0, + 398.0, + 1074.0, + 388.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1058.0, + 542.0, + 1058.0, + 542.0, + 1074.0, + 527.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1058.0, + 616.0, + 1058.0, + 616.0, + 1075.0, + 602.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1058.0, + 686.0, + 1058.0, + 686.0, + 1075.0, + 672.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1069.0, + 734.0, + 1069.0, + 734.0, + 1087.0, + 695.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1060.0, + 755.0, + 1060.0, + 755.0, + 1073.0, + 745.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1061.0, + 826.0, + 1061.0, + 826.0, + 1073.0, + 816.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1058.0, + 896.0, + 1058.0, + 896.0, + 1075.0, + 881.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1061.0, + 965.0, + 1061.0, + 965.0, + 1073.0, + 954.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1066.0, + 1015.0, + 1066.0, + 1015.0, + 1089.0, + 974.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1060.0, + 1035.0, + 1060.0, + 1035.0, + 1073.0, + 1025.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1060.0, + 1107.0, + 1060.0, + 1107.0, + 1074.0, + 1097.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1057.0, + 1172.0, + 1057.0, + 1172.0, + 1074.0, + 1158.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1060.0, + 1244.0, + 1060.0, + 1244.0, + 1073.0, + 1234.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1064.0, + 1297.0, + 1064.0, + 1297.0, + 1090.0, + 1253.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1057.0, + 1320.0, + 1057.0, + 1320.0, + 1074.0, + 1304.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 1058.0, + 1392.0, + 1058.0, + 1392.0, + 1071.0, + 1381.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1098.0, + 561.0, + 1098.0, + 561.0, + 1119.0, + 297.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1098.0, + 842.0, + 1098.0, + 842.0, + 1119.0, + 584.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1098.0, + 1117.0, + 1098.0, + 1117.0, + 1119.0, + 877.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1098.0, + 1392.0, + 1098.0, + 1392.0, + 1119.0, + 1165.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1111.0, + 551.0, + 1111.0, + 551.0, + 1133.0, + 315.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1110.0, + 831.0, + 1110.0, + 831.0, + 1133.0, + 597.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1111.0, + 1116.0, + 1111.0, + 1116.0, + 1133.0, + 881.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1111.0, + 1397.0, + 1111.0, + 1397.0, + 1133.0, + 1163.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1127.0, + 323.0, + 1127.0, + 323.0, + 1145.0, + 291.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1125.0, + 602.0, + 1125.0, + 602.0, + 1145.0, + 571.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1127.0, + 886.0, + 1127.0, + 886.0, + 1145.0, + 850.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1127.0, + 1193.0, + 1127.0, + 1193.0, + 1150.0, + 1131.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 1130.0, + 1393.0, + 1130.0, + 1393.0, + 1154.0, + 1358.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 264.0, + 1148.0, + 337.0, + 1148.0, + 337.0, + 1292.0, + 264.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1163.0, + 405.0, + 1163.0, + 405.0, + 1196.0, + 388.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1153.0, + 471.0, + 1153.0, + 471.0, + 1189.0, + 451.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1148.0, + 618.0, + 1148.0, + 618.0, + 1293.0, + 545.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1152.0, + 705.0, + 1152.0, + 705.0, + 1181.0, + 668.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1148.0, + 899.0, + 1148.0, + 899.0, + 1294.0, + 822.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1152.0, + 969.0, + 1152.0, + 969.0, + 1183.0, + 952.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1156.0, + 1159.0, + 1156.0, + 1159.0, + 1279.0, + 1116.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1149.0, + 1353.0, + 1149.0, + 1353.0, + 1179.0, + 1338.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1146.0, + 1389.0, + 1146.0, + 1389.0, + 1181.0, + 1357.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1185.0, + 320.0, + 1185.0, + 320.0, + 1204.0, + 291.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1185.0, + 601.0, + 1185.0, + 601.0, + 1204.0, + 571.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1180.0, + 617.0, + 1180.0, + 617.0, + 1199.0, + 607.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1198.0, + 751.0, + 1198.0, + 751.0, + 1208.0, + 740.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1183.0, + 1037.0, + 1183.0, + 1037.0, + 1195.0, + 1028.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1183.0, + 1107.0, + 1183.0, + 1107.0, + 1192.0, + 1097.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1185.0, + 1159.0, + 1185.0, + 1159.0, + 1204.0, + 1131.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 1195.0, + 1391.0, + 1195.0, + 1391.0, + 1206.0, + 1381.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1204.0, + 532.0, + 1204.0, + 532.0, + 1211.0, + 525.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1202.0, + 817.0, + 1202.0, + 817.0, + 1215.0, + 808.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1202.0, + 1105.0, + 1202.0, + 1105.0, + 1213.0, + 1094.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1215.0, + 880.0, + 1215.0, + 880.0, + 1233.0, + 850.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1215.0, + 1158.0, + 1215.0, + 1158.0, + 1234.0, + 1131.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1244.0, + 320.0, + 1244.0, + 320.0, + 1262.0, + 291.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1247.0, + 531.0, + 1247.0, + 531.0, + 1273.0, + 514.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1244.0, + 601.0, + 1244.0, + 601.0, + 1262.0, + 570.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1246.0, + 667.0, + 1246.0, + 667.0, + 1265.0, + 617.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1244.0, + 1159.0, + 1244.0, + 1159.0, + 1262.0, + 1131.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1258.0, + 388.0, + 1258.0, + 388.0, + 1281.0, + 330.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1263.0, + 627.0, + 1263.0, + 627.0, + 1279.0, + 611.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1259.0, + 658.0, + 1259.0, + 658.0, + 1279.0, + 630.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1259.0, + 947.0, + 1259.0, + 947.0, + 1281.0, + 889.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1273.0, + 321.0, + 1273.0, + 321.0, + 1292.0, + 291.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1271.0, + 385.0, + 1271.0, + 385.0, + 1295.0, + 330.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1273.0, + 602.0, + 1273.0, + 602.0, + 1292.0, + 571.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1278.0, + 627.0, + 1278.0, + 627.0, + 1292.0, + 611.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1274.0, + 658.0, + 1274.0, + 658.0, + 1294.0, + 629.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1273.0, + 881.0, + 1273.0, + 881.0, + 1292.0, + 850.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1274.0, + 937.0, + 1274.0, + 937.0, + 1294.0, + 890.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1273.0, + 1159.0, + 1273.0, + 1159.0, + 1292.0, + 1131.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1290.0, + 348.0, + 1290.0, + 348.0, + 1307.0, + 330.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1288.0, + 377.0, + 1288.0, + 377.0, + 1308.0, + 349.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1291.0, + 627.0, + 1291.0, + 627.0, + 1307.0, + 611.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1288.0, + 657.0, + 1288.0, + 657.0, + 1308.0, + 630.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1290.0, + 908.0, + 1290.0, + 908.0, + 1307.0, + 890.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1288.0, + 936.0, + 1288.0, + 936.0, + 1308.0, + 909.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1303.0, + 343.0, + 1303.0, + 343.0, + 1329.0, + 291.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1311.0, + 376.0, + 1311.0, + 376.0, + 1329.0, + 351.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1312.0, + 408.0, + 1312.0, + 408.0, + 1328.0, + 386.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1312.0, + 441.0, + 1312.0, + 441.0, + 1327.0, + 418.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1311.0, + 477.0, + 1311.0, + 477.0, + 1329.0, + 451.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1311.0, + 509.0, + 1311.0, + 509.0, + 1329.0, + 483.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1311.0, + 542.0, + 1311.0, + 542.0, + 1329.0, + 516.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1303.0, + 624.0, + 1303.0, + 624.0, + 1331.0, + 571.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1311.0, + 657.0, + 1311.0, + 657.0, + 1329.0, + 631.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1312.0, + 689.0, + 1312.0, + 689.0, + 1328.0, + 667.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1311.0, + 724.0, + 1311.0, + 724.0, + 1329.0, + 699.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1311.0, + 759.0, + 1311.0, + 759.0, + 1329.0, + 733.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1311.0, + 792.0, + 1311.0, + 792.0, + 1329.0, + 766.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1312.0, + 824.0, + 1312.0, + 824.0, + 1328.0, + 802.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1303.0, + 904.0, + 1303.0, + 904.0, + 1329.0, + 850.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1311.0, + 938.0, + 1311.0, + 938.0, + 1329.0, + 913.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1311.0, + 974.0, + 1311.0, + 974.0, + 1329.0, + 949.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1311.0, + 1009.0, + 1311.0, + 1009.0, + 1329.0, + 983.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1311.0, + 1044.0, + 1311.0, + 1044.0, + 1329.0, + 1019.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1311.0, + 1079.0, + 1311.0, + 1079.0, + 1329.0, + 1053.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1311.0, + 1114.0, + 1311.0, + 1114.0, + 1329.0, + 1089.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1304.0, + 1183.0, + 1304.0, + 1183.0, + 1327.0, + 1132.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1312.0, + 1209.0, + 1312.0, + 1209.0, + 1327.0, + 1185.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1312.0, + 1237.0, + 1312.0, + 1237.0, + 1327.0, + 1213.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1312.0, + 1290.0, + 1312.0, + 1290.0, + 1327.0, + 1241.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1312.0, + 1316.0, + 1312.0, + 1316.0, + 1327.0, + 1294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 1312.0, + 1344.0, + 1312.0, + 1344.0, + 1327.0, + 1321.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1312.0, + 1371.0, + 1312.0, + 1371.0, + 1327.0, + 1346.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1312.0, + 1399.0, + 1312.0, + 1399.0, + 1327.0, + 1373.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1318.0, + 451.0, + 1318.0, + 451.0, + 1344.0, + 409.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1318.0, + 1017.0, + 1318.0, + 1017.0, + 1344.0, + 975.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1323.0, + 1297.0, + 1323.0, + 1297.0, + 1341.0, + 1258.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.25, + 886.0, + 954.25, + 886.0, + 954.25, + 907.0, + 878.25, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 903.5, + 464.0, + 903.5, + 464.0, + 913.0, + 460.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 898.0, + 988.0, + 898.0, + 988.0, + 907.0, + 974.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 917.0, + 786.0, + 917.0, + 786.0, + 930.0, + 762.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 910.0, + 1108.0, + 910.0, + 1108.0, + 927.0, + 1079.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 926.0, + 1180.0, + 926.0, + 1180.0, + 939.0, + 1160.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1001.0, + 590.0, + 1001.0, + 590.0, + 1019.0, + 582.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.75, + 1066.0, + 445.75, + 1066.0, + 445.75, + 1088.0, + 407.75, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1158.5, + 372.0, + 1158.5, + 372.0, + 1175.5, + 335.0, + 1175.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1152.0, + 1048.0, + 1152.0, + 1048.0, + 1175.0, + 1013.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1200.5, + 496.0, + 1200.5, + 496.0, + 1213.0, + 485.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1228.5, + 527.0, + 1228.5, + 527.0, + 1247.5, + 502.0, + 1247.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1320.5, + 730.0, + 1320.5, + 730.0, + 1343.0, + 692.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 228.0, + 1095.0, + 228.0, + 1095.0, + 259.0, + 608.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 256.0, + 357.0, + 256.0, + 357.0, + 275.0, + 328.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 264.0, + 720.0, + 264.0, + 720.0, + 284.0, + 688.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 273.0, + 744.0, + 273.0, + 744.0, + 290.0, + 728.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 266.0, + 1084.0, + 266.0, + 1084.0, + 285.0, + 1054.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 285.0, + 353.0, + 285.0, + 353.0, + 304.0, + 328.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 291.0, + 790.0, + 291.0, + 790.0, + 309.0, + 774.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 290.0, + 1110.0, + 290.0, + 1110.0, + 306.0, + 1094.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 314.0, + 353.0, + 314.0, + 353.0, + 426.0, + 305.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 338.0, + 487.0, + 338.0, + 487.0, + 348.0, + 472.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 347.0, + 718.0, + 347.0, + 718.0, + 365.0, + 688.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 338.0, + 836.0, + 338.0, + 836.0, + 356.0, + 820.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 308.0, + 1085.0, + 308.0, + 1085.0, + 440.0, + 1026.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 319.0, + 1164.0, + 319.0, + 1164.0, + 336.0, + 1150.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 325.0, + 1219.0, + 325.0, + 1219.0, + 341.0, + 1204.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 334.0, + 1275.0, + 334.0, + 1275.0, + 352.0, + 1260.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 372.0, + 352.0, + 372.0, + 352.0, + 393.0, + 328.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 370.0, + 1331.0, + 370.0, + 1331.0, + 386.0, + 1316.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 401.0, + 353.0, + 401.0, + 353.0, + 421.0, + 328.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 389.0, + 717.0, + 389.0, + 717.0, + 407.0, + 688.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 396.0, + 882.0, + 396.0, + 882.0, + 413.0, + 866.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 389.0, + 1082.0, + 389.0, + 1082.0, + 408.0, + 1055.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 432.0, + 357.0, + 432.0, + 357.0, + 481.0, + 327.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 438.0, + 420.0, + 438.0, + 420.0, + 488.0, + 363.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 429.0, + 654.0, + 429.0, + 654.0, + 484.0, + 583.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 428.0, + 720.0, + 428.0, + 720.0, + 490.0, + 686.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 447.0, + 789.0, + 447.0, + 789.0, + 486.0, + 739.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 464.0, + 928.0, + 464.0, + 928.0, + 481.0, + 912.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 462.0, + 974.0, + 462.0, + 974.0, + 480.0, + 958.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 461.0, + 1020.0, + 461.0, + 1020.0, + 479.0, + 1004.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 427.0, + 1085.0, + 427.0, + 1085.0, + 489.0, + 1054.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 447.0, + 1153.0, + 447.0, + 1153.0, + 486.0, + 1105.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 446.0, + 1386.0, + 446.0, + 1386.0, + 464.0, + 1371.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 499.0, + 375.0, + 499.0, + 375.0, + 512.0, + 365.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 495.0, + 419.0, + 495.0, + 419.0, + 514.0, + 398.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 498.0, + 457.0, + 498.0, + 457.0, + 513.0, + 437.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 497.0, + 543.0, + 497.0, + 543.0, + 539.0, + 475.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 494.0, + 578.0, + 494.0, + 578.0, + 517.0, + 548.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 494.0, + 616.0, + 494.0, + 616.0, + 517.0, + 587.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 495.0, + 652.0, + 495.0, + 652.0, + 516.0, + 626.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 499.0, + 742.0, + 499.0, + 742.0, + 512.0, + 731.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 500.0, + 787.0, + 500.0, + 787.0, + 512.0, + 777.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 499.0, + 909.0, + 499.0, + 909.0, + 542.0, + 839.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 500.0, + 926.0, + 500.0, + 926.0, + 511.0, + 915.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 498.0, + 973.0, + 498.0, + 973.0, + 514.0, + 958.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 498.0, + 1020.0, + 498.0, + 1020.0, + 513.0, + 1005.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 498.0, + 1110.0, + 498.0, + 1110.0, + 513.0, + 1095.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 500.0, + 1331.0, + 500.0, + 1331.0, + 539.0, + 1149.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 499.0, + 1383.0, + 499.0, + 1383.0, + 512.0, + 1372.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 333.5, + 509.0, + 333.5, + 509.0, + 354.0, + 479.0, + 354.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": [ + 293.0, + 1371.0, + 1405.0, + 1371.0, + 1405.0, + 1403.0, + 293.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 1227.0, + 1396.0, + 1227.0, + 1430.0, + 292.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 567.0, + 1321.0, + 567.0, + 1321.0, + 603.0, + 376.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2086.0, + 868.0, + 2086.0, + 868.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1503.0, + 1107.0, + 1503.0, + 1107.0, + 1536.0, + 294.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1594.0, + 296.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 1408.0, + 1590.0, + 1408.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 1019.0, + 1618.0, + 1019.0, + 1656.0, + 292.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1618.0, + 1406.0, + 1618.0, + 1406.0, + 1656.0, + 1063.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1650.0, + 741.0, + 1650.0, + 741.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1650.0, + 1133.0, + 1650.0, + 1133.0, + 1686.0, + 785.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1650.0, + 1406.0, + 1650.0, + 1406.0, + 1686.0, + 1178.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 620.0, + 1681.0, + 620.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1681.0, + 1406.0, + 1681.0, + 1406.0, + 1716.0, + 664.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 1405.0, + 1712.0, + 1405.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 454.0, + 1743.0, + 454.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1776.0, + 498.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1812.0, + 291.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 470.0, + 1803.0, + 470.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1407.0, + 1909.0, + 1407.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2007.0, + 292.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 755.0, + 295.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 748.0, + 1406.0, + 748.0, + 1406.0, + 784.0, + 292.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 779.0, + 1353.0, + 779.0, + 1353.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 660.0, + 1365.0, + 660.0, + 1365.0, + 694.0, + 296.0, + 694.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1691, + 1406, + 1691, + 1406, + 1844, + 297, + 1844 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 530, + 1404, + 530, + 1404, + 655, + 298, + 655 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 460, + 223, + 1234, + 223, + 1234, + 401, + 460, + 401 + ], + "score": 0.976, + "html": "
DenseNetResNetVGG
Pre-forgetting accuracy0.8690.77140.7970
Post-forgetting accuracy0.47540.59240.5877
Linear regression on activations0.8020.75920.7896
Linear regression on random lift0.4470.41980.543
" + }, + { + "category_id": 3, + "poly": [ + 304, + 890, + 1398, + 890, + 1398, + 1510, + 304, + 1510 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1403, + 1942, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 669, + 1405, + 669, + 1405, + 855, + 297, + 855 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 450, + 1541, + 1239, + 1541, + 1239, + 1574, + 450, + 1574 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 298, + 1884, + 929, + 1884, + 929, + 1916, + 298, + 1916 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 812, + 75, + 812, + 105, + 298, + 105 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 299, + 1634, + 946, + 1634, + 946, + 1664, + 299, + 1664 + ], + "score": 0.872 + }, + { + "category_id": 6, + "poly": [ + 446, + 437, + 1252, + 437, + 1252, + 471, + 446, + 471 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2112, + 835, + 2112 + ], + "score": 0.857 + }, + { + "category_id": 15, + "poly": [ + 417.0, + 889.0, + 627.0, + 889.0, + 627.0, + 921.0, + 417.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 890.0, + 995.0, + 890.0, + 995.0, + 920.0, + 760.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 890.0, + 1363.0, + 890.0, + 1363.0, + 920.0, + 1106.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 908.0, + 723.0, + 908.0, + 723.0, + 930.0, + 692.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 921.0, + 367.0, + 921.0, + 367.0, + 945.0, + 336.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 926.0, + 1080.0, + 926.0, + 1080.0, + 949.0, + 1049.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 931.0, + 336.0, + 931.0, + 336.0, + 1155.0, + 304.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 939.0, + 724.0, + 939.0, + 724.0, + 961.0, + 692.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 950.0, + 367.0, + 950.0, + 367.0, + 972.0, + 336.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 980.0, + 366.0, + 980.0, + 366.0, + 999.0, + 337.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 970.0, + 724.0, + 970.0, + 724.0, + 994.0, + 692.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 964.0, + 1080.0, + 964.0, + 1080.0, + 983.0, + 1050.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1008.0, + 366.0, + 1008.0, + 366.0, + 1030.0, + 336.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1003.0, + 723.0, + 1003.0, + 723.0, + 1025.0, + 692.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 999.0, + 1080.0, + 999.0, + 1080.0, + 1021.0, + 1049.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1036.0, + 366.0, + 1036.0, + 366.0, + 1055.0, + 337.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1036.0, + 406.0, + 1036.0, + 406.0, + 1055.0, + 377.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1034.0, + 723.0, + 1034.0, + 723.0, + 1058.0, + 692.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1041.0, + 750.0, + 1041.0, + 750.0, + 1060.0, + 737.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1039.0, + 840.0, + 1039.0, + 840.0, + 1061.0, + 827.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1034.0, + 1080.0, + 1034.0, + 1080.0, + 1058.0, + 1049.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1065.0, + 365.0, + 1065.0, + 365.0, + 1084.0, + 336.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1066.0, + 723.0, + 1066.0, + 723.0, + 1089.0, + 688.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1071.0, + 1080.0, + 1071.0, + 1080.0, + 1094.0, + 1044.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1094.0, + 365.0, + 1094.0, + 365.0, + 1112.0, + 334.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1099.0, + 723.0, + 1099.0, + 723.0, + 1120.0, + 688.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1099.0, + 1208.0, + 1099.0, + 1208.0, + 1108.0, + 1197.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1110.0, + 1079.0, + 1110.0, + 1079.0, + 1127.0, + 1045.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1120.0, + 366.0, + 1120.0, + 366.0, + 1143.0, + 334.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1129.0, + 725.0, + 1129.0, + 725.0, + 1155.0, + 684.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1150.0, + 365.0, + 1150.0, + 365.0, + 1169.0, + 334.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1144.0, + 1080.0, + 1144.0, + 1080.0, + 1165.0, + 1044.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1162.0, + 724.0, + 1162.0, + 724.0, + 1184.0, + 686.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1180.0, + 622.0, + 1180.0, + 622.0, + 1214.0, + 422.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1181.0, + 988.0, + 1181.0, + 988.0, + 1213.0, + 768.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1182.0, + 1357.0, + 1182.0, + 1357.0, + 1213.0, + 1114.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1200.0, + 723.0, + 1200.0, + 723.0, + 1222.0, + 692.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1211.0, + 367.0, + 1211.0, + 367.0, + 1238.0, + 337.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1220.0, + 1080.0, + 1220.0, + 1080.0, + 1239.0, + 1050.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1224.0, + 336.0, + 1224.0, + 336.0, + 1450.0, + 304.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1231.0, + 724.0, + 1231.0, + 724.0, + 1254.0, + 692.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1245.0, + 366.0, + 1245.0, + 366.0, + 1264.0, + 337.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1256.0, + 1079.0, + 1256.0, + 1079.0, + 1275.0, + 1050.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1271.0, + 367.0, + 1271.0, + 367.0, + 1294.0, + 337.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1264.0, + 723.0, + 1264.0, + 723.0, + 1286.0, + 693.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1301.0, + 363.0, + 1301.0, + 363.0, + 1320.0, + 339.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1295.0, + 723.0, + 1295.0, + 723.0, + 1319.0, + 692.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1291.0, + 1080.0, + 1291.0, + 1080.0, + 1314.0, + 1049.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1330.0, + 365.0, + 1330.0, + 365.0, + 1349.0, + 339.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1327.0, + 723.0, + 1327.0, + 723.0, + 1350.0, + 692.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1330.0, + 1079.0, + 1330.0, + 1079.0, + 1349.0, + 1051.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1358.0, + 363.0, + 1358.0, + 363.0, + 1376.0, + 335.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1359.0, + 723.0, + 1359.0, + 723.0, + 1381.0, + 688.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1366.0, + 1079.0, + 1366.0, + 1079.0, + 1385.0, + 1048.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1386.0, + 363.0, + 1386.0, + 363.0, + 1405.0, + 335.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1391.0, + 724.0, + 1391.0, + 724.0, + 1414.0, + 688.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1400.0, + 1081.0, + 1400.0, + 1081.0, + 1421.0, + 1044.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1413.0, + 367.0, + 1413.0, + 367.0, + 1435.0, + 334.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1423.0, + 724.0, + 1423.0, + 724.0, + 1445.0, + 688.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1436.0, + 1080.0, + 1436.0, + 1080.0, + 1459.0, + 1044.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1436.0, + 1207.0, + 1436.0, + 1207.0, + 1445.0, + 1197.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1443.0, + 365.0, + 1443.0, + 365.0, + 1461.0, + 334.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1455.0, + 723.0, + 1455.0, + 723.0, + 1476.0, + 686.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1470.0, + 380.0, + 1470.0, + 380.0, + 1485.0, + 365.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1469.0, + 437.0, + 1469.0, + 437.0, + 1486.0, + 423.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1468.0, + 499.0, + 1468.0, + 499.0, + 1488.0, + 475.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1468.0, + 556.0, + 1468.0, + 556.0, + 1489.0, + 533.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1468.0, + 615.0, + 1468.0, + 615.0, + 1488.0, + 591.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1468.0, + 672.0, + 1468.0, + 672.0, + 1488.0, + 648.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1470.0, + 732.0, + 1470.0, + 732.0, + 1486.0, + 717.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1469.0, + 769.0, + 1469.0, + 769.0, + 1486.0, + 753.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1469.0, + 805.0, + 1469.0, + 805.0, + 1486.0, + 789.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1468.0, + 844.0, + 1468.0, + 844.0, + 1488.0, + 824.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1469.0, + 878.0, + 1469.0, + 878.0, + 1486.0, + 862.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1468.0, + 918.0, + 1468.0, + 918.0, + 1488.0, + 893.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1468.0, + 957.0, + 1468.0, + 957.0, + 1488.0, + 931.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1466.0, + 995.0, + 1466.0, + 995.0, + 1489.0, + 958.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1468.0, + 1028.0, + 1468.0, + 1028.0, + 1488.0, + 1001.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1469.0, + 1143.0, + 1469.0, + 1143.0, + 1486.0, + 1128.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1469.0, + 1209.0, + 1469.0, + 1209.0, + 1486.0, + 1196.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1470.0, + 1276.0, + 1470.0, + 1276.0, + 1486.0, + 1263.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 1469.0, + 1342.0, + 1469.0, + 1342.0, + 1486.0, + 1329.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1480.0, + 555.0, + 1480.0, + 555.0, + 1514.0, + 490.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1480.0, + 912.0, + 1480.0, + 912.0, + 1514.0, + 847.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1480.0, + 1268.0, + 1480.0, + 1268.0, + 1514.0, + 1203.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1538.0, + 1243.0, + 1538.0, + 1243.0, + 1578.0, + 447.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 931.0, + 1881.0, + 931.0, + 1919.0, + 294.0, + 1919.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": [ + 295.0, + 1633.0, + 952.0, + 1633.0, + 952.0, + 1667.0, + 295.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 437.0, + 1255.0, + 437.0, + 1255.0, + 473.0, + 442.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1688.0, + 1406.0, + 1688.0, + 1406.0, + 1727.0, + 294.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1723.0, + 1404.0, + 1723.0, + 1404.0, + 1756.0, + 296.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1749.0, + 1408.0, + 1749.0, + 1408.0, + 1789.0, + 292.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1778.0, + 1406.0, + 1778.0, + 1406.0, + 1818.0, + 292.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 400.0, + 1809.0, + 400.0, + 1848.0, + 294.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 532.0, + 1404.0, + 532.0, + 1404.0, + 564.0, + 296.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 1406.0, + 563.0, + 1406.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 594.0, + 1404.0, + 594.0, + 1404.0, + 626.0, + 294.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 622.0, + 1021.0, + 622.0, + 1021.0, + 659.0, + 293.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1980.0, + 292.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1403.0, + 1972.0, + 1403.0, + 2006.0, + 295.0, + 2006.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": [ + 295.0, + 669.0, + 1405.0, + 669.0, + 1405.0, + 705.0, + 295.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 698.0, + 1403.0, + 698.0, + 1403.0, + 734.0, + 294.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 733.0, + 1406.0, + 733.0, + 1406.0, + 765.0, + 295.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 761.0, + 1407.0, + 761.0, + 1407.0, + 796.0, + 295.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 1406.0, + 789.0, + 1406.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 822.0, + 1104.0, + 822.0, + 1104.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 279, + 622, + 1371, + 622, + 1371, + 1562, + 279, + 1562 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 446, + 1599, + 1248, + 1599, + 1248, + 1631, + 446, + 1631 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2112, + 834, + 2112 + ], + "score": 0.83 + }, + { + "category_id": 15, + "poly": [ + 349.0, + 624.0, + 606.0, + 624.0, + 606.0, + 652.0, + 349.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 623.0, + 985.0, + 623.0, + 985.0, + 653.0, + 712.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 624.0, + 1334.0, + 624.0, + 1334.0, + 652.0, + 1103.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 651.0, + 358.0, + 651.0, + 358.0, + 853.0, + 277.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 661.0, + 444.0, + 661.0, + 444.0, + 692.0, + 425.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 678.0, + 531.0, + 678.0, + 531.0, + 745.0, + 512.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 664.0, + 688.0, + 664.0, + 688.0, + 835.0, + 633.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 657.0, + 716.0, + 657.0, + 716.0, + 683.0, + 696.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 672.0, + 811.0, + 672.0, + 811.0, + 702.0, + 793.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 724.0, + 906.0, + 724.0, + 906.0, + 771.0, + 888.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 648.0, + 1097.0, + 648.0, + 1097.0, + 851.0, + 1016.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 658.0, + 1184.0, + 658.0, + 1184.0, + 712.0, + 1165.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 666.0, + 1273.0, + 666.0, + 1273.0, + 702.0, + 1252.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 697.0, + 1360.0, + 697.0, + 1360.0, + 758.0, + 1343.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 767.0, + 336.0, + 767.0, + 336.0, + 876.0, + 301.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 800.0, + 436.0, + 800.0, + 436.0, + 878.0, + 339.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 806.0, + 619.0, + 806.0, + 619.0, + 883.0, + 598.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 771.0, + 693.0, + 771.0, + 693.0, + 875.0, + 656.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 785.0, + 722.0, + 785.0, + 722.0, + 873.0, + 703.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 778.0, + 780.0, + 778.0, + 780.0, + 882.0, + 723.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 794.0, + 1004.0, + 794.0, + 1004.0, + 882.0, + 983.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 761.0, + 1076.0, + 761.0, + 1076.0, + 890.0, + 1042.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 802.0, + 1175.0, + 802.0, + 1175.0, + 878.0, + 1087.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 866.0, + 1359.0, + 866.0, + 1359.0, + 882.0, + 1343.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 888.0, + 357.0, + 888.0, + 357.0, + 906.0, + 341.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 888.0, + 541.0, + 888.0, + 541.0, + 927.0, + 416.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 887.0, + 615.0, + 887.0, + 615.0, + 906.0, + 600.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 883.0, + 722.0, + 883.0, + 722.0, + 907.0, + 690.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 882.0, + 772.0, + 882.0, + 772.0, + 909.0, + 736.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 883.0, + 915.0, + 883.0, + 915.0, + 930.0, + 783.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 883.0, + 960.0, + 883.0, + 960.0, + 907.0, + 928.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 885.0, + 1009.0, + 885.0, + 1009.0, + 908.0, + 976.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 888.0, + 1094.0, + 888.0, + 1094.0, + 904.0, + 1080.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 888.0, + 1281.0, + 888.0, + 1281.0, + 928.0, + 1156.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 886.0, + 1360.0, + 886.0, + 1360.0, + 907.0, + 1342.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 942.0, + 595.0, + 942.0, + 595.0, + 969.0, + 359.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 942.0, + 973.0, + 942.0, + 973.0, + 969.0, + 726.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 942.0, + 1325.0, + 942.0, + 1325.0, + 969.0, + 1113.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 971.0, + 333.0, + 971.0, + 333.0, + 1151.0, + 280.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 972.0, + 358.0, + 972.0, + 358.0, + 994.0, + 338.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 971.0, + 412.0, + 971.0, + 412.0, + 1002.0, + 389.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 977.0, + 462.0, + 977.0, + 462.0, + 1012.0, + 441.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 981.0, + 515.0, + 981.0, + 515.0, + 1028.0, + 493.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 965.0, + 716.0, + 965.0, + 716.0, + 1168.0, + 631.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 976.0, + 773.0, + 976.0, + 773.0, + 1002.0, + 754.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 991.0, + 830.0, + 991.0, + 830.0, + 1021.0, + 811.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1013.0, + 887.0, + 1013.0, + 887.0, + 1051.0, + 870.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 967.0, + 1097.0, + 967.0, + 1097.0, + 1169.0, + 1016.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 971.0, + 1150.0, + 971.0, + 1150.0, + 1005.0, + 1128.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 973.0, + 1202.0, + 973.0, + 1202.0, + 1016.0, + 1183.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 976.0, + 1255.0, + 976.0, + 1255.0, + 1042.0, + 1236.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 998.0, + 1309.0, + 998.0, + 1309.0, + 1052.0, + 1288.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1001.0, + 1361.0, + 1001.0, + 1361.0, + 1038.0, + 1340.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1041.0, + 332.0, + 1041.0, + 332.0, + 1063.0, + 302.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1053.0, + 563.0, + 1053.0, + 563.0, + 1074.0, + 548.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1051.0, + 1070.0, + 1051.0, + 1070.0, + 1071.0, + 1044.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1047.0, + 1359.0, + 1047.0, + 1359.0, + 1064.0, + 1343.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1077.0, + 330.0, + 1077.0, + 330.0, + 1097.0, + 303.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1070.0, + 563.0, + 1070.0, + 563.0, + 1089.0, + 548.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1070.0, + 685.0, + 1070.0, + 685.0, + 1089.0, + 659.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1077.0, + 1070.0, + 1077.0, + 1070.0, + 1097.0, + 1045.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1110.0, + 332.0, + 1110.0, + 332.0, + 1133.0, + 301.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1119.0, + 420.0, + 1119.0, + 420.0, + 1141.0, + 346.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1087.0, + 564.0, + 1087.0, + 564.0, + 1104.0, + 548.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1091.0, + 616.0, + 1091.0, + 616.0, + 1138.0, + 600.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1118.0, + 687.0, + 1118.0, + 687.0, + 1142.0, + 655.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1095.0, + 779.0, + 1095.0, + 779.0, + 1141.0, + 703.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1091.0, + 945.0, + 1091.0, + 945.0, + 1142.0, + 924.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1103.0, + 1005.0, + 1103.0, + 1005.0, + 1162.0, + 980.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1103.0, + 1072.0, + 1103.0, + 1072.0, + 1126.0, + 1042.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1100.0, + 1175.0, + 1100.0, + 1175.0, + 1142.0, + 1088.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1145.0, + 336.0, + 1145.0, + 336.0, + 1203.0, + 302.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1134.0, + 435.0, + 1134.0, + 435.0, + 1222.0, + 341.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1204.0, + 460.0, + 1204.0, + 460.0, + 1221.0, + 445.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1204.0, + 511.0, + 1204.0, + 511.0, + 1221.0, + 496.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1142.0, + 564.0, + 1142.0, + 564.0, + 1219.0, + 547.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1133.0, + 615.0, + 1133.0, + 615.0, + 1222.0, + 600.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1169.0, + 691.0, + 1169.0, + 691.0, + 1193.0, + 657.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1138.0, + 719.0, + 1138.0, + 719.0, + 1221.0, + 698.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1130.0, + 779.0, + 1130.0, + 779.0, + 1223.0, + 724.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1203.0, + 829.0, + 1203.0, + 829.0, + 1219.0, + 814.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1203.0, + 886.0, + 1203.0, + 886.0, + 1219.0, + 871.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1158.0, + 944.0, + 1158.0, + 944.0, + 1221.0, + 926.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1178.0, + 1001.0, + 1178.0, + 1001.0, + 1221.0, + 985.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1130.0, + 1175.0, + 1130.0, + 1175.0, + 1222.0, + 1040.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1204.0, + 1200.0, + 1204.0, + 1200.0, + 1221.0, + 1185.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1204.0, + 1253.0, + 1204.0, + 1253.0, + 1221.0, + 1237.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1154.0, + 1306.0, + 1154.0, + 1306.0, + 1221.0, + 1291.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1181.0, + 1361.0, + 1181.0, + 1361.0, + 1222.0, + 1342.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1216.0, + 541.0, + 1216.0, + 541.0, + 1245.0, + 416.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1214.0, + 913.0, + 1214.0, + 913.0, + 1242.0, + 785.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1216.0, + 1281.0, + 1216.0, + 1281.0, + 1245.0, + 1157.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1258.0, + 585.0, + 1258.0, + 585.0, + 1286.0, + 372.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1254.0, + 964.0, + 1254.0, + 964.0, + 1288.0, + 733.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1257.0, + 1315.0, + 1257.0, + 1315.0, + 1288.0, + 1122.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1289.0, + 330.0, + 1289.0, + 330.0, + 1309.0, + 300.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1290.0, + 359.0, + 1290.0, + 359.0, + 1321.0, + 337.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1288.0, + 424.0, + 1288.0, + 424.0, + 1326.0, + 403.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1295.0, + 487.0, + 1295.0, + 487.0, + 1346.0, + 469.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1310.0, + 552.0, + 1310.0, + 552.0, + 1344.0, + 534.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1279.0, + 717.0, + 1279.0, + 717.0, + 1489.0, + 631.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1297.0, + 787.0, + 1297.0, + 787.0, + 1327.0, + 769.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1317.0, + 860.0, + 1317.0, + 860.0, + 1358.0, + 839.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1284.0, + 1097.0, + 1284.0, + 1097.0, + 1481.0, + 1005.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1288.0, + 1161.0, + 1288.0, + 1161.0, + 1338.0, + 1143.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1293.0, + 1229.0, + 1293.0, + 1229.0, + 1320.0, + 1209.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1316.0, + 1293.0, + 1316.0, + 1293.0, + 1357.0, + 1276.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1335.0, + 330.0, + 1335.0, + 330.0, + 1466.0, + 282.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1334.0, + 1361.0, + 1334.0, + 1361.0, + 1378.0, + 1340.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1348.0, + 619.0, + 1348.0, + 619.0, + 1399.0, + 598.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1353.0, + 1226.0, + 1353.0, + 1226.0, + 1370.0, + 1211.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1382.0, + 330.0, + 1382.0, + 330.0, + 1402.0, + 303.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1368.0, + 551.0, + 1368.0, + 551.0, + 1386.0, + 534.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1366.0, + 686.0, + 1366.0, + 686.0, + 1388.0, + 656.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1373.0, + 932.0, + 1373.0, + 932.0, + 1406.0, + 909.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1362.0, + 1072.0, + 1362.0, + 1072.0, + 1384.0, + 1042.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1426.0, + 331.0, + 1426.0, + 331.0, + 1450.0, + 302.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1435.0, + 430.0, + 1435.0, + 430.0, + 1478.0, + 347.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1396.0, + 691.0, + 1396.0, + 691.0, + 1472.0, + 657.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1413.0, + 779.0, + 1413.0, + 779.0, + 1476.0, + 702.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1409.0, + 931.0, + 1409.0, + 931.0, + 1432.0, + 912.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1402.0, + 1004.0, + 1402.0, + 1004.0, + 1459.0, + 983.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1402.0, + 1068.0, + 1402.0, + 1068.0, + 1422.0, + 1044.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1435.0, + 1176.0, + 1435.0, + 1176.0, + 1478.0, + 1087.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1436.0, + 1291.0, + 1436.0, + 1291.0, + 1447.0, + 1279.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1473.0, + 336.0, + 1473.0, + 336.0, + 1496.0, + 302.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1470.0, + 436.0, + 1470.0, + 436.0, + 1514.0, + 346.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1490.0, + 620.0, + 1490.0, + 620.0, + 1514.0, + 599.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1476.0, + 695.0, + 1476.0, + 695.0, + 1503.0, + 655.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1471.0, + 723.0, + 1471.0, + 723.0, + 1507.0, + 702.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1464.0, + 779.0, + 1464.0, + 779.0, + 1513.0, + 724.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1492.0, + 1003.0, + 1492.0, + 1003.0, + 1514.0, + 984.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1476.0, + 1072.0, + 1476.0, + 1072.0, + 1500.0, + 1042.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1467.0, + 1176.0, + 1467.0, + 1176.0, + 1514.0, + 1087.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1500.0, + 1359.0, + 1500.0, + 1359.0, + 1516.0, + 1343.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1522.0, + 357.0, + 1522.0, + 357.0, + 1539.0, + 341.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1523.0, + 420.0, + 1523.0, + 420.0, + 1538.0, + 405.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1524.0, + 485.0, + 1524.0, + 485.0, + 1536.0, + 472.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1522.0, + 549.0, + 1522.0, + 549.0, + 1539.0, + 534.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1522.0, + 615.0, + 1522.0, + 615.0, + 1539.0, + 600.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1517.0, + 759.0, + 1517.0, + 759.0, + 1541.0, + 691.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1520.0, + 791.0, + 1520.0, + 791.0, + 1538.0, + 764.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1514.0, + 936.0, + 1514.0, + 936.0, + 1542.0, + 794.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1520.0, + 972.0, + 1520.0, + 972.0, + 1538.0, + 943.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1518.0, + 1008.0, + 1518.0, + 1008.0, + 1541.0, + 976.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1522.0, + 1094.0, + 1522.0, + 1094.0, + 1539.0, + 1078.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1522.0, + 1159.0, + 1522.0, + 1159.0, + 1538.0, + 1144.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1524.0, + 1225.0, + 1524.0, + 1225.0, + 1536.0, + 1212.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1524.0, + 1289.0, + 1524.0, + 1289.0, + 1537.0, + 1279.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1522.0, + 1358.0, + 1522.0, + 1358.0, + 1538.0, + 1344.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1532.0, + 542.0, + 1532.0, + 542.0, + 1561.0, + 415.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1532.0, + 913.0, + 1532.0, + 913.0, + 1561.0, + 785.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1532.0, + 1279.0, + 1532.0, + 1279.0, + 1561.0, + 1155.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 749.5, + 1274.0, + 749.5, + 1274.0, + 770.5, + 1248.0, + 770.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1596.0, + 1251.0, + 1596.0, + 1251.0, + 1635.0, + 443.0, + 1635.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": [ + 830.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 279, + 625, + 1372, + 625, + 1372, + 1562, + 279, + 1562 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 439, + 1599, + 1253, + 1599, + 1253, + 1630, + 439, + 1630 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 1101, + 631, + 1336, + 631, + 1336, + 649, + 1101, + 649 + ], + "score": 0.178 + }, + { + "category_id": 15, + "poly": [ + 301.0, + 631.0, + 612.0, + 631.0, + 612.0, + 712.0, + 301.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 644.0, + 691.0, + 644.0, + 691.0, + 834.0, + 634.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 624.0, + 1003.0, + 624.0, + 1003.0, + 752.0, + 696.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 666.0, + 1074.0, + 666.0, + 1074.0, + 833.0, + 1021.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 625.0, + 1340.0, + 625.0, + 1340.0, + 730.0, + 1076.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 711.0, + 310.0, + 711.0, + 310.0, + 834.0, + 281.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 715.0, + 532.0, + 715.0, + 532.0, + 733.0, + 517.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 723.0, + 336.0, + 723.0, + 336.0, + 746.0, + 302.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 726.0, + 685.0, + 726.0, + 685.0, + 746.0, + 659.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 726.0, + 1069.0, + 726.0, + 1069.0, + 745.0, + 1044.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 736.0, + 1270.0, + 736.0, + 1270.0, + 751.0, + 1254.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 743.0, + 531.0, + 743.0, + 531.0, + 761.0, + 517.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 761.0, + 333.0, + 761.0, + 333.0, + 779.0, + 304.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 753.0, + 445.0, + 753.0, + 445.0, + 771.0, + 429.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 753.0, + 685.0, + 753.0, + 685.0, + 773.0, + 659.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 757.0, + 1001.0, + 757.0, + 1001.0, + 773.0, + 985.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 754.0, + 1069.0, + 754.0, + 1069.0, + 773.0, + 1044.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 763.0, + 1268.0, + 763.0, + 1268.0, + 774.0, + 1257.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 794.0, + 336.0, + 794.0, + 336.0, + 817.0, + 301.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 800.0, + 426.0, + 800.0, + 426.0, + 845.0, + 351.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 809.0, + 531.0, + 809.0, + 531.0, + 827.0, + 516.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 781.0, + 622.0, + 781.0, + 622.0, + 827.0, + 601.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 779.0, + 686.0, + 779.0, + 686.0, + 828.0, + 656.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 786.0, + 721.0, + 786.0, + 721.0, + 838.0, + 704.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 778.0, + 778.0, + 778.0, + 778.0, + 843.0, + 722.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 802.0, + 904.0, + 802.0, + 904.0, + 821.0, + 889.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 783.0, + 1069.0, + 783.0, + 1069.0, + 831.0, + 1043.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 807.0, + 1106.0, + 807.0, + 1106.0, + 842.0, + 1086.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 801.0, + 1175.0, + 801.0, + 1175.0, + 843.0, + 1108.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 792.0, + 1267.0, + 792.0, + 1267.0, + 802.0, + 1258.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 778.0, + 1361.0, + 778.0, + 1361.0, + 887.0, + 1341.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 831.0, + 345.0, + 831.0, + 345.0, + 889.0, + 302.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 842.0, + 372.0, + 842.0, + 372.0, + 877.0, + 351.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 838.0, + 424.0, + 838.0, + 424.0, + 880.0, + 373.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 865.0, + 622.0, + 865.0, + 622.0, + 885.0, + 602.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 831.0, + 691.0, + 831.0, + 691.0, + 884.0, + 655.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 840.0, + 720.0, + 840.0, + 720.0, + 874.0, + 704.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 832.0, + 780.0, + 832.0, + 780.0, + 879.0, + 725.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 860.0, + 1003.0, + 860.0, + 1003.0, + 882.0, + 982.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 838.0, + 1072.0, + 838.0, + 1072.0, + 890.0, + 1042.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 839.0, + 1106.0, + 839.0, + 1106.0, + 875.0, + 1086.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 834.0, + 1176.0, + 834.0, + 1176.0, + 879.0, + 1108.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 890.0, + 358.0, + 890.0, + 358.0, + 907.0, + 343.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 892.0, + 443.0, + 892.0, + 443.0, + 903.0, + 430.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 889.0, + 531.0, + 889.0, + 531.0, + 907.0, + 516.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 887.0, + 620.0, + 887.0, + 620.0, + 908.0, + 602.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 884.0, + 722.0, + 884.0, + 722.0, + 908.0, + 690.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 883.0, + 770.0, + 883.0, + 770.0, + 908.0, + 739.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 884.0, + 818.0, + 884.0, + 818.0, + 907.0, + 787.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 884.0, + 865.0, + 884.0, + 865.0, + 907.0, + 833.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 884.0, + 911.0, + 884.0, + 911.0, + 907.0, + 878.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 884.0, + 961.0, + 884.0, + 961.0, + 908.0, + 929.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 884.0, + 1008.0, + 884.0, + 1008.0, + 908.0, + 977.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 888.0, + 1094.0, + 888.0, + 1094.0, + 907.0, + 1079.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 889.0, + 1182.0, + 889.0, + 1182.0, + 905.0, + 1166.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 888.0, + 1270.0, + 888.0, + 1270.0, + 905.0, + 1255.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 888.0, + 1359.0, + 888.0, + 1359.0, + 905.0, + 1344.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 900.0, + 542.0, + 900.0, + 542.0, + 928.0, + 419.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 899.0, + 914.0, + 899.0, + 914.0, + 926.0, + 784.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 898.0, + 1282.0, + 898.0, + 1282.0, + 929.0, + 1156.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 943.0, + 596.0, + 943.0, + 596.0, + 970.0, + 359.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 939.0, + 979.0, + 939.0, + 979.0, + 972.0, + 719.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 943.0, + 1329.0, + 943.0, + 1329.0, + 970.0, + 1108.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 973.0, + 333.0, + 973.0, + 333.0, + 1030.0, + 302.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 974.0, + 358.0, + 974.0, + 358.0, + 994.0, + 338.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 974.0, + 410.0, + 974.0, + 410.0, + 1001.0, + 392.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 976.0, + 463.0, + 976.0, + 463.0, + 1012.0, + 442.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 984.0, + 514.0, + 984.0, + 514.0, + 1026.0, + 495.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 968.0, + 715.0, + 968.0, + 715.0, + 1170.0, + 623.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 983.0, + 772.0, + 983.0, + 772.0, + 1017.0, + 755.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 984.0, + 830.0, + 984.0, + 830.0, + 1036.0, + 811.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1004.0, + 889.0, + 1004.0, + 889.0, + 1039.0, + 868.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 969.0, + 1073.0, + 969.0, + 1073.0, + 1022.0, + 1043.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 970.0, + 1096.0, + 970.0, + 1096.0, + 1010.0, + 1075.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 975.0, + 1150.0, + 975.0, + 1150.0, + 1017.0, + 1127.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 981.0, + 1201.0, + 981.0, + 1201.0, + 1030.0, + 1182.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 999.0, + 1253.0, + 999.0, + 1253.0, + 1032.0, + 1236.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 1021.0, + 313.0, + 1021.0, + 313.0, + 1151.0, + 280.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1021.0, + 944.0, + 1021.0, + 944.0, + 1067.0, + 926.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1025.0, + 1003.0, + 1025.0, + 1003.0, + 1072.0, + 982.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1020.0, + 1072.0, + 1020.0, + 1072.0, + 1151.0, + 1021.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1042.0, + 332.0, + 1042.0, + 332.0, + 1065.0, + 302.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1052.0, + 565.0, + 1052.0, + 565.0, + 1091.0, + 547.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1056.0, + 685.0, + 1056.0, + 685.0, + 1076.0, + 659.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1045.0, + 888.0, + 1045.0, + 888.0, + 1066.0, + 868.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1061.0, + 945.0, + 1061.0, + 945.0, + 1082.0, + 926.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1061.0, + 1069.0, + 1061.0, + 1069.0, + 1081.0, + 1044.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1044.0, + 1252.0, + 1044.0, + 1252.0, + 1061.0, + 1237.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1079.0, + 336.0, + 1079.0, + 336.0, + 1204.0, + 301.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1120.0, + 435.0, + 1120.0, + 435.0, + 1196.0, + 346.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1089.0, + 566.0, + 1089.0, + 566.0, + 1161.0, + 546.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1092.0, + 617.0, + 1092.0, + 617.0, + 1196.0, + 599.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1086.0, + 690.0, + 1086.0, + 690.0, + 1194.0, + 656.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1102.0, + 720.0, + 1102.0, + 720.0, + 1191.0, + 704.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1097.0, + 780.0, + 1097.0, + 780.0, + 1197.0, + 723.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1160.0, + 944.0, + 1160.0, + 944.0, + 1177.0, + 927.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1075.0, + 1001.0, + 1075.0, + 1001.0, + 1196.0, + 985.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1091.0, + 1074.0, + 1091.0, + 1074.0, + 1203.0, + 1042.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1101.0, + 1175.0, + 1101.0, + 1175.0, + 1197.0, + 1086.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1069.0, + 1308.0, + 1069.0, + 1308.0, + 1182.0, + 1288.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1071.0, + 1360.0, + 1071.0, + 1360.0, + 1201.0, + 1342.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1206.0, + 357.0, + 1206.0, + 357.0, + 1222.0, + 341.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1204.0, + 408.0, + 1204.0, + 408.0, + 1222.0, + 393.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1206.0, + 460.0, + 1206.0, + 460.0, + 1222.0, + 445.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1206.0, + 511.0, + 1206.0, + 511.0, + 1222.0, + 496.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1208.0, + 562.0, + 1208.0, + 562.0, + 1221.0, + 551.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1206.0, + 615.0, + 1206.0, + 615.0, + 1222.0, + 601.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1204.0, + 714.0, + 1204.0, + 714.0, + 1222.0, + 698.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1202.0, + 773.0, + 1202.0, + 773.0, + 1223.0, + 753.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1204.0, + 828.0, + 1204.0, + 828.0, + 1221.0, + 813.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1204.0, + 885.0, + 1204.0, + 885.0, + 1221.0, + 871.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1204.0, + 942.0, + 1204.0, + 942.0, + 1221.0, + 927.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1204.0, + 1001.0, + 1204.0, + 1001.0, + 1221.0, + 986.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1206.0, + 1094.0, + 1206.0, + 1094.0, + 1222.0, + 1078.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1206.0, + 1147.0, + 1206.0, + 1147.0, + 1222.0, + 1131.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1204.0, + 1201.0, + 1204.0, + 1201.0, + 1222.0, + 1185.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1206.0, + 1252.0, + 1206.0, + 1252.0, + 1222.0, + 1237.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1206.0, + 1306.0, + 1206.0, + 1306.0, + 1222.0, + 1290.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1206.0, + 1359.0, + 1206.0, + 1359.0, + 1223.0, + 1344.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1214.0, + 541.0, + 1214.0, + 541.0, + 1246.0, + 416.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1214.0, + 914.0, + 1214.0, + 914.0, + 1246.0, + 785.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1217.0, + 1282.0, + 1217.0, + 1282.0, + 1244.0, + 1157.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1263.0, + 591.0, + 1263.0, + 591.0, + 1290.0, + 371.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1263.0, + 964.0, + 1263.0, + 964.0, + 1294.0, + 731.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1257.0, + 1320.0, + 1257.0, + 1320.0, + 1288.0, + 1116.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1287.0, + 337.0, + 1287.0, + 337.0, + 1310.0, + 302.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1293.0, + 359.0, + 1293.0, + 359.0, + 1323.0, + 341.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1294.0, + 403.0, + 1294.0, + 403.0, + 1323.0, + 384.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1317.0, + 443.0, + 1317.0, + 443.0, + 1327.0, + 432.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1287.0, + 695.0, + 1287.0, + 695.0, + 1342.0, + 661.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1295.0, + 720.0, + 1295.0, + 720.0, + 1342.0, + 699.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1297.0, + 789.0, + 1297.0, + 789.0, + 1334.0, + 768.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1313.0, + 858.0, + 1313.0, + 858.0, + 1352.0, + 840.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1284.0, + 1095.0, + 1284.0, + 1095.0, + 1342.0, + 1043.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1290.0, + 1161.0, + 1290.0, + 1161.0, + 1330.0, + 1142.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1297.0, + 1228.0, + 1297.0, + 1228.0, + 1322.0, + 1209.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1314.0, + 1295.0, + 1314.0, + 1295.0, + 1349.0, + 1274.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1335.0, + 335.0, + 1335.0, + 335.0, + 1466.0, + 281.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1334.0, + 402.0, + 1334.0, + 402.0, + 1349.0, + 387.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1344.0, + 444.0, + 1344.0, + 444.0, + 1354.0, + 432.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1338.0, + 673.0, + 1338.0, + 673.0, + 1471.0, + 637.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1340.0, + 788.0, + 1340.0, + 788.0, + 1363.0, + 770.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1342.0, + 929.0, + 1342.0, + 929.0, + 1386.0, + 908.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1336.0, + 1053.0, + 1336.0, + 1053.0, + 1466.0, + 1021.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1334.0, + 1226.0, + 1334.0, + 1226.0, + 1350.0, + 1211.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1348.0, + 400.0, + 1348.0, + 400.0, + 1359.0, + 388.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1369.0, + 443.0, + 1369.0, + 443.0, + 1379.0, + 430.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1353.0, + 485.0, + 1353.0, + 485.0, + 1361.0, + 475.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1352.0, + 691.0, + 1352.0, + 691.0, + 1374.0, + 661.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1364.0, + 858.0, + 1364.0, + 858.0, + 1385.0, + 839.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1360.0, + 998.0, + 1360.0, + 998.0, + 1416.0, + 977.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1353.0, + 1070.0, + 1353.0, + 1070.0, + 1373.0, + 1044.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1349.0, + 1360.0, + 1349.0, + 1360.0, + 1374.0, + 1342.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1381.0, + 335.0, + 1381.0, + 335.0, + 1400.0, + 304.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1389.0, + 444.0, + 1389.0, + 444.0, + 1400.0, + 432.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1385.0, + 486.0, + 1385.0, + 486.0, + 1395.0, + 475.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1385.0, + 689.0, + 1385.0, + 689.0, + 1405.0, + 664.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1388.0, + 1069.0, + 1388.0, + 1069.0, + 1408.0, + 1044.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1380.0, + 1359.0, + 1380.0, + 1359.0, + 1399.0, + 1344.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1396.0, + 530.0, + 1396.0, + 530.0, + 1409.0, + 519.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1398.0, + 572.0, + 1398.0, + 572.0, + 1409.0, + 561.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1410.0, + 1290.0, + 1410.0, + 1290.0, + 1420.0, + 1279.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1424.0, + 336.0, + 1424.0, + 336.0, + 1447.0, + 301.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1441.0, + 368.0, + 1441.0, + 368.0, + 1456.0, + 353.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1435.0, + 424.0, + 1435.0, + 424.0, + 1460.0, + 372.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1414.0, + 489.0, + 1414.0, + 489.0, + 1451.0, + 474.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1438.0, + 530.0, + 1438.0, + 530.0, + 1450.0, + 519.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1435.0, + 574.0, + 1435.0, + 574.0, + 1450.0, + 560.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1414.0, + 619.0, + 1414.0, + 619.0, + 1456.0, + 603.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1418.0, + 691.0, + 1418.0, + 691.0, + 1440.0, + 661.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1415.0, + 778.0, + 1415.0, + 778.0, + 1459.0, + 706.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1421.0, + 926.0, + 1421.0, + 926.0, + 1439.0, + 910.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1421.0, + 1070.0, + 1421.0, + 1070.0, + 1441.0, + 1044.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1439.0, + 1105.0, + 1439.0, + 1105.0, + 1455.0, + 1089.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1434.0, + 1162.0, + 1434.0, + 1162.0, + 1459.0, + 1108.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1457.0, + 369.0, + 1457.0, + 369.0, + 1475.0, + 353.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1452.0, + 424.0, + 1452.0, + 424.0, + 1479.0, + 373.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1447.0, + 693.0, + 1447.0, + 693.0, + 1471.0, + 661.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1455.0, + 726.0, + 1455.0, + 726.0, + 1475.0, + 706.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1449.0, + 780.0, + 1449.0, + 780.0, + 1479.0, + 727.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1455.0, + 1070.0, + 1455.0, + 1070.0, + 1475.0, + 1044.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1456.0, + 1104.0, + 1456.0, + 1104.0, + 1472.0, + 1089.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1451.0, + 1176.0, + 1451.0, + 1176.0, + 1476.0, + 1109.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1470.0, + 341.0, + 1470.0, + 341.0, + 1492.0, + 302.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1476.0, + 369.0, + 1476.0, + 369.0, + 1509.0, + 352.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1470.0, + 424.0, + 1470.0, + 424.0, + 1514.0, + 372.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1472.0, + 532.0, + 1472.0, + 532.0, + 1516.0, + 516.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1470.0, + 574.0, + 1470.0, + 574.0, + 1502.0, + 560.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1479.0, + 619.0, + 1479.0, + 619.0, + 1495.0, + 603.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1482.0, + 694.0, + 1482.0, + 694.0, + 1505.0, + 661.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1472.0, + 726.0, + 1472.0, + 726.0, + 1510.0, + 706.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1466.0, + 780.0, + 1466.0, + 780.0, + 1512.0, + 727.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1494.0, + 998.0, + 1494.0, + 998.0, + 1516.0, + 978.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1487.0, + 1072.0, + 1487.0, + 1072.0, + 1510.0, + 1042.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1468.0, + 1107.0, + 1468.0, + 1107.0, + 1507.0, + 1088.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1469.0, + 1177.0, + 1469.0, + 1177.0, + 1514.0, + 1109.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1499.0, + 1360.0, + 1499.0, + 1360.0, + 1516.0, + 1344.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1521.0, + 358.0, + 1521.0, + 358.0, + 1538.0, + 343.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1520.0, + 403.0, + 1520.0, + 403.0, + 1541.0, + 384.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1525.0, + 443.0, + 1525.0, + 443.0, + 1535.0, + 432.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1525.0, + 487.0, + 1525.0, + 487.0, + 1536.0, + 475.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1524.0, + 530.0, + 1524.0, + 530.0, + 1536.0, + 519.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1522.0, + 574.0, + 1522.0, + 574.0, + 1538.0, + 561.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1525.0, + 617.0, + 1525.0, + 617.0, + 1536.0, + 604.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1519.0, + 725.0, + 1519.0, + 725.0, + 1541.0, + 695.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1519.0, + 760.0, + 1519.0, + 760.0, + 1541.0, + 729.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1520.0, + 792.0, + 1520.0, + 792.0, + 1538.0, + 766.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1520.0, + 832.0, + 1520.0, + 832.0, + 1537.0, + 798.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1520.0, + 863.0, + 1520.0, + 863.0, + 1538.0, + 834.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1519.0, + 898.0, + 1519.0, + 898.0, + 1537.0, + 869.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1520.0, + 931.0, + 1520.0, + 931.0, + 1538.0, + 905.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1520.0, + 968.0, + 1520.0, + 968.0, + 1538.0, + 939.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1519.0, + 1002.0, + 1519.0, + 1002.0, + 1541.0, + 972.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1521.0, + 1093.0, + 1521.0, + 1093.0, + 1537.0, + 1079.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1521.0, + 1160.0, + 1521.0, + 1160.0, + 1537.0, + 1145.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1525.0, + 1223.0, + 1525.0, + 1223.0, + 1535.0, + 1213.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1524.0, + 1290.0, + 1524.0, + 1290.0, + 1536.0, + 1279.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1521.0, + 1359.0, + 1521.0, + 1359.0, + 1537.0, + 1344.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1532.0, + 542.0, + 1532.0, + 542.0, + 1561.0, + 420.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1532.0, + 911.0, + 1532.0, + 911.0, + 1561.0, + 786.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1532.0, + 1282.0, + 1532.0, + 1282.0, + 1560.0, + 1156.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1282.0, + 1087.0, + 1282.0, + 1087.0, + 1309.0, + 1038.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1596.0, + 1255.0, + 1596.0, + 1255.0, + 1634.0, + 438.0, + 1634.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": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 629.0, + 1339.0, + 629.0, + 1339.0, + 651.0, + 1098.0, + 651.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1515, + 1404, + 1515, + 1404, + 1850, + 298, + 1850 + ], + "score": 0.983 + }, + { + "category_id": 3, + "poly": [ + 280, + 238, + 1436, + 238, + 1436, + 557, + 280, + 557 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 296, + 1148, + 1407, + 1148, + 1407, + 1289, + 296, + 1289 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 280, + 786, + 1436, + 786, + 1436, + 1107, + 280, + 1107 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 294, + 597, + 1408, + 597, + 1408, + 739, + 294, + 739 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1402, + 1972, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 1352, + 1403, + 1352, + 1403, + 1414, + 298, + 1414 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 297, + 1903, + 1006, + 1903, + 1006, + 1935, + 297, + 1935 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 301, + 1458, + 830, + 1458, + 830, + 1487, + 301, + 1487 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 15, + "poly": [ + 421.0, + 240.0, + 590.0, + 240.0, + 590.0, + 265.0, + 421.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 238.0, + 1005.0, + 238.0, + 1005.0, + 269.0, + 782.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 242.0, + 1392.0, + 242.0, + 1392.0, + 267.0, + 1173.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 259.0, + 596.0, + 259.0, + 596.0, + 285.0, + 413.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 254.0, + 971.0, + 254.0, + 971.0, + 289.0, + 817.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 254.0, + 1352.0, + 254.0, + 1352.0, + 289.0, + 1212.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 284.0, + 736.0, + 284.0, + 736.0, + 307.0, + 693.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 281.0, + 1128.0, + 281.0, + 1128.0, + 308.0, + 1080.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 301.0, + 1010.0, + 301.0, + 1010.0, + 320.0, + 995.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 323.0, + 348.0, + 323.0, + 348.0, + 459.0, + 277.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 333.0, + 736.0, + 333.0, + 736.0, + 449.0, + 668.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 319.0, + 1012.0, + 319.0, + 1012.0, + 345.0, + 994.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 333.0, + 1125.0, + 333.0, + 1125.0, + 449.0, + 1057.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 312.0, + 1398.0, + 312.0, + 1398.0, + 331.0, + 1383.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 383.0, + 738.0, + 383.0, + 738.0, + 407.0, + 694.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 383.0, + 1125.0, + 383.0, + 1125.0, + 407.0, + 1083.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 407.0, + 348.0, + 407.0, + 348.0, + 430.0, + 306.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 426.0, + 541.0, + 426.0, + 541.0, + 443.0, + 531.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 398.0, + 794.0, + 398.0, + 794.0, + 446.0, + 776.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 421.0, + 935.0, + 421.0, + 935.0, + 434.0, + 925.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 398.0, + 1182.0, + 398.0, + 1182.0, + 445.0, + 1165.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 422.0, + 1326.0, + 422.0, + 1326.0, + 443.0, + 1311.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 449.0, + 348.0, + 449.0, + 348.0, + 472.0, + 305.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 442.0, + 643.0, + 442.0, + 643.0, + 488.0, + 591.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 433.0, + 736.0, + 433.0, + 736.0, + 456.0, + 693.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 452.0, + 819.0, + 452.0, + 819.0, + 496.0, + 760.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 468.0, + 866.0, + 468.0, + 866.0, + 485.0, + 849.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 463.0, + 939.0, + 463.0, + 939.0, + 490.0, + 921.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 433.0, + 1125.0, + 433.0, + 1125.0, + 456.0, + 1082.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 451.0, + 1205.0, + 451.0, + 1205.0, + 496.0, + 1148.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 466.0, + 1256.0, + 466.0, + 1256.0, + 493.0, + 1237.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 451.0, + 1326.0, + 451.0, + 1326.0, + 472.0, + 1312.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 484.0, + 736.0, + 484.0, + 736.0, + 506.0, + 693.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 484.0, + 1125.0, + 484.0, + 1125.0, + 507.0, + 1082.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 497.0, + 1252.0, + 497.0, + 1252.0, + 506.0, + 1241.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 509.0, + 384.0, + 509.0, + 384.0, + 530.0, + 363.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 509.0, + 433.0, + 509.0, + 433.0, + 530.0, + 405.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 509.0, + 476.0, + 509.0, + 476.0, + 530.0, + 448.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 507.0, + 523.0, + 507.0, + 523.0, + 531.0, + 492.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 507.0, + 569.0, + 507.0, + 569.0, + 531.0, + 536.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 507.0, + 613.0, + 507.0, + 613.0, + 531.0, + 582.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 509.0, + 655.0, + 509.0, + 655.0, + 530.0, + 628.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 507.0, + 795.0, + 507.0, + 795.0, + 531.0, + 774.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 510.0, + 866.0, + 510.0, + 866.0, + 530.0, + 850.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 510.0, + 938.0, + 510.0, + 938.0, + 530.0, + 922.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 507.0, + 1012.0, + 507.0, + 1012.0, + 531.0, + 993.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 507.0, + 1184.0, + 507.0, + 1184.0, + 531.0, + 1164.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 509.0, + 1256.0, + 509.0, + 1256.0, + 531.0, + 1236.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 507.0, + 1329.0, + 507.0, + 1329.0, + 531.0, + 1309.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 507.0, + 1401.0, + 507.0, + 1401.0, + 531.0, + 1381.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 533.0, + 531.0, + 533.0, + 531.0, + 555.0, + 477.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 532.0, + 948.0, + 532.0, + 948.0, + 557.0, + 840.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 532.0, + 1337.0, + 532.0, + 1337.0, + 557.0, + 1227.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 455.0, + 423.0, + 455.0, + 423.0, + 494.5, + 373.0, + 494.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1144.0, + 1409.0, + 1144.0, + 1409.0, + 1181.0, + 293.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1177.0, + 1404.0, + 1177.0, + 1404.0, + 1208.0, + 295.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 1404.0, + 1202.0, + 1404.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1225.0, + 1407.0, + 1225.0, + 1407.0, + 1269.0, + 292.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1255.0, + 616.0, + 1255.0, + 616.0, + 1295.0, + 293.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 790.0, + 578.0, + 790.0, + 578.0, + 815.0, + 431.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 789.0, + 1003.0, + 789.0, + 1003.0, + 819.0, + 782.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 791.0, + 1392.0, + 791.0, + 1392.0, + 816.0, + 1173.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 808.0, + 598.0, + 808.0, + 598.0, + 837.0, + 413.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 806.0, + 971.0, + 806.0, + 971.0, + 838.0, + 816.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 804.0, + 1353.0, + 804.0, + 1353.0, + 839.0, + 1212.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 850.0, + 348.0, + 850.0, + 348.0, + 874.0, + 305.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 845.0, + 1160.0, + 845.0, + 1160.0, + 872.0, + 1141.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 880.0, + 349.0, + 880.0, + 349.0, + 1007.0, + 277.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 879.0, + 736.0, + 879.0, + 736.0, + 998.0, + 668.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 895.0, + 769.0, + 895.0, + 769.0, + 920.0, + 755.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 894.0, + 1035.0, + 894.0, + 1035.0, + 912.0, + 1018.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 872.0, + 1128.0, + 872.0, + 1128.0, + 998.0, + 1057.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 890.0, + 1210.0, + 890.0, + 1210.0, + 915.0, + 1196.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 914.0, + 1126.0, + 914.0, + 1126.0, + 941.0, + 1080.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 936.0, + 350.0, + 936.0, + 350.0, + 1045.0, + 304.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1007.0, + 423.0, + 1007.0, + 423.0, + 1040.0, + 369.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 938.0, + 560.0, + 938.0, + 560.0, + 983.0, + 507.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 991.0, + 643.0, + 991.0, + 643.0, + 1039.0, + 590.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 928.0, + 738.0, + 928.0, + 738.0, + 1049.0, + 692.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 933.0, + 824.0, + 933.0, + 824.0, + 1043.0, + 760.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 962.0, + 876.0, + 962.0, + 876.0, + 1004.0, + 858.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1000.0, + 927.0, + 1000.0, + 927.0, + 1040.0, + 912.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 970.0, + 981.0, + 970.0, + 981.0, + 987.0, + 964.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 960.0, + 1126.0, + 960.0, + 1126.0, + 1028.0, + 1080.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1003.0, + 1205.0, + 1003.0, + 1205.0, + 1046.0, + 1147.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 925.0, + 1265.0, + 925.0, + 1265.0, + 958.0, + 1247.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 946.0, + 1319.0, + 946.0, + 1319.0, + 978.0, + 1299.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1406.0, + 983.0, + 1422.0, + 983.0, + 1422.0, + 1004.0, + 1406.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1058.0, + 384.0, + 1058.0, + 384.0, + 1081.0, + 363.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1057.0, + 434.0, + 1057.0, + 434.0, + 1082.0, + 403.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1057.0, + 479.0, + 1057.0, + 479.0, + 1082.0, + 447.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1057.0, + 523.0, + 1057.0, + 523.0, + 1081.0, + 492.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1057.0, + 569.0, + 1057.0, + 569.0, + 1082.0, + 536.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1057.0, + 613.0, + 1057.0, + 613.0, + 1082.0, + 581.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1057.0, + 657.0, + 1057.0, + 657.0, + 1082.0, + 626.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1060.0, + 770.0, + 1060.0, + 770.0, + 1079.0, + 755.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1060.0, + 823.0, + 1060.0, + 823.0, + 1079.0, + 807.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1058.0, + 878.0, + 1058.0, + 878.0, + 1081.0, + 858.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1058.0, + 931.0, + 1058.0, + 931.0, + 1082.0, + 910.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1058.0, + 984.0, + 1058.0, + 984.0, + 1079.0, + 963.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1058.0, + 1036.0, + 1058.0, + 1036.0, + 1081.0, + 1015.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1058.0, + 1160.0, + 1058.0, + 1160.0, + 1081.0, + 1141.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1058.0, + 1213.0, + 1058.0, + 1213.0, + 1081.0, + 1193.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1058.0, + 1266.0, + 1058.0, + 1266.0, + 1081.0, + 1247.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1058.0, + 1319.0, + 1058.0, + 1319.0, + 1082.0, + 1299.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1060.0, + 1370.0, + 1060.0, + 1370.0, + 1078.0, + 1353.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1406.0, + 1060.0, + 1422.0, + 1060.0, + 1422.0, + 1079.0, + 1406.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1083.0, + 532.0, + 1083.0, + 532.0, + 1105.0, + 477.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1082.0, + 950.0, + 1082.0, + 950.0, + 1107.0, + 840.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1082.0, + 1337.0, + 1082.0, + 1337.0, + 1107.0, + 1227.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.75, + 867.5, + 396.75, + 867.5, + 396.75, + 920.5, + 388.75, + 920.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 595.0, + 1410.0, + 595.0, + 1410.0, + 631.0, + 293.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 625.0, + 1405.0, + 625.0, + 1405.0, + 658.0, + 293.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 654.0, + 1405.0, + 654.0, + 1405.0, + 686.0, + 295.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 676.0, + 1407.0, + 676.0, + 1407.0, + 718.0, + 292.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 706.0, + 616.0, + 706.0, + 616.0, + 745.0, + 294.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1897.0, + 1010.0, + 1897.0, + 1010.0, + 1943.0, + 294.0, + 1943.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": [ + 295.0, + 1455.0, + 835.0, + 1455.0, + 835.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1516.0, + 1404.0, + 1516.0, + 1404.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1544.0, + 1405.0, + 1544.0, + 1405.0, + 1582.0, + 293.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1575.0, + 1405.0, + 1575.0, + 1405.0, + 1608.0, + 293.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1605.0, + 1405.0, + 1605.0, + 1405.0, + 1640.0, + 293.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1637.0, + 1405.0, + 1637.0, + 1405.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1666.0, + 1406.0, + 1666.0, + 1406.0, + 1704.0, + 293.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1696.0, + 1405.0, + 1696.0, + 1405.0, + 1733.0, + 293.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1406.0, + 1727.0, + 1406.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1755.0, + 1405.0, + 1755.0, + 1405.0, + 1796.0, + 292.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1406.0, + 1790.0, + 1406.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 933.0, + 1820.0, + 933.0, + 1853.0, + 295.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1406.0, + 2000.0, + 1406.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1346.0, + 1409.0, + 1346.0, + 1409.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 1277.0, + 1380.0, + 1277.0, + 1420.0, + 294.0, + 1420.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 297, + 1559, + 1403, + 1559, + 1403, + 1645, + 297, + 1645 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 298, + 1948, + 1405, + 1948, + 1405, + 2033, + 298, + 2033 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 1716, + 1401, + 1716, + 1401, + 1786, + 298, + 1786 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 299, + 1836, + 1399, + 1836, + 1399, + 1899, + 299, + 1899 + ], + "score": 0.938 + }, + { + "category_id": 3, + "poly": [ + 362, + 317, + 1298, + 317, + 1298, + 1465, + 362, + 1465 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 813, + 76, + 813, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 4, + "poly": [ + 586, + 1462, + 1118, + 1462, + 1118, + 1490, + 586, + 1490 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 13, + "poly": [ + 630, + 1716, + 951, + 1716, + 951, + 1757, + 630, + 1757 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( x ) g _ { \\mu } ( x ^ { \\prime } ) } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1558.0, + 1407.0, + 1558.0, + 1407.0, + 1593.0, + 295.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1583.0, + 1405.0, + 1583.0, + 1405.0, + 1623.0, + 294.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1616.0, + 922.0, + 1616.0, + 922.0, + 1645.0, + 293.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1986.0, + 326.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1979.0, + 1406.0, + 1979.0, + 1406.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 586.0, + 2004.0, + 586.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 345.0, + 592.0, + 345.0, + 592.0, + 377.0, + 533.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 346.0, + 905.0, + 346.0, + 905.0, + 376.0, + 824.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 346.0, + 1217.0, + 346.0, + 1217.0, + 376.0, + 1114.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 374.0, + 1028.0, + 374.0, + 1028.0, + 397.0, + 991.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 427.0, + 426.0, + 427.0, + 426.0, + 516.0, + 364.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 431.0, + 732.0, + 431.0, + 732.0, + 459.0, + 689.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 436.0, + 1031.0, + 436.0, + 1031.0, + 465.0, + 989.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 474.0, + 545.0, + 474.0, + 545.0, + 504.0, + 479.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 495.0, + 431.0, + 495.0, + 431.0, + 528.0, + 389.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 498.0, + 579.0, + 498.0, + 579.0, + 524.0, + 487.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 498.0, + 743.0, + 498.0, + 743.0, + 530.0, + 688.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 502.0, + 1032.0, + 502.0, + 1032.0, + 531.0, + 989.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 521.0, + 580.0, + 521.0, + 580.0, + 550.0, + 486.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 570.0, + 458.0, + 570.0, + 458.0, + 593.0, + 438.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 567.0, + 532.0, + 567.0, + 532.0, + 596.0, + 495.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 567.0, + 602.0, + 567.0, + 602.0, + 595.0, + 557.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 566.0, + 666.0, + 566.0, + 666.0, + 595.0, + 619.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 567.0, + 763.0, + 567.0, + 763.0, + 595.0, + 737.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 566.0, + 833.0, + 566.0, + 833.0, + 595.0, + 796.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 567.0, + 903.0, + 567.0, + 903.0, + 595.0, + 856.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 567.0, + 966.0, + 567.0, + 966.0, + 595.0, + 919.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 569.0, + 1061.0, + 569.0, + 1061.0, + 593.0, + 1038.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 566.0, + 1133.0, + 566.0, + 1133.0, + 596.0, + 1097.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 567.0, + 1203.0, + 567.0, + 1203.0, + 595.0, + 1156.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 567.0, + 1266.0, + 567.0, + 1266.0, + 595.0, + 1221.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 588.0, + 1128.0, + 588.0, + 1128.0, + 623.0, + 572.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 653.0, + 1031.0, + 653.0, + 1031.0, + 680.0, + 988.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 703.0, + 426.0, + 703.0, + 426.0, + 791.0, + 364.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 709.0, + 732.0, + 709.0, + 732.0, + 738.0, + 689.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 715.0, + 1032.0, + 715.0, + 1032.0, + 745.0, + 989.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 752.0, + 548.0, + 752.0, + 548.0, + 782.0, + 482.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 758.0, + 601.0, + 758.0, + 601.0, + 773.0, + 583.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 761.0, + 620.0, + 761.0, + 620.0, + 770.0, + 605.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 771.0, + 429.0, + 771.0, + 429.0, + 800.0, + 388.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 772.0, + 578.0, + 772.0, + 578.0, + 806.0, + 485.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 775.0, + 743.0, + 775.0, + 743.0, + 808.0, + 688.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 781.0, + 1032.0, + 781.0, + 1032.0, + 809.0, + 989.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 797.0, + 585.0, + 797.0, + 585.0, + 827.0, + 486.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 836.0, + 518.0, + 836.0, + 518.0, + 847.0, + 506.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 836.0, + 755.0, + 836.0, + 755.0, + 847.0, + 745.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 847.0, + 458.0, + 847.0, + 458.0, + 870.0, + 438.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 844.0, + 531.0, + 844.0, + 531.0, + 874.0, + 495.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 844.0, + 602.0, + 844.0, + 602.0, + 873.0, + 555.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 844.0, + 666.0, + 844.0, + 666.0, + 873.0, + 619.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 845.0, + 763.0, + 845.0, + 763.0, + 873.0, + 737.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 844.0, + 834.0, + 844.0, + 834.0, + 873.0, + 796.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 844.0, + 901.0, + 844.0, + 901.0, + 871.0, + 856.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 844.0, + 966.0, + 844.0, + 966.0, + 871.0, + 919.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 847.0, + 1063.0, + 847.0, + 1063.0, + 871.0, + 1038.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 844.0, + 1133.0, + 844.0, + 1133.0, + 873.0, + 1095.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 844.0, + 1203.0, + 844.0, + 1203.0, + 873.0, + 1156.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 844.0, + 1266.0, + 844.0, + 1266.0, + 873.0, + 1221.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 870.0, + 1127.0, + 870.0, + 1127.0, + 903.0, + 575.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 934.0, + 432.0, + 934.0, + 432.0, + 963.0, + 387.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 930.0, + 748.0, + 930.0, + 748.0, + 961.0, + 686.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 947.0, + 1031.0, + 947.0, + 1031.0, + 977.0, + 989.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 970.0, + 429.0, + 970.0, + 429.0, + 1000.0, + 388.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 969.0, + 732.0, + 969.0, + 732.0, + 999.0, + 689.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 982.0, + 391.0, + 982.0, + 391.0, + 1067.0, + 364.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 982.0, + 1031.0, + 982.0, + 1031.0, + 1012.0, + 989.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1007.0, + 430.0, + 1007.0, + 430.0, + 1037.0, + 388.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1029.0, + 548.0, + 1029.0, + 548.0, + 1059.0, + 482.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1008.0, + 743.0, + 1008.0, + 743.0, + 1039.0, + 686.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1016.0, + 1033.0, + 1016.0, + 1033.0, + 1050.0, + 988.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1041.0, + 431.0, + 1041.0, + 431.0, + 1075.0, + 388.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1049.0, + 578.0, + 1049.0, + 578.0, + 1084.0, + 485.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1047.0, + 745.0, + 1047.0, + 745.0, + 1080.0, + 688.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1053.0, + 1032.0, + 1053.0, + 1032.0, + 1083.0, + 989.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1078.0, + 432.0, + 1078.0, + 432.0, + 1111.0, + 386.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1073.0, + 584.0, + 1073.0, + 584.0, + 1103.0, + 484.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1086.0, + 735.0, + 1086.0, + 735.0, + 1119.0, + 686.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1090.0, + 1040.0, + 1090.0, + 1040.0, + 1117.0, + 988.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1124.0, + 458.0, + 1124.0, + 458.0, + 1148.0, + 438.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1121.0, + 531.0, + 1121.0, + 531.0, + 1151.0, + 496.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1121.0, + 601.0, + 1121.0, + 601.0, + 1150.0, + 555.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1120.0, + 666.0, + 1120.0, + 666.0, + 1152.0, + 619.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1121.0, + 763.0, + 1121.0, + 763.0, + 1150.0, + 737.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1121.0, + 833.0, + 1121.0, + 833.0, + 1150.0, + 796.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1121.0, + 901.0, + 1121.0, + 901.0, + 1150.0, + 856.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1121.0, + 966.0, + 1121.0, + 966.0, + 1150.0, + 919.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1121.0, + 1062.0, + 1121.0, + 1062.0, + 1150.0, + 1037.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1121.0, + 1133.0, + 1121.0, + 1133.0, + 1151.0, + 1097.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1121.0, + 1204.0, + 1121.0, + 1204.0, + 1150.0, + 1156.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1121.0, + 1265.0, + 1121.0, + 1265.0, + 1150.0, + 1220.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1150.0, + 1125.0, + 1150.0, + 1125.0, + 1185.0, + 574.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1204.0, + 732.0, + 1204.0, + 732.0, + 1233.0, + 688.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1243.0, + 429.0, + 1243.0, + 429.0, + 1272.0, + 388.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1242.0, + 732.0, + 1242.0, + 732.0, + 1272.0, + 689.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1234.0, + 769.0, + 1234.0, + 769.0, + 1267.0, + 752.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1225.0, + 1031.0, + 1225.0, + 1031.0, + 1255.0, + 989.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1257.0, + 393.0, + 1257.0, + 393.0, + 1346.0, + 363.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1260.0, + 1032.0, + 1260.0, + 1032.0, + 1290.0, + 989.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1310.0, + 430.0, + 1310.0, + 430.0, + 1338.0, + 388.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1308.0, + 580.0, + 1308.0, + 580.0, + 1359.0, + 479.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1278.0, + 745.0, + 1278.0, + 745.0, + 1353.0, + 686.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1297.0, + 1032.0, + 1297.0, + 1032.0, + 1362.0, + 989.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1376.0, + 430.0, + 1376.0, + 430.0, + 1404.0, + 388.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1353.0, + 580.0, + 1353.0, + 580.0, + 1382.0, + 486.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1359.0, + 733.0, + 1359.0, + 733.0, + 1392.0, + 686.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1367.0, + 1031.0, + 1367.0, + 1031.0, + 1395.0, + 989.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1402.0, + 458.0, + 1402.0, + 458.0, + 1425.0, + 438.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1399.0, + 532.0, + 1399.0, + 532.0, + 1428.0, + 496.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1399.0, + 601.0, + 1399.0, + 601.0, + 1428.0, + 555.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1399.0, + 664.0, + 1399.0, + 664.0, + 1428.0, + 620.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1402.0, + 760.0, + 1402.0, + 760.0, + 1425.0, + 738.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1399.0, + 833.0, + 1399.0, + 833.0, + 1428.0, + 796.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1399.0, + 901.0, + 1399.0, + 901.0, + 1428.0, + 856.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1399.0, + 966.0, + 1399.0, + 966.0, + 1427.0, + 921.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1402.0, + 1061.0, + 1402.0, + 1061.0, + 1425.0, + 1040.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1399.0, + 1133.0, + 1399.0, + 1133.0, + 1428.0, + 1097.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1399.0, + 1202.0, + 1399.0, + 1202.0, + 1428.0, + 1156.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1399.0, + 1266.0, + 1399.0, + 1266.0, + 1427.0, + 1221.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1424.0, + 598.0, + 1424.0, + 598.0, + 1455.0, + 528.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1424.0, + 900.0, + 1424.0, + 900.0, + 1455.0, + 829.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1424.0, + 1202.0, + 1424.0, + 1202.0, + 1455.0, + 1130.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.75, + 837.0, + 1056.75, + 837.0, + 1056.75, + 845.0, + 1043.75, + 845.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": [ + 582.0, + 1459.0, + 1120.0, + 1459.0, + 1120.0, + 1493.0, + 582.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1712.0, + 629.0, + 1712.0, + 629.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1712.0, + 1408.0, + 1712.0, + 1408.0, + 1758.0, + 952.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1747.0, + 372.0, + 1747.0, + 372.0, + 1790.0, + 288.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1404.0, + 1834.0, + 1404.0, + 1871.0, + 294.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1868.0, + 1403.0, + 1868.0, + 1403.0, + 1899.0, + 295.0, + 1899.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1855, + 1404, + 1855, + 1404, + 1953, + 297, + 1953 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 362, + 319, + 1295, + 319, + 1295, + 1470, + 362, + 1470 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 1967, + 1402, + 1967, + 1402, + 2036, + 297, + 2036 + ], + "score": 0.95 + }, + { + "category_id": 4, + "poly": [ + 296, + 1559, + 1404, + 1559, + 1404, + 1673, + 296, + 1673 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 294, + 1726, + 1368, + 1726, + 1368, + 1761, + 294, + 1761 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1794, + 1400, + 1794, + 1400, + 1824, + 1366, + 1824 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 4, + "poly": [ + 592, + 1462, + 1111, + 1462, + 1111, + 1490, + 592, + 1490 + ], + "score": 0.861 + }, + { + "category_id": 8, + "poly": [ + 670, + 1771, + 1027, + 1771, + 1027, + 1844, + 670, + 1844 + ], + "score": 0.711 + }, + { + "category_id": 8, + "poly": [ + 669, + 1771, + 1028, + 1771, + 1028, + 1844, + 669, + 1844 + ], + "score": 0.305 + }, + { + "category_id": 14, + "poly": [ + 668, + 1771, + 1031, + 1771, + 1031, + 1847, + 668, + 1847 + ], + "score": 0.94, + "latex": "f ^ { ( i ) } ( x ) = \\sum _ { a , \\mu } h _ { a } ^ { ( i ) } \\theta _ { a \\mu } g _ { \\mu } ( w ; x ) ." + }, + { + "category_id": 13, + "poly": [ + 662, + 1729, + 748, + 1729, + 748, + 1762, + 662, + 1762 + ], + "score": 0.93, + "latex": "g ( w ; x )" + }, + { + "category_id": 13, + "poly": [ + 817, + 1888, + 864, + 1888, + 864, + 1917, + 817, + 1917 + ], + "score": 0.9, + "latex": "h ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 341, + 1919, + 389, + 1919, + 389, + 1950, + 341, + 1950 + ], + "score": 0.89, + "latex": "h ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1966, + 1216, + 1966, + 1216, + 1998, + 1169, + 1998 + ], + "score": 0.89, + "latex": "h ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1030, + 2000, + 1077, + 2000, + 1077, + 2030, + 1030, + 2030 + ], + "score": 0.89, + "latex": "h ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1725, + 1362, + 1725, + 1362, + 1756, + 1318, + 1756 + ], + "score": 0.89, + "latex": "\\it { h ^ { ( i ) } }" + }, + { + "category_id": 13, + "poly": [ + 358, + 1861, + 379, + 1861, + 379, + 1888, + 358, + 1888 + ], + "score": 0.82, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1730, + 1084, + 1730, + 1084, + 1756, + 1068, + 1756 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 828, + 1864, + 844, + 1864, + 844, + 1882, + 828, + 1882 + ], + "score": 0.78, + "latex": "a" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 346.0, + 591.0, + 346.0, + 591.0, + 377.0, + 535.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 348.0, + 903.0, + 348.0, + 903.0, + 375.0, + 826.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 348.0, + 1216.0, + 348.0, + 1216.0, + 375.0, + 1115.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 376.0, + 427.0, + 376.0, + 427.0, + 399.0, + 391.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 380.0, + 728.0, + 380.0, + 728.0, + 405.0, + 692.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 381.0, + 1030.0, + 381.0, + 1030.0, + 405.0, + 992.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 394.0, + 426.0, + 394.0, + 426.0, + 544.0, + 362.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 445.0, + 730.0, + 445.0, + 730.0, + 475.0, + 689.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 442.0, + 1031.0, + 442.0, + 1031.0, + 472.0, + 990.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 475.0, + 610.0, + 475.0, + 610.0, + 500.0, + 488.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 511.0, + 427.0, + 511.0, + 427.0, + 536.0, + 389.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 500.0, + 546.0, + 500.0, + 546.0, + 549.0, + 486.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 495.0, + 656.0, + 495.0, + 656.0, + 554.0, + 602.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 513.0, + 730.0, + 513.0, + 730.0, + 541.0, + 689.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 509.0, + 1031.0, + 509.0, + 1031.0, + 537.0, + 990.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 570.0, + 459.0, + 570.0, + 459.0, + 593.0, + 437.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 566.0, + 532.0, + 566.0, + 532.0, + 596.0, + 495.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 567.0, + 601.0, + 567.0, + 601.0, + 595.0, + 556.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 566.0, + 666.0, + 566.0, + 666.0, + 595.0, + 621.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 569.0, + 760.0, + 569.0, + 760.0, + 593.0, + 738.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 566.0, + 832.0, + 566.0, + 832.0, + 595.0, + 796.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 567.0, + 902.0, + 567.0, + 902.0, + 595.0, + 856.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 567.0, + 965.0, + 567.0, + 965.0, + 595.0, + 920.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 570.0, + 1061.0, + 570.0, + 1061.0, + 593.0, + 1039.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 566.0, + 1133.0, + 566.0, + 1133.0, + 596.0, + 1097.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 567.0, + 1203.0, + 567.0, + 1203.0, + 595.0, + 1158.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 567.0, + 1266.0, + 567.0, + 1266.0, + 595.0, + 1221.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 590.0, + 1113.0, + 590.0, + 1113.0, + 623.0, + 588.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 653.0, + 427.0, + 653.0, + 427.0, + 677.0, + 389.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 656.0, + 742.0, + 656.0, + 742.0, + 683.0, + 689.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 657.0, + 1030.0, + 657.0, + 1030.0, + 682.0, + 992.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 672.0, + 427.0, + 672.0, + 427.0, + 823.0, + 362.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 722.0, + 730.0, + 722.0, + 730.0, + 751.0, + 689.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 720.0, + 1031.0, + 720.0, + 1031.0, + 749.0, + 990.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 751.0, + 612.0, + 751.0, + 612.0, + 780.0, + 488.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 784.0, + 430.0, + 784.0, + 430.0, + 817.0, + 389.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 777.0, + 546.0, + 777.0, + 546.0, + 825.0, + 488.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 776.0, + 654.0, + 776.0, + 654.0, + 832.0, + 604.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 790.0, + 730.0, + 790.0, + 730.0, + 819.0, + 689.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 786.0, + 1031.0, + 786.0, + 1031.0, + 814.0, + 990.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 846.0, + 459.0, + 846.0, + 459.0, + 871.0, + 437.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 844.0, + 532.0, + 844.0, + 532.0, + 874.0, + 495.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 844.0, + 601.0, + 844.0, + 601.0, + 872.0, + 556.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 844.0, + 665.0, + 844.0, + 665.0, + 872.0, + 619.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 846.0, + 760.0, + 846.0, + 760.0, + 871.0, + 738.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 844.0, + 832.0, + 844.0, + 832.0, + 872.0, + 796.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 845.0, + 902.0, + 845.0, + 902.0, + 872.0, + 856.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 844.0, + 964.0, + 844.0, + 964.0, + 872.0, + 920.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 846.0, + 1061.0, + 846.0, + 1061.0, + 871.0, + 1039.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 844.0, + 1135.0, + 844.0, + 1135.0, + 874.0, + 1097.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 845.0, + 1204.0, + 845.0, + 1204.0, + 872.0, + 1156.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 845.0, + 1265.0, + 845.0, + 1265.0, + 872.0, + 1221.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 871.0, + 1114.0, + 871.0, + 1114.0, + 904.0, + 587.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 934.0, + 427.0, + 934.0, + 427.0, + 958.0, + 389.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 930.0, + 736.0, + 930.0, + 736.0, + 957.0, + 689.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 932.0, + 1031.0, + 932.0, + 1031.0, + 960.0, + 990.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 948.0, + 426.0, + 948.0, + 426.0, + 1099.0, + 361.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 995.0, + 730.0, + 995.0, + 730.0, + 1025.0, + 689.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 996.0, + 1031.0, + 996.0, + 1031.0, + 1026.0, + 990.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1031.0, + 610.0, + 1031.0, + 610.0, + 1056.0, + 488.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1062.0, + 429.0, + 1062.0, + 429.0, + 1094.0, + 389.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1053.0, + 538.0, + 1053.0, + 538.0, + 1109.0, + 486.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1052.0, + 653.0, + 1052.0, + 653.0, + 1106.0, + 593.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1061.0, + 736.0, + 1061.0, + 736.0, + 1094.0, + 686.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1064.0, + 1031.0, + 1064.0, + 1031.0, + 1091.0, + 990.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1125.0, + 459.0, + 1125.0, + 459.0, + 1149.0, + 437.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1121.0, + 532.0, + 1121.0, + 532.0, + 1151.0, + 495.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1123.0, + 601.0, + 1123.0, + 601.0, + 1150.0, + 556.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1121.0, + 665.0, + 1121.0, + 665.0, + 1150.0, + 619.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1124.0, + 760.0, + 1124.0, + 760.0, + 1149.0, + 738.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1121.0, + 834.0, + 1121.0, + 834.0, + 1150.0, + 796.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1123.0, + 902.0, + 1123.0, + 902.0, + 1150.0, + 856.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1121.0, + 965.0, + 1121.0, + 965.0, + 1150.0, + 920.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1124.0, + 1061.0, + 1124.0, + 1061.0, + 1149.0, + 1039.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1124.0, + 1133.0, + 1124.0, + 1133.0, + 1149.0, + 1098.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1123.0, + 1203.0, + 1123.0, + 1203.0, + 1150.0, + 1156.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1123.0, + 1266.0, + 1123.0, + 1266.0, + 1150.0, + 1222.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1154.0, + 1114.0, + 1154.0, + 1114.0, + 1182.0, + 590.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1212.0, + 428.0, + 1212.0, + 428.0, + 1237.0, + 391.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1209.0, + 742.0, + 1209.0, + 742.0, + 1236.0, + 689.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1210.0, + 1033.0, + 1210.0, + 1033.0, + 1237.0, + 991.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1227.0, + 426.0, + 1227.0, + 426.0, + 1378.0, + 362.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1275.0, + 730.0, + 1275.0, + 730.0, + 1304.0, + 689.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1275.0, + 1031.0, + 1275.0, + 1031.0, + 1304.0, + 990.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1309.0, + 610.0, + 1309.0, + 610.0, + 1334.0, + 488.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1344.0, + 427.0, + 1344.0, + 427.0, + 1369.0, + 389.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1331.0, + 538.0, + 1331.0, + 538.0, + 1358.0, + 486.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1331.0, + 654.0, + 1331.0, + 654.0, + 1383.0, + 587.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1340.0, + 732.0, + 1340.0, + 732.0, + 1370.0, + 689.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1340.0, + 1031.0, + 1340.0, + 1031.0, + 1369.0, + 990.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1391.0, + 649.0, + 1391.0, + 649.0, + 1400.0, + 637.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1390.0, + 754.0, + 1390.0, + 754.0, + 1401.0, + 743.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1391.0, + 1056.0, + 1391.0, + 1056.0, + 1401.0, + 1044.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1403.0, + 459.0, + 1403.0, + 459.0, + 1425.0, + 437.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1400.0, + 529.0, + 1400.0, + 529.0, + 1426.0, + 497.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1399.0, + 600.0, + 1399.0, + 600.0, + 1427.0, + 556.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1399.0, + 665.0, + 1399.0, + 665.0, + 1427.0, + 621.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1403.0, + 760.0, + 1403.0, + 760.0, + 1425.0, + 738.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1400.0, + 830.0, + 1400.0, + 830.0, + 1426.0, + 798.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1399.0, + 901.0, + 1399.0, + 901.0, + 1427.0, + 857.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1399.0, + 965.0, + 1399.0, + 965.0, + 1427.0, + 920.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1401.0, + 1060.0, + 1401.0, + 1060.0, + 1426.0, + 1039.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1399.0, + 1133.0, + 1399.0, + 1133.0, + 1427.0, + 1097.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1399.0, + 1202.0, + 1399.0, + 1202.0, + 1427.0, + 1158.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1399.0, + 1266.0, + 1399.0, + 1266.0, + 1427.0, + 1222.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1425.0, + 599.0, + 1425.0, + 599.0, + 1455.0, + 528.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1425.0, + 900.0, + 1425.0, + 900.0, + 1455.0, + 830.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1425.0, + 1200.0, + 1425.0, + 1200.0, + 1455.0, + 1129.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1463.0, + 756.0, + 1463.0, + 756.0, + 1473.0, + 746.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1463.0, + 963.0, + 1463.0, + 963.0, + 1473.0, + 950.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1464.0, + 981.0, + 1464.0, + 981.0, + 1473.0, + 971.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1351.0, + 530.0, + 1351.0, + 530.0, + 1383.0, + 485.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1391.0, + 517.0, + 1391.0, + 517.0, + 1400.5, + 510.0, + 1400.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1557.0, + 1406.0, + 1557.0, + 1406.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1589.0, + 1404.0, + 1589.0, + 1404.0, + 1619.0, + 295.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1613.0, + 1404.0, + 1613.0, + 1404.0, + 1647.0, + 295.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1643.0, + 952.0, + 1643.0, + 952.0, + 1676.0, + 295.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1460.0, + 1111.0, + 1460.0, + 1111.0, + 1491.0, + 589.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1855.0, + 357.0, + 1855.0, + 357.0, + 1889.0, + 295.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1855.0, + 827.0, + 1855.0, + 827.0, + 1889.0, + 380.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1855.0, + 1402.0, + 1855.0, + 1402.0, + 1889.0, + 845.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1885.0, + 816.0, + 1885.0, + 816.0, + 1924.0, + 294.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1885.0, + 1405.0, + 1885.0, + 1405.0, + 1924.0, + 865.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1921.0, + 340.0, + 1921.0, + 340.0, + 1952.0, + 292.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1921.0, + 400.0, + 1921.0, + 400.0, + 1952.0, + 390.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1965.0, + 1168.0, + 1965.0, + 1168.0, + 2005.0, + 295.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1965.0, + 1407.0, + 1965.0, + 1407.0, + 2005.0, + 1217.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1996.0, + 1029.0, + 1996.0, + 1029.0, + 2040.0, + 292.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1996.0, + 1406.0, + 1996.0, + 1406.0, + 2040.0, + 1078.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1722.0, + 661.0, + 1722.0, + 661.0, + 1765.0, + 293.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1722.0, + 1067.0, + 1722.0, + 1067.0, + 1765.0, + 749.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1722.0, + 1317.0, + 1722.0, + 1317.0, + 1765.0, + 1085.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1722.0, + 1373.0, + 1722.0, + 1373.0, + 1765.0, + 1363.0, + 1765.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 972, + 1405, + 972, + 1405, + 1130, + 297, + 1130 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1300, + 1405, + 1300, + 1405, + 1462, + 297, + 1462 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1601, + 1404, + 1601, + 1404, + 1758, + 296, + 1758 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1476, + 1405, + 1476, + 1405, + 1571, + 297, + 1571 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1820, + 1405, + 1820, + 1405, + 1925, + 296, + 1925 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 675, + 1935, + 1023, + 1935, + 1023, + 2029, + 675, + 2029 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 500, + 1189, + 1195, + 1189, + 1195, + 1288, + 500, + 1288 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 691, + 1769, + 1004, + 1769, + 1004, + 1809, + 691, + 1809 + ], + "score": 0.947 + }, + { + "category_id": 5, + "poly": [ + 388, + 694, + 1302, + 694, + 1302, + 796, + 388, + 796 + ], + "score": 0.94, + "html": "
VGGResNetDenseNet
No headfirst training5 epochs headfirst training0.147 ± 0.0510.550±0.0290.183 ± 0.0010.673 ± 0.0100.162 ± 0.0080.700 ± 0.012
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1142, + 1402, + 1142, + 1402, + 1177, + 297, + 1177 + ], + "score": 0.928 + }, + { + "category_id": 3, + "poly": [ + 333, + 230, + 1370, + 230, + 1370, + 571, + 333, + 571 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1773, + 1399, + 1773, + 1399, + 1803, + 1352, + 1803 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1965, + 1400, + 1965, + 1400, + 1996, + 1351, + 1996 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1223, + 1400, + 1223, + 1400, + 1253, + 1366, + 1253 + ], + "score": 0.877 + }, + { + "category_id": 1, + "poly": [ + 294, + 839, + 1401, + 839, + 1401, + 903, + 294, + 903 + ], + "score": 0.829 + }, + { + "category_id": 4, + "poly": [ + 294, + 601, + 1400, + 601, + 1400, + 666, + 294, + 666 + ], + "score": 0.561 + }, + { + "category_id": 4, + "poly": [ + 293, + 601, + 1402, + 601, + 1402, + 665, + 293, + 665 + ], + "score": 0.286 + }, + { + "category_id": 6, + "poly": [ + 294, + 839, + 1401, + 839, + 1401, + 903, + 294, + 903 + ], + "score": 0.094 + }, + { + "category_id": 14, + "poly": [ + 676, + 1932, + 1023, + 1932, + 1023, + 2031, + 676, + 2031 + ], + "score": 0.95, + "latex": "R ( \\theta ) = V ^ { T } \\prod _ { i = 1 } ^ { \\lfloor P / 2 \\rfloor } r _ { i , P - i } ( \\theta ) V ," + }, + { + "category_id": 14, + "poly": [ + 500, + 1186, + 1198, + 1186, + 1198, + 1290, + 500, + 1290 + ], + "score": 0.94, + "latex": "\\Delta f _ { t } ^ { ( i ) } ( x ) = - \\eta \\sum _ { x ^ { \\prime } , y ^ { \\prime } \\in \\mathcal { D } _ { \\mathrm { t r a i n } } ^ { ( 2 ) } } \\Theta ( x , x ^ { \\prime } ) \\frac { \\partial L ( f ^ { ( j ) } ( x ^ { \\prime } ) , y ^ { \\prime } ) } { \\partial f } h ^ { T ( j ) } h ^ { ( i ) } ." + }, + { + "category_id": 13, + "poly": [ + 402, + 1862, + 514, + 1862, + 514, + 1897, + 402, + 1897 + ], + "score": 0.93, + "latex": "R ( 0 ) = { \\bf 1 }" + }, + { + "category_id": 13, + "poly": [ + 867, + 1855, + 973, + 1855, + 973, + 1897, + 867, + 1897 + ], + "score": 0.93, + "latex": "x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 918, + 1301, + 1305, + 1301, + 1305, + 1342, + 918, + 1342 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\Theta ( x , x ^ { \\prime } ) = \\sum _ { \\mu } g _ { \\mu } ( \\hat { w } ; x ) g _ { \\mu } ( \\hat { w } ; x ^ { \\prime } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 616, + 1821, + 781, + 1821, + 781, + 1858, + 616, + 1858 + ], + "score": 0.93, + "latex": "R ( \\theta ) \\in \\mathbb { R } ^ { P \\times P }" + }, + { + "category_id": 13, + "poly": [ + 713, + 975, + 921, + 975, + 921, + 1009, + 713, + 1009 + ], + "score": 0.93, + "latex": "g ( w ; x ) = g ( \\hat { w } ; x )" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1855, + 1142, + 1855, + 1142, + 1898, + 1025, + 1898 + ], + "score": 0.93, + "latex": "x ^ { \\prime } \\in X _ { \\mathrm { t r a i n } } ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1725, + 418, + 1725, + 418, + 1760, + 298, + 1760 + ], + "score": 0.93, + "latex": "g ^ { \\prime } ( \\theta ; \\hat { w } ; x )" + }, + { + "category_id": 13, + "poly": [ + 591, + 1427, + 695, + 1427, + 695, + 1459, + 591, + 1459 + ], + "score": 0.91, + "latex": "h ^ { T ( j ) } h ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 564, + 1861, + 825, + 1861, + 825, + 1897, + 564, + 1897 + ], + "score": 0.91, + "latex": "g ^ { T } ( \\hat { w } ; x ) g ^ { \\prime } ( \\pi / 2 ; \\hat { w } ; x ^ { \\prime } )" + }, + { + "category_id": 14, + "poly": [ + 691, + 1767, + 1008, + 1767, + 1008, + 1808, + 691, + 1808 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { g ^ { \\prime } ( \\theta ; \\hat { w } ; x ) = R ( \\theta ) g ( \\hat { w } ; x ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 475, + 972, + 523, + 972, + 523, + 1004, + 475, + 1004 + ], + "score": 0.87, + "latex": "h ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 486, + 1826, + 511, + 1826, + 511, + 1852, + 486, + 1852 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1005, + 977, + 1029, + 977, + 1029, + 1003, + 1005, + 1003 + ], + "score": 0.82, + "latex": "\\hat { w }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1541, + 889, + 1541, + 889, + 1566, + 866, + 1566 + ], + "score": 0.81, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1146, + 1072, + 1146, + 1072, + 1172, + 1056, + 1172 + ], + "score": 0.78, + "latex": "\\theta" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 233.0, + 732.0, + 233.0, + 732.0, + 255.0, + 461.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 232.0, + 1312.0, + 232.0, + 1312.0, + 257.0, + 991.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 247.0, + 391.0, + 247.0, + 391.0, + 273.0, + 354.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 247.0, + 946.0, + 247.0, + 946.0, + 273.0, + 910.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 280.0, + 390.0, + 280.0, + 390.0, + 305.0, + 354.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 302.0, + 544.0, + 302.0, + 544.0, + 318.0, + 509.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 287.0, + 771.0, + 287.0, + 771.0, + 339.0, + 548.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 280.0, + 945.0, + 280.0, + 945.0, + 305.0, + 910.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 314.0, + 390.0, + 314.0, + 390.0, + 462.0, + 333.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 312.0, + 945.0, + 312.0, + 945.0, + 463.0, + 886.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 378.0, + 388.0, + 378.0, + 388.0, + 403.0, + 354.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 380.0, + 944.0, + 380.0, + 944.0, + 402.0, + 912.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 413.0, + 390.0, + 413.0, + 390.0, + 435.0, + 355.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 412.0, + 945.0, + 412.0, + 945.0, + 437.0, + 910.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 444.0, + 390.0, + 444.0, + 390.0, + 469.0, + 354.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 444.0, + 946.0, + 444.0, + 946.0, + 469.0, + 910.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 476.0, + 390.0, + 476.0, + 390.0, + 502.0, + 354.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 469.0, + 589.0, + 469.0, + 589.0, + 491.0, + 454.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 468.0, + 779.0, + 468.0, + 779.0, + 491.0, + 644.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 476.0, + 946.0, + 476.0, + 946.0, + 503.0, + 910.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 469.0, + 1144.0, + 469.0, + 1144.0, + 491.0, + 1008.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 470.0, + 1333.0, + 470.0, + 1333.0, + 490.0, + 1200.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 488.0, + 579.0, + 488.0, + 579.0, + 513.0, + 452.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 488.0, + 732.0, + 488.0, + 732.0, + 514.0, + 644.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 488.0, + 1135.0, + 488.0, + 1135.0, + 513.0, + 1007.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 490.0, + 1286.0, + 490.0, + 1286.0, + 513.0, + 1201.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 511.0, + 388.0, + 511.0, + 388.0, + 533.0, + 355.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 508.0, + 945.0, + 508.0, + 945.0, + 535.0, + 908.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 528.0, + 401.0, + 528.0, + 401.0, + 547.0, + 384.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 525.0, + 477.0, + 525.0, + 477.0, + 550.0, + 444.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 525.0, + 545.0, + 525.0, + 545.0, + 551.0, + 513.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 526.0, + 610.0, + 526.0, + 610.0, + 549.0, + 581.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 525.0, + 680.0, + 525.0, + 680.0, + 551.0, + 648.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 525.0, + 752.0, + 525.0, + 752.0, + 550.0, + 712.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 526.0, + 818.0, + 526.0, + 818.0, + 550.0, + 778.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 528.0, + 958.0, + 528.0, + 958.0, + 547.0, + 939.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 525.0, + 1032.0, + 525.0, + 1032.0, + 551.0, + 1000.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 526.0, + 1098.0, + 526.0, + 1098.0, + 549.0, + 1069.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 526.0, + 1165.0, + 526.0, + 1165.0, + 549.0, + 1137.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 525.0, + 1235.0, + 525.0, + 1235.0, + 551.0, + 1202.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 525.0, + 1306.0, + 525.0, + 1306.0, + 550.0, + 1266.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 525.0, + 1374.0, + 525.0, + 1374.0, + 550.0, + 1335.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 546.0, + 627.0, + 546.0, + 627.0, + 571.0, + 562.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 544.0, + 1184.0, + 544.0, + 1184.0, + 575.0, + 1118.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 392.0, + 765.0, + 392.0, + 765.0, + 426.0, + 667.0, + 426.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": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 601.0, + 1403.0, + 601.0, + 1403.0, + 637.0, + 294.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 633.0, + 558.0, + 633.0, + 558.0, + 666.0, + 296.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 638.0, + 292.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 630.0, + 558.0, + 630.0, + 558.0, + 666.0, + 295.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 834.0, + 1406.0, + 834.0, + 1406.0, + 879.0, + 292.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 872.0, + 767.0, + 872.0, + 767.0, + 904.0, + 297.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 970.0, + 474.0, + 970.0, + 474.0, + 1012.0, + 294.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 970.0, + 712.0, + 970.0, + 712.0, + 1012.0, + 524.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 970.0, + 1004.0, + 970.0, + 1004.0, + 1012.0, + 922.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 970.0, + 1406.0, + 970.0, + 1406.0, + 1012.0, + 1030.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1003.0, + 1405.0, + 1003.0, + 1405.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1035.0, + 1406.0, + 1035.0, + 1406.0, + 1072.0, + 295.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1066.0, + 1405.0, + 1066.0, + 1405.0, + 1099.0, + 296.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1097.0, + 929.0, + 1097.0, + 929.0, + 1130.0, + 296.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1299.0, + 917.0, + 1299.0, + 917.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1341.0, + 1306.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1370.0, + 294.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1362.0, + 1407.0, + 1362.0, + 1407.0, + 1406.0, + 292.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1393.0, + 1403.0, + 1393.0, + 1403.0, + 1434.0, + 292.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1429.0, + 590.0, + 1429.0, + 590.0, + 1461.0, + 292.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1429.0, + 706.0, + 1429.0, + 706.0, + 1461.0, + 696.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1638.0, + 295.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1631.0, + 1404.0, + 1631.0, + 1404.0, + 1671.0, + 294.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1663.0, + 1402.0, + 1663.0, + 1402.0, + 1697.0, + 296.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1692.0, + 1406.0, + 1692.0, + 1406.0, + 1734.0, + 293.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1722.0, + 297.0, + 1722.0, + 297.0, + 1765.0, + 291.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1722.0, + 432.0, + 1722.0, + 432.0, + 1765.0, + 419.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1474.0, + 1408.0, + 1474.0, + 1408.0, + 1514.0, + 292.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 1403.0, + 1506.0, + 1403.0, + 1544.0, + 295.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1539.0, + 865.0, + 1539.0, + 865.0, + 1573.0, + 295.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1539.0, + 900.0, + 1539.0, + 900.0, + 1573.0, + 890.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1817.0, + 485.0, + 1817.0, + 485.0, + 1860.0, + 293.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1817.0, + 615.0, + 1817.0, + 615.0, + 1860.0, + 512.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1817.0, + 1406.0, + 1817.0, + 1406.0, + 1860.0, + 782.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1838.0, + 401.0, + 1838.0, + 401.0, + 1915.0, + 281.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1838.0, + 563.0, + 1838.0, + 563.0, + 1915.0, + 515.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1838.0, + 866.0, + 1838.0, + 866.0, + 1915.0, + 826.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1838.0, + 994.0, + 1838.0, + 994.0, + 1915.0, + 974.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1860.0, + 1405.0, + 1860.0, + 1405.0, + 1901.0, + 1143.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1892.0, + 353.0, + 1892.0, + 353.0, + 1928.0, + 293.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1850.0, + 1154.0, + 1850.0, + 1154.0, + 1903.0, + 964.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1138.0, + 1055.0, + 1138.0, + 1055.0, + 1183.0, + 292.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1138.0, + 1407.0, + 1138.0, + 1407.0, + 1183.0, + 1073.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 834.0, + 1406.0, + 834.0, + 1406.0, + 879.0, + 292.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 872.0, + 767.0, + 872.0, + 767.0, + 904.0, + 297.0, + 904.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1742, + 1405, + 1742, + 1405, + 2035, + 296, + 2035 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1549, + 1405, + 1549, + 1405, + 1681, + 297, + 1681 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 340, + 900, + 1383, + 900, + 1383, + 1300, + 340, + 1300 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 295, + 675, + 1407, + 675, + 1407, + 831, + 295, + 831 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 297, + 1340, + 1406, + 1340, + 1406, + 1465, + 297, + 1465 + ], + "score": 0.964 + }, + { + "category_id": 3, + "poly": [ + 325, + 236, + 1382, + 236, + 1382, + 633, + 325, + 633 + ], + "score": 0.952 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.86 + }, + { + "category_id": 13, + "poly": [ + 1102, + 1871, + 1250, + 1871, + 1250, + 1906, + 1102, + 1906 + ], + "score": 0.93, + "latex": "\\Theta ( x , x ^ { \\prime } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 372, + 1550, + 442, + 1550, + 442, + 1585, + 372, + 1585 + ], + "score": 0.93, + "latex": "r _ { i j } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 916, + 2003, + 1005, + 2003, + 1005, + 2036, + 916, + 2036 + ], + "score": 0.92, + "latex": "R ( \\pi / 2 )" + }, + { + "category_id": 13, + "poly": [ + 344, + 1903, + 464, + 1903, + 464, + 1946, + 344, + 1946 + ], + "score": 0.92, + "latex": "x ^ { \\prime } \\in X _ { \\mathrm { t r a i n } } ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1611, + 497, + 1611, + 497, + 1652, + 298, + 1652 + ], + "score": 0.92, + "latex": "g ( X _ { \\mathrm { t e s t } } ^ { ( 1 ) } ) = U D V" + }, + { + "category_id": 13, + "poly": [ + 1293, + 1866, + 1399, + 1866, + 1399, + 1907, + 1293, + 1907 + ], + "score": 0.92, + "latex": "x \\in X _ { \\mathrm { t e s t } } ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1553, + 1120, + 1553, + 1120, + 1582, + 1104, + 1582 + ], + "score": 0.81, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1551, + 1204, + 1551, + 1204, + 1578, + 1179, + 1578 + ], + "score": 0.76, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1553, + 1054, + 1553, + 1054, + 1578, + 1040, + 1578 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 504, + 908, + 530, + 908, + 530, + 933, + 504, + 933 + ], + "score": 0.26, + "latex": "\\mathsf { L } _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 902.0, + 696.0, + 902.0, + 696.0, + 939.0, + 531.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 899.0, + 1280.0, + 899.0, + 1280.0, + 937.0, + 1040.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 926.0, + 940.0, + 926.0, + 940.0, + 961.0, + 892.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 957.0, + 365.0, + 957.0, + 365.0, + 985.0, + 341.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1003.0, + 367.0, + 1003.0, + 367.0, + 1034.0, + 340.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 993.0, + 939.0, + 993.0, + 939.0, + 1024.0, + 894.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1052.0, + 367.0, + 1052.0, + 367.0, + 1078.0, + 342.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1057.0, + 940.0, + 1057.0, + 940.0, + 1092.0, + 892.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1096.0, + 371.0, + 1096.0, + 371.0, + 1129.0, + 341.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1123.0, + 945.0, + 1123.0, + 945.0, + 1156.0, + 892.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1142.0, + 370.0, + 1142.0, + 370.0, + 1177.0, + 342.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1167.0, + 789.0, + 1167.0, + 789.0, + 1201.0, + 686.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1167.0, + 1343.0, + 1167.0, + 1343.0, + 1201.0, + 1240.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1194.0, + 367.0, + 1194.0, + 367.0, + 1220.0, + 342.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1190.0, + 815.0, + 1190.0, + 815.0, + 1228.0, + 685.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1188.0, + 940.0, + 1188.0, + 940.0, + 1223.0, + 892.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1192.0, + 1368.0, + 1192.0, + 1368.0, + 1226.0, + 1238.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1245.0, + 409.0, + 1245.0, + 409.0, + 1272.0, + 386.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1244.0, + 497.0, + 1244.0, + 497.0, + 1273.0, + 463.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1242.0, + 582.0, + 1242.0, + 582.0, + 1275.0, + 544.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1242.0, + 664.0, + 1242.0, + 664.0, + 1275.0, + 626.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1244.0, + 745.0, + 1244.0, + 745.0, + 1273.0, + 709.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1243.0, + 829.0, + 1243.0, + 829.0, + 1275.0, + 791.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1247.0, + 976.0, + 1247.0, + 976.0, + 1272.0, + 957.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1243.0, + 1064.0, + 1243.0, + 1064.0, + 1275.0, + 1027.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1242.0, + 1145.0, + 1242.0, + 1145.0, + 1275.0, + 1106.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1242.0, + 1223.0, + 1242.0, + 1223.0, + 1274.0, + 1185.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1243.0, + 1303.0, + 1243.0, + 1303.0, + 1275.0, + 1265.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1243.0, + 1383.0, + 1243.0, + 1383.0, + 1275.0, + 1345.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1269.0, + 639.0, + 1269.0, + 639.0, + 1306.0, + 561.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1271.0, + 1199.0, + 1271.0, + 1199.0, + 1302.0, + 1121.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 677.0, + 1406.0, + 677.0, + 1406.0, + 710.0, + 296.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 708.0, + 1408.0, + 708.0, + 1408.0, + 741.0, + 296.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 736.0, + 1406.0, + 736.0, + 1406.0, + 773.0, + 294.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 762.0, + 1407.0, + 762.0, + 1407.0, + 808.0, + 291.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 1244.0, + 794.0, + 1244.0, + 837.0, + 293.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1339.0, + 1406.0, + 1339.0, + 1406.0, + 1376.0, + 294.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1371.0, + 1407.0, + 1371.0, + 1407.0, + 1407.0, + 295.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 1408.0, + 1400.0, + 1408.0, + 1440.0, + 294.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1432.0, + 1254.0, + 1432.0, + 1254.0, + 1468.0, + 292.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 239.0, + 778.0, + 239.0, + 778.0, + 268.0, + 447.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 235.0, + 1307.0, + 235.0, + 1307.0, + 272.0, + 1023.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 313.0, + 409.0, + 313.0, + 409.0, + 343.0, + 351.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 305.0, + 950.0, + 305.0, + 950.0, + 337.0, + 904.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 320.0, + 1243.0, + 320.0, + 1243.0, + 340.0, + 1222.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 307.0, + 1285.0, + 307.0, + 1285.0, + 331.0, + 1266.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 378.0, + 397.0, + 378.0, + 397.0, + 470.0, + 326.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 375.0, + 948.0, + 375.0, + 948.0, + 407.0, + 904.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 384.0, + 1157.0, + 384.0, + 1157.0, + 414.0, + 1133.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 430.0, + 1114.0, + 430.0, + 1114.0, + 454.0, + 1087.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 450.0, + 400.0, + 450.0, + 400.0, + 480.0, + 350.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 445.0, + 949.0, + 445.0, + 949.0, + 476.0, + 904.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 481.0, + 546.0, + 481.0, + 546.0, + 509.0, + 414.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 494.0, + 1017.0, + 494.0, + 1017.0, + 506.0, + 1009.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 519.0, + 398.0, + 519.0, + 398.0, + 549.0, + 350.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 506.0, + 523.0, + 506.0, + 523.0, + 560.0, + 474.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 516.0, + 949.0, + 516.0, + 949.0, + 546.0, + 904.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 513.0, + 982.0, + 513.0, + 982.0, + 538.0, + 958.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 505.0, + 1028.0, + 505.0, + 1028.0, + 552.0, + 998.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 500.0, + 1367.0, + 500.0, + 1367.0, + 558.0, + 1195.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 584.0, + 433.0, + 584.0, + 433.0, + 607.0, + 412.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 581.0, + 534.0, + 581.0, + 534.0, + 609.0, + 511.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 578.0, + 643.0, + 578.0, + 643.0, + 611.0, + 605.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 580.0, + 739.0, + 580.0, + 739.0, + 609.0, + 705.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 581.0, + 840.0, + 581.0, + 840.0, + 610.0, + 805.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 580.0, + 979.0, + 580.0, + 979.0, + 602.0, + 960.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 574.0, + 1087.0, + 574.0, + 1087.0, + 605.0, + 1046.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 574.0, + 1187.0, + 574.0, + 1187.0, + 605.0, + 1144.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 573.0, + 1291.0, + 573.0, + 1291.0, + 607.0, + 1237.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 574.0, + 1383.0, + 574.0, + 1383.0, + 607.0, + 1340.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 611.0, + 644.0, + 611.0, + 644.0, + 637.0, + 579.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 605.0, + 1263.0, + 605.0, + 1263.0, + 635.0, + 1069.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 316.5, + 458.0, + 316.5, + 458.0, + 336.5, + 411.0, + 336.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 343.5, + 1208.0, + 343.5, + 1208.0, + 367.0, + 1167.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 467.0, + 1076.0, + 467.0, + 1076.0, + 499.0, + 1036.0, + 499.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": [ + 829.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1740.0, + 1405.0, + 1740.0, + 1405.0, + 1780.0, + 294.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1774.0, + 1407.0, + 1774.0, + 1407.0, + 1809.0, + 295.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1842.0, + 294.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1836.0, + 1405.0, + 1836.0, + 1405.0, + 1870.0, + 295.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1858.0, + 1101.0, + 1858.0, + 1101.0, + 1928.0, + 278.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1858.0, + 1292.0, + 1858.0, + 1292.0, + 1928.0, + 1251.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1858.0, + 1418.0, + 1858.0, + 1418.0, + 1928.0, + 1400.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1893.0, + 343.0, + 1893.0, + 343.0, + 1963.0, + 283.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1893.0, + 1418.0, + 1893.0, + 1418.0, + 1963.0, + 465.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 915.0, + 2003.0, + 915.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 2003.0, + 1378.0, + 2003.0, + 1378.0, + 2037.0, + 1006.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1550.0, + 371.0, + 1550.0, + 371.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1550.0, + 1039.0, + 1550.0, + 1039.0, + 1584.0, + 443.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1550.0, + 1103.0, + 1550.0, + 1103.0, + 1584.0, + 1055.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1550.0, + 1178.0, + 1550.0, + 1178.0, + 1584.0, + 1121.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1550.0, + 1405.0, + 1550.0, + 1405.0, + 1584.0, + 1205.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1581.0, + 1407.0, + 1581.0, + 1407.0, + 1615.0, + 294.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1604.0, + 297.0, + 1604.0, + 297.0, + 1665.0, + 287.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1604.0, + 1412.0, + 1604.0, + 1412.0, + 1665.0, + 498.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1648.0, + 691.0, + 1648.0, + 691.0, + 1681.0, + 295.0, + 1681.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1403, + 1819, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1318, + 1405, + 1318, + 1405, + 1534, + 298, + 1534 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1550, + 1403, + 1550, + 1403, + 1673, + 299, + 1673 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 317, + 1405, + 317, + 1405, + 442, + 298, + 442 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 297, + 1031, + 1406, + 1031, + 1406, + 1245, + 297, + 1245 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 324, + 632, + 1376, + 632, + 1376, + 999, + 324, + 999 + ], + "score": 0.972 + }, + { + "category_id": 0, + "poly": [ + 300, + 1747, + 634, + 1747, + 634, + 1779, + 300, + 1779 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 301, + 228, + 753, + 228, + 753, + 261, + 301, + 261 + ], + "score": 0.803 + }, + { + "category_id": 0, + "poly": [ + 297, + 517, + 845, + 517, + 845, + 547, + 297, + 547 + ], + "score": 0.695 + }, + { + "category_id": 13, + "poly": [ + 1081, + 1098, + 1099, + 1098, + 1099, + 1125, + 1081, + 1125 + ], + "score": 0.72, + "latex": "\\eta" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1031.0, + 1406.0, + 1031.0, + 1406.0, + 1066.0, + 295.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1062.0, + 1406.0, + 1062.0, + 1406.0, + 1095.0, + 292.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1093.0, + 1080.0, + 1093.0, + 1080.0, + 1127.0, + 295.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1093.0, + 1404.0, + 1093.0, + 1404.0, + 1127.0, + 1100.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1123.0, + 1404.0, + 1123.0, + 1404.0, + 1158.0, + 295.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1154.0, + 1404.0, + 1154.0, + 1404.0, + 1188.0, + 292.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1183.0, + 1407.0, + 1183.0, + 1407.0, + 1221.0, + 294.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1219.0, + 432.0, + 1219.0, + 432.0, + 1248.0, + 293.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 634.0, + 562.0, + 634.0, + 562.0, + 668.0, + 502.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 638.0, + 920.0, + 638.0, + 920.0, + 666.0, + 836.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 638.0, + 1276.0, + 638.0, + 1276.0, + 666.0, + 1167.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 670.0, + 356.0, + 670.0, + 356.0, + 763.0, + 323.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 689.0, + 414.0, + 689.0, + 414.0, + 705.0, + 399.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 700.0, + 386.0, + 700.0, + 386.0, + 721.0, + 351.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 704.0, + 1094.0, + 704.0, + 1094.0, + 719.0, + 1077.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 715.0, + 1192.0, + 715.0, + 1192.0, + 732.0, + 1176.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 726.0, + 832.0, + 726.0, + 832.0, + 744.0, + 818.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 744.0, + 383.0, + 744.0, + 383.0, + 901.0, + 325.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 758.0, + 440.0, + 758.0, + 440.0, + 768.0, + 431.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 739.0, + 496.0, + 739.0, + 496.0, + 755.0, + 482.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 773.0, + 635.0, + 773.0, + 635.0, + 779.0, + 629.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 752.0, + 802.0, + 752.0, + 802.0, + 771.0, + 782.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 747.0, + 1142.0, + 747.0, + 1142.0, + 763.0, + 1127.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 766.0, + 1240.0, + 766.0, + 1240.0, + 783.0, + 1226.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 758.0, + 1292.0, + 758.0, + 1292.0, + 778.0, + 1272.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 743.0, + 1338.0, + 743.0, + 1338.0, + 761.0, + 1324.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 784.0, + 384.0, + 784.0, + 384.0, + 805.0, + 351.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 780.0, + 429.0, + 780.0, + 429.0, + 792.0, + 418.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 794.0, + 459.0, + 794.0, + 459.0, + 808.0, + 443.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 802.0, + 549.0, + 802.0, + 549.0, + 818.0, + 534.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 794.0, + 622.0, + 794.0, + 622.0, + 808.0, + 606.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 798.0, + 646.0, + 798.0, + 646.0, + 809.0, + 634.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 791.0, + 670.0, + 791.0, + 670.0, + 801.0, + 658.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 792.0, + 756.0, + 792.0, + 756.0, + 807.0, + 738.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 792.0, + 777.0, + 792.0, + 777.0, + 807.0, + 760.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 788.0, + 825.0, + 788.0, + 825.0, + 806.0, + 804.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 825.0, + 384.0, + 825.0, + 384.0, + 846.0, + 351.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 817.0, + 506.0, + 817.0, + 506.0, + 834.0, + 490.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 812.0, + 597.0, + 812.0, + 597.0, + 826.0, + 581.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 818.0, + 630.0, + 818.0, + 630.0, + 833.0, + 616.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 820.0, + 766.0, + 820.0, + 766.0, + 836.0, + 749.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 836.0, + 857.0, + 836.0, + 857.0, + 851.0, + 842.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 867.0, + 384.0, + 867.0, + 384.0, + 888.0, + 350.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 860.0, + 788.0, + 860.0, + 788.0, + 875.0, + 772.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 845.0, + 810.0, + 845.0, + 810.0, + 860.0, + 796.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 862.0, + 844.0, + 862.0, + 844.0, + 878.0, + 828.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 846.0, + 947.0, + 846.0, + 947.0, + 892.0, + 851.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 863.0, + 1016.0, + 863.0, + 1016.0, + 885.0, + 989.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 902.0, + 450.0, + 902.0, + 450.0, + 921.0, + 428.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 901.0, + 509.0, + 901.0, + 509.0, + 923.0, + 478.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 902.0, + 562.0, + 902.0, + 562.0, + 920.0, + 534.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 901.0, + 617.0, + 901.0, + 617.0, + 923.0, + 587.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 902.0, + 670.0, + 902.0, + 670.0, + 920.0, + 641.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 902.0, + 771.0, + 902.0, + 771.0, + 921.0, + 748.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 902.0, + 807.0, + 902.0, + 807.0, + 920.0, + 783.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 899.0, + 1022.0, + 899.0, + 1022.0, + 923.0, + 816.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 904.0, + 1084.0, + 904.0, + 1084.0, + 920.0, + 1070.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 902.0, + 1130.0, + 902.0, + 1130.0, + 920.0, + 1107.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 901.0, + 1172.0, + 901.0, + 1172.0, + 920.0, + 1149.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 902.0, + 1212.0, + 902.0, + 1212.0, + 920.0, + 1188.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 901.0, + 1253.0, + 901.0, + 1253.0, + 920.0, + 1228.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 902.0, + 1294.0, + 902.0, + 1294.0, + 920.0, + 1270.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 902.0, + 1334.0, + 902.0, + 1334.0, + 920.0, + 1312.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 904.0, + 1374.0, + 904.0, + 1374.0, + 919.0, + 1354.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 915.0, + 614.0, + 915.0, + 614.0, + 946.0, + 452.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 916.0, + 957.0, + 916.0, + 957.0, + 947.0, + 797.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 916.0, + 1287.0, + 916.0, + 1287.0, + 944.0, + 1154.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 950.0, + 680.0, + 950.0, + 680.0, + 960.0, + 670.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 949.0, + 878.0, + 949.0, + 878.0, + 981.0, + 850.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 950.0, + 1025.0, + 950.0, + 1025.0, + 961.0, + 1014.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 952.0, + 1368.0, + 952.0, + 1368.0, + 960.0, + 1359.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 959.0, + 423.0, + 959.0, + 423.0, + 977.0, + 400.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 959.0, + 454.0, + 959.0, + 454.0, + 977.0, + 431.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 958.0, + 486.0, + 958.0, + 486.0, + 977.0, + 462.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 958.0, + 555.0, + 958.0, + 555.0, + 980.0, + 526.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 958.0, + 620.0, + 958.0, + 620.0, + 980.0, + 590.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 958.0, + 690.0, + 958.0, + 690.0, + 980.0, + 660.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 959.0, + 771.0, + 959.0, + 771.0, + 978.0, + 749.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 958.0, + 822.0, + 958.0, + 822.0, + 977.0, + 801.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 959.0, + 929.0, + 959.0, + 929.0, + 977.0, + 902.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 959.0, + 982.0, + 959.0, + 982.0, + 977.0, + 954.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 958.0, + 1035.0, + 958.0, + 1035.0, + 980.0, + 1005.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 960.0, + 1132.0, + 960.0, + 1132.0, + 977.0, + 1118.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 957.0, + 1185.0, + 957.0, + 1185.0, + 977.0, + 1162.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 959.0, + 1233.0, + 959.0, + 1233.0, + 977.0, + 1210.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 959.0, + 1281.0, + 959.0, + 1281.0, + 977.0, + 1257.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 959.0, + 1328.0, + 959.0, + 1328.0, + 978.0, + 1306.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 959.0, + 1376.0, + 959.0, + 1376.0, + 978.0, + 1354.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 971.0, + 608.0, + 971.0, + 608.0, + 1002.0, + 456.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 971.0, + 951.0, + 971.0, + 951.0, + 1002.0, + 800.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 974.0, + 1295.0, + 974.0, + 1295.0, + 1000.0, + 1145.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 856.5, + 991.0, + 856.5, + 991.0, + 881.5, + 943.0, + 881.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1749.0, + 637.0, + 1749.0, + 637.0, + 1782.0, + 297.0, + 1782.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": [ + 829.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2121.0, + 829.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 759.0, + 227.0, + 759.0, + 269.0, + 294.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 518.0, + 847.0, + 518.0, + 847.0, + 549.0, + 297.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 1407.0, + 1821.0, + 1407.0, + 1855.0, + 296.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1405.0, + 1975.0, + 1405.0, + 2005.0, + 293.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 833.0, + 2003.0, + 833.0, + 2041.0, + 293.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1354.0, + 296.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1351.0, + 1406.0, + 1351.0, + 1406.0, + 1385.0, + 295.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1382.0, + 1406.0, + 1382.0, + 1406.0, + 1416.0, + 295.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1411.0, + 1406.0, + 1411.0, + 1406.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1438.0, + 1407.0, + 1438.0, + 1407.0, + 1479.0, + 291.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1507.0, + 293.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1501.0, + 1015.0, + 1501.0, + 1015.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1549.0, + 1405.0, + 1549.0, + 1405.0, + 1586.0, + 294.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1581.0, + 1407.0, + 1581.0, + 1407.0, + 1616.0, + 293.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1610.0, + 1407.0, + 1610.0, + 1407.0, + 1646.0, + 294.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1641.0, + 524.0, + 1641.0, + 524.0, + 1674.0, + 295.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 316.0, + 1406.0, + 316.0, + 1406.0, + 351.0, + 293.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 351.0, + 1403.0, + 351.0, + 1403.0, + 381.0, + 296.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 377.0, + 1403.0, + 377.0, + 1403.0, + 415.0, + 293.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 407.0, + 422.0, + 407.0, + 422.0, + 450.0, + 292.0, + 450.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 27, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 320, + 224, + 1380, + 224, + 1380, + 1286, + 320, + 1286 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 295, + 1313, + 1406, + 1313, + 1406, + 1590, + 295, + 1590 + ], + "score": 0.967 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 297, + 1804, + 916, + 1804, + 916, + 1837, + 297, + 1837 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2112, + 834, + 2112 + ], + "score": 0.838 + }, + { + "category_id": 0, + "poly": [ + 298, + 1733, + 978, + 1733, + 978, + 1771, + 298, + 1771 + ], + "score": 0.752 + }, + { + "category_id": 0, + "poly": [ + 301, + 1660, + 814, + 1660, + 814, + 1696, + 301, + 1696 + ], + "score": 0.68 + }, + { + "category_id": 15, + "poly": [ + 845.0, + 227.0, + 900.0, + 227.0, + 900.0, + 256.0, + 845.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 290.0, + 369.0, + 290.0, + 369.0, + 307.0, + 342.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 262.0, + 658.0, + 262.0, + 658.0, + 317.0, + 567.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 247.0, + 726.0, + 247.0, + 726.0, + 302.0, + 691.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 255.0, + 1081.0, + 255.0, + 1081.0, + 307.0, + 1051.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 266.0, + 1250.0, + 266.0, + 1250.0, + 295.0, + 1236.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 324.0, + 369.0, + 324.0, + 369.0, + 473.0, + 320.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 308.0, + 658.0, + 308.0, + 658.0, + 364.0, + 568.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 317.0, + 726.0, + 317.0, + 726.0, + 473.0, + 669.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 323.0, + 1077.0, + 323.0, + 1077.0, + 472.0, + 1028.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 353.0, + 724.0, + 353.0, + 724.0, + 374.0, + 691.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 356.0, + 1077.0, + 356.0, + 1077.0, + 374.0, + 1053.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 370.0, + 1321.0, + 370.0, + 1321.0, + 380.0, + 1312.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 382.0, + 369.0, + 382.0, + 369.0, + 399.0, + 342.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 383.0, + 1304.0, + 383.0, + 1304.0, + 394.0, + 1295.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 379.0, + 1338.0, + 379.0, + 1338.0, + 389.0, + 1327.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 391.0, + 724.0, + 391.0, + 724.0, + 406.0, + 692.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 391.0, + 1077.0, + 391.0, + 1077.0, + 408.0, + 1053.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 409.0, + 1343.0, + 409.0, + 1343.0, + 425.0, + 1329.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 428.0, + 369.0, + 428.0, + 369.0, + 445.0, + 342.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 426.0, + 723.0, + 426.0, + 723.0, + 443.0, + 693.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 423.0, + 1078.0, + 423.0, + 1078.0, + 442.0, + 1052.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 427.0, + 1308.0, + 427.0, + 1308.0, + 442.0, + 1289.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 463.0, + 722.0, + 463.0, + 722.0, + 477.0, + 694.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 457.0, + 1078.0, + 457.0, + 1078.0, + 475.0, + 1053.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 474.0, + 369.0, + 474.0, + 369.0, + 492.0, + 342.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 477.0, + 1341.0, + 477.0, + 1341.0, + 489.0, + 1330.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 497.0, + 724.0, + 497.0, + 724.0, + 514.0, + 692.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 491.0, + 1078.0, + 491.0, + 1078.0, + 509.0, + 1052.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 483.0, + 1255.0, + 483.0, + 1255.0, + 500.0, + 1240.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 485.0, + 1326.0, + 485.0, + 1326.0, + 496.0, + 1315.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 487.0, + 1365.0, + 487.0, + 1365.0, + 503.0, + 1349.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 521.0, + 370.0, + 521.0, + 370.0, + 538.0, + 342.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 532.0, + 723.0, + 532.0, + 723.0, + 550.0, + 693.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 525.0, + 1080.0, + 525.0, + 1080.0, + 543.0, + 1052.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 550.0, + 417.0, + 550.0, + 417.0, + 556.0, + 411.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 544.0, + 506.0, + 544.0, + 506.0, + 560.0, + 489.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 544.0, + 548.0, + 544.0, + 548.0, + 560.0, + 531.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 544.0, + 589.0, + 544.0, + 589.0, + 560.0, + 572.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 544.0, + 630.0, + 544.0, + 630.0, + 560.0, + 614.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 546.0, + 672.0, + 546.0, + 672.0, + 560.0, + 657.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 546.0, + 735.0, + 546.0, + 735.0, + 560.0, + 721.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 549.0, + 774.0, + 549.0, + 774.0, + 559.0, + 764.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 549.0, + 814.0, + 549.0, + 814.0, + 559.0, + 805.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 544.0, + 861.0, + 544.0, + 861.0, + 560.0, + 844.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 544.0, + 902.0, + 544.0, + 902.0, + 560.0, + 885.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 544.0, + 943.0, + 544.0, + 943.0, + 560.0, + 927.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 544.0, + 984.0, + 544.0, + 984.0, + 560.0, + 968.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 544.0, + 1026.0, + 544.0, + 1026.0, + 560.0, + 1011.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 543.0, + 1150.0, + 543.0, + 1150.0, + 561.0, + 1124.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 543.0, + 1214.0, + 543.0, + 1214.0, + 561.0, + 1186.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 543.0, + 1275.0, + 543.0, + 1275.0, + 561.0, + 1249.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 543.0, + 1338.0, + 543.0, + 1338.0, + 561.0, + 1312.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 555.0, + 582.0, + 555.0, + 582.0, + 582.0, + 455.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 553.0, + 937.0, + 553.0, + 937.0, + 581.0, + 810.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 553.0, + 1299.0, + 553.0, + 1299.0, + 585.0, + 1155.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 578.0, + 914.0, + 578.0, + 914.0, + 610.0, + 833.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 600.0, + 724.0, + 600.0, + 724.0, + 617.0, + 693.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 610.0, + 368.0, + 610.0, + 368.0, + 623.0, + 344.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 627.0, + 1078.0, + 627.0, + 1078.0, + 644.0, + 1052.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 635.0, + 724.0, + 635.0, + 724.0, + 652.0, + 692.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 659.0, + 369.0, + 659.0, + 369.0, + 678.0, + 342.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 674.0, + 348.0, + 674.0, + 348.0, + 824.0, + 317.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 669.0, + 726.0, + 669.0, + 726.0, + 824.0, + 667.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 678.0, + 1077.0, + 678.0, + 1077.0, + 823.0, + 1026.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 699.0, + 1214.0, + 699.0, + 1214.0, + 715.0, + 1200.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 711.0, + 369.0, + 711.0, + 369.0, + 730.0, + 342.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 707.0, + 723.0, + 707.0, + 723.0, + 724.0, + 693.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 716.0, + 1199.0, + 716.0, + 1199.0, + 728.0, + 1188.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 724.0, + 1310.0, + 724.0, + 1310.0, + 733.0, + 1302.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 728.0, + 1077.0, + 728.0, + 1077.0, + 747.0, + 1053.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 731.0, + 1194.0, + 731.0, + 1194.0, + 740.0, + 1185.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 742.0, + 723.0, + 742.0, + 723.0, + 759.0, + 694.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 739.0, + 1124.0, + 739.0, + 1124.0, + 749.0, + 1113.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 742.0, + 1225.0, + 742.0, + 1225.0, + 753.0, + 1215.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 742.0, + 1290.0, + 742.0, + 1290.0, + 750.0, + 1280.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 747.0, + 1153.0, + 747.0, + 1153.0, + 755.0, + 1142.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 753.0, + 1122.0, + 753.0, + 1122.0, + 767.0, + 1107.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 751.0, + 1139.0, + 751.0, + 1139.0, + 761.0, + 1129.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 753.0, + 1280.0, + 753.0, + 1280.0, + 762.0, + 1271.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 765.0, + 369.0, + 765.0, + 369.0, + 782.0, + 342.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 778.0, + 723.0, + 778.0, + 723.0, + 795.0, + 693.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 779.0, + 1078.0, + 779.0, + 1078.0, + 797.0, + 1053.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 777.0, + 1145.0, + 777.0, + 1145.0, + 785.0, + 1135.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 791.0, + 1174.0, + 791.0, + 1174.0, + 802.0, + 1164.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 801.0, + 1349.0, + 801.0, + 1349.0, + 809.0, + 1339.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 817.0, + 370.0, + 817.0, + 370.0, + 834.0, + 342.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 813.0, + 724.0, + 813.0, + 724.0, + 830.0, + 693.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 830.0, + 1078.0, + 830.0, + 1078.0, + 848.0, + 1052.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 814.0, + 1278.0, + 814.0, + 1278.0, + 824.0, + 1268.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 809.0, + 1324.0, + 809.0, + 1324.0, + 820.0, + 1313.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 826.0, + 1342.0, + 826.0, + 1342.0, + 837.0, + 1331.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 814.0, + 1362.0, + 814.0, + 1362.0, + 826.0, + 1351.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 847.0, + 724.0, + 847.0, + 724.0, + 868.0, + 691.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 846.0, + 1312.0, + 846.0, + 1312.0, + 857.0, + 1299.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 869.0, + 369.0, + 869.0, + 369.0, + 886.0, + 342.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 868.0, + 1337.0, + 868.0, + 1337.0, + 880.0, + 1326.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 885.0, + 724.0, + 885.0, + 724.0, + 901.0, + 692.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 881.0, + 1087.0, + 881.0, + 1087.0, + 898.0, + 1052.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 899.0, + 380.0, + 899.0, + 380.0, + 910.0, + 369.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 899.0, + 419.0, + 899.0, + 419.0, + 910.0, + 409.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 897.0, + 506.0, + 897.0, + 506.0, + 911.0, + 489.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 897.0, + 548.0, + 897.0, + 548.0, + 912.0, + 531.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 897.0, + 589.0, + 897.0, + 589.0, + 912.0, + 572.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 897.0, + 630.0, + 897.0, + 630.0, + 912.0, + 614.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 897.0, + 672.0, + 897.0, + 672.0, + 912.0, + 655.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 897.0, + 736.0, + 897.0, + 736.0, + 912.0, + 721.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 899.0, + 774.0, + 899.0, + 774.0, + 910.0, + 765.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 897.0, + 861.0, + 897.0, + 861.0, + 912.0, + 844.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 894.0, + 903.0, + 894.0, + 903.0, + 914.0, + 884.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 897.0, + 943.0, + 897.0, + 943.0, + 912.0, + 926.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 897.0, + 984.0, + 897.0, + 984.0, + 912.0, + 968.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 897.0, + 1026.0, + 897.0, + 1026.0, + 912.0, + 1011.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 895.0, + 1101.0, + 895.0, + 1101.0, + 912.0, + 1076.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 898.0, + 1134.0, + 898.0, + 1134.0, + 911.0, + 1110.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 895.0, + 1171.0, + 895.0, + 1171.0, + 912.0, + 1145.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 895.0, + 1205.0, + 895.0, + 1205.0, + 912.0, + 1179.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 895.0, + 1239.0, + 895.0, + 1239.0, + 912.0, + 1212.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 898.0, + 1273.0, + 898.0, + 1273.0, + 911.0, + 1248.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 892.0, + 1309.0, + 892.0, + 1309.0, + 914.0, + 1282.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 898.0, + 1341.0, + 898.0, + 1341.0, + 911.0, + 1318.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 897.0, + 1377.0, + 897.0, + 1377.0, + 914.0, + 1350.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 908.0, + 582.0, + 908.0, + 582.0, + 934.0, + 455.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 904.0, + 937.0, + 904.0, + 937.0, + 934.0, + 809.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 906.0, + 1297.0, + 906.0, + 1297.0, + 933.0, + 1156.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 932.0, + 925.0, + 932.0, + 925.0, + 960.0, + 822.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 952.0, + 369.0, + 952.0, + 369.0, + 969.0, + 342.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 970.0, + 724.0, + 970.0, + 724.0, + 987.0, + 697.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 969.0, + 1078.0, + 969.0, + 1078.0, + 986.0, + 1053.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 993.0, + 369.0, + 993.0, + 369.0, + 1012.0, + 342.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1008.0, + 724.0, + 1008.0, + 724.0, + 1025.0, + 697.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1027.0, + 368.0, + 1027.0, + 368.0, + 1176.0, + 318.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1025.0, + 706.0, + 1025.0, + 706.0, + 1177.0, + 670.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1027.0, + 1078.0, + 1027.0, + 1078.0, + 1174.0, + 1028.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1047.0, + 723.0, + 1047.0, + 723.0, + 1064.0, + 697.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1076.0, + 369.0, + 1076.0, + 369.0, + 1094.0, + 344.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1078.0, + 1147.0, + 1078.0, + 1147.0, + 1087.0, + 1138.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1084.0, + 723.0, + 1084.0, + 723.0, + 1101.0, + 697.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1084.0, + 1077.0, + 1084.0, + 1077.0, + 1102.0, + 1053.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1118.0, + 369.0, + 1118.0, + 369.0, + 1135.0, + 344.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1122.0, + 723.0, + 1122.0, + 723.0, + 1139.0, + 697.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1122.0, + 1264.0, + 1122.0, + 1264.0, + 1128.0, + 1258.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1142.0, + 1077.0, + 1142.0, + 1077.0, + 1160.0, + 1053.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1142.0, + 1320.0, + 1142.0, + 1320.0, + 1152.0, + 1309.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1159.0, + 369.0, + 1159.0, + 369.0, + 1176.0, + 342.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1159.0, + 723.0, + 1159.0, + 723.0, + 1176.0, + 695.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1152.0, + 1220.0, + 1152.0, + 1220.0, + 1162.0, + 1210.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1156.0, + 1287.0, + 1156.0, + 1287.0, + 1167.0, + 1278.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1153.0, + 1366.0, + 1153.0, + 1366.0, + 1183.0, + 1348.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1175.0, + 1321.0, + 1175.0, + 1321.0, + 1190.0, + 1307.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1183.0, + 1185.0, + 1183.0, + 1185.0, + 1198.0, + 1170.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1193.0, + 1232.0, + 1193.0, + 1232.0, + 1205.0, + 1221.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1200.0, + 370.0, + 1200.0, + 370.0, + 1217.0, + 342.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1198.0, + 723.0, + 1198.0, + 723.0, + 1215.0, + 697.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1202.0, + 1078.0, + 1202.0, + 1078.0, + 1219.0, + 1052.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1200.0, + 1278.0, + 1200.0, + 1278.0, + 1215.0, + 1263.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1236.0, + 724.0, + 1236.0, + 724.0, + 1252.0, + 697.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1251.0, + 380.0, + 1251.0, + 380.0, + 1261.0, + 369.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1251.0, + 420.0, + 1251.0, + 420.0, + 1261.0, + 408.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1249.0, + 506.0, + 1249.0, + 506.0, + 1262.0, + 489.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1249.0, + 547.0, + 1249.0, + 547.0, + 1262.0, + 531.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1249.0, + 588.0, + 1249.0, + 588.0, + 1263.0, + 572.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1248.0, + 630.0, + 1248.0, + 630.0, + 1263.0, + 614.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1249.0, + 672.0, + 1249.0, + 672.0, + 1262.0, + 655.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1249.0, + 736.0, + 1249.0, + 736.0, + 1262.0, + 721.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1251.0, + 774.0, + 1251.0, + 774.0, + 1261.0, + 763.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1251.0, + 815.0, + 1251.0, + 815.0, + 1261.0, + 807.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1249.0, + 861.0, + 1249.0, + 861.0, + 1262.0, + 844.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1249.0, + 902.0, + 1249.0, + 902.0, + 1262.0, + 885.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1248.0, + 943.0, + 1248.0, + 943.0, + 1263.0, + 927.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1249.0, + 985.0, + 1249.0, + 985.0, + 1263.0, + 968.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1249.0, + 1026.0, + 1249.0, + 1026.0, + 1263.0, + 1011.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1246.0, + 1124.0, + 1246.0, + 1124.0, + 1265.0, + 1098.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1248.0, + 1182.0, + 1248.0, + 1182.0, + 1265.0, + 1157.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1249.0, + 1238.0, + 1249.0, + 1238.0, + 1262.0, + 1215.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1246.0, + 1297.0, + 1246.0, + 1297.0, + 1265.0, + 1272.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 1246.0, + 1355.0, + 1246.0, + 1355.0, + 1265.0, + 1329.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1259.0, + 581.0, + 1259.0, + 581.0, + 1285.0, + 454.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1259.0, + 936.0, + 1259.0, + 936.0, + 1285.0, + 809.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1255.0, + 1297.0, + 1255.0, + 1297.0, + 1287.0, + 1155.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 716.0, + 955.0, + 716.0, + 955.0, + 783.5, + 743.0, + 783.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 898.0, + 819.0, + 898.0, + 819.0, + 909.0, + 802.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1085.0, + 975.0, + 1085.0, + 975.0, + 1132.0, + 805.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1311.0, + 1407.0, + 1311.0, + 1407.0, + 1351.0, + 293.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1339.0, + 1411.0, + 1339.0, + 1411.0, + 1385.0, + 292.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1372.0, + 1408.0, + 1372.0, + 1408.0, + 1415.0, + 289.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 1406.0, + 1407.0, + 1406.0, + 1440.0, + 294.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1434.0, + 1406.0, + 1434.0, + 1406.0, + 1474.0, + 292.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1465.0, + 1406.0, + 1465.0, + 1406.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1404.0, + 1499.0, + 1404.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, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1558.0, + 723.0, + 1558.0, + 723.0, + 1593.0, + 294.0, + 1593.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": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1730.0, + 980.0, + 1730.0, + 980.0, + 1776.0, + 292.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1659.0, + 818.0, + 1659.0, + 818.0, + 1699.0, + 294.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1802.0, + 919.0, + 1802.0, + 919.0, + 1842.0, + 293.0, + 1842.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 28, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 540, + 869, + 1160, + 869, + 1160, + 1296, + 540, + 1296 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 296, + 644, + 1405, + 644, + 1405, + 769, + 296, + 769 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 295, + 1328, + 1401, + 1328, + 1401, + 1423, + 295, + 1423 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 3, + "poly": [ + 922, + 1566, + 1395, + 1566, + 1395, + 1882, + 922, + 1882 + ], + "score": 0.885 + }, + { + "category_id": 3, + "poly": [ + 318, + 1566, + 792, + 1566, + 792, + 1882, + 318, + 1882 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 866, + 2088, + 866, + 2113, + 835, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 4, + "poly": [ + 312, + 1956, + 1375, + 1956, + 1375, + 1991, + 312, + 1991 + ], + "score": 0.83 + }, + { + "category_id": 4, + "poly": [ + 1037, + 1523, + 1334, + 1523, + 1334, + 1564, + 1037, + 1564 + ], + "score": 0.809 + }, + { + "category_id": 3, + "poly": [ + 300, + 266, + 1398, + 266, + 1398, + 618, + 300, + 618 + ], + "score": 0.809 + }, + { + "category_id": 4, + "poly": [ + 431, + 1522, + 729, + 1522, + 729, + 1564, + 431, + 1564 + ], + "score": 0.757 + }, + { + "category_id": 4, + "poly": [ + 932, + 1902, + 1371, + 1902, + 1371, + 1932, + 932, + 1932 + ], + "score": 0.439 + }, + { + "category_id": 1, + "poly": [ + 327, + 1902, + 766, + 1902, + 766, + 1932, + 327, + 1932 + ], + "score": 0.294 + }, + { + "category_id": 4, + "poly": [ + 736, + 870, + 1043, + 870, + 1043, + 897, + 736, + 897 + ], + "score": 0.115 + }, + { + "category_id": 4, + "poly": [ + 434, + 1522, + 603, + 1522, + 603, + 1543, + 434, + 1543 + ], + "score": 0.091 + }, + { + "category_id": 13, + "poly": [ + 895, + 1333, + 981, + 1333, + 981, + 1362, + 895, + 1362 + ], + "score": 0.9, + "latex": "p _ { i } - y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1066, + 737, + 1094, + 737, + 1094, + 767, + 1066, + 767 + ], + "score": 0.87, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 655, + 707, + 683, + 707, + 683, + 737, + 655, + 737 + ], + "score": 0.86, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 508, + 1368, + 508, + 1368, + 528, + 1292, + 528 + ], + "score": 0.77, + "latex": "\\hat { W } _ { l n / t } \\cdot \\hat { W } _ { \\top s s k _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 538, + 1381, + 538, + 1381, + 561, + 1292, + 561 + ], + "score": 0.64, + "latex": "\\hat { W } _ { \\top \\mathrm e s k _ { 1 } } \\cdot \\hat { W } _ { \\top \\mathrm e s k _ { 2 } }" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 867.0, + 1046.0, + 867.0, + 1046.0, + 898.0, + 732.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 903.0, + 660.0, + 903.0, + 660.0, + 926.0, + 639.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 903.0, + 1147.0, + 903.0, + 1147.0, + 936.0, + 995.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 919.0, + 625.0, + 919.0, + 625.0, + 955.0, + 561.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 939.0, + 982.0, + 939.0, + 982.0, + 955.0, + 965.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 930.0, + 1148.0, + 930.0, + 1148.0, + 960.0, + 997.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 971.0, + 626.0, + 971.0, + 626.0, + 1007.0, + 561.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 973.0, + 761.0, + 973.0, + 761.0, + 991.0, + 745.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 994.0, + 792.0, + 994.0, + 792.0, + 1010.0, + 774.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1025.0, + 628.0, + 1025.0, + 628.0, + 1100.0, + 536.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1046.0, + 869.0, + 1046.0, + 869.0, + 1060.0, + 856.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1077.0, + 627.0, + 1077.0, + 627.0, + 1116.0, + 560.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1132.0, + 627.0, + 1132.0, + 627.0, + 1168.0, + 561.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1176.0, + 1066.0, + 1176.0, + 1066.0, + 1190.0, + 1054.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1184.0, + 628.0, + 1184.0, + 628.0, + 1220.0, + 561.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1220.0, + 1140.0, + 1220.0, + 1140.0, + 1238.0, + 1122.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1246.0, + 962.0, + 1246.0, + 962.0, + 1278.0, + 615.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1247.0, + 1050.0, + 1247.0, + 1050.0, + 1278.0, + 971.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1247.0, + 1141.0, + 1247.0, + 1141.0, + 1278.0, + 1062.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1268.0, + 921.0, + 1268.0, + 921.0, + 1302.0, + 858.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1020.5, + 845.0, + 1020.5, + 845.0, + 1040.5, + 808.0, + 1040.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.25, + 1076.5, + 921.25, + 1076.5, + 921.25, + 1093.5, + 902.25, + 1093.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1097.5, + 957.0, + 1097.5, + 957.0, + 1122.0, + 934.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1142.5, + 1013.0, + 1142.5, + 1013.0, + 1157.0, + 1006.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1160.0, + 1047.0, + 1160.0, + 1047.0, + 1178.5, + 1032.0, + 1178.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 1406.0, + 644.0, + 1406.0, + 681.0, + 294.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 1405.0, + 675.0, + 1405.0, + 710.0, + 294.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 706.0, + 654.0, + 706.0, + 654.0, + 742.0, + 294.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 706.0, + 1403.0, + 706.0, + 1403.0, + 742.0, + 684.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 737.0, + 1065.0, + 737.0, + 1065.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 737.0, + 1203.0, + 737.0, + 1203.0, + 772.0, + 1095.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1327.0, + 894.0, + 1327.0, + 894.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1327.0, + 1406.0, + 1327.0, + 1406.0, + 1363.0, + 982.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1406.0, + 1360.0, + 1406.0, + 1394.0, + 295.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1389.0, + 1227.0, + 1389.0, + 1227.0, + 1427.0, + 295.0, + 1427.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": [ + 946.0, + 1573.0, + 973.0, + 1573.0, + 973.0, + 1595.0, + 946.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1602.0, + 954.0, + 1602.0, + 954.0, + 1802.0, + 922.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1614.0, + 974.0, + 1614.0, + 974.0, + 1638.0, + 946.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1659.0, + 973.0, + 1659.0, + 973.0, + 1682.0, + 946.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1703.0, + 974.0, + 1703.0, + 974.0, + 1725.0, + 946.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1745.0, + 973.0, + 1745.0, + 973.0, + 1767.0, + 946.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1771.0, + 1377.0, + 1771.0, + 1377.0, + 1797.0, + 1218.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1788.0, + 974.0, + 1788.0, + 974.0, + 1810.0, + 946.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1797.0, + 1380.0, + 1797.0, + 1380.0, + 1826.0, + 1224.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1846.0, + 1002.0, + 1846.0, + 1002.0, + 1856.0, + 993.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1842.0, + 1055.0, + 1842.0, + 1055.0, + 1858.0, + 1038.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1840.0, + 1113.0, + 1840.0, + 1113.0, + 1861.0, + 1081.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1839.0, + 1157.0, + 1839.0, + 1157.0, + 1861.0, + 1125.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1838.0, + 1204.0, + 1838.0, + 1204.0, + 1861.0, + 1176.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1837.0, + 1258.0, + 1837.0, + 1258.0, + 1863.0, + 1223.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1838.0, + 1304.0, + 1838.0, + 1304.0, + 1861.0, + 1264.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 1838.0, + 1349.0, + 1838.0, + 1349.0, + 1861.0, + 1321.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1840.0, + 1393.0, + 1840.0, + 1393.0, + 1860.0, + 1371.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1855.0, + 1218.0, + 1855.0, + 1218.0, + 1885.0, + 1154.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.25, + 1626.5, + 1179.25, + 1626.5, + 1179.25, + 1666.5, + 1015.25, + 1666.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1610.0, + 370.0, + 1610.0, + 370.0, + 1633.0, + 341.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1660.0, + 345.0, + 1660.0, + 345.0, + 1747.0, + 319.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1670.0, + 369.0, + 1670.0, + 369.0, + 1689.0, + 343.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1725.0, + 369.0, + 1725.0, + 369.0, + 1747.0, + 341.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1782.0, + 370.0, + 1782.0, + 370.0, + 1805.0, + 341.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1771.0, + 775.0, + 1771.0, + 775.0, + 1797.0, + 610.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1795.0, + 773.0, + 1795.0, + 773.0, + 1827.0, + 615.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1844.0, + 399.0, + 1844.0, + 399.0, + 1857.0, + 387.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1842.0, + 451.0, + 1842.0, + 451.0, + 1858.0, + 432.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1841.0, + 503.0, + 1841.0, + 503.0, + 1860.0, + 477.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1840.0, + 549.0, + 1840.0, + 549.0, + 1860.0, + 524.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1838.0, + 599.0, + 1838.0, + 599.0, + 1861.0, + 572.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1838.0, + 650.0, + 1838.0, + 650.0, + 1862.0, + 620.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1839.0, + 697.0, + 1839.0, + 697.0, + 1861.0, + 668.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1838.0, + 744.0, + 1838.0, + 744.0, + 1862.0, + 715.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1840.0, + 789.0, + 1840.0, + 789.0, + 1860.0, + 766.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1857.0, + 612.0, + 1857.0, + 612.0, + 1884.0, + 550.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.75, + 1657.5, + 517.75, + 1657.5, + 517.75, + 1690.5, + 394.75, + 1690.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1950.0, + 1377.0, + 1950.0, + 1377.0, + 2000.0, + 319.0, + 2000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1521.0, + 1208.0, + 1521.0, + 1208.0, + 1546.0, + 1038.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1541.0, + 1335.0, + 1541.0, + 1335.0, + 1566.0, + 1038.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 308.0, + 373.0, + 308.0, + 373.0, + 336.0, + 325.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 297.0, + 405.0, + 297.0, + 405.0, + 320.0, + 386.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 265.0, + 785.0, + 265.0, + 785.0, + 334.0, + 459.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 279.0, + 965.0, + 279.0, + 965.0, + 308.0, + 916.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 294.0, + 990.0, + 294.0, + 990.0, + 312.0, + 974.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 262.0, + 1306.0, + 262.0, + 1306.0, + 330.0, + 1046.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 298.0, + 1381.0, + 298.0, + 1381.0, + 317.0, + 1366.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 325.0, + 798.0, + 325.0, + 798.0, + 365.0, + 662.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 321.0, + 961.0, + 321.0, + 961.0, + 353.0, + 915.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 325.0, + 1381.0, + 325.0, + 1381.0, + 343.0, + 1366.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 337.0, + 661.0, + 337.0, + 661.0, + 356.0, + 639.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 344.0, + 1087.0, + 344.0, + 1087.0, + 362.0, + 1071.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 352.0, + 1186.0, + 352.0, + 1186.0, + 370.0, + 1170.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 364.0, + 963.0, + 364.0, + 963.0, + 396.0, + 915.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 364.0, + 1283.0, + 364.0, + 1283.0, + 379.0, + 1268.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 405.0, + 374.0, + 405.0, + 374.0, + 465.0, + 304.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 412.0, + 498.0, + 412.0, + 498.0, + 425.0, + 487.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 407.0, + 960.0, + 407.0, + 960.0, + 463.0, + 894.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 423.0, + 405.0, + 423.0, + 405.0, + 445.0, + 386.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 434.0, + 597.0, + 434.0, + 597.0, + 451.0, + 581.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 457.0, + 693.0, + 457.0, + 693.0, + 474.0, + 677.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 452.0, + 960.0, + 452.0, + 960.0, + 481.0, + 916.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 468.0, + 498.0, + 468.0, + 498.0, + 481.0, + 487.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 479.0, + 596.0, + 479.0, + 596.0, + 496.0, + 581.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 496.0, + 375.0, + 496.0, + 375.0, + 528.0, + 327.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 498.0, + 693.0, + 498.0, + 693.0, + 516.0, + 677.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 492.0, + 963.0, + 492.0, + 963.0, + 524.0, + 915.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 494.0, + 1291.0, + 494.0, + 1291.0, + 536.0, + 1283.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 494.0, + 1377.0, + 494.0, + 1377.0, + 536.0, + 1369.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 513.0, + 789.0, + 513.0, + 789.0, + 528.0, + 773.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 510.0, + 1280.0, + 510.0, + 1280.0, + 528.0, + 1263.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 537.0, + 960.0, + 537.0, + 960.0, + 565.0, + 916.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 542.0, + 1280.0, + 542.0, + 1280.0, + 559.0, + 1262.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 525.0, + 1291.0, + 525.0, + 1291.0, + 574.0, + 1282.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 525.0, + 1393.0, + 525.0, + 1393.0, + 574.0, + 1382.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 555.0, + 787.0, + 555.0, + 787.0, + 568.0, + 775.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 551.0, + 991.0, + 551.0, + 991.0, + 574.0, + 973.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 579.0, + 402.0, + 579.0, + 402.0, + 597.0, + 387.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 583.0, + 497.0, + 583.0, + 497.0, + 595.0, + 486.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 576.0, + 599.0, + 576.0, + 599.0, + 599.0, + 579.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 579.0, + 693.0, + 579.0, + 693.0, + 599.0, + 678.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 579.0, + 789.0, + 579.0, + 789.0, + 597.0, + 774.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 577.0, + 989.0, + 577.0, + 989.0, + 597.0, + 974.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 581.0, + 1086.0, + 581.0, + 1086.0, + 597.0, + 1072.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 576.0, + 1187.0, + 576.0, + 1187.0, + 599.0, + 1167.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 577.0, + 1286.0, + 577.0, + 1286.0, + 599.0, + 1267.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 577.0, + 1383.0, + 577.0, + 1383.0, + 599.0, + 1364.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 590.0, + 614.0, + 590.0, + 614.0, + 622.0, + 563.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 590.0, + 1203.0, + 590.0, + 1203.0, + 622.0, + 1152.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1523.0, + 604.0, + 1523.0, + 604.0, + 1544.0, + 433.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1543.0, + 729.0, + 1543.0, + 729.0, + 1564.0, + 434.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1900.0, + 1373.0, + 1900.0, + 1373.0, + 1934.0, + 930.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 867.0, + 1047.0, + 867.0, + 1047.0, + 900.0, + 733.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1523.0, + 605.0, + 1523.0, + 605.0, + 1544.0, + 433.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1902.0, + 768.0, + 1902.0, + 768.0, + 1933.0, + 325.0, + 1933.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 29, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 293, + 1311, + 1407, + 1311, + 1407, + 1375, + 293, + 1375 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.864 + }, + { + "category_id": 4, + "poly": [ + 1038, + 882, + 1326, + 882, + 1326, + 922, + 1038, + 922 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.825 + }, + { + "category_id": 4, + "poly": [ + 432, + 882, + 721, + 882, + 721, + 922, + 432, + 922 + ], + "score": 0.81 + }, + { + "category_id": 3, + "poly": [ + 312, + 915, + 1397, + 915, + 1397, + 1288, + 312, + 1288 + ], + "score": 0.648 + }, + { + "category_id": 13, + "poly": [ + 602, + 882, + 648, + 882, + 648, + 904, + 602, + 904 + ], + "score": 0.32, + "latex": "+ ~ 1 0" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1310.0, + 1405.0, + 1310.0, + 1405.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1344.0, + 516.0, + 1344.0, + 516.0, + 1378.0, + 296.0, + 1378.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": [ + 1038.0, + 881.0, + 1329.0, + 881.0, + 1329.0, + 905.0, + 1038.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 900.0, + 1206.0, + 900.0, + 1206.0, + 924.0, + 1040.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 881.0, + 601.0, + 881.0, + 601.0, + 905.0, + 432.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 881.0, + 723.0, + 881.0, + 723.0, + 905.0, + 649.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 901.0, + 604.0, + 901.0, + 604.0, + 925.0, + 432.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 907.0, + 601.0, + 907.0, + 601.0, + 923.0, + 434.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 908.0, + 1205.0, + 908.0, + 1205.0, + 924.0, + 1043.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 939.0, + 369.0, + 939.0, + 369.0, + 962.0, + 339.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 939.0, + 974.0, + 939.0, + 974.0, + 962.0, + 943.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 964.0, + 369.0, + 964.0, + 369.0, + 1157.0, + 313.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 964.0, + 973.0, + 964.0, + 973.0, + 1154.0, + 919.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 981.0, + 1374.0, + 981.0, + 1374.0, + 1026.0, + 1275.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1035.0, + 369.0, + 1035.0, + 369.0, + 1058.0, + 339.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1035.0, + 973.0, + 1035.0, + 973.0, + 1058.0, + 943.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1083.0, + 368.0, + 1083.0, + 368.0, + 1108.0, + 337.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1084.0, + 973.0, + 1084.0, + 973.0, + 1108.0, + 943.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1131.0, + 369.0, + 1131.0, + 369.0, + 1154.0, + 337.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1126.0, + 773.0, + 1126.0, + 773.0, + 1154.0, + 698.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1131.0, + 973.0, + 1131.0, + 973.0, + 1154.0, + 943.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1126.0, + 1378.0, + 1126.0, + 1378.0, + 1154.0, + 1299.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1152.0, + 769.0, + 1152.0, + 769.0, + 1182.0, + 698.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1152.0, + 1374.0, + 1152.0, + 1374.0, + 1182.0, + 1301.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1180.0, + 371.0, + 1180.0, + 371.0, + 1204.0, + 337.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1180.0, + 974.0, + 1180.0, + 974.0, + 1204.0, + 943.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1196.0, + 379.0, + 1196.0, + 379.0, + 1214.0, + 364.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1193.0, + 453.0, + 1193.0, + 453.0, + 1217.0, + 426.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1193.0, + 521.0, + 1193.0, + 521.0, + 1217.0, + 493.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1191.0, + 589.0, + 1191.0, + 589.0, + 1217.0, + 562.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1193.0, + 658.0, + 1193.0, + 658.0, + 1217.0, + 631.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1191.0, + 727.0, + 1191.0, + 727.0, + 1217.0, + 699.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1195.0, + 793.0, + 1195.0, + 793.0, + 1216.0, + 769.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1196.0, + 985.0, + 1196.0, + 985.0, + 1214.0, + 969.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1193.0, + 1058.0, + 1193.0, + 1058.0, + 1217.0, + 1031.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1193.0, + 1127.0, + 1193.0, + 1127.0, + 1217.0, + 1099.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1193.0, + 1195.0, + 1193.0, + 1195.0, + 1217.0, + 1168.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1193.0, + 1263.0, + 1193.0, + 1263.0, + 1217.0, + 1236.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1191.0, + 1332.0, + 1191.0, + 1332.0, + 1217.0, + 1305.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1193.0, + 1399.0, + 1193.0, + 1399.0, + 1217.0, + 1373.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1209.0, + 609.0, + 1209.0, + 609.0, + 1240.0, + 540.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1209.0, + 1215.0, + 1209.0, + 1215.0, + 1242.0, + 1147.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1254.0, + 680.0, + 1254.0, + 680.0, + 1286.0, + 414.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1256.0, + 1283.0, + 1256.0, + 1283.0, + 1285.0, + 1021.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.75, + 991.5, + 1133.75, + 991.5, + 1133.75, + 1033.0, + 999.75, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.75, + 1005.0, + 490.75, + 1005.0, + 490.75, + 1029.0, + 389.75, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.25, + 1053.5, + 419.25, + 1053.5, + 419.25, + 1061.5, + 396.25, + 1061.5 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 30, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk.md b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk.md new file mode 100644 index 0000000000000000000000000000000000000000..0f125acaed9f2b2a5faaac74371cff8100ab861f --- /dev/null +++ b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk.md @@ -0,0 +1,148 @@ +# Early Convolutions Help Transformers See Better + +Tete Xiao1,2 Mannat Singh1 Eric Mintun1 Trevor Darrell2 Piotr Dollár1∗ Ross Girshick1∗ + +1Facebook AI Research (FAIR) 2UC Berkeley + +# Abstract + +Vision transformer (ViT) models exhibit substandard optimizability. In particular, they are sensitive to the choice of optimizer (AdamW vs. SGD), optimizer hyperparameters, and training schedule length. In comparison, modern convolutional neural networks are easier to optimize. Why is this the case? In this work, we conjecture that the issue lies with the patchify stem of ViT models, which is implemented by a stride- $p p { \times } p$ convolution $\dot { p } = 1 6$ by default) applied to the input image. This large-kernel plus large-stride convolution runs counter to typical design choices of convolutional layers in neural networks. To test whether this atypical design choice causes an issue, we analyze the optimization behavior of ViT models with their original patchify stem versus a simple counterpart where we replace the ViT stem by a small number of stacked stride-two $3 { \times } 3$ convolutions. While the vast majority of computation in the two ViT designs is identical, we find that this small change in early visual processing results in markedly different training behavior in terms of the sensitivity to optimization settings as well as the final model accuracy. Using a convolutional stem in ViT dramatically increases optimization stability and also improves peak performance (by ${ \sim } 1 { - } 2 \%$ top-1 accuracy on ImageNet-1k), while maintaining flops and runtime. The improvement can be observed across the wide spectrum of model complexities (from 1G to 36G flops) and dataset scales (from ImageNet-1k to ImageNet-21k). These findings lead us to recommend using a standard, lightweight convolutional stem for ViT models in this regime as a more robust architectural choice compared to the original ViT model design. + +# 1 Introduction + +Vision transformer (ViT) models [13] offer an alternative design paradigm to convolutional neural networks (CNNs) [24]. ViTs replace the inductive bias towards local processing inherent in convolutions with global processing performed by multi-headed self-attention [43]. The hope is that this design has the potential to improve performance on vision tasks, akin to the trends observed in natural language processing [11]. While investigating this conjecture, researchers face another unexpected difference between ViTs and CNNs: ViT models exhibit substandard optimizability. ViTs are sensitive to the choice of optimizer [41] (AdamW [27] vs. SGD), to the selection of dataset specific learning hyperparameters [13, 41], to training schedule length, to network depth [42], etc. These issues render former training recipes and intuitions ineffective and impede research. + +Convolutional neural networks, in contrast, are exceptionally easy and robust to optimize. Simple training recipes based on SGD, basic data augmentation, and standard hyperparameter values have been widely used for years [19]. Why does this difference exist between ViT and CNN models? In this paper we hypothesize that the issues lies primarily in the early visual processing performed by ViT. ViT “patchifies” the input image into $p { \times } p$ non-overlapping patches to form the transformer encoder’s input set. This patchify stem is implemented as a stride- $p p \times p$ convolution, with $p = 1 6$ as a default value. This large-kernel plus large-stride convolution runs counter to the typical design choices used in CNNs, where best-practices have converged to a small stack of stride-two $3 { \times } 3$ kernels as the network’s stem (e.g., [30, 36, 39]). + +![](images/b91aae065046d45a4cf2660ee48625a319b82673ffafb868c9b5ca99235d35b4.jpg) +Figure 1: Early convolutions help transformers see better: We hypothesize that the substandard optimizability of ViT models compared to CNNs primarily arises from the early visual processing performed by its patchify stem, which is implemented by a non-overlapping stride- $p p { \times } p$ convolution, with $p = 1 6$ by default. We minimally replace the patchify stem in ViT with a standard convolutional stem of only ${ \sim } 5 $ convolutions that has approximately the same complexity as a single transformer block. We reduce the number of transformer blocks by one (i.e., $\bar { L } - 1$ vs. $L$ ) to maintain parity in flops, parameters, and runtime. We refer to the resulting model as $\mathrm { V i T } _ { C }$ and the original ViT as $\mathrm { V i T } _ { P }$ . The vast majority of computation performed by these two models is identical, yet surprisingly we observe that $\mathrm { V i T } _ { C }$ (i) converges faster, (ii) enables, for the first time, the use of either AdamW or SGD without a significant accuracy drop, (iii) shows greater stability to learning rate and weight decay choice, and (iv) yields improvements in ImageNet top-1 error allowing $\mathrm { V i T } _ { C }$ to outperform state-of-the-art CNNs, whereas $\mathrm { V i T } _ { P }$ does not. + +To test this hypothesis, we minimally change the early visual processing of ViT by replacing its patchify stem with a standard convolutional stem consisting of only ${ \sim } 5$ convolutions, see Figure 1. To compensate for the small addition in flops, we remove one transformer block to maintain parity in flops and runtime. We observe that even though the vast majority of the computation in the two ViT designs is identical, this small change in early visual processing results in markedly different training behavior in terms of the sensitivity to optimization settings as well as the final model accuracy. + +In extensive experiments we show that replacing the ViT patchify stem with a more standard convolutional stem (i) allows ViT to converge faster (§5.1), (ii) enables, for the first time, the use of either AdamW or SGD without a significant drop in accuracy (§5.2), (iii) brings ViT’s stability w.r.t. learning rate and weight decay closer to that of modern CNNs (§5.3), and (iv) yields improvements in ImageNet [10] top-1 error of $\sim 1 - 2$ percentage points (§6). We consistently observe these improvements across a wide spectrum of model complexities (from 1G flops to 36G flops) and dataset scales (ImageNet-1k to ImageNet-21k). + +These results show that injecting some convolutional inductive bias into ViTs can be beneficial under commonly studied settings. We did not observe evidence that the hard locality constraint in early layers hampers the representational capacity of the network, as might be feared [9]. In fact we observed the opposite, as ImageNet results improve even with larger-scale models and larger-scale data when using a convolution stem. Moreover, under carefully controlled comparisons, we find that ViTs are only able to surpass state-of-the-art CNNs when equipped with a convolutional stem (§6). + +We conjecture that restricting convolutions in ViT to early visual processing may be a crucial design choice that strikes a balance between (hard) inductive biases and the representation learning ability of transformer blocks. Evidence comes by comparison to the “hybrid ViT” presented in [13], which uses 40 convolutional layers (most of a ResNet-50) and shows no improvement over the default ViT. This perspective resonates with the findings of [9], who observe that early transformer blocks prefer to learn more local attention patterns than later blocks. Finally we note that exploring the design of hybrid CNN/ViT models is not a goal of this work; rather we demonstrate that simply using a minimal convolutional stem with ViT is sufficient to dramatically change its optimization behavior. + +In summary, the findings presented in this paper lead us to recommend using a standard, lightweight convolutional stem for ViT models in the analyzed dataset scale and model complexity spectrum as a more robust and higher performing architectural choice compared to the original ViT model design. + +# 2 Related Work + +Convolutional neural networks (CNNs). The breakthrough performance of the AlexNet [23] CNN [15, 24] on ImageNet classification [10] transformed the field of recognition, leading to the development of higher performing architectures, e.g., [19, 36, 37, 48], and scalable training methods [16, 21]. These architectures are now core components in object detection (e.g., [34]), instance segmentation (e.g., [18]), and semantic segmentation (e.g., [26]). CNNs are typically trained with stochastic gradient descent (SGD) and are widely considered to be easy to optimize. + +Self-attention in vision models. Transformers [43] are revolutionizing natural language processing by enabling scalable training. Transformers use multi-headed self-attention, which performs global information processing and is strictly more general than convolution [6]. Wang et al. [46] show that (single-headed) self-attention is a form of non-local means [2] and that integrating it into a ResNet [19] improves several tasks. Ramachandran et al. [32] explore this direction further with stand-alone self-attention networks for vision. They report difficulties in designing an attention-based network stem and present a bespoke solution that avoids convolutions. In contrast, we demonstrate the benefits of a convolutional stem. Zhao et al. [53] explore a broader set of self-attention operations with hard-coded locality constraints, more similar to standard CNNs. + +Vision transformer (ViT). Dosovitskiy et al. [13] apply a transformer encoder to image classification with minimal vision-specific modifications. As the counterpart of input token embeddings, they partition the input image into, e.g., $1 6 \times 1 6$ pixel, non-overlapping patches and linearly project them to the encoder’s input dimension. They report lackluster results when training on ImageNet-1k, but demonstrate state-of-the-art transfer learning when using large-scale pretraining data. ViTs are sensitive to many details of the training recipe, e.g., they benefit greatly from AdamW [27] compared to SGD and require careful learning rate and weight decay selection. ViTs are generally considered to be difficult to optimize compared to CNNs (e.g., see [13, 41, 42]). Further evidence of challenges comes from Chen et al. [4] who report ViT optimization instability in self-supervised learning (unlike with CNNs), and find that freezing the patchify stem at its random initialization improves stability. + +ViT improvements. ViTs are gaining rapid interest in part because they may offer a novel direction away from CNNs. Touvron et al. [41] show that with more regularization and stronger data augmentation ViT models achieve competitive accuracy on ImageNet-1k alone (cf . [13]). Subsequently, works concurrent with our own explore numerous other ViT improvements. Dominant themes include multi-scale networks [14, 17, 25, 45, 50], increasing depth [42], and locality priors [5, 9, 17, 47, 49]. In [9], d’Ascoli et al. modify multi-head self-attention with a convolutional bias at initialization and show that this prior improves sample efficiency and ImageNet accuracy. Resonating with our work, [5, 17, 47, 49] present models with convolutional stems, but do not analyze optimizability (our focus). + +Discussion. Unlike the concurrent work on locality priors in ViT, our focus is studying optimizability under minimal ViT modifications in order to derive crisp conclusions. Our perspective brings several novel observations: by adding only ${ \sim } 5 $ convolutions to the stem, ViT can be optimized well with either AdamW or SGD $_ { c f }$ . all prior works use AdamW to avoid large drops in accuracy [41]), it becomes less sensitive to the specific choice of learning rate and weight decay, and training converges faster. We also observe a consistent improvement in ImageNet top-1 accuracy across a wide spectrum of model complexities (1G flops to 36G flops) and dataset scales (ImageNet-1k to ImageNet-21k). These results suggest that a (hard) convolutional bias early in the network does not compromise representational capacity, as conjectured in [9], and is beneficial within the scope of this study. + +# 3 Vision Transformer Architectures + +Next, we review vision transformers [13] and describe the convolutional stems used in our work. + +The vision transformer (ViT). ViT first partitions an input image into non-overlapping $p { \times } p$ patches and linearly projects each patch to a $d$ -dimensional feature vector using a learned weight matrix. A patch size of $p = 1 6$ and an image size of $2 2 4 \times 2 2 4$ are typical. The resulting patch embeddings (plus positional embeddings and a learned classification token embedding) are processed by a standard transformer encoder [43, 44] followed by a classification head. Using common network nomenclature, we refer to the portion of ViT before the transformer blocks as the network’s stem. ViT’s stem is a + +
modelref model|hidden MLP sizemultnum headsnum blocksflops (B)params (M)acts (M)time (min)
ViTp-1GF~ViT-T19233121.14.85.52.6
ViTp-4GF~ViT-S38436123.918.511.13.8
ViTp-18GF=ViT-B7684121217.586.724.011.5
ViTp-36GFViT-L10244161435.9178.437.318.8
+ +
modelhidden sizeMLP multnum heads blocksnumflops (B)params (M)acts (M)time (min)
ViTc-1GF19233111.14.65.72.7
ViTc-4GF38436114.017.811.33.9
ViTc-18GF7684121117.781.624.111.4
ViTc-36GF10244161335.0167.836.718.6
+ +Table 1: Model definitions: Left: Our $\mathrm { V i T } _ { P }$ models at various complexities, which use the original patchify stem and closely resemble the original ViT models [13]. To facilitate comparisons with CNNs, we modify the original ViT-Tiny, -Small, -Base, -Large models to obtain models at 1GF, 4GF, 18GF, and 36GF, respectively. The modifications are indicated in blue and include reducing the MLP multiplier from $4 \times$ to $3 \times$ for the 1GF and 4GF models, and reducing the number of transformer blocks from 24 to 14 for the 36GF model. Right: Our $\mathrm { V i T } _ { C }$ models at various complexities that use the convolutional stem. The only additional modification relative to the corresponding $\mathrm { V i T } _ { P }$ models is the removal of 1 transformer block to compensate for the increased flops of the convolutional stem. We show complexity measures for all models (flops, parameters, activations, and epoch training time on ImageNet-1k); the corresponding $\mathrm { V i T } _ { P }$ and $\mathrm { V i T } _ { C }$ models match closely on all metrics. + +specific case of convolution (stride- $p$ , $p { \times } p$ kernel), but we will refer to it as the patchify stem and reserve the terminology of convolutional stem for stems with a more conventional CNN design with multiple layers of overlapping convolutions (i.e., with stride smaller than the kernel size). + +$\mathbf { V i T } _ { P }$ models. Prior work proposes ViT models of various sizes, such as ViT-Tiny, ViT-Small, ViT-Base, etc. [13, 41]. To facilitate comparisons with CNNs, which are typically standardized to 1 gigaflop (GF), 2GF, 4GF, 8GF, etc., we modify the original ViT models to obtain models at about these complexities. Details are given in Table 1 (left). For easier comparison with CNNs of similar flops, and to avoid subjective size names, we refer the models by their flops, e.g., $\mathrm { V i T } _ { P }$ -4GF in place of ViT-Small. We use the $P$ subscript to indicate that these models use the original patchify stem. + +Convolutional stem design. We adopt a typical minimalist convolutional stem design by stacking $3 { \times } 3$ convolutions [36], followed by a single $1 \times 1$ convolution at the end to match the $d$ -dimensional input of the transformer encoder. These stems quickly downsample a $2 2 4 \times 2 2 4$ input image using overlapping strided convolutions to $1 4 \times 1 4$ , matching the number of inputs created by the standard patchify stem. We follow a simple design pattern: all $3 { \times } 3$ convolutions either have stride 2 and double the number of output channels or stride 1 and keep the number of output channels constant. We enforce that the stem accounts for approximately the computation of one transformer block of the corresponding model so that we can easily control for flops by removing one transformer block when using the convolutional stem instead of the patchify stem. Our stem design was chosen to be purposefully simple and we emphasize that it was not designed to maximize model accuracy. + +$\mathbf { V i T } _ { C }$ models. To form a ViT model with a convolutional stem, we simply replace the patchify stem with its counterpart convolutional stem and remove one transformer block to compensate for the convolutional stem’s extra flops (see Figure 1). We refer to the modified ViT with a convolutional stem as $\mathrm { V i T } _ { C }$ . Configurations for $\mathrm { V i T } _ { C }$ at various complexities are given in Table 1 (right); corresponding $\mathrm { V i T } _ { P }$ and $\mathrm { V i T } _ { C }$ models match closely on all complexity metrics including flops and runtime. + +Convolutional stem details. Our convolutional stem designs use four, four, and six $3 { \times } 3$ convolutions for the 1GF, 4GF, and 18GF models, respectively. The output channels are [24, 48, 96, 192], [48, 96, 192, 384], and [64, 128, 128, 256, 256, 512], respectively. All $3 { \times } 3$ convolutions are followed by batch norm (BN) [21] and then ReLU [29], while the final $1 \times 1$ convolution is not, to be consistent with the original patchify stem. Eventually, matching stem flops to transformer block flops results in an unreasonably large stem, thus $\mathrm { V i T } _ { C }$ -36GF uses the same stem as $\mathrm { V i T } _ { C }$ -18GF. + +Convolutions in ViT. Dosovitskiy et al. [13] also introduced a “hybrid ViT” architecture that blends a modified ResNet [19] (BiT-ResNet [22]) with a transformer encoder. In their hybrid model, the patchify stem is replaced by a partial BiT-ResNet-50 that terminates at the output of the conv4 stage or the output of an extended conv3 stage. These image embeddings replace the standard patchify stem embeddings. This partial BiT-ResNet-50 stem is deep, with 40 convolutional layers. In this work, we explore lightweight convolutional stems that consist of only 5 to 7 convolutions in total, instead of the 40 used by the hybrid ViT. Moreover, we emphasize that the goal of our work is not to explore the hybrid ViT design space, but rather to study the optimizability effects of simply replacing the patchify stem with a minimal convolutional stem that follows standard CNN design practices. + +# 4 Measuring Optimizability + +It has been noted in the literature that ViT models are challenging to optimize, e.g., they may achieve only modest performance when trained on a mid-size dataset (ImageNet-1k) [13], are sensitive to data augmentation [41] and optimizer choice [41], and may perform poorly when made deeper [42]. We empirically observed the general presence of such difficulties through the course of our experiments and informally refer to such optimization characteristics collectively as optimizability. + +Models with poor optimizability can yield very different results when hyperparameters are varied, which can lead to seemingly bizarre observations, e.g., removing erasing data augmentation [54] causes a catastrophic drop in ImageNet accuracy in [41]. Quantitative metrics to measure optimizability are needed to allow for more robust comparisons. In this section, we establish the foundations of such comparisons; we extensively test various models using these optimizability measures in $\ S 5$ . + +Training length stability. Prior works train ViT models for lengthy schedules, e.g., 300 to 400 epochs on ImageNet is typical (at the extreme, [17] trains models for 1000 epochs), since results at a formerly common 100-epoch schedule are substantially worse ( $2 \%$ lower top-1 accuracy, see $\begin{array} { r l } { \ S } & { { } \} } \end{array}$ . In the context of ImageNet, we define top-1 accuracy at 400 epochs as an approximate asymptotic result, i.e., training for longer will not meaningfully improve top-1 accuracy, and we compare it to the accuracy of models trained for only 50, 100, or 200 epochs. We define training length stability as the gap to asymptotic accuracy. Intuitively, it’s a measure of convergence speed. Models that converge faster offer obvious practical benefits, especially when training many model variants. + +Optimizer stability. Prior works use AdamW [27] to optimize ViT models from random initialization. Results of SGD are not typically presented and we are only aware of Touvron et al. [41]’s report of a dramatic $\sim 7 \%$ drop in ImageNet top-1 accuracy. In contrast, widely used CNNs, such as ResNets, can be optimized equally well with either SGD or AdamW (see $\ S 5 . 2 )$ and SGD (always with momentum) is typically used in practice. SGD has the practical benefit of having fewer hyperparameters (e.g., tuning AdamW’s $\beta _ { 2 }$ can be important [3]) and requiring $50 \%$ less optimizer state memory, which can ease scaling. We define optimizer stability as the accuracy gap between AdamW and SGD. Like training length stability, we use optimizer stability as a proxy for the ease of optimization of a model. + +Hyperparameter $( l r , w d )$ stability. Learning rate $( l r )$ and weight decay (wd) are among the most important hyperparameters governing optimization with SGD and AdamW. New models and datasets often require a search for their optimal values as the choice can dramatically affect results. It is desirable to have a model and optimizer that yield good results for a wide range of learning rate and weight decay values. We will explore this hyperparameter stability by comparing the error distribution functions (EDFs) [30] of models trained with various choices of $l r$ and $w d$ . In this setting, to create an EDF for a model we randomly sample values of $l r$ and wd and train the model accordingly. Distributional estimates, like those provided by EDFs, give a more complete view of the characteristics of models that point estimates cannot reveal [30, 31]. We will review EDFs in $\ S$ . + +Peak performance. The maximum possible performance of each model is the most commonly used metric in previous literature and it is often provided without carefully controlling training details such as data augmentations, regularization methods, number of epochs, and $l r$ , wd tuning. To make more robust comparisons, we define peak performance as the result of a model at 400 epochs using its best-performing optimizer and parsimoniously tuned $l r$ and $w d$ values (details in $\ S 6$ ), while fixing justifiably good values for all other variables that have a known impact on training. Peak performance results for ViTs and CNNs under these carefully controlled training settings are presented in $\ S 6$ . + +# 5 Stability Experiments + +In this section we test the stability of ViT models with the original patchify $( P )$ stem vs. the convolutional $( C )$ stem defined in $\ S$ . For reference, we also train RegNetY [12, 31], a state-of-the-art CNN that is easy to optimize and serves as a reference point for good stability. + +We conduct experiments using ImageNet-1k [10]’s standard training and validation sets, and report top-1 error. Following [12], for all results, we carefully control training settings and we use a minimal set of data augmentations that still yields strong results, for details see $\ S$ . In this section, unless noted, for each model we use the optimal $l r$ and $w d$ found under a 50 epoch schedule (see Appendix). + +![](images/1b817452fed13ecd8d39700f88900c771e3a9e3f6dfc8bdc649446f86b908a32.jpg) +Figure 2: Training length stability: We train 9 models for 50 to 400 epochs on ImageNet-1k and plot the ∆top-1 error to the 400 epoch result for each. $\mathrm { V i T } _ { C }$ demonstrates faster convergence than $\mathrm { V i T } _ { P }$ across the model complexity spectrum, and helps close the gap to CNNs (represented by RegNetY). + +![](images/43debc0650f8f893da5ed8e572faf39672229881bcf0855f86dff3d9306f34f9.jpg) +Figure 3: Optimizer stability: We train each model for 50 to 400 epochs with AdamW (upward triangle $\blacktriangle$ ) and SGD (downward triangle $\blacktriangledown$ ). For the baseline $\mathrm { V i T } _ { P }$ , SGD yields significantly worse results than AdamW. In contrast, $\mathrm { V i T } _ { C }$ and $\mathrm { R e g N e t Y }$ models exhibit a much smaller gap between SGD and AdamW across all settings. Note that for long schedules, $\mathrm { V i T } _ { P }$ often fails to converge with SGD (i.e., loss goes to NaN), in such cases we copy the best results from a shorter schedule of the same model (and show the results via a dashed line). + +# 5.1 Training Length Stability + +We first explore how rapidly networks converge to their asymptotic error on ImageNet-1k, i.e., the highest possible accuracy achievable by training for many epochs. We approximate asymptotic error as a model’s error using a 400 epoch schedule based on observing diminishing returns from 200 to 400. We consider a grid of 24 experiments for ViT: $\{ P , C \}$ stems $\times \ \{ 1 , 4 , 1 8 \}$ GF model sizes $\times$ {50, 100, 200, 400} epochs. For reference we also train RegNetY at $\{ 1 , 4 , 1 6 \}$ GF. We use the best optimizer choice for each model (AdamW for ViT models and SGD for RegNetY models). + +Results. Figure 2 shows the absolute error deltas (∆top-1) between 50, 100, and 200 epoch schedules and asymptotic performance (at 400 epochs). $\mathrm { V i T } _ { C }$ demonstrates faster convergence than $\mathrm { V i T } _ { P }$ across the model complexity spectrum, and closes much of the gap to the rate of CNN convergence. The improvement is most significant in the shortest training schedule (50 epoch), e.g., $\mathrm { V i T } _ { P }$ -1GF has a $10 \%$ error delta, while $\mathrm { V i T } _ { C }$ -1GF reduces this to about $6 \%$ . This opens the door to applications that execute a large number of short-scheduled experiments, such as neural architecture search. + +# 5.2 Optimizer Stability + +We next explore how well AdamW and SGD optimize ViT models with the two stem types. We consider the following grid of $4 8 \ \mathrm { V i T }$ experiments: $\{ P , C \}$ stems × {1, 4, 18} GF sizes $\times$ {50, 100, 200, 400} epochs $\times$ {AdamW, SGD} optimizers. As a reference, we also train 24 RegNetY baselines, one for each complexity regime, epoch length, and optimizer. + +Results. Figure 3 shows the results. As a baseline, RegNetY models show virtually no gap when trained using either SGD or AdamW (the difference ${ \sim } 0 . 1 { - } 0 . 2 \%$ is within noise). On the other hand, $V i T _ { P }$ models suffer a dramatic drop when trained with SGD across all settings (of up to $10 \%$ for larger models and longer training schedules). With a convolutional stem, $\mathrm { V i T } _ { C }$ models exhibit much smaller error gaps between SGD and AdamW across all training schedules and model complexities, including in larger models and longer schedules, where the gap is reduced to less than $0 . 2 \%$ . In other words, both RegNetY and $\mathrm { V i T } _ { C }$ can be easily trained via either SGD or AdamW, but $\mathrm { V i T } _ { P }$ cannot. + +![](images/aba9b861e8efcb57d826b09c432be1e0382b373a7817ab870f1aaced18950672.jpg) +Figure 4: Hyperparameter stability for AdamW $_ { l r }$ and ${ \pmb w d }$ ): For each model, we train 64 instances of the model for 50 epochs each with a random1.0 $l r$ and $w d$ (in a fixed width interval around the optimal value for each model). Top: Scatterplots of the $l r$ , $w d$ , and $l r$ ·wd for three 4GF models. Vertical bars indicate optimal $l r , w d$ , and $l r \cdot w d$ values for each model. Bottom: For each model, we generate an EDF of the errors by plotting the cumulative distribution of the 0.6 $\Delta$ top-1 errors ( $\Delta$ to the optimal error for each model). A steeper EDF indicates better stability to 0.4 1GF models 4G $l r$ and odels $w d$ variation. $\mathrm { V i T } _ { C }$ significantly18GF models improves the stability over the baseline0.2 ViTC $\mathrm { V i T } _ { P }$ across the model complexity spectrum, and matches orViTC ViTC even outperforms the stability of the CNN model (RegNetY).0.0 RegNetY R + +![](images/be011ecde540fa81014ef4ee685adfdc4ac01205383316fdb5d9823fcc557d92.jpg) +Figure 5: Hyperparameter stability for SGD $_ { L r }$ and ${ \pmb w d }$ ): We repeat the setup from Figure 4 using SGD instead of AdamW. The stability improvement of $\mathrm { V i T } _ { C }$ over the baseline $\mathrm { V i T } _ { P }$ is even larger than with AdamW. $E . g$ ., ${ \sim } 6 0 \%$ of $\mathrm { V i T } _ { C }$ -18GF models are within $4 \%$ $\Delta$ top-1 error of the best result, while less than $20 \%$ of $\mathrm { V i T } _ { P }$ -18GF models are (in fact most $\mathrm { V i T } _ { P }$ -18GF runs don’t converge). + +# 5.3 Learning Rate and Weight Decay Stability + +Next, we characterize how sensitive different model families are to changes in learning rate $( l r )$ and weight decay $( w d )$ under both AdamW and SGD optimizers. To quantify this, we make use of error distribution functions (EDFs) [30]. An EDF is computed by sorting a set of results from low-to-high error and plotting the cumulative proportion of results as error increases, see [30] for details. In particular, we generate EDFs of a model as a function of $l r$ and $w d$ . The intuition is that if a model is robust to these hyperparameter choices, the EDF will be steep (all models will perform similarly), while if the model is sensitive, the EDF will be shallow (performance will be spread out). + +We test 6 ViT models $( \{ P , C \} \times \{ 1 , 4 , 1 8 \} \mathrm { G F ) }$ and 3 RegNetY models ({1, 4, 16} GF). For each model and each optimizer, we compute an EDF by randomly sampling 64 $( l r , w d )$ pairs with learning rate and weight decay sampled in a fixed width interval around their optimal values for that model and optimizer (see the Appendix for sampling details). Rather than plotting absolute error in the EDF, we plot $\Delta$ top-1 error between the best result (obtained with the optimal $l r$ and $w d$ ) and the observed result. Due to the large number of models, we train each for only 50 epochs. + +Results. Figure 4 shows scatterplots and EDFs for models trained by AdamW. Figure 5 shows SGD results. In all cases we see that $\mathrm { V i T } _ { C }$ significantly improves the $l r$ and $w d$ stability over $\mathrm { V i T } _ { P }$ for both optimizers. This indicates that the $l r$ and $w d$ are easier to optimize for $\mathrm { V i T } _ { C }$ than for $\mathrm { V i T } _ { P }$ . + +# 5.4 Experimental Details + +In all experiments we train with a single half-period cosine learning rate decay schedule with a 5-epoch linear learning rate warm-up [16]. We use a minibatch size of 2048. Crucially, weight decay is not applied to the gain factors found in normalization layers nor to bias parameters anywhere in the model; we found that decaying these parameters can dramatically reduce top-1 accuracy for small models and short schedules. For inference, we use an exponential moving average (EMA) of the model weights (e.g., [8]). The $l r$ and $w d$ used in this section are reported in the Appendix. Other hyperparameters use defaults: SGD momentum is 0.9 and AdamW’s $\beta _ { 1 } = 0 . 9$ and $\beta _ { 2 } = 0 . 9 9 9$ . + +Regularization and data augmentation. We use a simplified training recipe compared to recent work such as DeiT [41], which we found to be equally effective across a wide spectrum of model complexities and dataset scales. We use AutoAugment [7], mixup [52] $\langle \alpha = 0 . 8 \rangle$ ), CutMix [51] $\alpha = 1 . 0$ ), and label smoothing [38] $\epsilon = 0 . 1$ ). We prefer this setup because it is similar to common settings for CNNs (e.g., [12]) except for stronger mixup and the addition of CutMix (ViTs benefit from both, while CNNs are not harmed). We compare this recipe to the one used for DeiT models in the Appendix, and observe that our setup provides substantially faster training convergence likely because we remove repeating augmentation [1, 20], which is known to slow training [1]. + +# 6 Peak Performance + +A model’s peak performance is the most commonly used metric in network design. It represents what is possible with the best-known-so-far settings and naturally evolves over time. Making fair comparisons between different models is desirable but fraught with difficulty. Simply citing results from prior work may be negatively biased against that work as it was unable to incorporate newer, yet applicable improvements. Here, we strive to provide a fairer comparison between state-of-the-art CNNs, $\mathrm { V i T } _ { P }$ , and $\mathrm { V i T } _ { C }$ . We identify a set of factors and then strike a pragmatic balance between which subset to optimize for each model vs. which subset share a constant value across all models. + +In our comparison, all models share the same epochs (400), use of model weight EMA, and set of regularization and augmentation methods (as specified in $\ S \quad ,$ . All CNNs are trained with SGD with $l r$ of 2.54 and wd of $2 . 4 \mathrm { e } { - 5 }$ ; we found this single choice worked well across all models, as similarly observed in [12]. For all ViT models we found AdamW with a $l r / w d$ of $1 . 0 \mathrm { { e - } 3 / 0 . 2 4 }$ was effective, except for the 36GF models. For these larger models we tested a few settings and found a $l r / w d$ of $6 . 0 \mathrm { { e } - 4 / 0 . 2 8 }$ to be more effective for both $\mathrm { V i T } _ { P ^ { - 3 6 } } \mathrm { G F }$ and $\mathrm { V i T } _ { C }$ -36GF models. For training and inference, ViTs use $2 2 4 \times 2 2 4$ resolution (we do not fine-tune at higher resolutions), while the CNNs use (often larger) optimized resolutions specified in [12, 39]. Given this protocol, we compare $\mathrm { V i T } _ { P }$ , $\mathrm { V i T } _ { C }$ , and CNNs across a spectrum of model complexities (1GF to 36GF) and dataset scales (directly training on ImageNet-1k vs. pretraining on ImageNet-21k and then fine-tuning on ImageNet-1k). + +Results. Figure 6 shows a progression of results. Each plot shows ImageNet-1k val top-1 error vs. ImageNet-1k epoch training time.1 The left plot compares several state-of-the-art CNNs. RegNetY and RegNetZ [12] achieve similar results across the training speed spectrum and outperform EfficientNets [39]. Surprisingly, ResNets [19] are highly competitive at fast runtimes, showing that under a fairer comparison these years-old models perform substantially better than often reported (cf . [39]). + +The middle plot compares two representative CNNs (ResNet and RegNetY) to ViTs, still using only ImageNet-1k training. The baseline $\mathrm { V i T } _ { P }$ underperforms RegNetY across the entire model complexity spectrum. To our surprise, $V i T _ { P }$ also underperforms ResNets in this regime. $\mathrm { V i T } _ { C }$ is more competitive and outperforms CNNs in the middle-complexity range. + +The right plot compares the same models but with ImageNet-21k pretraining (details in Appendix). In this setting ViT models demonstrates a greater capacity to benefit from the larger-scale data: now $\mathrm { V i T } _ { C }$ strictly outperforms both $\mathrm { V i T } _ { P }$ and RegNetY. Interestingly, the original $V i T _ { P }$ does not outperform a state-of-the-art CNN even when trained on this much larger dataset. Numerical results are presented in Table 2 for reference to exact values. This table also highlights that flop counts are not significantly correlated with runtime, but that activations are (see Appendix for more details), as also observed by [12]. $E . g .$ ., EfficientNets are slow relative to their flops while ViTs are fast. + +![](images/294e2fe483ed1695691c2b1470b6210c847eef9d58f017019c1c1cfd8b31695c.jpg) +Figure 6: Peak performance (epoch training time vs. ImageNet-1k val top-1 error): Results of a fair, controlled comparison of $\mathrm { V i T } _ { P }$ , $\mathrm { V i T } _ { C }$ , and CNNs. Each curve corresponds to a model complexity sweep resulting in a training speed spectrum (minutes per ImageNet-1k epoch). Left: State-of-the-art CNNs. Equipped with a modern training recipe, ResNets are highly competitive in the faster regime, while RegNetY and Z perform similarly, and better than EfficientNets. Middle: Selected CNNs compared to ViTs. With access to only ImageNet-1k training data, RegNetY and ResNet outperform $\mathrm { V i T } _ { P }$ across the board. $\mathrm { V i T } _ { C }$ is more competitive with CNNs. Right: Pretraining on ImageNet-21k improves the ViT models more than the CNNs, making $\mathrm { V i T } _ { P }$ competitive. Here, the proposed $\mathrm { V i T } _ { C }$ outperforms all other models across the full training speed spectrum. +Table 2: Peak performance (grouped by model family): Model complexity and validation top-1 error at 100, 200, and 400 epoch schedules on ImageNet-1k, and the top-1 error after pretraining on ImageNet-21k (IN 21k) and fine-tuning on ImageNet-1k. This table serves as reference for the results shown in Figure 6. Blue numbers: best model trainable under 20 minutes per ImageNet-1k epoch. Batch sizes and training times are reported normalized to 8 32GB Volta GPUs (see Appendix). Additional results on the ImageNet-V2 [33] test set are presented in the Appendix. + +
modelflops params actstime batch|epochsIN 21kmodel (B)flops paramstime batch|sizeepochsIN200400 21k
(B)(M)(M) (min)size100200400(M)(min)100
ResNet-504.125.611.33.4204822.521.220.721.6EffNet-B21.09.1(M) 13.85.9204821.4 20.519.9-
ResNet-1017.844.516.45.5204820.319.118.519.2EffNet-B44.419.349.519.451218.517.817.5
ResNet-15211.560.222.87.7204819.518.417.718.2EffNet-B510.330.498.9 41.725617.3317.017.0
ResNet-20015.064.732.310.7102419.518.317.617.7
RegNetY-1GF1.09.66.23.1204823.222.221.5-ViTp-1GF1.14.85.52.6204833.229.727.7
RegNetY-4GF4.122.414.57.6204819.418.317.918.4ViTp-4GF3.918.5111.13.8204823.3 20.819.620.6
RegNetY-16GF15.572.330.717.9102417.116.416.315.6ViTp-18GF17.586.624.011.5102419.918.417.916.4
RegNetY-32GF31.1128.646.235.151216.215.915.915.0ViTp-36GF35.9178.437.318.851219.918.818.215.1
RegNetZ-1GF1.011.08.84.2204820.8 20.219.6-ViTc-1GF1.14.65.72.7204828.626.124.7-
RegNetZ-4GF4.028.124.312.9102417.4 16.916.6ViTc-4GF4.017.811.33.9)204820.919.218.618.8
RegNetZ-16GF16.095.351.332.051216.0 15.915.9ViTc-18GF17.781.624.111.4102418.4 17.517.015.1
RegNetZ-32GF32.0175.179.6 55.325616.3 16.216.1ViTc-36GF35.0167.8 36.718.651218.3 17.616.814.2
+ +These results verify that $\mathrm { V i T } _ { C }$ ’s convolutional stem improves not only optimization stability, as seen in the previous section, but also peak performance. Moreover, this benefit can be seen across the model complexity and dataset scale spectrum. Perhaps surprisingly, given the recent excitement over ViT, we find that $\mathrm { V i T } _ { P }$ struggles to compete with state-of-the-art CNNs. We only observe improvements over CNNs when using both large-scale pretraining data and the proposed convolutional stem. + +# 7 Conclusion + +In this work we demonstrated that the optimization challenges of ViT models are linked to the largestride, large-kernel convolution in ViT’s patchify stem. The seemingly trivial change of replacing this patchify stem with a simple convolutional stem leads to a remarkable change in optimization behavior. With the convolutional stem, ViT (termed $\mathrm { V i T } _ { C }$ ) converges faster than the original ViT (termed $\mathrm { V i T } _ { P }$ ) (§5.1), trains well with either AdamW or SGD (§5.2), improves learning rate and weight decay stability (§5.3), and improves ImageNet top-1 error by ${ \sim } 1 { - } 2 \%$ (§6). These results are consistent across a wide spectrum of model complexities (1GF to 36GF) and dataset scales (ImageNet-1k to ImageNet-21k). Our results indicate that injecting a small dose of convolutional inductive bias into the early stages of ViTs can be hugely beneficial. Looking forward, we are interested in the theoretical foundation of why such a minimal architectural modification can have such large (positive) impact on optimizability. We are also interested in studying larger models. Our preliminary explorations into 72GF models reveal that the convolutional stem still improves top-1 error, however we also find that a new form of instability arises that causes training error to randomly spike, especially for $\mathrm { V i T } _ { C }$ . + +Acknowledgements. We thank Hervé Jegou, Hugo Touvron, and Kaiming He for valuable feedback. \ No newline at end of file diff --git a/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_content_list.json b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..d0a2ef035a315b89fa704e1fd5dcacd9c6f5024b --- /dev/null +++ b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_content_list.json @@ -0,0 +1,841 @@ +[ + { + "type": "text", + "text": "Early Convolutions Help Transformers See Better ", + "text_level": 1, + "bbox": [ + 197, + 122, + 802, + 147 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Tete Xiao1,2 Mannat Singh1 Eric Mintun1 Trevor Darrell2 Piotr Dollár1∗ Ross Girshick1∗ ", + "bbox": [ + 184, + 199, + 816, + 215 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1Facebook AI Research (FAIR) 2UC Berkeley ", + "bbox": [ + 326, + 228, + 676, + 243 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 279, + 535, + 295 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Vision transformer (ViT) models exhibit substandard optimizability. In particular, they are sensitive to the choice of optimizer (AdamW vs. SGD), optimizer hyperparameters, and training schedule length. In comparison, modern convolutional neural networks are easier to optimize. Why is this the case? In this work, we conjecture that the issue lies with the patchify stem of ViT models, which is implemented by a stride- $p p { \\times } p$ convolution $\\dot { p } = 1 6$ by default) applied to the input image. This large-kernel plus large-stride convolution runs counter to typical design choices of convolutional layers in neural networks. To test whether this atypical design choice causes an issue, we analyze the optimization behavior of ViT models with their original patchify stem versus a simple counterpart where we replace the ViT stem by a small number of stacked stride-two $3 { \\times } 3$ convolutions. While the vast majority of computation in the two ViT designs is identical, we find that this small change in early visual processing results in markedly different training behavior in terms of the sensitivity to optimization settings as well as the final model accuracy. Using a convolutional stem in ViT dramatically increases optimization stability and also improves peak performance (by ${ \\sim } 1 { - } 2 \\%$ top-1 accuracy on ImageNet-1k), while maintaining flops and runtime. The improvement can be observed across the wide spectrum of model complexities (from 1G to 36G flops) and dataset scales (from ImageNet-1k to ImageNet-21k). These findings lead us to recommend using a standard, lightweight convolutional stem for ViT models in this regime as a more robust architectural choice compared to the original ViT model design. ", + "bbox": [ + 233, + 314, + 766, + 603 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 635, + 310, + 652 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Vision transformer (ViT) models [13] offer an alternative design paradigm to convolutional neural networks (CNNs) [24]. ViTs replace the inductive bias towards local processing inherent in convolutions with global processing performed by multi-headed self-attention [43]. The hope is that this design has the potential to improve performance on vision tasks, akin to the trends observed in natural language processing [11]. While investigating this conjecture, researchers face another unexpected difference between ViTs and CNNs: ViT models exhibit substandard optimizability. ViTs are sensitive to the choice of optimizer [41] (AdamW [27] vs. SGD), to the selection of dataset specific learning hyperparameters [13, 41], to training schedule length, to network depth [42], etc. These issues render former training recipes and intuitions ineffective and impede research. ", + "bbox": [ + 174, + 669, + 825, + 794 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Convolutional neural networks, in contrast, are exceptionally easy and robust to optimize. Simple training recipes based on SGD, basic data augmentation, and standard hyperparameter values have been widely used for years [19]. Why does this difference exist between ViT and CNN models? In this paper we hypothesize that the issues lies primarily in the early visual processing performed by ViT. ViT “patchifies” the input image into $p { \\times } p$ non-overlapping patches to form the transformer encoder’s input set. This patchify stem is implemented as a stride- $p p \\times p$ convolution, with $p = 1 6$ as a default value. This large-kernel plus large-stride convolution runs counter to the typical design choices used in CNNs, where best-practices have converged to a small stack of stride-two $3 { \\times } 3$ kernels as the network’s stem (e.g., [30, 36, 39]). ", + "bbox": [ + 174, + 800, + 825, + 897 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/b91aae065046d45a4cf2660ee48625a319b82673ffafb868c9b5ca99235d35b4.jpg", + "image_caption": [ + "Figure 1: Early convolutions help transformers see better: We hypothesize that the substandard optimizability of ViT models compared to CNNs primarily arises from the early visual processing performed by its patchify stem, which is implemented by a non-overlapping stride- $p p { \\times } p$ convolution, with $p = 1 6$ by default. We minimally replace the patchify stem in ViT with a standard convolutional stem of only ${ \\sim } 5 $ convolutions that has approximately the same complexity as a single transformer block. We reduce the number of transformer blocks by one (i.e., $\\bar { L } - 1$ vs. $L$ ) to maintain parity in flops, parameters, and runtime. We refer to the resulting model as $\\mathrm { V i T } _ { C }$ and the original ViT as $\\mathrm { V i T } _ { P }$ . The vast majority of computation performed by these two models is identical, yet surprisingly we observe that $\\mathrm { V i T } _ { C }$ (i) converges faster, (ii) enables, for the first time, the use of either AdamW or SGD without a significant accuracy drop, (iii) shows greater stability to learning rate and weight decay choice, and (iv) yields improvements in ImageNet top-1 error allowing $\\mathrm { V i T } _ { C }$ to outperform state-of-the-art CNNs, whereas $\\mathrm { V i T } _ { P }$ does not. " + ], + "image_footnote": [], + "bbox": [ + 173, + 88, + 825, + 242 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 435, + 821, + 463 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To test this hypothesis, we minimally change the early visual processing of ViT by replacing its patchify stem with a standard convolutional stem consisting of only ${ \\sim } 5$ convolutions, see Figure 1. To compensate for the small addition in flops, we remove one transformer block to maintain parity in flops and runtime. We observe that even though the vast majority of the computation in the two ViT designs is identical, this small change in early visual processing results in markedly different training behavior in terms of the sensitivity to optimization settings as well as the final model accuracy. ", + "bbox": [ + 174, + 469, + 825, + 553 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In extensive experiments we show that replacing the ViT patchify stem with a more standard convolutional stem (i) allows ViT to converge faster (§5.1), (ii) enables, for the first time, the use of either AdamW or SGD without a significant drop in accuracy (§5.2), (iii) brings ViT’s stability w.r.t. learning rate and weight decay closer to that of modern CNNs (§5.3), and (iv) yields improvements in ImageNet [10] top-1 error of $\\sim 1 - 2$ percentage points (§6). We consistently observe these improvements across a wide spectrum of model complexities (from 1G flops to 36G flops) and dataset scales (ImageNet-1k to ImageNet-21k). ", + "bbox": [ + 174, + 559, + 825, + 656 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "These results show that injecting some convolutional inductive bias into ViTs can be beneficial under commonly studied settings. We did not observe evidence that the hard locality constraint in early layers hampers the representational capacity of the network, as might be feared [9]. In fact we observed the opposite, as ImageNet results improve even with larger-scale models and larger-scale data when using a convolution stem. Moreover, under carefully controlled comparisons, we find that ViTs are only able to surpass state-of-the-art CNNs when equipped with a convolutional stem (§6). ", + "bbox": [ + 174, + 662, + 825, + 746 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We conjecture that restricting convolutions in ViT to early visual processing may be a crucial design choice that strikes a balance between (hard) inductive biases and the representation learning ability of transformer blocks. Evidence comes by comparison to the “hybrid ViT” presented in [13], which uses 40 convolutional layers (most of a ResNet-50) and shows no improvement over the default ViT. This perspective resonates with the findings of [9], who observe that early transformer blocks prefer to learn more local attention patterns than later blocks. Finally we note that exploring the design of hybrid CNN/ViT models is not a goal of this work; rather we demonstrate that simply using a minimal convolutional stem with ViT is sufficient to dramatically change its optimization behavior. ", + "bbox": [ + 174, + 752, + 825, + 863 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In summary, the findings presented in this paper lead us to recommend using a standard, lightweight convolutional stem for ViT models in the analyzed dataset scale and model complexity spectrum as a more robust and higher performing architectural choice compared to the original ViT model design. ", + "bbox": [ + 176, + 869, + 825, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 89, + 321, + 106 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Convolutional neural networks (CNNs). The breakthrough performance of the AlexNet [23] CNN [15, 24] on ImageNet classification [10] transformed the field of recognition, leading to the development of higher performing architectures, e.g., [19, 36, 37, 48], and scalable training methods [16, 21]. These architectures are now core components in object detection (e.g., [34]), instance segmentation (e.g., [18]), and semantic segmentation (e.g., [26]). CNNs are typically trained with stochastic gradient descent (SGD) and are widely considered to be easy to optimize. ", + "bbox": [ + 174, + 126, + 825, + 209 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Self-attention in vision models. Transformers [43] are revolutionizing natural language processing by enabling scalable training. Transformers use multi-headed self-attention, which performs global information processing and is strictly more general than convolution [6]. Wang et al. [46] show that (single-headed) self-attention is a form of non-local means [2] and that integrating it into a ResNet [19] improves several tasks. Ramachandran et al. [32] explore this direction further with stand-alone self-attention networks for vision. They report difficulties in designing an attention-based network stem and present a bespoke solution that avoids convolutions. In contrast, we demonstrate the benefits of a convolutional stem. Zhao et al. [53] explore a broader set of self-attention operations with hard-coded locality constraints, more similar to standard CNNs. ", + "bbox": [ + 174, + 219, + 825, + 344 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Vision transformer (ViT). Dosovitskiy et al. [13] apply a transformer encoder to image classification with minimal vision-specific modifications. As the counterpart of input token embeddings, they partition the input image into, e.g., $1 6 \\times 1 6$ pixel, non-overlapping patches and linearly project them to the encoder’s input dimension. They report lackluster results when training on ImageNet-1k, but demonstrate state-of-the-art transfer learning when using large-scale pretraining data. ViTs are sensitive to many details of the training recipe, e.g., they benefit greatly from AdamW [27] compared to SGD and require careful learning rate and weight decay selection. ViTs are generally considered to be difficult to optimize compared to CNNs (e.g., see [13, 41, 42]). Further evidence of challenges comes from Chen et al. [4] who report ViT optimization instability in self-supervised learning (unlike with CNNs), and find that freezing the patchify stem at its random initialization improves stability. ", + "bbox": [ + 174, + 354, + 825, + 493 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "ViT improvements. ViTs are gaining rapid interest in part because they may offer a novel direction away from CNNs. Touvron et al. [41] show that with more regularization and stronger data augmentation ViT models achieve competitive accuracy on ImageNet-1k alone (cf . [13]). Subsequently, works concurrent with our own explore numerous other ViT improvements. Dominant themes include multi-scale networks [14, 17, 25, 45, 50], increasing depth [42], and locality priors [5, 9, 17, 47, 49]. In [9], d’Ascoli et al. modify multi-head self-attention with a convolutional bias at initialization and show that this prior improves sample efficiency and ImageNet accuracy. Resonating with our work, [5, 17, 47, 49] present models with convolutional stems, but do not analyze optimizability (our focus). ", + "bbox": [ + 174, + 503, + 826, + 614 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Discussion. Unlike the concurrent work on locality priors in ViT, our focus is studying optimizability under minimal ViT modifications in order to derive crisp conclusions. Our perspective brings several novel observations: by adding only ${ \\sim } 5 $ convolutions to the stem, ViT can be optimized well with either AdamW or SGD $_ { c f }$ . all prior works use AdamW to avoid large drops in accuracy [41]), it becomes less sensitive to the specific choice of learning rate and weight decay, and training converges faster. We also observe a consistent improvement in ImageNet top-1 accuracy across a wide spectrum of model complexities (1G flops to 36G flops) and dataset scales (ImageNet-1k to ImageNet-21k). These results suggest that a (hard) convolutional bias early in the network does not compromise representational capacity, as conjectured in [9], and is beneficial within the scope of this study. ", + "bbox": [ + 174, + 626, + 825, + 751 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Vision Transformer Architectures ", + "text_level": 1, + "bbox": [ + 174, + 770, + 488, + 787 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Next, we review vision transformers [13] and describe the convolutional stems used in our work. ", + "bbox": [ + 171, + 803, + 803, + 818 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The vision transformer (ViT). ViT first partitions an input image into non-overlapping $p { \\times } p$ patches and linearly projects each patch to a $d$ -dimensional feature vector using a learned weight matrix. A patch size of $p = 1 6$ and an image size of $2 2 4 \\times 2 2 4$ are typical. The resulting patch embeddings (plus positional embeddings and a learned classification token embedding) are processed by a standard transformer encoder [43, 44] followed by a classification head. Using common network nomenclature, we refer to the portion of ViT before the transformer blocks as the network’s stem. ViT’s stem is a ", + "bbox": [ + 174, + 827, + 825, + 911 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/3599e6fb185969911a28ae324a67963ed676830a0d957f351ca943e9dc0aad27.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
modelref model|hidden MLP sizemultnum headsnum blocksflops (B)params (M)acts (M)time (min)
ViTp-1GF~ViT-T19233121.14.85.52.6
ViTp-4GF~ViT-S38436123.918.511.13.8
ViTp-18GF=ViT-B7684121217.586.724.011.5
ViTp-36GFViT-L10244161435.9178.437.318.8
", + "bbox": [ + 173, + 85, + 506, + 150 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/79c844634d5f88ad843d0ccbedac33c38a9980eb6213fb6125e5349400d7d0fd.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
modelhidden sizeMLP multnum heads blocksnumflops (B)params (M)acts (M)time (min)
ViTc-1GF19233111.14.65.72.7
ViTc-4GF38436114.017.811.33.9
ViTc-18GF7684121117.781.624.111.4
ViTc-36GF10244161335.0167.836.718.6
", + "bbox": [ + 522, + 85, + 820, + 150 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Table 1: Model definitions: Left: Our $\\mathrm { V i T } _ { P }$ models at various complexities, which use the original patchify stem and closely resemble the original ViT models [13]. To facilitate comparisons with CNNs, we modify the original ViT-Tiny, -Small, -Base, -Large models to obtain models at 1GF, 4GF, 18GF, and 36GF, respectively. The modifications are indicated in blue and include reducing the MLP multiplier from $4 \\times$ to $3 \\times$ for the 1GF and 4GF models, and reducing the number of transformer blocks from 24 to 14 for the 36GF model. Right: Our $\\mathrm { V i T } _ { C }$ models at various complexities that use the convolutional stem. The only additional modification relative to the corresponding $\\mathrm { V i T } _ { P }$ models is the removal of 1 transformer block to compensate for the increased flops of the convolutional stem. We show complexity measures for all models (flops, parameters, activations, and epoch training time on ImageNet-1k); the corresponding $\\mathrm { V i T } _ { P }$ and $\\mathrm { V i T } _ { C }$ models match closely on all metrics. ", + "bbox": [ + 173, + 161, + 825, + 300 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "specific case of convolution (stride- $p$ , $p { \\times } p$ kernel), but we will refer to it as the patchify stem and reserve the terminology of convolutional stem for stems with a more conventional CNN design with multiple layers of overlapping convolutions (i.e., with stride smaller than the kernel size). ", + "bbox": [ + 176, + 316, + 823, + 358 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$\\mathbf { V i T } _ { P }$ models. Prior work proposes ViT models of various sizes, such as ViT-Tiny, ViT-Small, ViT-Base, etc. [13, 41]. To facilitate comparisons with CNNs, which are typically standardized to 1 gigaflop (GF), 2GF, 4GF, 8GF, etc., we modify the original ViT models to obtain models at about these complexities. Details are given in Table 1 (left). For easier comparison with CNNs of similar flops, and to avoid subjective size names, we refer the models by their flops, e.g., $\\mathrm { V i T } _ { P }$ -4GF in place of ViT-Small. We use the $P$ subscript to indicate that these models use the original patchify stem. ", + "bbox": [ + 174, + 369, + 825, + 452 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Convolutional stem design. We adopt a typical minimalist convolutional stem design by stacking $3 { \\times } 3$ convolutions [36], followed by a single $1 \\times 1$ convolution at the end to match the $d$ -dimensional input of the transformer encoder. These stems quickly downsample a $2 2 4 \\times 2 2 4$ input image using overlapping strided convolutions to $1 4 \\times 1 4$ , matching the number of inputs created by the standard patchify stem. We follow a simple design pattern: all $3 { \\times } 3$ convolutions either have stride 2 and double the number of output channels or stride 1 and keep the number of output channels constant. We enforce that the stem accounts for approximately the computation of one transformer block of the corresponding model so that we can easily control for flops by removing one transformer block when using the convolutional stem instead of the patchify stem. Our stem design was chosen to be purposefully simple and we emphasize that it was not designed to maximize model accuracy. ", + "bbox": [ + 174, + 463, + 825, + 602 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$\\mathbf { V i T } _ { C }$ models. To form a ViT model with a convolutional stem, we simply replace the patchify stem with its counterpart convolutional stem and remove one transformer block to compensate for the convolutional stem’s extra flops (see Figure 1). We refer to the modified ViT with a convolutional stem as $\\mathrm { V i T } _ { C }$ . Configurations for $\\mathrm { V i T } _ { C }$ at various complexities are given in Table 1 (right); corresponding $\\mathrm { V i T } _ { P }$ and $\\mathrm { V i T } _ { C }$ models match closely on all complexity metrics including flops and runtime. ", + "bbox": [ + 174, + 612, + 823, + 681 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Convolutional stem details. Our convolutional stem designs use four, four, and six $3 { \\times } 3$ convolutions for the 1GF, 4GF, and 18GF models, respectively. The output channels are [24, 48, 96, 192], [48, 96, 192, 384], and [64, 128, 128, 256, 256, 512], respectively. All $3 { \\times } 3$ convolutions are followed by batch norm (BN) [21] and then ReLU [29], while the final $1 \\times 1$ convolution is not, to be consistent with the original patchify stem. Eventually, matching stem flops to transformer block flops results in an unreasonably large stem, thus $\\mathrm { V i T } _ { C }$ -36GF uses the same stem as $\\mathrm { V i T } _ { C }$ -18GF. ", + "bbox": [ + 174, + 693, + 825, + 775 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Convolutions in ViT. Dosovitskiy et al. [13] also introduced a “hybrid ViT” architecture that blends a modified ResNet [19] (BiT-ResNet [22]) with a transformer encoder. In their hybrid model, the patchify stem is replaced by a partial BiT-ResNet-50 that terminates at the output of the conv4 stage or the output of an extended conv3 stage. These image embeddings replace the standard patchify stem embeddings. This partial BiT-ResNet-50 stem is deep, with 40 convolutional layers. In this work, we explore lightweight convolutional stems that consist of only 5 to 7 convolutions in total, instead of the 40 used by the hybrid ViT. Moreover, we emphasize that the goal of our work is not to explore the hybrid ViT design space, but rather to study the optimizability effects of simply replacing the patchify stem with a minimal convolutional stem that follows standard CNN design practices. ", + "bbox": [ + 174, + 786, + 825, + 911 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 Measuring Optimizability ", + "text_level": 1, + "bbox": [ + 176, + 88, + 421, + 107 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "It has been noted in the literature that ViT models are challenging to optimize, e.g., they may achieve only modest performance when trained on a mid-size dataset (ImageNet-1k) [13], are sensitive to data augmentation [41] and optimizer choice [41], and may perform poorly when made deeper [42]. We empirically observed the general presence of such difficulties through the course of our experiments and informally refer to such optimization characteristics collectively as optimizability. ", + "bbox": [ + 174, + 121, + 823, + 190 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Models with poor optimizability can yield very different results when hyperparameters are varied, which can lead to seemingly bizarre observations, e.g., removing erasing data augmentation [54] causes a catastrophic drop in ImageNet accuracy in [41]. Quantitative metrics to measure optimizability are needed to allow for more robust comparisons. In this section, we establish the foundations of such comparisons; we extensively test various models using these optimizability measures in $\\ S 5$ . ", + "bbox": [ + 174, + 196, + 825, + 267 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Training length stability. Prior works train ViT models for lengthy schedules, e.g., 300 to 400 epochs on ImageNet is typical (at the extreme, [17] trains models for 1000 epochs), since results at a formerly common 100-epoch schedule are substantially worse ( $2 \\%$ lower top-1 accuracy, see $\\begin{array} { r l } { \\ S } & { { } \\} } \\end{array}$ . In the context of ImageNet, we define top-1 accuracy at 400 epochs as an approximate asymptotic result, i.e., training for longer will not meaningfully improve top-1 accuracy, and we compare it to the accuracy of models trained for only 50, 100, or 200 epochs. We define training length stability as the gap to asymptotic accuracy. Intuitively, it’s a measure of convergence speed. Models that converge faster offer obvious practical benefits, especially when training many model variants. ", + "bbox": [ + 174, + 277, + 825, + 388 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Optimizer stability. Prior works use AdamW [27] to optimize ViT models from random initialization. Results of SGD are not typically presented and we are only aware of Touvron et al. [41]’s report of a dramatic $\\sim 7 \\%$ drop in ImageNet top-1 accuracy. In contrast, widely used CNNs, such as ResNets, can be optimized equally well with either SGD or AdamW (see $\\ S 5 . 2 )$ and SGD (always with momentum) is typically used in practice. SGD has the practical benefit of having fewer hyperparameters (e.g., tuning AdamW’s $\\beta _ { 2 }$ can be important [3]) and requiring $50 \\%$ less optimizer state memory, which can ease scaling. We define optimizer stability as the accuracy gap between AdamW and SGD. Like training length stability, we use optimizer stability as a proxy for the ease of optimization of a model. ", + "bbox": [ + 174, + 398, + 825, + 511 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Hyperparameter $( l r , w d )$ stability. Learning rate $( l r )$ and weight decay (wd) are among the most important hyperparameters governing optimization with SGD and AdamW. New models and datasets often require a search for their optimal values as the choice can dramatically affect results. It is desirable to have a model and optimizer that yield good results for a wide range of learning rate and weight decay values. We will explore this hyperparameter stability by comparing the error distribution functions (EDFs) [30] of models trained with various choices of $l r$ and $w d$ . In this setting, to create an EDF for a model we randomly sample values of $l r$ and wd and train the model accordingly. Distributional estimates, like those provided by EDFs, give a more complete view of the characteristics of models that point estimates cannot reveal [30, 31]. We will review EDFs in $\\ S$ . ", + "bbox": [ + 174, + 520, + 825, + 645 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Peak performance. The maximum possible performance of each model is the most commonly used metric in previous literature and it is often provided without carefully controlling training details such as data augmentations, regularization methods, number of epochs, and $l r$ , wd tuning. To make more robust comparisons, we define peak performance as the result of a model at 400 epochs using its best-performing optimizer and parsimoniously tuned $l r$ and $w d$ values (details in $\\ S 6$ ), while fixing justifiably good values for all other variables that have a known impact on training. Peak performance results for ViTs and CNNs under these carefully controlled training settings are presented in $\\ S 6$ . ", + "bbox": [ + 173, + 656, + 825, + 753 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 Stability Experiments ", + "text_level": 1, + "bbox": [ + 174, + 773, + 387, + 791 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section we test the stability of ViT models with the original patchify $( P )$ stem vs. the convolutional $( C )$ stem defined in $\\ S$ . For reference, we also train RegNetY [12, 31], a state-of-the-art CNN that is easy to optimize and serves as a reference point for good stability. ", + "bbox": [ + 174, + 806, + 825, + 849 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We conduct experiments using ImageNet-1k [10]’s standard training and validation sets, and report top-1 error. Following [12], for all results, we carefully control training settings and we use a minimal set of data augmentations that still yields strong results, for details see $\\ S$ . In this section, unless noted, for each model we use the optimal $l r$ and $w d$ found under a 50 epoch schedule (see Appendix). ", + "bbox": [ + 174, + 854, + 825, + 911 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/1b817452fed13ecd8d39700f88900c771e3a9e3f6dfc8bdc649446f86b908a32.jpg", + "image_caption": [ + "Figure 2: Training length stability: We train 9 models for 50 to 400 epochs on ImageNet-1k and plot the ∆top-1 error to the 400 epoch result for each. $\\mathrm { V i T } _ { C }$ demonstrates faster convergence than $\\mathrm { V i T } _ { P }$ across the model complexity spectrum, and helps close the gap to CNNs (represented by RegNetY). " + ], + "image_footnote": [], + "bbox": [ + 178, + 90, + 818, + 198 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/43debc0650f8f893da5ed8e572faf39672229881bcf0855f86dff3d9306f34f9.jpg", + "image_caption": [ + "Figure 3: Optimizer stability: We train each model for 50 to 400 epochs with AdamW (upward triangle $\\blacktriangle$ ) and SGD (downward triangle $\\blacktriangledown$ ). For the baseline $\\mathrm { V i T } _ { P }$ , SGD yields significantly worse results than AdamW. In contrast, $\\mathrm { V i T } _ { C }$ and $\\mathrm { R e g N e t Y }$ models exhibit a much smaller gap between SGD and AdamW across all settings. Note that for long schedules, $\\mathrm { V i T } _ { P }$ often fails to converge with SGD (i.e., loss goes to NaN), in such cases we copy the best results from a shorter schedule of the same model (and show the results via a dashed line). " + ], + "image_footnote": [], + "bbox": [ + 178, + 268, + 818, + 376 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 Training Length Stability ", + "text_level": 1, + "bbox": [ + 174, + 500, + 390, + 513 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We first explore how rapidly networks converge to their asymptotic error on ImageNet-1k, i.e., the highest possible accuracy achievable by training for many epochs. We approximate asymptotic error as a model’s error using a 400 epoch schedule based on observing diminishing returns from 200 to 400. We consider a grid of 24 experiments for ViT: $\\{ P , C \\}$ stems $\\times \\ \\{ 1 , 4 , 1 8 \\}$ GF model sizes $\\times$ {50, 100, 200, 400} epochs. For reference we also train RegNetY at $\\{ 1 , 4 , 1 6 \\}$ GF. We use the best optimizer choice for each model (AdamW for ViT models and SGD for RegNetY models). ", + "bbox": [ + 173, + 525, + 825, + 609 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Results. Figure 2 shows the absolute error deltas (∆top-1) between 50, 100, and 200 epoch schedules and asymptotic performance (at 400 epochs). $\\mathrm { V i T } _ { C }$ demonstrates faster convergence than $\\mathrm { V i T } _ { P }$ across the model complexity spectrum, and closes much of the gap to the rate of CNN convergence. The improvement is most significant in the shortest training schedule (50 epoch), e.g., $\\mathrm { V i T } _ { P }$ -1GF has a $10 \\%$ error delta, while $\\mathrm { V i T } _ { C }$ -1GF reduces this to about $6 \\%$ . This opens the door to applications that execute a large number of short-scheduled experiments, such as neural architecture search. ", + "bbox": [ + 174, + 619, + 825, + 703 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.2 Optimizer Stability ", + "text_level": 1, + "bbox": [ + 174, + 720, + 346, + 736 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We next explore how well AdamW and SGD optimize ViT models with the two stem types. We consider the following grid of $4 8 \\ \\mathrm { V i T }$ experiments: $\\{ P , C \\}$ stems × {1, 4, 18} GF sizes $\\times$ {50, 100, 200, 400} epochs $\\times$ {AdamW, SGD} optimizers. As a reference, we also train 24 RegNetY baselines, one for each complexity regime, epoch length, and optimizer. ", + "bbox": [ + 174, + 747, + 825, + 804 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Results. Figure 3 shows the results. As a baseline, RegNetY models show virtually no gap when trained using either SGD or AdamW (the difference ${ \\sim } 0 . 1 { - } 0 . 2 \\%$ is within noise). On the other hand, $V i T _ { P }$ models suffer a dramatic drop when trained with SGD across all settings (of up to $10 \\%$ for larger models and longer training schedules). With a convolutional stem, $\\mathrm { V i T } _ { C }$ models exhibit much smaller error gaps between SGD and AdamW across all training schedules and model complexities, including in larger models and longer schedules, where the gap is reduced to less than $0 . 2 \\%$ . In other words, both RegNetY and $\\mathrm { V i T } _ { C }$ can be easily trained via either SGD or AdamW, but $\\mathrm { V i T } _ { P }$ cannot. ", + "bbox": [ + 174, + 814, + 825, + 911 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/aba9b861e8efcb57d826b09c432be1e0382b373a7817ab870f1aaced18950672.jpg", + "image_caption": [ + "Figure 4: Hyperparameter stability for AdamW $_ { l r }$ and ${ \\pmb w d }$ ): For each model, we train 64 instances of the model for 50 epochs each with a random1.0 $l r$ and $w d$ (in a fixed width interval around the optimal value for each model). Top: Scatterplots of the $l r$ , $w d$ , and $l r$ ·wd for three 4GF models. Vertical bars indicate optimal $l r , w d$ , and $l r \\cdot w d$ values for each model. Bottom: For each model, we generate an EDF of the errors by plotting the cumulative distribution of the 0.6 $\\Delta$ top-1 errors ( $\\Delta$ to the optimal error for each model). A steeper EDF indicates better stability to 0.4 1GF models 4G $l r$ and odels $w d$ variation. $\\mathrm { V i T } _ { C }$ significantly18GF models improves the stability over the baseline0.2 ViTC $\\mathrm { V i T } _ { P }$ across the model complexity spectrum, and matches orViTC ViTC even outperforms the stability of the CNN model (RegNetY).0.0 RegNetY R " + ], + "image_footnote": [], + "bbox": [ + 173, + 89, + 825, + 304 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/be011ecde540fa81014ef4ee685adfdc4ac01205383316fdb5d9823fcc557d92.jpg", + "image_caption": [ + "Figure 5: Hyperparameter stability for SGD $_ { L r }$ and ${ \\pmb w d }$ ): We repeat the setup from Figure 4 using SGD instead of AdamW. The stability improvement of $\\mathrm { V i T } _ { C }$ over the baseline $\\mathrm { V i T } _ { P }$ is even larger than with AdamW. $E . g$ ., ${ \\sim } 6 0 \\%$ of $\\mathrm { V i T } _ { C }$ -18GF models are within $4 \\%$ $\\Delta$ top-1 error of the best result, while less than $20 \\%$ of $\\mathrm { V i T } _ { P }$ -18GF models are (in fact most $\\mathrm { V i T } _ { P }$ -18GF runs don’t converge). " + ], + "image_footnote": [], + "bbox": [ + 174, + 440, + 823, + 549 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3 Learning Rate and Weight Decay Stability ", + "text_level": 1, + "bbox": [ + 173, + 643, + 506, + 660 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Next, we characterize how sensitive different model families are to changes in learning rate $( l r )$ and weight decay $( w d )$ under both AdamW and SGD optimizers. To quantify this, we make use of error distribution functions (EDFs) [30]. An EDF is computed by sorting a set of results from low-to-high error and plotting the cumulative proportion of results as error increases, see [30] for details. In particular, we generate EDFs of a model as a function of $l r$ and $w d$ . The intuition is that if a model is robust to these hyperparameter choices, the EDF will be steep (all models will perform similarly), while if the model is sensitive, the EDF will be shallow (performance will be spread out). ", + "bbox": [ + 173, + 671, + 825, + 768 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We test 6 ViT models $( \\{ P , C \\} \\times \\{ 1 , 4 , 1 8 \\} \\mathrm { G F ) }$ and 3 RegNetY models ({1, 4, 16} GF). For each model and each optimizer, we compute an EDF by randomly sampling 64 $( l r , w d )$ pairs with learning rate and weight decay sampled in a fixed width interval around their optimal values for that model and optimizer (see the Appendix for sampling details). Rather than plotting absolute error in the EDF, we plot $\\Delta$ top-1 error between the best result (obtained with the optimal $l r$ and $w d$ ) and the observed result. Due to the large number of models, we train each for only 50 epochs. ", + "bbox": [ + 174, + 775, + 825, + 859 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Results. Figure 4 shows scatterplots and EDFs for models trained by AdamW. Figure 5 shows SGD results. In all cases we see that $\\mathrm { V i T } _ { C }$ significantly improves the $l r$ and $w d$ stability over $\\mathrm { V i T } _ { P }$ for both optimizers. This indicates that the $l r$ and $w d$ are easier to optimize for $\\mathrm { V i T } _ { C }$ than for $\\mathrm { V i T } _ { P }$ . ", + "bbox": [ + 174, + 869, + 825, + 911 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.4 Experimental Details ", + "text_level": 1, + "bbox": [ + 174, + 90, + 359, + 106 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In all experiments we train with a single half-period cosine learning rate decay schedule with a 5-epoch linear learning rate warm-up [16]. We use a minibatch size of 2048. Crucially, weight decay is not applied to the gain factors found in normalization layers nor to bias parameters anywhere in the model; we found that decaying these parameters can dramatically reduce top-1 accuracy for small models and short schedules. For inference, we use an exponential moving average (EMA) of the model weights (e.g., [8]). The $l r$ and $w d$ used in this section are reported in the Appendix. Other hyperparameters use defaults: SGD momentum is 0.9 and AdamW’s $\\beta _ { 1 } = 0 . 9$ and $\\beta _ { 2 } = 0 . 9 9 9$ . ", + "bbox": [ + 174, + 117, + 825, + 214 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Regularization and data augmentation. We use a simplified training recipe compared to recent work such as DeiT [41], which we found to be equally effective across a wide spectrum of model complexities and dataset scales. We use AutoAugment [7], mixup [52] $\\langle \\alpha = 0 . 8 \\rangle$ ), CutMix [51] $\\alpha = 1 . 0$ ), and label smoothing [38] $\\epsilon = 0 . 1$ ). We prefer this setup because it is similar to common settings for CNNs (e.g., [12]) except for stronger mixup and the addition of CutMix (ViTs benefit from both, while CNNs are not harmed). We compare this recipe to the one used for DeiT models in the Appendix, and observe that our setup provides substantially faster training convergence likely because we remove repeating augmentation [1, 20], which is known to slow training [1]. ", + "bbox": [ + 173, + 224, + 825, + 335 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 Peak Performance ", + "text_level": 1, + "bbox": [ + 174, + 354, + 357, + 372 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "A model’s peak performance is the most commonly used metric in network design. It represents what is possible with the best-known-so-far settings and naturally evolves over time. Making fair comparisons between different models is desirable but fraught with difficulty. Simply citing results from prior work may be negatively biased against that work as it was unable to incorporate newer, yet applicable improvements. Here, we strive to provide a fairer comparison between state-of-the-art CNNs, $\\mathrm { V i T } _ { P }$ , and $\\mathrm { V i T } _ { C }$ . We identify a set of factors and then strike a pragmatic balance between which subset to optimize for each model vs. which subset share a constant value across all models. ", + "bbox": [ + 174, + 386, + 825, + 483 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In our comparison, all models share the same epochs (400), use of model weight EMA, and set of regularization and augmentation methods (as specified in $\\ S \\quad ,$ . All CNNs are trained with SGD with $l r$ of 2.54 and wd of $2 . 4 \\mathrm { e } { - 5 }$ ; we found this single choice worked well across all models, as similarly observed in [12]. For all ViT models we found AdamW with a $l r / w d$ of $1 . 0 \\mathrm { { e - } 3 / 0 . 2 4 }$ was effective, except for the 36GF models. For these larger models we tested a few settings and found a $l r / w d$ of $6 . 0 \\mathrm { { e } - 4 / 0 . 2 8 }$ to be more effective for both $\\mathrm { V i T } _ { P ^ { - 3 6 } } \\mathrm { G F }$ and $\\mathrm { V i T } _ { C }$ -36GF models. For training and inference, ViTs use $2 2 4 \\times 2 2 4$ resolution (we do not fine-tune at higher resolutions), while the CNNs use (often larger) optimized resolutions specified in [12, 39]. Given this protocol, we compare $\\mathrm { V i T } _ { P }$ , $\\mathrm { V i T } _ { C }$ , and CNNs across a spectrum of model complexities (1GF to 36GF) and dataset scales (directly training on ImageNet-1k vs. pretraining on ImageNet-21k and then fine-tuning on ImageNet-1k). ", + "bbox": [ + 173, + 489, + 825, + 628 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Results. Figure 6 shows a progression of results. Each plot shows ImageNet-1k val top-1 error vs. ImageNet-1k epoch training time.1 The left plot compares several state-of-the-art CNNs. RegNetY and RegNetZ [12] achieve similar results across the training speed spectrum and outperform EfficientNets [39]. Surprisingly, ResNets [19] are highly competitive at fast runtimes, showing that under a fairer comparison these years-old models perform substantially better than often reported (cf . [39]). ", + "bbox": [ + 174, + 638, + 825, + 708 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The middle plot compares two representative CNNs (ResNet and RegNetY) to ViTs, still using only ImageNet-1k training. The baseline $\\mathrm { V i T } _ { P }$ underperforms RegNetY across the entire model complexity spectrum. To our surprise, $V i T _ { P }$ also underperforms ResNets in this regime. $\\mathrm { V i T } _ { C }$ is more competitive and outperforms CNNs in the middle-complexity range. ", + "bbox": [ + 174, + 714, + 825, + 771 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The right plot compares the same models but with ImageNet-21k pretraining (details in Appendix). In this setting ViT models demonstrates a greater capacity to benefit from the larger-scale data: now $\\mathrm { V i T } _ { C }$ strictly outperforms both $\\mathrm { V i T } _ { P }$ and RegNetY. Interestingly, the original $V i T _ { P }$ does not outperform a state-of-the-art CNN even when trained on this much larger dataset. Numerical results are presented in Table 2 for reference to exact values. This table also highlights that flop counts are not significantly correlated with runtime, but that activations are (see Appendix for more details), as also observed by [12]. $E . g .$ ., EfficientNets are slow relative to their flops while ViTs are fast. ", + "bbox": [ + 174, + 776, + 825, + 875 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/294e2fe483ed1695691c2b1470b6210c847eef9d58f017019c1c1cfd8b31695c.jpg", + "image_caption": [ + "Figure 6: Peak performance (epoch training time vs. ImageNet-1k val top-1 error): Results of a fair, controlled comparison of $\\mathrm { V i T } _ { P }$ , $\\mathrm { V i T } _ { C }$ , and CNNs. Each curve corresponds to a model complexity sweep resulting in a training speed spectrum (minutes per ImageNet-1k epoch). Left: State-of-the-art CNNs. Equipped with a modern training recipe, ResNets are highly competitive in the faster regime, while RegNetY and Z perform similarly, and better than EfficientNets. Middle: Selected CNNs compared to ViTs. With access to only ImageNet-1k training data, RegNetY and ResNet outperform $\\mathrm { V i T } _ { P }$ across the board. $\\mathrm { V i T } _ { C }$ is more competitive with CNNs. Right: Pretraining on ImageNet-21k improves the ViT models more than the CNNs, making $\\mathrm { V i T } _ { P }$ competitive. Here, the proposed $\\mathrm { V i T } _ { C }$ outperforms all other models across the full training speed spectrum. ", + "Table 2: Peak performance (grouped by model family): Model complexity and validation top-1 error at 100, 200, and 400 epoch schedules on ImageNet-1k, and the top-1 error after pretraining on ImageNet-21k (IN 21k) and fine-tuning on ImageNet-1k. This table serves as reference for the results shown in Figure 6. Blue numbers: best model trainable under 20 minutes per ImageNet-1k epoch. Batch sizes and training times are reported normalized to 8 32GB Volta GPUs (see Appendix). Additional results on the ImageNet-V2 [33] test set are presented in the Appendix. " + ], + "image_footnote": [], + "bbox": [ + 178, + 89, + 816, + 198 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/bfee31f4a850d3ac234c45e7f45341c3c4f9311de9e2162c5b1cbf2aa1a80323.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
modelflops params actstime batch|epochsIN 21kmodel (B)flops paramstime batch|sizeepochsIN200400 21k
(B)(M)(M) (min)size100200400(M)(min)100
ResNet-504.125.611.33.4204822.521.220.721.6EffNet-B21.09.1(M) 13.85.9204821.4 20.519.9-
ResNet-1017.844.516.45.5204820.319.118.519.2EffNet-B44.419.349.519.451218.517.817.5
ResNet-15211.560.222.87.7204819.518.417.718.2EffNet-B510.330.498.9 41.725617.3317.017.0
ResNet-20015.064.732.310.7102419.518.317.617.7
RegNetY-1GF1.09.66.23.1204823.222.221.5-ViTp-1GF1.14.85.52.6204833.229.727.7
RegNetY-4GF4.122.414.57.6204819.418.317.918.4ViTp-4GF3.918.5111.13.8204823.3 20.819.620.6
RegNetY-16GF15.572.330.717.9102417.116.416.315.6ViTp-18GF17.586.624.011.5102419.918.417.916.4
RegNetY-32GF31.1128.646.235.151216.215.915.915.0ViTp-36GF35.9178.437.318.851219.918.818.215.1
RegNetZ-1GF1.011.08.84.2204820.8 20.219.6-ViTc-1GF1.14.65.72.7204828.626.124.7-
RegNetZ-4GF4.028.124.312.9102417.4 16.916.6ViTc-4GF4.017.811.33.9)204820.919.218.618.8
RegNetZ-16GF16.095.351.332.051216.0 15.915.9ViTc-18GF17.781.624.111.4102418.4 17.517.015.1
RegNetZ-32GF32.0175.179.6 55.325616.3 16.216.1ViTc-36GF35.0167.8 36.718.651218.3 17.616.814.2
", + "bbox": [ + 173, + 338, + 821, + 483 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "These results verify that $\\mathrm { V i T } _ { C }$ ’s convolutional stem improves not only optimization stability, as seen in the previous section, but also peak performance. Moreover, this benefit can be seen across the model complexity and dataset scale spectrum. Perhaps surprisingly, given the recent excitement over ViT, we find that $\\mathrm { V i T } _ { P }$ struggles to compete with state-of-the-art CNNs. We only observe improvements over CNNs when using both large-scale pretraining data and the proposed convolutional stem. ", + "bbox": [ + 174, + 585, + 825, + 656 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 674, + 299, + 693 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this work we demonstrated that the optimization challenges of ViT models are linked to the largestride, large-kernel convolution in ViT’s patchify stem. The seemingly trivial change of replacing this patchify stem with a simple convolutional stem leads to a remarkable change in optimization behavior. With the convolutional stem, ViT (termed $\\mathrm { V i T } _ { C }$ ) converges faster than the original ViT (termed $\\mathrm { V i T } _ { P }$ ) (§5.1), trains well with either AdamW or SGD (§5.2), improves learning rate and weight decay stability (§5.3), and improves ImageNet top-1 error by ${ \\sim } 1 { - } 2 \\%$ (§6). These results are consistent across a wide spectrum of model complexities (1GF to 36GF) and dataset scales (ImageNet-1k to ImageNet-21k). Our results indicate that injecting a small dose of convolutional inductive bias into the early stages of ViTs can be hugely beneficial. Looking forward, we are interested in the theoretical foundation of why such a minimal architectural modification can have such large (positive) impact on optimizability. We are also interested in studying larger models. Our preliminary explorations into 72GF models reveal that the convolutional stem still improves top-1 error, however we also find that a new form of instability arises that causes training error to randomly spike, especially for $\\mathrm { V i T } _ { C }$ . ", + "bbox": [ + 173, + 707, + 825, + 886 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Acknowledgements. We thank Hervé Jegou, Hugo Touvron, and Kaiming He for valuable feedback. ", + "bbox": [ + 169, + 897, + 767, + 911 + ], + "page_idx": 8 + } +] \ No newline at end of file diff --git a/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_middle.json b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..c6f88871f902ac731011a80ba80a4dccd4572ad3 --- /dev/null +++ b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_middle.json @@ -0,0 +1,28934 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 121, + 97, + 491, + 117 + ], + "lines": [ + { + "bbox": [ + 119, + 97, + 492, + 119 + ], + "spans": [ + { + "bbox": [ + 119, + 97, + 492, + 119 + ], + "score": 1.0, + "content": "Early Convolutions Help Transformers See Better", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 113, + 158, + 500, + 171 + ], + "lines": [ + { + "bbox": [ + 111, + 158, + 501, + 172 + ], + "spans": [ + { + "bbox": [ + 111, + 158, + 501, + 172 + ], + "score": 1.0, + "content": "Tete Xiao1,2 Mannat Singh1 Eric Mintun1 Trevor Darrell2 Piotr Dollár1∗ Ross Girshick1∗", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 200, + 181, + 414, + 193 + ], + "lines": [ + { + "bbox": [ + 200, + 178, + 415, + 196 + ], + "spans": [ + { + "bbox": [ + 200, + 179, + 330, + 196 + ], + "score": 1.0, + "content": "1Facebook AI Research (FAIR)", + "type": "text" + }, + { + "bbox": [ + 354, + 178, + 415, + 196 + ], + "score": 1.0, + "content": "2UC Berkeley", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 283, + 221, + 328, + 234 + ], + "lines": [ + { + "bbox": [ + 282, + 221, + 330, + 235 + ], + "spans": [ + { + "bbox": [ + 282, + 221, + 330, + 235 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 143, + 249, + 469, + 478 + ], + "lines": [ + { + "bbox": [ + 142, + 248, + 470, + 262 + ], + "spans": [ + { + "bbox": [ + 142, + 248, + 470, + 262 + ], + "score": 1.0, + "content": "Vision transformer (ViT) models exhibit substandard optimizability. In particular,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 260, + 470, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 260, + 470, + 272 + ], + "score": 1.0, + "content": "they are sensitive to the choice of optimizer (AdamW vs. SGD), optimizer hyperpa-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "score": 1.0, + "content": "rameters, and training schedule length. In comparison, modern convolutional neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 282, + 469, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 469, + 294 + ], + "score": 1.0, + "content": "networks are easier to optimize. Why is this the case? In this work, we conjecture", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 292, + 469, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 469, + 306 + ], + "score": 1.0, + "content": "that the issue lies with the patchify stem of ViT models, which is implemented by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 304, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 175, + 316 + ], + "score": 1.0, + "content": "a stride-", + "type": "text" + }, + { + "bbox": [ + 175, + 304, + 203, + 315 + ], + "score": 0.79, + "content": "p p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 304, + 257, + 316 + ], + "score": 1.0, + "content": "convolution", + "type": "text" + }, + { + "bbox": [ + 257, + 304, + 288, + 315 + ], + "score": 0.89, + "content": "\\dot { p } = 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 304, + 469, + 316 + ], + "score": 1.0, + "content": "by default) applied to the input image. This", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 314, + 469, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 314, + 469, + 326 + ], + "score": 1.0, + "content": "large-kernel plus large-stride convolution runs counter to typical design choices", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 325, + 469, + 338 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 469, + 338 + ], + "score": 1.0, + "content": "of convolutional layers in neural networks. To test whether this atypical design", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "choice causes an issue, we analyze the optimization behavior of ViT models with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 347, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 470, + 358 + ], + "score": 1.0, + "content": "their original patchify stem versus a simple counterpart where we replace the ViT", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 358, + 470, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 358, + 330, + 370 + ], + "score": 1.0, + "content": "stem by a small number of stacked stride-two", + "type": "text" + }, + { + "bbox": [ + 330, + 358, + 349, + 369 + ], + "score": 0.88, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 358, + 470, + 370 + ], + "score": 1.0, + "content": "convolutions. While the vast", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 369, + 469, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 369, + 469, + 381 + ], + "score": 1.0, + "content": "majority of computation in the two ViT designs is identical, we find that this small", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 379, + 469, + 392 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 469, + 392 + ], + "score": 1.0, + "content": "change in early visual processing results in markedly different training behavior in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 390, + 470, + 404 + ], + "spans": [ + { + "bbox": [ + 141, + 390, + 470, + 404 + ], + "score": 1.0, + "content": "terms of the sensitivity to optimization settings as well as the final model accuracy.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 402, + 470, + 414 + ], + "spans": [ + { + "bbox": [ + 142, + 402, + 470, + 414 + ], + "score": 1.0, + "content": "Using a convolutional stem in ViT dramatically increases optimization stability", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 412, + 470, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 306, + 424 + ], + "score": 1.0, + "content": "and also improves peak performance (by", + "type": "text" + }, + { + "bbox": [ + 306, + 412, + 335, + 423 + ], + "score": 0.9, + "content": "{ \\sim } 1 { - } 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 412, + 470, + 424 + ], + "score": 1.0, + "content": "top-1 accuracy on ImageNet-1k),", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 423, + 469, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 469, + 435 + ], + "score": 1.0, + "content": "while maintaining flops and runtime. The improvement can be observed across the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 434, + 469, + 447 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 469, + 447 + ], + "score": 1.0, + "content": "wide spectrum of model complexities (from 1G to 36G flops) and dataset scales", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 445, + 469, + 458 + ], + "spans": [ + { + "bbox": [ + 141, + 445, + 469, + 458 + ], + "score": 1.0, + "content": "(from ImageNet-1k to ImageNet-21k). These findings lead us to recommend using", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 456, + 469, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 469, + 468 + ], + "score": 1.0, + "content": "a standard, lightweight convolutional stem for ViT models in this regime as a more", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 466, + 427, + 480 + ], + "spans": [ + { + "bbox": [ + 141, + 466, + 427, + 480 + ], + "score": 1.0, + "content": "robust architectural choice compared to the original ViT model design.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 503, + 190, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "score": 1.0, + "content": "Vision transformer (ViT) models [13] offer an alternative design paradigm to convolutional neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "score": 1.0, + "content": "networks (CNNs) [24]. ViTs replace the inductive bias towards local processing inherent in con-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "volutions with global processing performed by multi-headed self-attention [43]. The hope is that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "this design has the potential to improve performance on vision tasks, akin to the trends observed", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "in natural language processing [11]. While investigating this conjecture, researchers face another", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "unexpected difference between ViTs and CNNs: ViT models exhibit substandard optimizability.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "ViTs are sensitive to the choice of optimizer [41] (AdamW [27] vs. SGD), to the selection of dataset", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 606, + 507, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 507, + 621 + ], + "score": 1.0, + "content": "specific learning hyperparameters [13, 41], to training schedule length, to network depth [42], etc.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 617, + 468, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 468, + 630 + ], + "score": 1.0, + "content": "These issues render former training recipes and intuitions ineffective and impede research.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "Convolutional neural networks, in contrast, are exceptionally easy and robust to optimize. Simple", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "training recipes based on SGD, basic data augmentation, and standard hyperparameter values have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "been widely used for years [19]. Why does this difference exist between ViT and CNN models? In", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "this paper we hypothesize that the issues lies primarily in the early visual processing performed by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 677, + 507, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 282, + 692 + ], + "score": 1.0, + "content": "ViT. ViT “patchifies” the input image into", + "type": "text" + }, + { + "bbox": [ + 282, + 680, + 302, + 690 + ], + "score": 0.9, + "content": "p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 677, + 507, + 692 + ], + "score": 1.0, + "content": "non-overlapping patches to form the transformer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 688, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 373, + 702 + ], + "score": 1.0, + "content": "encoder’s input set. This patchify stem is implemented as a stride-", + "type": "text" + }, + { + "bbox": [ + 373, + 690, + 400, + 700 + ], + "score": 0.79, + "content": "p p \\times p", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 688, + 474, + 702 + ], + "score": 1.0, + "content": "convolution, with", + "type": "text" + }, + { + "bbox": [ + 474, + 689, + 504, + 700 + ], + "score": 0.9, + "content": "p = 1 6", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "as a default value. This large-kernel plus large-stride convolution runs counter to the typical design", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 731, + 384, + 741 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 744 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 744 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 121, + 97, + 491, + 117 + ], + "lines": [ + { + "bbox": [ + 119, + 97, + 492, + 119 + ], + "spans": [ + { + "bbox": [ + 119, + 97, + 492, + 119 + ], + "score": 1.0, + "content": "Early Convolutions Help Transformers See Better", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 113, + 158, + 500, + 171 + ], + "lines": [ + { + "bbox": [ + 111, + 158, + 501, + 172 + ], + "spans": [ + { + "bbox": [ + 111, + 158, + 501, + 172 + ], + "score": 1.0, + "content": "Tete Xiao1,2 Mannat Singh1 Eric Mintun1 Trevor Darrell2 Piotr Dollár1∗ Ross Girshick1∗", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 111, + 158, + 501, + 172 + ] + }, + { + "type": "text", + "bbox": [ + 200, + 181, + 414, + 193 + ], + "lines": [ + { + "bbox": [ + 200, + 178, + 415, + 196 + ], + "spans": [ + { + "bbox": [ + 200, + 179, + 330, + 196 + ], + "score": 1.0, + "content": "1Facebook AI Research (FAIR)", + "type": "text" + }, + { + "bbox": [ + 354, + 178, + 415, + 196 + ], + "score": 1.0, + "content": "2UC Berkeley", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 200, + 178, + 415, + 196 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 221, + 328, + 234 + ], + "lines": [ + { + "bbox": [ + 282, + 221, + 330, + 235 + ], + "spans": [ + { + "bbox": [ + 282, + 221, + 330, + 235 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 143, + 249, + 469, + 478 + ], + "lines": [ + { + "bbox": [ + 142, + 248, + 470, + 262 + ], + "spans": [ + { + "bbox": [ + 142, + 248, + 470, + 262 + ], + "score": 1.0, + "content": "Vision transformer (ViT) models exhibit substandard optimizability. In particular,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 260, + 470, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 260, + 470, + 272 + ], + "score": 1.0, + "content": "they are sensitive to the choice of optimizer (AdamW vs. SGD), optimizer hyperpa-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "score": 1.0, + "content": "rameters, and training schedule length. In comparison, modern convolutional neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 282, + 469, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 469, + 294 + ], + "score": 1.0, + "content": "networks are easier to optimize. Why is this the case? In this work, we conjecture", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 292, + 469, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 469, + 306 + ], + "score": 1.0, + "content": "that the issue lies with the patchify stem of ViT models, which is implemented by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 304, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 175, + 316 + ], + "score": 1.0, + "content": "a stride-", + "type": "text" + }, + { + "bbox": [ + 175, + 304, + 203, + 315 + ], + "score": 0.79, + "content": "p p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 304, + 257, + 316 + ], + "score": 1.0, + "content": "convolution", + "type": "text" + }, + { + "bbox": [ + 257, + 304, + 288, + 315 + ], + "score": 0.89, + "content": "\\dot { p } = 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 304, + 469, + 316 + ], + "score": 1.0, + "content": "by default) applied to the input image. This", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 314, + 469, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 314, + 469, + 326 + ], + "score": 1.0, + "content": "large-kernel plus large-stride convolution runs counter to typical design choices", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 325, + 469, + 338 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 469, + 338 + ], + "score": 1.0, + "content": "of convolutional layers in neural networks. To test whether this atypical design", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "choice causes an issue, we analyze the optimization behavior of ViT models with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 347, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 470, + 358 + ], + "score": 1.0, + "content": "their original patchify stem versus a simple counterpart where we replace the ViT", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 358, + 470, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 358, + 330, + 370 + ], + "score": 1.0, + "content": "stem by a small number of stacked stride-two", + "type": "text" + }, + { + "bbox": [ + 330, + 358, + 349, + 369 + ], + "score": 0.88, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 358, + 470, + 370 + ], + "score": 1.0, + "content": "convolutions. While the vast", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 369, + 469, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 369, + 469, + 381 + ], + "score": 1.0, + "content": "majority of computation in the two ViT designs is identical, we find that this small", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 379, + 469, + 392 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 469, + 392 + ], + "score": 1.0, + "content": "change in early visual processing results in markedly different training behavior in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 390, + 470, + 404 + ], + "spans": [ + { + "bbox": [ + 141, + 390, + 470, + 404 + ], + "score": 1.0, + "content": "terms of the sensitivity to optimization settings as well as the final model accuracy.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 402, + 470, + 414 + ], + "spans": [ + { + "bbox": [ + 142, + 402, + 470, + 414 + ], + "score": 1.0, + "content": "Using a convolutional stem in ViT dramatically increases optimization stability", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 412, + 470, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 306, + 424 + ], + "score": 1.0, + "content": "and also improves peak performance (by", + "type": "text" + }, + { + "bbox": [ + 306, + 412, + 335, + 423 + ], + "score": 0.9, + "content": "{ \\sim } 1 { - } 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 412, + 470, + 424 + ], + "score": 1.0, + "content": "top-1 accuracy on ImageNet-1k),", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 423, + 469, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 469, + 435 + ], + "score": 1.0, + "content": "while maintaining flops and runtime. The improvement can be observed across the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 434, + 469, + 447 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 469, + 447 + ], + "score": 1.0, + "content": "wide spectrum of model complexities (from 1G to 36G flops) and dataset scales", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 445, + 469, + 458 + ], + "spans": [ + { + "bbox": [ + 141, + 445, + 469, + 458 + ], + "score": 1.0, + "content": "(from ImageNet-1k to ImageNet-21k). These findings lead us to recommend using", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 456, + 469, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 469, + 468 + ], + "score": 1.0, + "content": "a standard, lightweight convolutional stem for ViT models in this regime as a more", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 466, + 427, + 480 + ], + "spans": [ + { + "bbox": [ + 141, + 466, + 427, + 480 + ], + "score": 1.0, + "content": "robust architectural choice compared to the original ViT model design.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 14, + "bbox_fs": [ + 141, + 248, + 470, + 480 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 503, + 190, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "score": 1.0, + "content": "Vision transformer (ViT) models [13] offer an alternative design paradigm to convolutional neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "score": 1.0, + "content": "networks (CNNs) [24]. ViTs replace the inductive bias towards local processing inherent in con-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "volutions with global processing performed by multi-headed self-attention [43]. The hope is that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "this design has the potential to improve performance on vision tasks, akin to the trends observed", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "in natural language processing [11]. While investigating this conjecture, researchers face another", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "unexpected difference between ViTs and CNNs: ViT models exhibit substandard optimizability.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "ViTs are sensitive to the choice of optimizer [41] (AdamW [27] vs. SGD), to the selection of dataset", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 606, + 507, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 507, + 621 + ], + "score": 1.0, + "content": "specific learning hyperparameters [13, 41], to training schedule length, to network depth [42], etc.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 617, + 468, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 468, + 630 + ], + "score": 1.0, + "content": "These issues render former training recipes and intuitions ineffective and impede research.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 531, + 507, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "Convolutional neural networks, in contrast, are exceptionally easy and robust to optimize. Simple", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "training recipes based on SGD, basic data augmentation, and standard hyperparameter values have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "been widely used for years [19]. Why does this difference exist between ViT and CNN models? In", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "this paper we hypothesize that the issues lies primarily in the early visual processing performed by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 677, + 507, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 282, + 692 + ], + "score": 1.0, + "content": "ViT. ViT “patchifies” the input image into", + "type": "text" + }, + { + "bbox": [ + 282, + 680, + 302, + 690 + ], + "score": 0.9, + "content": "p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 677, + 507, + 692 + ], + "score": 1.0, + "content": "non-overlapping patches to form the transformer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 688, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 373, + 702 + ], + "score": 1.0, + "content": "encoder’s input set. This patchify stem is implemented as a stride-", + "type": "text" + }, + { + "bbox": [ + 373, + 690, + 400, + 700 + ], + "score": 0.79, + "content": "p p \\times p", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 688, + 474, + 702 + ], + "score": 1.0, + "content": "convolution, with", + "type": "text" + }, + { + "bbox": [ + 474, + 689, + 504, + 700 + ], + "score": 0.9, + "content": "p = 1 6", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "as a default value. This large-kernel plus large-stride convolution runs counter to the typical design", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 454, + 357 + ], + "score": 1.0, + "content": "choices used in CNNs, where best-practices have converged to a small stack of stride-two", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 455, + 345, + 474, + 356 + ], + "score": 0.85, + "content": "3 { \\times } 3", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 474, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "kernels", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 355, + 274, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 274, + 368 + ], + "score": 1.0, + "content": "as the network’s stem (e.g., [30, 36, 39]).", + "type": "text", + "cross_page": true + } + ], + "index": 16 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 633, + 507, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 70, + 505, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 70, + 505, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 70, + 504, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 504, + 192 + ], + "score": 0.951, + "type": "image", + "image_path": "b91aae065046d45a4cf2660ee48625a319b82673ffafb868c9b5ca99235d35b4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 70, + 505, + 110.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 110.66666666666666, + 505, + 151.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 151.33333333333331, + 505, + 191.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 199, + 505, + 329 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "Figure 1: Early convolutions help transformers see better: We hypothesize that the substandard", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 209, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 104, + 209, + 506, + 224 + ], + "score": 1.0, + "content": "optimizability of ViT models compared to CNNs primarily arises from the early visual processing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 220, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 104, + 220, + 428, + 234 + ], + "score": 1.0, + "content": "performed by its patchify stem, which is implemented by a non-overlapping stride-", + "type": "text" + }, + { + "bbox": [ + 428, + 222, + 455, + 232 + ], + "score": 0.66, + "content": "p p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 220, + 507, + 234 + ], + "score": 1.0, + "content": "convolution,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 126, + 245 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 126, + 232, + 156, + 243 + ], + "score": 0.91, + "content": "p = 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "by default. We minimally replace the patchify stem in ViT with a standard convolutional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 159, + 255 + ], + "score": 1.0, + "content": "stem of only", + "type": "text" + }, + { + "bbox": [ + 159, + 243, + 172, + 253 + ], + "score": 0.82, + "content": "{ \\sim } 5 ", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "convolutions that has approximately the same complexity as a single transformer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 375, + 266 + ], + "score": 1.0, + "content": "block. We reduce the number of transformer blocks by one (i.e.,", + "type": "text" + }, + { + "bbox": [ + 375, + 253, + 401, + 264 + ], + "score": 0.48, + "content": "\\bar { L } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 252, + 416, + 266 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 417, + 254, + 425, + 263 + ], + "score": 0.29, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 252, + 505, + 266 + ], + "score": 1.0, + "content": ") to maintain parity", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 384, + 277 + ], + "score": 1.0, + "content": "in flops, parameters, and runtime. We refer to the resulting model as", + "type": "text" + }, + { + "bbox": [ + 384, + 265, + 408, + 276 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "and the original ViT as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 129, + 286 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 275, + 505, + 288 + ], + "score": 1.0, + "content": ". The vast majority of computation performed by these two models is identical, yet surprisingly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 172, + 298 + ], + "score": 1.0, + "content": "we observe that", + "type": "text" + }, + { + "bbox": [ + 172, + 286, + 196, + 297 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "(i) converges faster, (ii) enables, for the first time, the use of either AdamW", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "score": 1.0, + "content": "or SGD without a significant accuracy drop, (iii) shows greater stability to learning rate and weight", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 421, + 321 + ], + "score": 1.0, + "content": "decay choice, and (iv) yields improvements in ImageNet top-1 error allowing", + "type": "text" + }, + { + "bbox": [ + 422, + 308, + 445, + 319 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "to outperform", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 296, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 233, + 332 + ], + "score": 1.0, + "content": "state-of-the-art CNNs, whereas", + "type": "text" + }, + { + "bbox": [ + 233, + 319, + 256, + 330 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 318, + 296, + 332 + ], + "score": 1.0, + "content": "does not.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 8.5 + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 108, + 345, + 503, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 454, + 357 + ], + "score": 1.0, + "content": "choices used in CNNs, where best-practices have converged to a small stack of stride-two", + "type": "text" + }, + { + "bbox": [ + 455, + 345, + 474, + 356 + ], + "score": 0.85, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "kernels", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 355, + 274, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 274, + 368 + ], + "score": 1.0, + "content": "as the network’s stem (e.g., [30, 36, 39]).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "To test this hypothesis, we minimally change the early visual processing of ViT by replacing its", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 384, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 381, + 396 + ], + "score": 1.0, + "content": "patchify stem with a standard convolutional stem consisting of only", + "type": "text" + }, + { + "bbox": [ + 382, + 384, + 395, + 394 + ], + "score": 0.8, + "content": "{ \\sim } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 384, + 507, + 396 + ], + "score": 1.0, + "content": "convolutions, see Figure 1.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "To compensate for the small addition in flops, we remove one transformer block to maintain parity in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "flops and runtime. We observe that even though the vast majority of the computation in the two ViT", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "score": 1.0, + "content": "designs is identical, this small change in early visual processing results in markedly different training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 426, + 486, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 486, + 440 + ], + "score": 1.0, + "content": "behavior in terms of the sensitivity to optimization settings as well as the final model accuracy.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "In extensive experiments we show that replacing the ViT patchify stem with a more standard", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "convolutional stem (i) allows ViT to converge faster (§5.1), (ii) enables, for the first time, the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "use of either AdamW or SGD without a significant drop in accuracy (§5.2), (iii) brings ViT’s", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "score": 1.0, + "content": "stability w.r.t. learning rate and weight decay closer to that of modern CNNs (§5.3), and (iv) yields", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 291, + 500 + ], + "score": 1.0, + "content": "improvements in ImageNet [10] top-1 error of", + "type": "text" + }, + { + "bbox": [ + 291, + 487, + 312, + 498 + ], + "score": 0.83, + "content": "\\sim 1 - 2", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "percentage points (§6). We consistently observe", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 497, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 511 + ], + "score": 1.0, + "content": "these improvements across a wide spectrum of model complexities (from 1G flops to 36G flops) and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 509, + 297, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 297, + 521 + ], + "score": 1.0, + "content": "dataset scales (ImageNet-1k to ImageNet-21k).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "These results show that injecting some convolutional inductive bias into ViTs can be beneficial under", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "commonly studied settings. We did not observe evidence that the hard locality constraint in early", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "layers hampers the representational capacity of the network, as might be feared [9]. In fact we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "observed the opposite, as ImageNet results improve even with larger-scale models and larger-scale", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "data when using a convolution stem. Moreover, under carefully controlled comparisons, we find that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 579, + 504, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 504, + 592 + ], + "score": 1.0, + "content": "ViTs are only able to surpass state-of-the-art CNNs when equipped with a convolutional stem (§6).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "We conjecture that restricting convolutions in ViT to early visual processing may be a crucial design", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "choice that strikes a balance between (hard) inductive biases and the representation learning ability of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "transformer blocks. Evidence comes by comparison to the “hybrid ViT” presented in [13], which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "uses 40 convolutional layers (most of a ResNet-50) and shows no improvement over the default ViT.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "This perspective resonates with the findings of [9], who observe that early transformer blocks prefer", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "score": 1.0, + "content": "to learn more local attention patterns than later blocks. Finally we note that exploring the design", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "of hybrid CNN/ViT models is not a goal of this work; rather we demonstrate that simply using a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 672, + 504, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 504, + 685 + ], + "score": 1.0, + "content": "minimal convolutional stem with ViT is sufficient to dramatically change its optimization behavior.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "In summary, the findings presented in this paper lead us to recommend using a standard, lightweight", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "convolutional stem for ViT models in the analyzed dataset scale and model complexity spectrum as a", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "more robust and higher performing architectural choice compared to the original ViT model design.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 70, + 505, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 70, + 505, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 70, + 504, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 504, + 192 + ], + "score": 0.951, + "type": "image", + "image_path": "b91aae065046d45a4cf2660ee48625a319b82673ffafb868c9b5ca99235d35b4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 70, + 505, + 110.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 110.66666666666666, + 505, + 151.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 151.33333333333331, + 505, + 191.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 199, + 505, + 329 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "Figure 1: Early convolutions help transformers see better: We hypothesize that the substandard", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 209, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 104, + 209, + 506, + 224 + ], + "score": 1.0, + "content": "optimizability of ViT models compared to CNNs primarily arises from the early visual processing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 220, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 104, + 220, + 428, + 234 + ], + "score": 1.0, + "content": "performed by its patchify stem, which is implemented by a non-overlapping stride-", + "type": "text" + }, + { + "bbox": [ + 428, + 222, + 455, + 232 + ], + "score": 0.66, + "content": "p p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 220, + 507, + 234 + ], + "score": 1.0, + "content": "convolution,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 126, + 245 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 126, + 232, + 156, + 243 + ], + "score": 0.91, + "content": "p = 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "by default. We minimally replace the patchify stem in ViT with a standard convolutional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 159, + 255 + ], + "score": 1.0, + "content": "stem of only", + "type": "text" + }, + { + "bbox": [ + 159, + 243, + 172, + 253 + ], + "score": 0.82, + "content": "{ \\sim } 5 ", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "convolutions that has approximately the same complexity as a single transformer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 375, + 266 + ], + "score": 1.0, + "content": "block. We reduce the number of transformer blocks by one (i.e.,", + "type": "text" + }, + { + "bbox": [ + 375, + 253, + 401, + 264 + ], + "score": 0.48, + "content": "\\bar { L } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 252, + 416, + 266 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 417, + 254, + 425, + 263 + ], + "score": 0.29, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 252, + 505, + 266 + ], + "score": 1.0, + "content": ") to maintain parity", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 384, + 277 + ], + "score": 1.0, + "content": "in flops, parameters, and runtime. We refer to the resulting model as", + "type": "text" + }, + { + "bbox": [ + 384, + 265, + 408, + 276 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "and the original ViT as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 129, + 286 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 275, + 505, + 288 + ], + "score": 1.0, + "content": ". The vast majority of computation performed by these two models is identical, yet surprisingly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 172, + 298 + ], + "score": 1.0, + "content": "we observe that", + "type": "text" + }, + { + "bbox": [ + 172, + 286, + 196, + 297 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "(i) converges faster, (ii) enables, for the first time, the use of either AdamW", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 309 + ], + "score": 1.0, + "content": "or SGD without a significant accuracy drop, (iii) shows greater stability to learning rate and weight", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 421, + 321 + ], + "score": 1.0, + "content": "decay choice, and (iv) yields improvements in ImageNet top-1 error allowing", + "type": "text" + }, + { + "bbox": [ + 422, + 308, + 445, + 319 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "to outperform", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 318, + 296, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 233, + 332 + ], + "score": 1.0, + "content": "state-of-the-art CNNs, whereas", + "type": "text" + }, + { + "bbox": [ + 233, + 319, + 256, + 330 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 318, + 296, + 332 + ], + "score": 1.0, + "content": "does not.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 8.5 + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 108, + 345, + 503, + 367 + ], + "lines": [], + "index": 15.5, + "bbox_fs": [ + 106, + 344, + 505, + 368 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "To test this hypothesis, we minimally change the early visual processing of ViT by replacing its", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 384, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 381, + 396 + ], + "score": 1.0, + "content": "patchify stem with a standard convolutional stem consisting of only", + "type": "text" + }, + { + "bbox": [ + 382, + 384, + 395, + 394 + ], + "score": 0.8, + "content": "{ \\sim } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 384, + 507, + 396 + ], + "score": 1.0, + "content": "convolutions, see Figure 1.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "To compensate for the small addition in flops, we remove one transformer block to maintain parity in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "flops and runtime. We observe that even though the vast majority of the computation in the two ViT", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "score": 1.0, + "content": "designs is identical, this small change in early visual processing results in markedly different training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 426, + 486, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 486, + 440 + ], + "score": 1.0, + "content": "behavior in terms of the sensitivity to optimization settings as well as the final model accuracy.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 372, + 507, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "In extensive experiments we show that replacing the ViT patchify stem with a more standard", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "convolutional stem (i) allows ViT to converge faster (§5.1), (ii) enables, for the first time, the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "use of either AdamW or SGD without a significant drop in accuracy (§5.2), (iii) brings ViT’s", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "score": 1.0, + "content": "stability w.r.t. learning rate and weight decay closer to that of modern CNNs (§5.3), and (iv) yields", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 291, + 500 + ], + "score": 1.0, + "content": "improvements in ImageNet [10] top-1 error of", + "type": "text" + }, + { + "bbox": [ + 291, + 487, + 312, + 498 + ], + "score": 0.83, + "content": "\\sim 1 - 2", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "percentage points (§6). We consistently observe", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 497, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 511 + ], + "score": 1.0, + "content": "these improvements across a wide spectrum of model complexities (from 1G flops to 36G flops) and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 509, + 297, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 297, + 521 + ], + "score": 1.0, + "content": "dataset scales (ImageNet-1k to ImageNet-21k).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 443, + 506, + 521 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "These results show that injecting some convolutional inductive bias into ViTs can be beneficial under", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "commonly studied settings. We did not observe evidence that the hard locality constraint in early", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "layers hampers the representational capacity of the network, as might be feared [9]. In fact we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "observed the opposite, as ImageNet results improve even with larger-scale models and larger-scale", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "data when using a convolution stem. Moreover, under carefully controlled comparisons, we find that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 579, + 504, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 504, + 592 + ], + "score": 1.0, + "content": "ViTs are only able to surpass state-of-the-art CNNs when equipped with a convolutional stem (§6).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 525, + 506, + 592 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "We conjecture that restricting convolutions in ViT to early visual processing may be a crucial design", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "choice that strikes a balance between (hard) inductive biases and the representation learning ability of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "transformer blocks. Evidence comes by comparison to the “hybrid ViT” presented in [13], which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "uses 40 convolutional layers (most of a ResNet-50) and shows no improvement over the default ViT.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "This perspective resonates with the findings of [9], who observe that early transformer blocks prefer", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "score": 1.0, + "content": "to learn more local attention patterns than later blocks. Finally we note that exploring the design", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "of hybrid CNN/ViT models is not a goal of this work; rather we demonstrate that simply using a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 672, + 504, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 504, + 685 + ], + "score": 1.0, + "content": "minimal convolutional stem with ViT is sufficient to dramatically change its optimization behavior.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 596, + 506, + 685 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "In summary, the findings presented in this paper lead us to recommend using a standard, lightweight", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "convolutional stem for ViT models in the analyzed dataset scale and model complexity spectrum as a", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "more robust and higher performing architectural choice compared to the original ViT model design.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 687, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 197, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 198, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 198, + 86 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "score": 1.0, + "content": "Convolutional neural networks (CNNs). The breakthrough performance of the AlexNet [23]", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "CNN [15, 24] on ImageNet classification [10] transformed the field of recognition, leading to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "score": 1.0, + "content": "the development of higher performing architectures, e.g., [19, 36, 37, 48], and scalable training", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "methods [16, 21]. These architectures are now core components in object detection (e.g., [34]),", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "instance segmentation (e.g., [18]), and semantic segmentation (e.g., [26]). CNNs are typically trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 464, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 464, + 167 + ], + "score": 1.0, + "content": "with stochastic gradient descent (SGD) and are widely considered to be easy to optimize.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 174, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 188 + ], + "score": 1.0, + "content": "Self-attention in vision models. Transformers [43] are revolutionizing natural language processing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 186, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 197 + ], + "score": 1.0, + "content": "by enabling scalable training. Transformers use multi-headed self-attention, which performs global", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "information processing and is strictly more general than convolution [6]. Wang et al. [46] show", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "that (single-headed) self-attention is a form of non-local means [2] and that integrating it into a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "ResNet [19] improves several tasks. Ramachandran et al. [32] explore this direction further with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "stand-alone self-attention networks for vision. They report difficulties in designing an attention-based", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "network stem and present a bespoke solution that avoids convolutions. In contrast, we demonstrate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "the benefits of a convolutional stem. Zhao et al. [53] explore a broader set of self-attention operations", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 261, + 384, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 384, + 274 + ], + "score": 1.0, + "content": "with hard-coded locality constraints, more similar to standard CNNs.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 391 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 295 + ], + "score": 1.0, + "content": "Vision transformer (ViT). Dosovitskiy et al. [13] apply a transformer encoder to image classification", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "with minimal vision-specific modifications. As the counterpart of input token embeddings, they", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 247, + 317 + ], + "score": 1.0, + "content": "partition the input image into, e.g.,", + "type": "text" + }, + { + "bbox": [ + 247, + 304, + 276, + 315 + ], + "score": 0.88, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "pixel, non-overlapping patches and linearly project them", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "to the encoder’s input dimension. They report lackluster results when training on ImageNet-1k,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "but demonstrate state-of-the-art transfer learning when using large-scale pretraining data. ViTs are", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "sensitive to many details of the training recipe, e.g., they benefit greatly from AdamW [27] compared", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "to SGD and require careful learning rate and weight decay selection. ViTs are generally considered", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "to be difficult to optimize compared to CNNs (e.g., see [13, 41, 42]). Further evidence of challenges", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "comes from Chen et al. [4] who report ViT optimization instability in self-supervised learning (unlike", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 379, + 501, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 501, + 393 + ], + "score": 1.0, + "content": "with CNNs), and find that freezing the patchify stem at its random initialization improves stability.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 506, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "ViT improvements. ViTs are gaining rapid interest in part because they may offer a novel direction", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "away from CNNs. Touvron et al. [41] show that with more regularization and stronger data aug-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "mentation ViT models achieve competitive accuracy on ImageNet-1k alone (cf . [13]). Subsequently,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 433, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 505, + 444 + ], + "score": 1.0, + "content": "works concurrent with our own explore numerous other ViT improvements. Dominant themes include", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "multi-scale networks [14, 17, 25, 45, 50], increasing depth [42], and locality priors [5, 9, 17, 47, 49].", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "score": 1.0, + "content": "In [9], d’Ascoli et al. modify multi-head self-attention with a convolutional bias at initialization and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "show that this prior improves sample efficiency and ImageNet accuracy. Resonating with our work,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 476, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 506, + 488 + ], + "score": 1.0, + "content": "[5, 17, 47, 49] present models with convolutional stems, but do not analyze optimizability (our focus).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "Discussion. Unlike the concurrent work on locality priors in ViT, our focus is studying optimizability", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "under minimal ViT modifications in order to derive crisp conclusions. Our perspective brings several", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 253, + 531 + ], + "score": 1.0, + "content": "novel observations: by adding only", + "type": "text" + }, + { + "bbox": [ + 253, + 518, + 267, + 528 + ], + "score": 0.81, + "content": "{ \\sim } 5 ", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "convolutions to the stem, ViT can be optimized well with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 207, + 542 + ], + "score": 1.0, + "content": "either AdamW or SGD", + "type": "text" + }, + { + "bbox": [ + 207, + 529, + 218, + 540 + ], + "score": 0.46, + "content": "_ { c f }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 528, + 506, + 542 + ], + "score": 1.0, + "content": ". all prior works use AdamW to avoid large drops in accuracy [41]), it", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 539, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 554 + ], + "score": 1.0, + "content": "becomes less sensitive to the specific choice of learning rate and weight decay, and training converges", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "faster. We also observe a consistent improvement in ImageNet top-1 accuracy across a wide spectrum", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "of model complexities (1G flops to 36G flops) and dataset scales (ImageNet-1k to ImageNet-21k).", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "These results suggest that a (hard) convolutional bias early in the network does not compromise", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 583, + 485, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 485, + 596 + ], + "score": 1.0, + "content": "representational capacity, as conjectured in [9], and is beneficial within the scope of this study.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 107, + 610, + 299, + 624 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 300, + 627 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 300, + 627 + ], + "score": 1.0, + "content": "3 Vision Transformer Architectures", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 105, + 636, + 492, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 493, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 493, + 648 + ], + "score": 1.0, + "content": "Next, we review vision transformers [13] and describe the convolutional stems used in our work.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 452, + 669 + ], + "score": 1.0, + "content": "The vision transformer (ViT). ViT first partitions an input image into non-overlapping", + "type": "text" + }, + { + "bbox": [ + 453, + 658, + 473, + 668 + ], + "score": 0.89, + "content": "p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 656, + 505, + 669 + ], + "score": 1.0, + "content": "patches", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 253, + 679 + ], + "score": 1.0, + "content": "and linearly projects each patch to a", + "type": "text" + }, + { + "bbox": [ + 253, + 668, + 260, + 677 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 668, + 505, + 679 + ], + "score": 1.0, + "content": "-dimensional feature vector using a learned weight matrix. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 158, + 691 + ], + "score": 1.0, + "content": "patch size of", + "type": "text" + }, + { + "bbox": [ + 158, + 678, + 187, + 689 + ], + "score": 0.91, + "content": "p = 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 678, + 270, + 691 + ], + "score": 1.0, + "content": "and an image size of", + "type": "text" + }, + { + "bbox": [ + 271, + 678, + 309, + 689 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "are typical. The resulting patch embeddings (plus", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "positional embeddings and a learned classification token embedding) are processed by a standard", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "transformer encoder [43, 44] followed by a classification head. Using common network nomenclature,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "we refer to the portion of ViT before the transformer blocks as the network’s stem. ViT’s stem is a", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 197, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 198, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 198, + 86 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "score": 1.0, + "content": "Convolutional neural networks (CNNs). The breakthrough performance of the AlexNet [23]", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "CNN [15, 24] on ImageNet classification [10] transformed the field of recognition, leading to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "score": 1.0, + "content": "the development of higher performing architectures, e.g., [19, 36, 37, 48], and scalable training", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "methods [16, 21]. These architectures are now core components in object detection (e.g., [34]),", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "instance segmentation (e.g., [18]), and semantic segmentation (e.g., [26]). CNNs are typically trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 464, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 464, + 167 + ], + "score": 1.0, + "content": "with stochastic gradient descent (SGD) and are widely considered to be easy to optimize.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 99, + 506, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 174, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 188 + ], + "score": 1.0, + "content": "Self-attention in vision models. Transformers [43] are revolutionizing natural language processing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 186, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 197 + ], + "score": 1.0, + "content": "by enabling scalable training. Transformers use multi-headed self-attention, which performs global", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "information processing and is strictly more general than convolution [6]. Wang et al. [46] show", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "that (single-headed) self-attention is a form of non-local means [2] and that integrating it into a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "ResNet [19] improves several tasks. Ramachandran et al. [32] explore this direction further with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "stand-alone self-attention networks for vision. They report difficulties in designing an attention-based", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "network stem and present a bespoke solution that avoids convolutions. In contrast, we demonstrate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "the benefits of a convolutional stem. Zhao et al. [53] explore a broader set of self-attention operations", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 261, + 384, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 384, + 274 + ], + "score": 1.0, + "content": "with hard-coded locality constraints, more similar to standard CNNs.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 172, + 506, + 274 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 391 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 295 + ], + "score": 1.0, + "content": "Vision transformer (ViT). Dosovitskiy et al. [13] apply a transformer encoder to image classification", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "with minimal vision-specific modifications. As the counterpart of input token embeddings, they", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 247, + 317 + ], + "score": 1.0, + "content": "partition the input image into, e.g.,", + "type": "text" + }, + { + "bbox": [ + 247, + 304, + 276, + 315 + ], + "score": 0.88, + "content": "1 6 \\times 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "pixel, non-overlapping patches and linearly project them", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "to the encoder’s input dimension. They report lackluster results when training on ImageNet-1k,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "but demonstrate state-of-the-art transfer learning when using large-scale pretraining data. ViTs are", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "sensitive to many details of the training recipe, e.g., they benefit greatly from AdamW [27] compared", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "to SGD and require careful learning rate and weight decay selection. ViTs are generally considered", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "to be difficult to optimize compared to CNNs (e.g., see [13, 41, 42]). Further evidence of challenges", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "comes from Chen et al. [4] who report ViT optimization instability in self-supervised learning (unlike", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 379, + 501, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 501, + 393 + ], + "score": 1.0, + "content": "with CNNs), and find that freezing the patchify stem at its random initialization improves stability.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 280, + 506, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 506, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "ViT improvements. ViTs are gaining rapid interest in part because they may offer a novel direction", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "away from CNNs. Touvron et al. [41] show that with more regularization and stronger data aug-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "mentation ViT models achieve competitive accuracy on ImageNet-1k alone (cf . [13]). Subsequently,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 433, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 505, + 444 + ], + "score": 1.0, + "content": "works concurrent with our own explore numerous other ViT improvements. Dominant themes include", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "multi-scale networks [14, 17, 25, 45, 50], increasing depth [42], and locality priors [5, 9, 17, 47, 49].", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 466 + ], + "score": 1.0, + "content": "In [9], d’Ascoli et al. modify multi-head self-attention with a convolutional bias at initialization and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "show that this prior improves sample efficiency and ImageNet accuracy. Resonating with our work,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 476, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 506, + 488 + ], + "score": 1.0, + "content": "[5, 17, 47, 49] present models with convolutional stems, but do not analyze optimizability (our focus).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 399, + 506, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "Discussion. Unlike the concurrent work on locality priors in ViT, our focus is studying optimizability", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "under minimal ViT modifications in order to derive crisp conclusions. Our perspective brings several", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 253, + 531 + ], + "score": 1.0, + "content": "novel observations: by adding only", + "type": "text" + }, + { + "bbox": [ + 253, + 518, + 267, + 528 + ], + "score": 0.81, + "content": "{ \\sim } 5 ", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "convolutions to the stem, ViT can be optimized well with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 207, + 542 + ], + "score": 1.0, + "content": "either AdamW or SGD", + "type": "text" + }, + { + "bbox": [ + 207, + 529, + 218, + 540 + ], + "score": 0.46, + "content": "_ { c f }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 528, + 506, + 542 + ], + "score": 1.0, + "content": ". all prior works use AdamW to avoid large drops in accuracy [41]), it", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 539, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 554 + ], + "score": 1.0, + "content": "becomes less sensitive to the specific choice of learning rate and weight decay, and training converges", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "faster. We also observe a consistent improvement in ImageNet top-1 accuracy across a wide spectrum", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "of model complexities (1G flops to 36G flops) and dataset scales (ImageNet-1k to ImageNet-21k).", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "These results suggest that a (hard) convolutional bias early in the network does not compromise", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 583, + 485, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 485, + 596 + ], + "score": 1.0, + "content": "representational capacity, as conjectured in [9], and is beneficial within the scope of this study.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 495, + 506, + 596 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 610, + 299, + 624 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 300, + 627 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 300, + 627 + ], + "score": 1.0, + "content": "3 Vision Transformer Architectures", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 105, + 636, + 492, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 493, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 493, + 648 + ], + "score": 1.0, + "content": "Next, we review vision transformers [13] and describe the convolutional stems used in our work.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 636, + 493, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 452, + 669 + ], + "score": 1.0, + "content": "The vision transformer (ViT). ViT first partitions an input image into non-overlapping", + "type": "text" + }, + { + "bbox": [ + 453, + 658, + 473, + 668 + ], + "score": 0.89, + "content": "p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 656, + 505, + 669 + ], + "score": 1.0, + "content": "patches", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 253, + 679 + ], + "score": 1.0, + "content": "and linearly projects each patch to a", + "type": "text" + }, + { + "bbox": [ + 253, + 668, + 260, + 677 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 668, + 505, + 679 + ], + "score": 1.0, + "content": "-dimensional feature vector using a learned weight matrix. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 158, + 691 + ], + "score": 1.0, + "content": "patch size of", + "type": "text" + }, + { + "bbox": [ + 158, + 678, + 187, + 689 + ], + "score": 0.91, + "content": "p = 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 678, + 270, + 691 + ], + "score": 1.0, + "content": "and an image size of", + "type": "text" + }, + { + "bbox": [ + 271, + 678, + 309, + 689 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "are typical. The resulting patch embeddings (plus", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "positional embeddings and a learned classification token embedding) are processed by a standard", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "transformer encoder [43, 44] followed by a classification head. Using common network nomenclature,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "we refer to the portion of ViT before the transformer blocks as the network’s stem. ViT’s stem is a", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 656, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 68, + 310, + 119 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 68, + 310, + 119 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 68, + 310, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 68, + 310, + 119 + ], + "score": 0.958, + "html": "
modelref model|hidden MLP sizemultnum headsnum blocksflops (B)params (M)acts (M)time (min)
ViTp-1GF~ViT-T19233121.14.85.52.6
ViTp-4GF~ViT-S38436123.918.511.13.8
ViTp-18GF=ViT-B7684121217.586.724.011.5
ViTp-36GFViT-L10244161435.9178.437.318.8
", + "type": "table", + "image_path": "3599e6fb185969911a28ae324a67963ed676830a0d957f351ca943e9dc0aad27.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 68, + 310, + 85.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 85.0, + 310, + 102.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 102.0, + 310, + 119.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 320, + 68, + 502, + 119 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 320, + 68, + 502, + 119 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 320, + 68, + 502, + 119 + ], + "spans": [ + { + "bbox": [ + 320, + 68, + 502, + 119 + ], + "score": 0.888, + "html": "
modelhidden sizeMLP multnum heads blocksnumflops (B)params (M)acts (M)time (min)
ViTc-1GF19233111.14.65.72.7
ViTc-4GF38436114.017.811.33.9
ViTc-18GF7684121117.781.624.111.4
ViTc-36GF10244161335.0167.836.718.6
", + "type": "table", + "image_path": "79c844634d5f88ad843d0ccbedac33c38a9980eb6213fb6125e5349400d7d0fd.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 320, + 68, + 502, + 85.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 320, + 85.0, + 502, + 102.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 320, + 102.0, + 502, + 119.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 261, + 141 + ], + "score": 1.0, + "content": "Table 1: Model definitions: Left: Our", + "type": "text" + }, + { + "bbox": [ + 261, + 129, + 284, + 140 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 128, + 505, + 141 + ], + "score": 1.0, + "content": "models at various complexities, which use the original", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 139, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 506, + 151 + ], + "score": 1.0, + "content": "patchify stem and closely resemble the original ViT models [13]. To facilitate comparisons with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 151, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 162 + ], + "score": 1.0, + "content": "CNNs, we modify the original ViT-Tiny, -Small, -Base, -Large models to obtain models at 1GF, 4GF,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "18GF, and 36GF, respectively. The modifications are indicated in blue and include reducing the MLP", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 172, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 172, + 185 + ], + "score": 1.0, + "content": "multiplier from", + "type": "text" + }, + { + "bbox": [ + 172, + 173, + 186, + 183 + ], + "score": 0.87, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 172, + 198, + 185 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 199, + 173, + 213, + 183 + ], + "score": 0.88, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 172, + 506, + 185 + ], + "score": 1.0, + "content": "for the 1GF and 4GF models, and reducing the number of transformer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 321, + 196 + ], + "score": 1.0, + "content": "blocks from 24 to 14 for the 36GF model. Right: Our", + "type": "text" + }, + { + "bbox": [ + 322, + 183, + 345, + 194 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "models at various complexities that use", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 449, + 207 + ], + "score": 1.0, + "content": "the convolutional stem. The only additional modification relative to the corresponding", + "type": "text" + }, + { + "bbox": [ + 450, + 194, + 473, + 205 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "models", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 205, + 507, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 507, + 218 + ], + "score": 1.0, + "content": "is the removal of 1 transformer block to compensate for the increased flops of the convolutional stem.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "We show complexity measures for all models (flops, parameters, activations, and epoch training time", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 226, + 468, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 254, + 239 + ], + "score": 1.0, + "content": "on ImageNet-1k); the corresponding", + "type": "text" + }, + { + "bbox": [ + 254, + 227, + 277, + 238 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 226, + 295, + 239 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 227, + 319, + 238 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 226, + 468, + 239 + ], + "score": 1.0, + "content": "models match closely on all metrics.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 108, + 251, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 251, + 263 + ], + "score": 1.0, + "content": "specific case of convolution (stride-", + "type": "text" + }, + { + "bbox": [ + 252, + 253, + 258, + 263 + ], + "score": 0.62, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 250, + 261, + 263 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 262, + 252, + 281, + 263 + ], + "score": 0.82, + "content": "p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "kernel), but we will refer to it as the patchify stem and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "reserve the terminology of convolutional stem for stems with a more conventional CNN design with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 273, + 466, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 466, + 285 + ], + "score": 1.0, + "content": "multiple layers of overlapping convolutions (i.e., with stride smaller than the kernel size).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 130, + 304 + ], + "score": 0.81, + "content": "\\mathbf { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "models. Prior work proposes ViT models of various sizes, such as ViT-Tiny, ViT-Small,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "ViT-Base, etc. [13, 41]. To facilitate comparisons with CNNs, which are typically standardized to 1", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "gigaflop (GF), 2GF, 4GF, 8GF, etc., we modify the original ViT models to obtain models at about", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "these complexities. Details are given in Table 1 (left). For easier comparison with CNNs of similar", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 426, + 349 + ], + "score": 1.0, + "content": "flops, and to avoid subjective size names, we refer the models by their flops, e.g.,", + "type": "text" + }, + { + "bbox": [ + 426, + 336, + 450, + 348 + ], + "score": 0.81, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "-4GF in place", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 347, + 497, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 209, + 360 + ], + "score": 1.0, + "content": "of ViT-Small. We use the", + "type": "text" + }, + { + "bbox": [ + 210, + 348, + 219, + 357 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 347, + 497, + 360 + ], + "score": 1.0, + "content": "subscript to indicate that these models use the original patchify stem.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "Convolutional stem design. We adopt a typical minimalist convolutional stem design by stacking", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 378, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 126, + 389 + ], + "score": 0.86, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 378, + 283, + 390 + ], + "score": 1.0, + "content": "convolutions [36], followed by a single", + "type": "text" + }, + { + "bbox": [ + 284, + 379, + 303, + 389 + ], + "score": 0.88, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 378, + 445, + 390 + ], + "score": 1.0, + "content": "convolution at the end to match the", + "type": "text" + }, + { + "bbox": [ + 446, + 379, + 452, + 388 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 378, + 505, + 390 + ], + "score": 1.0, + "content": "-dimensional", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 387, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 389, + 403 + ], + "score": 1.0, + "content": "input of the transformer encoder. These stems quickly downsample a", + "type": "text" + }, + { + "bbox": [ + 389, + 389, + 429, + 400 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 387, + 506, + 403 + ], + "score": 1.0, + "content": "input image using", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 400, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 251, + 413 + ], + "score": 1.0, + "content": "overlapping strided convolutions to", + "type": "text" + }, + { + "bbox": [ + 251, + 400, + 280, + 411 + ], + "score": 0.88, + "content": "1 4 \\times 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 400, + 506, + 413 + ], + "score": 1.0, + "content": ", matching the number of inputs created by the standard", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 411, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 330, + 424 + ], + "score": 1.0, + "content": "patchify stem. We follow a simple design pattern: all", + "type": "text" + }, + { + "bbox": [ + 330, + 411, + 350, + 421 + ], + "score": 0.87, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 411, + 506, + 424 + ], + "score": 1.0, + "content": "convolutions either have stride 2 and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "score": 1.0, + "content": "double the number of output channels or stride 1 and keep the number of output channels constant.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "We enforce that the stem accounts for approximately the computation of one transformer block of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "the corresponding model so that we can easily control for flops by removing one transformer block", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 455, + 504, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 504, + 466 + ], + "score": 1.0, + "content": "when using the convolutional stem instead of the patchify stem. Our stem design was chosen to be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 466, + 479, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 479, + 478 + ], + "score": 1.0, + "content": "purposefully simple and we emphasize that it was not designed to maximize model accuracy.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 130, + 497 + ], + "score": 0.84, + "content": "\\mathbf { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "models. To form a ViT model with a convolutional stem, we simply replace the patchify stem", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "with its counterpart convolutional stem and remove one transformer block to compensate for the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "convolutional stem’s extra flops (see Figure 1). We refer to the modified ViT with a convolutional stem", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 117, + 531 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 518, + 140, + 529 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 517, + 219, + 531 + ], + "score": 1.0, + "content": ". Configurations for", + "type": "text" + }, + { + "bbox": [ + 219, + 519, + 242, + 529 + ], + "score": 0.91, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "at various complexities are given in Table 1 (right); corresponding", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 528, + 480, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 129, + 540 + ], + "score": 0.84, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 528, + 147, + 542 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 148, + 529, + 171, + 540 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 528, + 480, + 542 + ], + "score": 1.0, + "content": "models match closely on all complexity metrics including flops and runtime.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 433, + 561 + ], + "score": 1.0, + "content": "Convolutional stem details. Our convolutional stem designs use four, four, and six", + "type": "text" + }, + { + "bbox": [ + 433, + 550, + 452, + 560 + ], + "score": 0.88, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "convolutions", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "for the 1GF, 4GF, and 18GF models, respectively. The output channels are [24, 48, 96, 192], [48,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 368, + 584 + ], + "score": 1.0, + "content": "96, 192, 384], and [64, 128, 128, 256, 256, 512], respectively. All", + "type": "text" + }, + { + "bbox": [ + 368, + 571, + 388, + 581 + ], + "score": 0.86, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "convolutions are followed by", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 582, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 342, + 594 + ], + "score": 1.0, + "content": "batch norm (BN) [21] and then ReLU [29], while the final", + "type": "text" + }, + { + "bbox": [ + 343, + 582, + 362, + 592 + ], + "score": 0.88, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 582, + 506, + 594 + ], + "score": 1.0, + "content": "convolution is not, to be consistent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "with the original patchify stem. Eventually, matching stem flops to transformer block flops results in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 603, + 432, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 239, + 615 + ], + "score": 1.0, + "content": "an unreasonably large stem, thus", + "type": "text" + }, + { + "bbox": [ + 239, + 604, + 262, + 615 + ], + "score": 0.71, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 603, + 379, + 615 + ], + "score": 1.0, + "content": "-36GF uses the same stem as", + "type": "text" + }, + { + "bbox": [ + 379, + 604, + 402, + 615 + ], + "score": 0.76, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 603, + 432, + 615 + ], + "score": 1.0, + "content": "-18GF.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "Convolutions in ViT. Dosovitskiy et al. [13] also introduced a “hybrid ViT” architecture that blends", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "score": 1.0, + "content": "a modified ResNet [19] (BiT-ResNet [22]) with a transformer encoder. In their hybrid model, the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "score": 1.0, + "content": "patchify stem is replaced by a partial BiT-ResNet-50 that terminates at the output of the conv4 stage", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "score": 1.0, + "content": "or the output of an extended conv3 stage. These image embeddings replace the standard patchify", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "stem embeddings. This partial BiT-ResNet-50 stem is deep, with 40 convolutional layers. In this", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "work, we explore lightweight convolutional stems that consist of only 5 to 7 convolutions in total,", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "score": 1.0, + "content": "instead of the 40 used by the hybrid ViT. Moreover, we emphasize that the goal of our work is not to", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 698, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 714 + ], + "score": 1.0, + "content": "explore the hybrid ViT design space, but rather to study the optimizability effects of simply replacing", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 711, + 496, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 496, + 723 + ], + "score": 1.0, + "content": "the patchify stem with a minimal convolutional stem that follows standard CNN design practices.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 50 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 68, + 310, + 119 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 68, + 310, + 119 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 68, + 310, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 68, + 310, + 119 + ], + "score": 0.958, + "html": "
modelref model|hidden MLP sizemultnum headsnum blocksflops (B)params (M)acts (M)time (min)
ViTp-1GF~ViT-T19233121.14.85.52.6
ViTp-4GF~ViT-S38436123.918.511.13.8
ViTp-18GF=ViT-B7684121217.586.724.011.5
ViTp-36GFViT-L10244161435.9178.437.318.8
", + "type": "table", + "image_path": "3599e6fb185969911a28ae324a67963ed676830a0d957f351ca943e9dc0aad27.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 68, + 310, + 85.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 85.0, + 310, + 102.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 102.0, + 310, + 119.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 320, + 68, + 502, + 119 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 320, + 68, + 502, + 119 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 320, + 68, + 502, + 119 + ], + "spans": [ + { + "bbox": [ + 320, + 68, + 502, + 119 + ], + "score": 0.888, + "html": "
modelhidden sizeMLP multnum heads blocksnumflops (B)params (M)acts (M)time (min)
ViTc-1GF19233111.14.65.72.7
ViTc-4GF38436114.017.811.33.9
ViTc-18GF7684121117.781.624.111.4
ViTc-36GF10244161335.0167.836.718.6
", + "type": "table", + "image_path": "79c844634d5f88ad843d0ccbedac33c38a9980eb6213fb6125e5349400d7d0fd.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 320, + 68, + 502, + 85.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 320, + 85.0, + 502, + 102.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 320, + 102.0, + 502, + 119.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 261, + 141 + ], + "score": 1.0, + "content": "Table 1: Model definitions: Left: Our", + "type": "text" + }, + { + "bbox": [ + 261, + 129, + 284, + 140 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 128, + 505, + 141 + ], + "score": 1.0, + "content": "models at various complexities, which use the original", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 139, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 506, + 151 + ], + "score": 1.0, + "content": "patchify stem and closely resemble the original ViT models [13]. To facilitate comparisons with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 151, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 162 + ], + "score": 1.0, + "content": "CNNs, we modify the original ViT-Tiny, -Small, -Base, -Large models to obtain models at 1GF, 4GF,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 174 + ], + "score": 1.0, + "content": "18GF, and 36GF, respectively. The modifications are indicated in blue and include reducing the MLP", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 172, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 172, + 185 + ], + "score": 1.0, + "content": "multiplier from", + "type": "text" + }, + { + "bbox": [ + 172, + 173, + 186, + 183 + ], + "score": 0.87, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 172, + 198, + 185 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 199, + 173, + 213, + 183 + ], + "score": 0.88, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 172, + 506, + 185 + ], + "score": 1.0, + "content": "for the 1GF and 4GF models, and reducing the number of transformer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 321, + 196 + ], + "score": 1.0, + "content": "blocks from 24 to 14 for the 36GF model. Right: Our", + "type": "text" + }, + { + "bbox": [ + 322, + 183, + 345, + 194 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "models at various complexities that use", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 449, + 207 + ], + "score": 1.0, + "content": "the convolutional stem. The only additional modification relative to the corresponding", + "type": "text" + }, + { + "bbox": [ + 450, + 194, + 473, + 205 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "models", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 205, + 507, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 507, + 218 + ], + "score": 1.0, + "content": "is the removal of 1 transformer block to compensate for the increased flops of the convolutional stem.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "We show complexity measures for all models (flops, parameters, activations, and epoch training time", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 226, + 468, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 254, + 239 + ], + "score": 1.0, + "content": "on ImageNet-1k); the corresponding", + "type": "text" + }, + { + "bbox": [ + 254, + 227, + 277, + 238 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 226, + 295, + 239 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 227, + 319, + 238 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 226, + 468, + 239 + ], + "score": 1.0, + "content": "models match closely on all metrics.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 128, + 507, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 251, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 251, + 263 + ], + "score": 1.0, + "content": "specific case of convolution (stride-", + "type": "text" + }, + { + "bbox": [ + 252, + 253, + 258, + 263 + ], + "score": 0.62, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 250, + 261, + 263 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 262, + 252, + 281, + 263 + ], + "score": 0.82, + "content": "p { \\times } p", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "kernel), but we will refer to it as the patchify stem and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "reserve the terminology of convolutional stem for stems with a more conventional CNN design with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 273, + 466, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 466, + 285 + ], + "score": 1.0, + "content": "multiple layers of overlapping convolutions (i.e., with stride smaller than the kernel size).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 250, + 505, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 130, + 304 + ], + "score": 0.81, + "content": "\\mathbf { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "models. Prior work proposes ViT models of various sizes, such as ViT-Tiny, ViT-Small,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "ViT-Base, etc. [13, 41]. To facilitate comparisons with CNNs, which are typically standardized to 1", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "gigaflop (GF), 2GF, 4GF, 8GF, etc., we modify the original ViT models to obtain models at about", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "these complexities. Details are given in Table 1 (left). For easier comparison with CNNs of similar", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 426, + 349 + ], + "score": 1.0, + "content": "flops, and to avoid subjective size names, we refer the models by their flops, e.g.,", + "type": "text" + }, + { + "bbox": [ + 426, + 336, + 450, + 348 + ], + "score": 0.81, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "-4GF in place", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 347, + 497, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 209, + 360 + ], + "score": 1.0, + "content": "of ViT-Small. We use the", + "type": "text" + }, + { + "bbox": [ + 210, + 348, + 219, + 357 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 347, + 497, + 360 + ], + "score": 1.0, + "content": "subscript to indicate that these models use the original patchify stem.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 292, + 506, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "Convolutional stem design. We adopt a typical minimalist convolutional stem design by stacking", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 378, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 126, + 389 + ], + "score": 0.86, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 378, + 283, + 390 + ], + "score": 1.0, + "content": "convolutions [36], followed by a single", + "type": "text" + }, + { + "bbox": [ + 284, + 379, + 303, + 389 + ], + "score": 0.88, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 378, + 445, + 390 + ], + "score": 1.0, + "content": "convolution at the end to match the", + "type": "text" + }, + { + "bbox": [ + 446, + 379, + 452, + 388 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 378, + 505, + 390 + ], + "score": 1.0, + "content": "-dimensional", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 387, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 389, + 403 + ], + "score": 1.0, + "content": "input of the transformer encoder. These stems quickly downsample a", + "type": "text" + }, + { + "bbox": [ + 389, + 389, + 429, + 400 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 387, + 506, + 403 + ], + "score": 1.0, + "content": "input image using", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 400, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 251, + 413 + ], + "score": 1.0, + "content": "overlapping strided convolutions to", + "type": "text" + }, + { + "bbox": [ + 251, + 400, + 280, + 411 + ], + "score": 0.88, + "content": "1 4 \\times 1 4", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 400, + 506, + 413 + ], + "score": 1.0, + "content": ", matching the number of inputs created by the standard", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 411, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 330, + 424 + ], + "score": 1.0, + "content": "patchify stem. We follow a simple design pattern: all", + "type": "text" + }, + { + "bbox": [ + 330, + 411, + 350, + 421 + ], + "score": 0.87, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 411, + 506, + 424 + ], + "score": 1.0, + "content": "convolutions either have stride 2 and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 506, + 434 + ], + "score": 1.0, + "content": "double the number of output channels or stride 1 and keep the number of output channels constant.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "We enforce that the stem accounts for approximately the computation of one transformer block of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "the corresponding model so that we can easily control for flops by removing one transformer block", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 455, + 504, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 504, + 466 + ], + "score": 1.0, + "content": "when using the convolutional stem instead of the patchify stem. Our stem design was chosen to be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 466, + 479, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 479, + 478 + ], + "score": 1.0, + "content": "purposefully simple and we emphasize that it was not designed to maximize model accuracy.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 366, + 506, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 130, + 497 + ], + "score": 0.84, + "content": "\\mathbf { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "models. To form a ViT model with a convolutional stem, we simply replace the patchify stem", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "with its counterpart convolutional stem and remove one transformer block to compensate for the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "convolutional stem’s extra flops (see Figure 1). We refer to the modified ViT with a convolutional stem", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 117, + 531 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 518, + 140, + 529 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 517, + 219, + 531 + ], + "score": 1.0, + "content": ". Configurations for", + "type": "text" + }, + { + "bbox": [ + 219, + 519, + 242, + 529 + ], + "score": 0.91, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "at various complexities are given in Table 1 (right); corresponding", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 528, + 480, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 129, + 540 + ], + "score": 0.84, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 528, + 147, + 542 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 148, + 529, + 171, + 540 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 528, + 480, + 542 + ], + "score": 1.0, + "content": "models match closely on all complexity metrics including flops and runtime.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 485, + 506, + 542 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 433, + 561 + ], + "score": 1.0, + "content": "Convolutional stem details. Our convolutional stem designs use four, four, and six", + "type": "text" + }, + { + "bbox": [ + 433, + 550, + 452, + 560 + ], + "score": 0.88, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "convolutions", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "for the 1GF, 4GF, and 18GF models, respectively. The output channels are [24, 48, 96, 192], [48,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 368, + 584 + ], + "score": 1.0, + "content": "96, 192, 384], and [64, 128, 128, 256, 256, 512], respectively. All", + "type": "text" + }, + { + "bbox": [ + 368, + 571, + 388, + 581 + ], + "score": 0.86, + "content": "3 { \\times } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "convolutions are followed by", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 582, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 342, + 594 + ], + "score": 1.0, + "content": "batch norm (BN) [21] and then ReLU [29], while the final", + "type": "text" + }, + { + "bbox": [ + 343, + 582, + 362, + 592 + ], + "score": 0.88, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 582, + 506, + 594 + ], + "score": 1.0, + "content": "convolution is not, to be consistent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "with the original patchify stem. Eventually, matching stem flops to transformer block flops results in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 603, + 432, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 239, + 615 + ], + "score": 1.0, + "content": "an unreasonably large stem, thus", + "type": "text" + }, + { + "bbox": [ + 239, + 604, + 262, + 615 + ], + "score": 0.71, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 603, + 379, + 615 + ], + "score": 1.0, + "content": "-36GF uses the same stem as", + "type": "text" + }, + { + "bbox": [ + 379, + 604, + 402, + 615 + ], + "score": 0.76, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 603, + 432, + 615 + ], + "score": 1.0, + "content": "-18GF.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 548, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "Convolutions in ViT. Dosovitskiy et al. [13] also introduced a “hybrid ViT” architecture that blends", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "score": 1.0, + "content": "a modified ResNet [19] (BiT-ResNet [22]) with a transformer encoder. In their hybrid model, the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "score": 1.0, + "content": "patchify stem is replaced by a partial BiT-ResNet-50 that terminates at the output of the conv4 stage", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "score": 1.0, + "content": "or the output of an extended conv3 stage. These image embeddings replace the standard patchify", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "stem embeddings. This partial BiT-ResNet-50 stem is deep, with 40 convolutional layers. In this", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "work, we explore lightweight convolutional stems that consist of only 5 to 7 convolutions in total,", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 703 + ], + "score": 1.0, + "content": "instead of the 40 used by the hybrid ViT. Moreover, we emphasize that the goal of our work is not to", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 698, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 714 + ], + "score": 1.0, + "content": "explore the hybrid ViT design space, but rather to study the optimizability effects of simply replacing", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 711, + 496, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 496, + 723 + ], + "score": 1.0, + "content": "the patchify stem with a minimal convolutional stem that follows standard CNN design practices.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 624, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 70, + 258, + 85 + ], + "lines": [ + { + "bbox": [ + 104, + 69, + 259, + 89 + ], + "spans": [ + { + "bbox": [ + 104, + 69, + 259, + 89 + ], + "score": 1.0, + "content": "4 Measuring Optimizability", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 96, + 504, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 96, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 105, + 96, + 505, + 109 + ], + "score": 1.0, + "content": "It has been noted in the literature that ViT models are challenging to optimize, e.g., they may achieve", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 107, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 506, + 120 + ], + "score": 1.0, + "content": "only modest performance when trained on a mid-size dataset (ImageNet-1k) [13], are sensitive to data", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 506, + 132 + ], + "score": 1.0, + "content": "augmentation [41] and optimizer choice [41], and may perform poorly when made deeper [42]. We", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 129, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 506, + 142 + ], + "score": 1.0, + "content": "empirically observed the general presence of such difficulties through the course of our experiments", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 141, + 451, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 451, + 154 + ], + "score": 1.0, + "content": "and informally refer to such optimization characteristics collectively as optimizability.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 505, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 506, + 169 + ], + "score": 1.0, + "content": "Models with poor optimizability can yield very different results when hyperparameters are varied,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 167, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 181 + ], + "score": 1.0, + "content": "which can lead to seemingly bizarre observations, e.g., removing erasing data augmentation [54]", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 178, + 507, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 507, + 192 + ], + "score": 1.0, + "content": "causes a catastrophic drop in ImageNet accuracy in [41]. Quantitative metrics to measure optimiz-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 190, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 505, + 201 + ], + "score": 1.0, + "content": "ability are needed to allow for more robust comparisons. In this section, we establish the foundations", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 201, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 489, + 213 + ], + "score": 1.0, + "content": "of such comparisons; we extensively test various models using these optimizability measures in", + "type": "text" + }, + { + "bbox": [ + 489, + 201, + 501, + 212 + ], + "score": 0.57, + "content": "\\ S 5", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 201, + 504, + 213 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "Training length stability. Prior works train ViT models for lengthy schedules, e.g., 300 to 400", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 507, + 244 + ], + "score": 1.0, + "content": "epochs on ImageNet is typical (at the extreme, [17] trains models for 1000 epochs), since results at a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 356, + 254 + ], + "score": 1.0, + "content": "formerly common 100-epoch schedule are substantially worse (", + "type": "text" + }, + { + "bbox": [ + 356, + 243, + 379, + 253 + ], + "score": 0.83, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 243, + 481, + 254 + ], + "score": 1.0, + "content": "lower top-1 accuracy, see", + "type": "text" + }, + { + "bbox": [ + 481, + 243, + 502, + 254 + ], + "score": 0.57, + "content": "\\begin{array} { r l } { \\ S } & { { } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 243, + 506, + 254 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "In the context of ImageNet, we define top-1 accuracy at 400 epochs as an approximate asymptotic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "result, i.e., training for longer will not meaningfully improve top-1 accuracy, and we compare it to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "score": 1.0, + "content": "accuracy of models trained for only 50, 100, or 200 epochs. We define training length stability as the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "gap to asymptotic accuracy. Intuitively, it’s a measure of convergence speed. Models that converge", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 447, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 447, + 309 + ], + "score": 1.0, + "content": "faster offer obvious practical benefits, especially when training many model variants.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 507, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 507, + 330 + ], + "score": 1.0, + "content": "Optimizer stability. Prior works use AdamW [27] to optimize ViT models from random initialization.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "Results of SGD are not typically presented and we are only aware of Touvron et al. [41]’s report of a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 142, + 351 + ], + "score": 1.0, + "content": "dramatic", + "type": "text" + }, + { + "bbox": [ + 143, + 339, + 164, + 349 + ], + "score": 0.89, + "content": "\\sim 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "drop in ImageNet top-1 accuracy. In contrast, widely used CNNs, such as ResNets, can", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 341, + 362 + ], + "score": 1.0, + "content": "be optimized equally well with either SGD or AdamW (see", + "type": "text" + }, + { + "bbox": [ + 342, + 350, + 362, + 360 + ], + "score": 0.65, + "content": "\\ S 5 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "and SGD (always with momentum)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 359, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 104, + 359, + 507, + 375 + ], + "score": 1.0, + "content": "is typically used in practice. SGD has the practical benefit of having fewer hyperparameters (e.g.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 178, + 384 + ], + "score": 1.0, + "content": "tuning AdamW’s", + "type": "text" + }, + { + "bbox": [ + 179, + 372, + 190, + 383 + ], + "score": 0.88, + "content": "\\beta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 371, + 337, + 384 + ], + "score": 1.0, + "content": "can be important [3]) and requiring", + "type": "text" + }, + { + "bbox": [ + 337, + 371, + 357, + 382 + ], + "score": 0.88, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "less optimizer state memory, which", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "can ease scaling. We define optimizer stability as the accuracy gap between AdamW and SGD. Like", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "training length stability, we use optimizer stability as a proxy for the ease of optimization of a model.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 181, + 426 + ], + "score": 1.0, + "content": "Hyperparameter", + "type": "text" + }, + { + "bbox": [ + 181, + 413, + 212, + 424 + ], + "score": 0.84, + "content": "( l r , w d )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 413, + 311, + 426 + ], + "score": 1.0, + "content": "stability. Learning rate", + "type": "text" + }, + { + "bbox": [ + 311, + 414, + 326, + 424 + ], + "score": 0.72, + "content": "( l r )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 413, + 506, + 426 + ], + "score": 1.0, + "content": "and weight decay (wd) are among the most", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "important hyperparameters governing optimization with SGD and AdamW. New models and datasets", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "often require a search for their optimal values as the choice can dramatically affect results. It is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 445, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 459 + ], + "score": 1.0, + "content": "desirable to have a model and optimizer that yield good results for a wide range of learning rate", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "and weight decay values. We will explore this hyperparameter stability by comparing the error", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 427, + 480 + ], + "score": 1.0, + "content": "distribution functions (EDFs) [30] of models trained with various choices of", + "type": "text" + }, + { + "bbox": [ + 427, + 468, + 436, + 478 + ], + "score": 0.74, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 467, + 455, + 480 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 456, + 468, + 469, + 478 + ], + "score": 0.66, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 467, + 506, + 480 + ], + "score": 1.0, + "content": ". In this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 383, + 491 + ], + "score": 1.0, + "content": "setting, to create an EDF for a model we randomly sample values of", + "type": "text" + }, + { + "bbox": [ + 383, + 479, + 392, + 489 + ], + "score": 0.71, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "and wd and train the model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "accordingly. Distributional estimates, like those provided by EDFs, give a more complete view of the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 500, + 502, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 478, + 512 + ], + "score": 1.0, + "content": "characteristics of models that point estimates cannot reveal [30, 31]. We will review EDFs in", + "type": "text" + }, + { + "bbox": [ + 479, + 500, + 497, + 511 + ], + "score": 0.85, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 500, + 502, + 512 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Peak performance. The maximum possible performance of each model is the most commonly used", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "metric in previous literature and it is often provided without carefully controlling training details", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 411, + 554 + ], + "score": 1.0, + "content": "such as data augmentations, regularization methods, number of epochs, and", + "type": "text" + }, + { + "bbox": [ + 411, + 542, + 419, + 552 + ], + "score": 0.38, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 542, + 505, + 554 + ], + "score": 1.0, + "content": ", wd tuning. To make", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 551, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 505, + 567 + ], + "score": 1.0, + "content": "more robust comparisons, we define peak performance as the result of a model at 400 epochs using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 562, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 329, + 578 + ], + "score": 1.0, + "content": "its best-performing optimizer and parsimoniously tuned", + "type": "text" + }, + { + "bbox": [ + 329, + 564, + 338, + 574 + ], + "score": 0.51, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 562, + 355, + 578 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 355, + 564, + 369, + 574 + ], + "score": 0.41, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 562, + 438, + 578 + ], + "score": 1.0, + "content": "values (details in", + "type": "text" + }, + { + "bbox": [ + 439, + 564, + 450, + 575 + ], + "score": 0.74, + "content": "\\ S 6", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 562, + 505, + 578 + ], + "score": 1.0, + "content": "), while fixing", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 575, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 587 + ], + "score": 1.0, + "content": "justifiably good values for all other variables that have a known impact on training. Peak performance", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 586, + 491, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 476, + 599 + ], + "score": 1.0, + "content": "results for ViTs and CNNs under these carefully controlled training settings are presented in", + "type": "text" + }, + { + "bbox": [ + 476, + 586, + 488, + 597 + ], + "score": 0.66, + "content": "\\ S 6", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 586, + 491, + 599 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + }, + { + "type": "title", + "bbox": [ + 107, + 613, + 237, + 627 + ], + "lines": [ + { + "bbox": [ + 104, + 613, + 239, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 613, + 239, + 630 + ], + "score": 1.0, + "content": "5 Stability Experiments", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 434, + 652 + ], + "score": 1.0, + "content": "In this section we test the stability of ViT models with the original patchify", + "type": "text" + }, + { + "bbox": [ + 434, + 640, + 449, + 651 + ], + "score": 0.72, + "content": "( P )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 638, + 505, + 652 + ], + "score": 1.0, + "content": "stem vs. the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 163, + 663 + ], + "score": 1.0, + "content": "convolutional", + "type": "text" + }, + { + "bbox": [ + 163, + 651, + 177, + 662 + ], + "score": 0.6, + "content": "( C )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 650, + 239, + 663 + ], + "score": 1.0, + "content": "stem defined in", + "type": "text" + }, + { + "bbox": [ + 240, + 651, + 251, + 662 + ], + "score": 0.76, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 650, + 506, + 663 + ], + "score": 1.0, + "content": ". For reference, we also train RegNetY [12, 31], a state-of-the-art", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 662, + 421, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 421, + 674 + ], + "score": 1.0, + "content": "CNN that is easy to optimize and serves as a reference point for good stability.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "We conduct experiments using ImageNet-1k [10]’s standard training and validation sets, and report", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "top-1 error. Following [12], for all results, we carefully control training settings and we use a minimal", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 392, + 712 + ], + "score": 1.0, + "content": "set of data augmentations that still yields strong results, for details see", + "type": "text" + }, + { + "bbox": [ + 392, + 700, + 411, + 711 + ], + "score": 0.78, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 700, + 505, + 712 + ], + "score": 1.0, + "content": ". In this section, unless", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 270, + 723 + ], + "score": 1.0, + "content": "noted, for each model we use the optimal", + "type": "text" + }, + { + "bbox": [ + 271, + 711, + 279, + 721 + ], + "score": 0.78, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 711, + 296, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 711, + 309, + 721 + ], + "score": 0.55, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "found under a 50 epoch schedule (see Appendix).", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 70, + 258, + 85 + ], + "lines": [ + { + "bbox": [ + 104, + 69, + 259, + 89 + ], + "spans": [ + { + "bbox": [ + 104, + 69, + 259, + 89 + ], + "score": 1.0, + "content": "4 Measuring Optimizability", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 96, + 504, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 96, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 105, + 96, + 505, + 109 + ], + "score": 1.0, + "content": "It has been noted in the literature that ViT models are challenging to optimize, e.g., they may achieve", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 107, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 506, + 120 + ], + "score": 1.0, + "content": "only modest performance when trained on a mid-size dataset (ImageNet-1k) [13], are sensitive to data", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 506, + 132 + ], + "score": 1.0, + "content": "augmentation [41] and optimizer choice [41], and may perform poorly when made deeper [42]. We", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 129, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 506, + 142 + ], + "score": 1.0, + "content": "empirically observed the general presence of such difficulties through the course of our experiments", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 141, + 451, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 451, + 154 + ], + "score": 1.0, + "content": "and informally refer to such optimization characteristics collectively as optimizability.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 96, + 506, + 154 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 505, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 506, + 169 + ], + "score": 1.0, + "content": "Models with poor optimizability can yield very different results when hyperparameters are varied,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 167, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 181 + ], + "score": 1.0, + "content": "which can lead to seemingly bizarre observations, e.g., removing erasing data augmentation [54]", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 178, + 507, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 507, + 192 + ], + "score": 1.0, + "content": "causes a catastrophic drop in ImageNet accuracy in [41]. Quantitative metrics to measure optimiz-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 190, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 505, + 201 + ], + "score": 1.0, + "content": "ability are needed to allow for more robust comparisons. In this section, we establish the foundations", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 201, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 489, + 213 + ], + "score": 1.0, + "content": "of such comparisons; we extensively test various models using these optimizability measures in", + "type": "text" + }, + { + "bbox": [ + 489, + 201, + 501, + 212 + ], + "score": 0.57, + "content": "\\ S 5", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 201, + 504, + 213 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 157, + 507, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "Training length stability. Prior works train ViT models for lengthy schedules, e.g., 300 to 400", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 507, + 244 + ], + "score": 1.0, + "content": "epochs on ImageNet is typical (at the extreme, [17] trains models for 1000 epochs), since results at a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 356, + 254 + ], + "score": 1.0, + "content": "formerly common 100-epoch schedule are substantially worse (", + "type": "text" + }, + { + "bbox": [ + 356, + 243, + 379, + 253 + ], + "score": 0.83, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 243, + 481, + 254 + ], + "score": 1.0, + "content": "lower top-1 accuracy, see", + "type": "text" + }, + { + "bbox": [ + 481, + 243, + 502, + 254 + ], + "score": 0.57, + "content": "\\begin{array} { r l } { \\ S } & { { } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 243, + 506, + 254 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "In the context of ImageNet, we define top-1 accuracy at 400 epochs as an approximate asymptotic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "result, i.e., training for longer will not meaningfully improve top-1 accuracy, and we compare it to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 287 + ], + "score": 1.0, + "content": "accuracy of models trained for only 50, 100, or 200 epochs. We define training length stability as the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "gap to asymptotic accuracy. Intuitively, it’s a measure of convergence speed. Models that converge", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 447, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 447, + 309 + ], + "score": 1.0, + "content": "faster offer obvious practical benefits, especially when training many model variants.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 221, + 507, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 507, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 507, + 330 + ], + "score": 1.0, + "content": "Optimizer stability. Prior works use AdamW [27] to optimize ViT models from random initialization.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "Results of SGD are not typically presented and we are only aware of Touvron et al. [41]’s report of a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 142, + 351 + ], + "score": 1.0, + "content": "dramatic", + "type": "text" + }, + { + "bbox": [ + 143, + 339, + 164, + 349 + ], + "score": 0.89, + "content": "\\sim 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "drop in ImageNet top-1 accuracy. In contrast, widely used CNNs, such as ResNets, can", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 341, + 362 + ], + "score": 1.0, + "content": "be optimized equally well with either SGD or AdamW (see", + "type": "text" + }, + { + "bbox": [ + 342, + 350, + 362, + 360 + ], + "score": 0.65, + "content": "\\ S 5 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "and SGD (always with momentum)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 359, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 104, + 359, + 507, + 375 + ], + "score": 1.0, + "content": "is typically used in practice. SGD has the practical benefit of having fewer hyperparameters (e.g.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 178, + 384 + ], + "score": 1.0, + "content": "tuning AdamW’s", + "type": "text" + }, + { + "bbox": [ + 179, + 372, + 190, + 383 + ], + "score": 0.88, + "content": "\\beta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 371, + 337, + 384 + ], + "score": 1.0, + "content": "can be important [3]) and requiring", + "type": "text" + }, + { + "bbox": [ + 337, + 371, + 357, + 382 + ], + "score": 0.88, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "less optimizer state memory, which", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "can ease scaling. We define optimizer stability as the accuracy gap between AdamW and SGD. Like", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "training length stability, we use optimizer stability as a proxy for the ease of optimization of a model.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 316, + 507, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 181, + 426 + ], + "score": 1.0, + "content": "Hyperparameter", + "type": "text" + }, + { + "bbox": [ + 181, + 413, + 212, + 424 + ], + "score": 0.84, + "content": "( l r , w d )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 413, + 311, + 426 + ], + "score": 1.0, + "content": "stability. Learning rate", + "type": "text" + }, + { + "bbox": [ + 311, + 414, + 326, + 424 + ], + "score": 0.72, + "content": "( l r )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 413, + 506, + 426 + ], + "score": 1.0, + "content": "and weight decay (wd) are among the most", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "important hyperparameters governing optimization with SGD and AdamW. New models and datasets", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "often require a search for their optimal values as the choice can dramatically affect results. It is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 445, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 506, + 459 + ], + "score": 1.0, + "content": "desirable to have a model and optimizer that yield good results for a wide range of learning rate", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "and weight decay values. We will explore this hyperparameter stability by comparing the error", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 427, + 480 + ], + "score": 1.0, + "content": "distribution functions (EDFs) [30] of models trained with various choices of", + "type": "text" + }, + { + "bbox": [ + 427, + 468, + 436, + 478 + ], + "score": 0.74, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 467, + 455, + 480 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 456, + 468, + 469, + 478 + ], + "score": 0.66, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 467, + 506, + 480 + ], + "score": 1.0, + "content": ". In this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 383, + 491 + ], + "score": 1.0, + "content": "setting, to create an EDF for a model we randomly sample values of", + "type": "text" + }, + { + "bbox": [ + 383, + 479, + 392, + 489 + ], + "score": 0.71, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "and wd and train the model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "accordingly. Distributional estimates, like those provided by EDFs, give a more complete view of the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 500, + 502, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 478, + 512 + ], + "score": 1.0, + "content": "characteristics of models that point estimates cannot reveal [30, 31]. We will review EDFs in", + "type": "text" + }, + { + "bbox": [ + 479, + 500, + 497, + 511 + ], + "score": 0.85, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 500, + 502, + 512 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 413, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Peak performance. The maximum possible performance of each model is the most commonly used", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "metric in previous literature and it is often provided without carefully controlling training details", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 411, + 554 + ], + "score": 1.0, + "content": "such as data augmentations, regularization methods, number of epochs, and", + "type": "text" + }, + { + "bbox": [ + 411, + 542, + 419, + 552 + ], + "score": 0.38, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 542, + 505, + 554 + ], + "score": 1.0, + "content": ", wd tuning. To make", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 551, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 505, + 567 + ], + "score": 1.0, + "content": "more robust comparisons, we define peak performance as the result of a model at 400 epochs using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 562, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 329, + 578 + ], + "score": 1.0, + "content": "its best-performing optimizer and parsimoniously tuned", + "type": "text" + }, + { + "bbox": [ + 329, + 564, + 338, + 574 + ], + "score": 0.51, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 562, + 355, + 578 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 355, + 564, + 369, + 574 + ], + "score": 0.41, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 562, + 438, + 578 + ], + "score": 1.0, + "content": "values (details in", + "type": "text" + }, + { + "bbox": [ + 439, + 564, + 450, + 575 + ], + "score": 0.74, + "content": "\\ S 6", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 562, + 505, + 578 + ], + "score": 1.0, + "content": "), while fixing", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 575, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 587 + ], + "score": 1.0, + "content": "justifiably good values for all other variables that have a known impact on training. Peak performance", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 586, + 491, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 476, + 599 + ], + "score": 1.0, + "content": "results for ViTs and CNNs under these carefully controlled training settings are presented in", + "type": "text" + }, + { + "bbox": [ + 476, + 586, + 488, + 597 + ], + "score": 0.66, + "content": "\\ S 6", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 586, + 491, + 599 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 520, + 505, + 599 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 613, + 237, + 627 + ], + "lines": [ + { + "bbox": [ + 104, + 613, + 239, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 613, + 239, + 630 + ], + "score": 1.0, + "content": "5 Stability Experiments", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 434, + 652 + ], + "score": 1.0, + "content": "In this section we test the stability of ViT models with the original patchify", + "type": "text" + }, + { + "bbox": [ + 434, + 640, + 449, + 651 + ], + "score": 0.72, + "content": "( P )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 638, + 505, + 652 + ], + "score": 1.0, + "content": "stem vs. the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 163, + 663 + ], + "score": 1.0, + "content": "convolutional", + "type": "text" + }, + { + "bbox": [ + 163, + 651, + 177, + 662 + ], + "score": 0.6, + "content": "( C )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 650, + 239, + 663 + ], + "score": 1.0, + "content": "stem defined in", + "type": "text" + }, + { + "bbox": [ + 240, + 651, + 251, + 662 + ], + "score": 0.76, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 650, + 506, + 663 + ], + "score": 1.0, + "content": ". For reference, we also train RegNetY [12, 31], a state-of-the-art", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 662, + 421, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 421, + 674 + ], + "score": 1.0, + "content": "CNN that is easy to optimize and serves as a reference point for good stability.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 638, + 506, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "We conduct experiments using ImageNet-1k [10]’s standard training and validation sets, and report", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "top-1 error. Following [12], for all results, we carefully control training settings and we use a minimal", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 392, + 712 + ], + "score": 1.0, + "content": "set of data augmentations that still yields strong results, for details see", + "type": "text" + }, + { + "bbox": [ + 392, + 700, + 411, + 711 + ], + "score": 0.78, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 700, + 505, + 712 + ], + "score": 1.0, + "content": ". In this section, unless", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 270, + 723 + ], + "score": 1.0, + "content": "noted, for each model we use the optimal", + "type": "text" + }, + { + "bbox": [ + 271, + 711, + 279, + 721 + ], + "score": 0.78, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 711, + 296, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 711, + 309, + 721 + ], + "score": 0.55, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "found under a 50 epoch schedule (see Appendix).", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 677, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 72, + 501, + 157 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 72, + 501, + 157 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 72, + 501, + 157 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 501, + 157 + ], + "score": 0.965, + "type": "image", + "image_path": "1b817452fed13ecd8d39700f88900c771e3a9e3f6dfc8bdc649446f86b908a32.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 72, + 501, + 100.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 100.33333333333333, + 501, + 128.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 128.66666666666666, + 501, + 157.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 165, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "Figure 2: Training length stability: We train 9 models for 50 to 400 epochs on ImageNet-1k and plot", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 176, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 305, + 189 + ], + "score": 1.0, + "content": "the ∆top-1 error to the 400 epoch result for each.", + "type": "text" + }, + { + "bbox": [ + 305, + 176, + 329, + 187 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 176, + 480, + 189 + ], + "score": 1.0, + "content": "demonstrates faster convergence than", + "type": "text" + }, + { + "bbox": [ + 480, + 176, + 504, + 187 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "across the model complexity spectrum, and helps close the gap to CNNs (represented by RegNetY).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 213, + 501, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 213, + 501, + 298 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 213, + 501, + 298 + ], + "spans": [ + { + "bbox": [ + 109, + 213, + 501, + 298 + ], + "score": 0.965, + "type": "image", + "image_path": "43debc0650f8f893da5ed8e572faf39672229881bcf0855f86dff3d9306f34f9.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 213, + 501, + 241.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 241.33333333333334, + 501, + 269.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 269.6666666666667, + 501, + 298.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 306, + 505, + 372 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "Figure 3: Optimizer stability: We train each model for 50 to 400 epochs with AdamW (upward", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 139, + 330 + ], + "score": 1.0, + "content": "triangle", + "type": "text" + }, + { + "bbox": [ + 139, + 319, + 147, + 328 + ], + "score": 0.31, + "content": "\\blacktriangle", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 318, + 271, + 330 + ], + "score": 1.0, + "content": ") and SGD (downward triangle", + "type": "text" + }, + { + "bbox": [ + 271, + 319, + 279, + 328 + ], + "score": 0.42, + "content": "\\blacktriangledown", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 318, + 352, + 330 + ], + "score": 1.0, + "content": "). For the baseline", + "type": "text" + }, + { + "bbox": [ + 352, + 318, + 375, + 329 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 318, + 505, + 330 + ], + "score": 1.0, + "content": ", SGD yields significantly worse", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 242, + 341 + ], + "score": 1.0, + "content": "results than AdamW. In contrast,", + "type": "text" + }, + { + "bbox": [ + 242, + 329, + 266, + 339 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 328, + 284, + 341 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 284, + 329, + 324, + 340 + ], + "score": 0.43, + "content": "\\mathrm { R e g N e t Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "models exhibit a much smaller gap between", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 371, + 352 + ], + "score": 1.0, + "content": "SGD and AdamW across all settings. Note that for long schedules,", + "type": "text" + }, + { + "bbox": [ + 371, + 339, + 394, + 351 + ], + "score": 0.9, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "often fails to converge with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "score": 1.0, + "content": "SGD (i.e., loss goes to NaN), in such cases we copy the best results from a shorter schedule of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 362, + 318, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 318, + 373 + ], + "score": 1.0, + "content": "same model (and show the results via a dashed line).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + } + ], + "index": 9.25 + }, + { + "type": "title", + "bbox": [ + 107, + 396, + 239, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 240, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 240, + 412 + ], + "score": 1.0, + "content": "5.1 Training Length Stability", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "We first explore how rapidly networks converge to their asymptotic error on ImageNet-1k, i.e., the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "highest possible accuracy achievable by training for many epochs. We approximate asymptotic error", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "as a model’s error using a 400 epoch schedule based on observing diminishing returns from 200 to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 318, + 462 + ], + "score": 1.0, + "content": "400. We consider a grid of 24 experiments for ViT:", + "type": "text" + }, + { + "bbox": [ + 318, + 450, + 349, + 461 + ], + "score": 0.89, + "content": "\\{ P , C \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 449, + 376, + 462 + ], + "score": 1.0, + "content": "stems", + "type": "text" + }, + { + "bbox": [ + 376, + 450, + 427, + 461 + ], + "score": 0.75, + "content": "\\times \\ \\{ 1 , 4 , 1 8 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 449, + 494, + 462 + ], + "score": 1.0, + "content": "GF model sizes", + "type": "text" + }, + { + "bbox": [ + 495, + 450, + 505, + 460 + ], + "score": 0.73, + "content": "\\times", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 381, + 473 + ], + "score": 1.0, + "content": "{50, 100, 200, 400} epochs. For reference we also train RegNetY at", + "type": "text" + }, + { + "bbox": [ + 381, + 461, + 421, + 471 + ], + "score": 0.47, + "content": "\\{ 1 , 4 , 1 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "GF. We use the best", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 470, + 471, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 471, + 484 + ], + "score": 1.0, + "content": "optimizer choice for each model (AdamW for ViT models and SGD for RegNetY models).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "Results. Figure 2 shows the absolute error deltas (∆top-1) between 50, 100, and 200 epoch schedules", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 502, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 297, + 515 + ], + "score": 1.0, + "content": "and asymptotic performance (at 400 epochs).", + "type": "text" + }, + { + "bbox": [ + 298, + 502, + 322, + 513 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 502, + 480, + 515 + ], + "score": 1.0, + "content": "demonstrates faster convergence than", + "type": "text" + }, + { + "bbox": [ + 480, + 502, + 504, + 513 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 512, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 507, + 527 + ], + "score": 1.0, + "content": "across the model complexity spectrum, and closes much of the gap to the rate of CNN convergence.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 444, + 537 + ], + "score": 1.0, + "content": "The improvement is most significant in the shortest training schedule (50 epoch), e.g.,", + "type": "text" + }, + { + "bbox": [ + 444, + 524, + 467, + 535 + ], + "score": 0.82, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "-1GF has", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 114, + 546 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 114, + 535, + 133, + 545 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 535, + 207, + 546 + ], + "score": 1.0, + "content": "error delta, while", + "type": "text" + }, + { + "bbox": [ + 207, + 535, + 231, + 546 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 535, + 340, + 546 + ], + "score": 1.0, + "content": "-1GF reduces this to about", + "type": "text" + }, + { + "bbox": [ + 340, + 535, + 355, + 545 + ], + "score": 0.87, + "content": "6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 535, + 505, + 546 + ], + "score": 1.0, + "content": ". This opens the door to applications", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 546, + 487, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 487, + 558 + ], + "score": 1.0, + "content": "that execute a large number of short-scheduled experiments, such as neural architecture search.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 107, + 571, + 212, + 583 + ], + "lines": [ + { + "bbox": [ + 104, + 569, + 214, + 587 + ], + "spans": [ + { + "bbox": [ + 104, + 569, + 214, + 587 + ], + "score": 1.0, + "content": "5.2 Optimizer Stability", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 592, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "We next explore how well AdamW and SGD optimize ViT models with the two stem types. We", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 226, + 616 + ], + "score": 1.0, + "content": "consider the following grid of", + "type": "text" + }, + { + "bbox": [ + 227, + 604, + 256, + 614 + ], + "score": 0.28, + "content": "4 8 \\ \\mathrm { V i T }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 603, + 311, + 616 + ], + "score": 1.0, + "content": "experiments:", + "type": "text" + }, + { + "bbox": [ + 311, + 604, + 342, + 615 + ], + "score": 0.81, + "content": "\\{ P , C \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 603, + 456, + 616 + ], + "score": 1.0, + "content": "stems × {1, 4, 18} GF sizes", + "type": "text" + }, + { + "bbox": [ + 457, + 604, + 465, + 614 + ], + "score": 0.33, + "content": "\\times", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "{50, 100,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 614, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 177, + 628 + ], + "score": 1.0, + "content": "200, 400} epochs", + "type": "text" + }, + { + "bbox": [ + 177, + 615, + 186, + 625 + ], + "score": 0.42, + "content": "\\times", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 614, + 507, + 628 + ], + "score": 1.0, + "content": "{AdamW, SGD} optimizers. As a reference, we also train 24 RegNetY baselines,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 625, + 354, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 354, + 639 + ], + "score": 1.0, + "content": "one for each complexity regime, epoch length, and optimizer.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 504, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 504, + 658 + ], + "score": 1.0, + "content": "Results. Figure 3 shows the results. As a baseline, RegNetY models show virtually no gap when", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 316, + 668 + ], + "score": 1.0, + "content": "trained using either SGD or AdamW (the difference", + "type": "text" + }, + { + "bbox": [ + 317, + 656, + 361, + 667 + ], + "score": 0.88, + "content": "{ \\sim } 0 . 1 { - } 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "is within noise). On the other hand,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 127, + 678 + ], + "score": 0.86, + "content": "V i T _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 667, + 469, + 680 + ], + "score": 1.0, + "content": "models suffer a dramatic drop when trained with SGD across all settings (of up to", + "type": "text" + }, + { + "bbox": [ + 470, + 667, + 489, + 678 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 395, + 690 + ], + "score": 1.0, + "content": "larger models and longer training schedules). With a convolutional stem,", + "type": "text" + }, + { + "bbox": [ + 396, + 678, + 419, + 689 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "models exhibit much", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "smaller error gaps between SGD and AdamW across all training schedules and model complexities,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 446, + 713 + ], + "score": 1.0, + "content": "including in larger models and longer schedules, where the gap is reduced to less than", + "type": "text" + }, + { + "bbox": [ + 446, + 700, + 468, + 711 + ], + "score": 0.86, + "content": "0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 700, + 506, + 713 + ], + "score": 1.0, + "content": ". In other", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 711, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 212, + 723 + ], + "score": 1.0, + "content": "words, both RegNetY and", + "type": "text" + }, + { + "bbox": [ + 213, + 711, + 236, + 722 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 711, + 447, + 723 + ], + "score": 1.0, + "content": "can be easily trained via either SGD or AdamW, but", + "type": "text" + }, + { + "bbox": [ + 447, + 711, + 470, + 722 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 711, + 504, + 723 + ], + "score": 1.0, + "content": "cannot.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 72, + 501, + 157 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 72, + 501, + 157 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 72, + 501, + 157 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 501, + 157 + ], + "score": 0.965, + "type": "image", + "image_path": "1b817452fed13ecd8d39700f88900c771e3a9e3f6dfc8bdc649446f86b908a32.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 72, + 501, + 100.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 100.33333333333333, + 501, + 128.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 128.66666666666666, + 501, + 157.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 165, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "Figure 2: Training length stability: We train 9 models for 50 to 400 epochs on ImageNet-1k and plot", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 176, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 305, + 189 + ], + "score": 1.0, + "content": "the ∆top-1 error to the 400 epoch result for each.", + "type": "text" + }, + { + "bbox": [ + 305, + 176, + 329, + 187 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 176, + 480, + 189 + ], + "score": 1.0, + "content": "demonstrates faster convergence than", + "type": "text" + }, + { + "bbox": [ + 480, + 176, + 504, + 187 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "across the model complexity spectrum, and helps close the gap to CNNs (represented by RegNetY).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 213, + 501, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 213, + 501, + 298 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 213, + 501, + 298 + ], + "spans": [ + { + "bbox": [ + 109, + 213, + 501, + 298 + ], + "score": 0.965, + "type": "image", + "image_path": "43debc0650f8f893da5ed8e572faf39672229881bcf0855f86dff3d9306f34f9.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 213, + 501, + 241.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 241.33333333333334, + 501, + 269.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 269.6666666666667, + 501, + 298.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 306, + 505, + 372 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "Figure 3: Optimizer stability: We train each model for 50 to 400 epochs with AdamW (upward", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 139, + 330 + ], + "score": 1.0, + "content": "triangle", + "type": "text" + }, + { + "bbox": [ + 139, + 319, + 147, + 328 + ], + "score": 0.31, + "content": "\\blacktriangle", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 318, + 271, + 330 + ], + "score": 1.0, + "content": ") and SGD (downward triangle", + "type": "text" + }, + { + "bbox": [ + 271, + 319, + 279, + 328 + ], + "score": 0.42, + "content": "\\blacktriangledown", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 318, + 352, + 330 + ], + "score": 1.0, + "content": "). For the baseline", + "type": "text" + }, + { + "bbox": [ + 352, + 318, + 375, + 329 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 318, + 505, + 330 + ], + "score": 1.0, + "content": ", SGD yields significantly worse", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 242, + 341 + ], + "score": 1.0, + "content": "results than AdamW. In contrast,", + "type": "text" + }, + { + "bbox": [ + 242, + 329, + 266, + 339 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 328, + 284, + 341 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 284, + 329, + 324, + 340 + ], + "score": 0.43, + "content": "\\mathrm { R e g N e t Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "models exhibit a much smaller gap between", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 371, + 352 + ], + "score": 1.0, + "content": "SGD and AdamW across all settings. Note that for long schedules,", + "type": "text" + }, + { + "bbox": [ + 371, + 339, + 394, + 351 + ], + "score": 0.9, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "often fails to converge with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 505, + 363 + ], + "score": 1.0, + "content": "SGD (i.e., loss goes to NaN), in such cases we copy the best results from a shorter schedule of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 362, + 318, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 318, + 373 + ], + "score": 1.0, + "content": "same model (and show the results via a dashed line).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + } + ], + "index": 9.25 + }, + { + "type": "title", + "bbox": [ + 107, + 396, + 239, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 240, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 240, + 412 + ], + "score": 1.0, + "content": "5.1 Training Length Stability", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "We first explore how rapidly networks converge to their asymptotic error on ImageNet-1k, i.e., the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "highest possible accuracy achievable by training for many epochs. We approximate asymptotic error", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "as a model’s error using a 400 epoch schedule based on observing diminishing returns from 200 to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 318, + 462 + ], + "score": 1.0, + "content": "400. We consider a grid of 24 experiments for ViT:", + "type": "text" + }, + { + "bbox": [ + 318, + 450, + 349, + 461 + ], + "score": 0.89, + "content": "\\{ P , C \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 449, + 376, + 462 + ], + "score": 1.0, + "content": "stems", + "type": "text" + }, + { + "bbox": [ + 376, + 450, + 427, + 461 + ], + "score": 0.75, + "content": "\\times \\ \\{ 1 , 4 , 1 8 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 449, + 494, + 462 + ], + "score": 1.0, + "content": "GF model sizes", + "type": "text" + }, + { + "bbox": [ + 495, + 450, + 505, + 460 + ], + "score": 0.73, + "content": "\\times", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 381, + 473 + ], + "score": 1.0, + "content": "{50, 100, 200, 400} epochs. For reference we also train RegNetY at", + "type": "text" + }, + { + "bbox": [ + 381, + 461, + 421, + 471 + ], + "score": 0.47, + "content": "\\{ 1 , 4 , 1 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "GF. We use the best", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 470, + 471, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 471, + 484 + ], + "score": 1.0, + "content": "optimizer choice for each model (AdamW for ViT models and SGD for RegNetY models).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 416, + 506, + 484 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "Results. Figure 2 shows the absolute error deltas (∆top-1) between 50, 100, and 200 epoch schedules", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 502, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 297, + 515 + ], + "score": 1.0, + "content": "and asymptotic performance (at 400 epochs).", + "type": "text" + }, + { + "bbox": [ + 298, + 502, + 322, + 513 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 502, + 480, + 515 + ], + "score": 1.0, + "content": "demonstrates faster convergence than", + "type": "text" + }, + { + "bbox": [ + 480, + 502, + 504, + 513 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 512, + 507, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 507, + 527 + ], + "score": 1.0, + "content": "across the model complexity spectrum, and closes much of the gap to the rate of CNN convergence.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 444, + 537 + ], + "score": 1.0, + "content": "The improvement is most significant in the shortest training schedule (50 epoch), e.g.,", + "type": "text" + }, + { + "bbox": [ + 444, + 524, + 467, + 535 + ], + "score": 0.82, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "-1GF has", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 114, + 546 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 114, + 535, + 133, + 545 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 535, + 207, + 546 + ], + "score": 1.0, + "content": "error delta, while", + "type": "text" + }, + { + "bbox": [ + 207, + 535, + 231, + 546 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 535, + 340, + 546 + ], + "score": 1.0, + "content": "-1GF reduces this to about", + "type": "text" + }, + { + "bbox": [ + 340, + 535, + 355, + 545 + ], + "score": 0.87, + "content": "6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 535, + 505, + 546 + ], + "score": 1.0, + "content": ". This opens the door to applications", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 546, + 487, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 487, + 558 + ], + "score": 1.0, + "content": "that execute a large number of short-scheduled experiments, such as neural architecture search.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 491, + 507, + 558 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 571, + 212, + 583 + ], + "lines": [ + { + "bbox": [ + 104, + 569, + 214, + 587 + ], + "spans": [ + { + "bbox": [ + 104, + 569, + 214, + 587 + ], + "score": 1.0, + "content": "5.2 Optimizer Stability", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 592, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "We next explore how well AdamW and SGD optimize ViT models with the two stem types. We", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 226, + 616 + ], + "score": 1.0, + "content": "consider the following grid of", + "type": "text" + }, + { + "bbox": [ + 227, + 604, + 256, + 614 + ], + "score": 0.28, + "content": "4 8 \\ \\mathrm { V i T }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 603, + 311, + 616 + ], + "score": 1.0, + "content": "experiments:", + "type": "text" + }, + { + "bbox": [ + 311, + 604, + 342, + 615 + ], + "score": 0.81, + "content": "\\{ P , C \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 603, + 456, + 616 + ], + "score": 1.0, + "content": "stems × {1, 4, 18} GF sizes", + "type": "text" + }, + { + "bbox": [ + 457, + 604, + 465, + 614 + ], + "score": 0.33, + "content": "\\times", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "{50, 100,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 614, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 177, + 628 + ], + "score": 1.0, + "content": "200, 400} epochs", + "type": "text" + }, + { + "bbox": [ + 177, + 615, + 186, + 625 + ], + "score": 0.42, + "content": "\\times", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 614, + 507, + 628 + ], + "score": 1.0, + "content": "{AdamW, SGD} optimizers. As a reference, we also train 24 RegNetY baselines,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 625, + 354, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 354, + 639 + ], + "score": 1.0, + "content": "one for each complexity regime, epoch length, and optimizer.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 592, + 507, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 504, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 504, + 658 + ], + "score": 1.0, + "content": "Results. Figure 3 shows the results. As a baseline, RegNetY models show virtually no gap when", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 316, + 668 + ], + "score": 1.0, + "content": "trained using either SGD or AdamW (the difference", + "type": "text" + }, + { + "bbox": [ + 317, + 656, + 361, + 667 + ], + "score": 0.88, + "content": "{ \\sim } 0 . 1 { - } 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "is within noise). On the other hand,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 127, + 678 + ], + "score": 0.86, + "content": "V i T _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 667, + 469, + 680 + ], + "score": 1.0, + "content": "models suffer a dramatic drop when trained with SGD across all settings (of up to", + "type": "text" + }, + { + "bbox": [ + 470, + 667, + 489, + 678 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 395, + 690 + ], + "score": 1.0, + "content": "larger models and longer training schedules). With a convolutional stem,", + "type": "text" + }, + { + "bbox": [ + 396, + 678, + 419, + 689 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "models exhibit much", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "smaller error gaps between SGD and AdamW across all training schedules and model complexities,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 446, + 713 + ], + "score": 1.0, + "content": "including in larger models and longer schedules, where the gap is reduced to less than", + "type": "text" + }, + { + "bbox": [ + 446, + 700, + 468, + 711 + ], + "score": 0.86, + "content": "0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 700, + 506, + 713 + ], + "score": 1.0, + "content": ". In other", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 711, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 212, + 723 + ], + "score": 1.0, + "content": "words, both RegNetY and", + "type": "text" + }, + { + "bbox": [ + 213, + 711, + 236, + 722 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 711, + 447, + 723 + ], + "score": 1.0, + "content": "can be easily trained via either SGD or AdamW, but", + "type": "text" + }, + { + "bbox": [ + 447, + 711, + 470, + 722 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 711, + 504, + 723 + ], + "score": 1.0, + "content": "cannot.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 645, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 71, + 505, + 241 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 71, + 505, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 71, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 71, + 505, + 241 + ], + "score": 0.974, + "type": "image", + "image_path": "aba9b861e8efcb57d826b09c432be1e0382b373a7817ab870f1aaced18950672.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 71, + 505, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 127.66666666666666, + 505, + 184.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 184.33333333333331, + 505, + 240.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 246, + 505, + 335 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 310, + 259 + ], + "score": 1.0, + "content": "Figure 4: Hyperparameter stability for AdamW", + "type": "text" + }, + { + "bbox": [ + 310, + 248, + 318, + 257 + ], + "score": 0.43, + "content": "_ { l r }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 246, + 336, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 337, + 248, + 350, + 257 + ], + "score": 0.44, + "content": "{ \\pmb w d }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 246, + 506, + 259 + ], + "score": 1.0, + "content": "): For each model, we train 64 instances", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 291, + 270 + ], + "score": 1.0, + "content": "of the model for 50 epochs each with a random1.0", + "type": "text" + }, + { + "bbox": [ + 291, + 259, + 300, + 268 + ], + "score": 0.7, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 258, + 317, + 270 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 317, + 258, + 330, + 268 + ], + "score": 0.5, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "(in a fixed width interval around the optimal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 291, + 281 + ], + "score": 1.0, + "content": "value for each model). Top: Scatterplots of the", + "type": "text" + }, + { + "bbox": [ + 292, + 269, + 299, + 279 + ], + "score": 0.42, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 269, + 303, + 281 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 303, + 269, + 317, + 279 + ], + "score": 0.32, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 269, + 336, + 281 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 337, + 269, + 345, + 279 + ], + "score": 0.6, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "·wd for three 4GF models. Vertical bars", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 173, + 292 + ], + "score": 1.0, + "content": "indicate optimal", + "type": "text" + }, + { + "bbox": [ + 174, + 280, + 199, + 290 + ], + "score": 0.26, + "content": "l r , w d", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 280, + 219, + 292 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 219, + 280, + 246, + 290 + ], + "score": 0.26, + "content": "l r \\cdot w d", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "values for each model. Bottom: For each model, we generate an", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 356, + 303 + ], + "score": 1.0, + "content": "EDF of the errors by plotting the cumulative distribution of the 0.6", + "type": "text" + }, + { + "bbox": [ + 356, + 291, + 365, + 300 + ], + "score": 0.48, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 289, + 416, + 303 + ], + "score": 1.0, + "content": "top-1 errors (", + "type": "text" + }, + { + "bbox": [ + 416, + 291, + 426, + 300 + ], + "score": 0.71, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "to the optimal error", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 300, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 346, + 314 + ], + "score": 1.0, + "content": "for each model). A steeper EDF indicates better stability to 0.4 1GF models 4G", + "type": "text" + }, + { + "bbox": [ + 346, + 302, + 355, + 312 + ], + "score": 0.72, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 300, + 372, + 314 + ], + "score": 1.0, + "content": "and odels", + "type": "text" + }, + { + "bbox": [ + 372, + 302, + 387, + 312 + ], + "score": 0.33, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 300, + 428, + 314 + ], + "score": 1.0, + "content": "variation.", + "type": "text" + }, + { + "bbox": [ + 428, + 302, + 452, + 313 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 300, + 506, + 314 + ], + "score": 1.0, + "content": "significantly18GF models", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 313, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 262, + 325 + ], + "score": 1.0, + "content": "improves the stability over the baseline0.2 ViTC", + "type": "text" + }, + { + "bbox": [ + 263, + 313, + 286, + 324 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 313, + 506, + 325 + ], + "score": 1.0, + "content": "across the model complexity spectrum, and matches orViTC ViTC", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 324, + 353, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 353, + 336 + ], + "score": 1.0, + "content": "even outperforms the stability of the CNN model (RegNetY).0.0 RegNetY R", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "image", + "bbox": [ + 107, + 349, + 504, + 435 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 349, + 504, + 435 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 349, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 107, + 349, + 504, + 435 + ], + "score": 0.967, + "type": "image", + "image_path": "be011ecde540fa81014ef4ee685adfdc4ac01205383316fdb5d9823fcc557d92.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 107, + 349, + 504, + 377.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 107, + 377.6666666666667, + 504, + 406.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 107, + 406.33333333333337, + 504, + 435.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 441, + 506, + 485 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 297, + 454 + ], + "score": 1.0, + "content": "Figure 5: Hyperparameter stability for SGD", + "type": "text" + }, + { + "bbox": [ + 297, + 441, + 306, + 451 + ], + "score": 0.49, + "content": "_ { L r }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 440, + 324, + 454 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 325, + 442, + 339, + 451 + ], + "score": 0.64, + "content": "{ \\pmb w d }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 440, + 506, + 454 + ], + "score": 1.0, + "content": "): We repeat the setup from Figure 4 using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 329, + 464 + ], + "score": 1.0, + "content": "SGD instead of AdamW. The stability improvement of", + "type": "text" + }, + { + "bbox": [ + 329, + 452, + 353, + 463 + ], + "score": 0.9, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 451, + 424, + 464 + ], + "score": 1.0, + "content": "over the baseline", + "type": "text" + }, + { + "bbox": [ + 424, + 452, + 448, + 463 + ], + "score": 0.9, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "is even larger", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 183, + 475 + ], + "score": 1.0, + "content": "than with AdamW.", + "type": "text" + }, + { + "bbox": [ + 184, + 463, + 199, + 474 + ], + "score": 0.26, + "content": "E . g", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 463, + 204, + 475 + ], + "score": 1.0, + "content": ".,", + "type": "text" + }, + { + "bbox": [ + 205, + 463, + 230, + 473 + ], + "score": 0.89, + "content": "{ \\sim } 6 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 463, + 242, + 475 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 243, + 463, + 265, + 474 + ], + "score": 0.8, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 463, + 366, + 475 + ], + "score": 1.0, + "content": "-18GF models are within", + "type": "text" + }, + { + "bbox": [ + 366, + 463, + 381, + 473 + ], + "score": 0.78, + "content": "4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 463, + 391, + 473 + ], + "score": 0.49, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "top-1 error of the best result,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 472, + 486, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 167, + 487 + ], + "score": 1.0, + "content": "while less than", + "type": "text" + }, + { + "bbox": [ + 168, + 474, + 187, + 484 + ], + "score": 0.88, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 472, + 199, + 487 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 200, + 474, + 222, + 484 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 472, + 348, + 487 + ], + "score": 1.0, + "content": "-18GF models are (in fact most", + "type": "text" + }, + { + "bbox": [ + 349, + 474, + 372, + 484 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 472, + 486, + 487 + ], + "score": 1.0, + "content": "-18GF runs don’t converge).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + } + ], + "index": 13.75 + }, + { + "type": "title", + "bbox": [ + 106, + 510, + 310, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 311, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 311, + 525 + ], + "score": 1.0, + "content": "5.3 Learning Rate and Weight Decay Stability", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 472, + 545 + ], + "score": 1.0, + "content": "Next, we characterize how sensitive different model families are to changes in learning rate", + "type": "text" + }, + { + "bbox": [ + 473, + 533, + 487, + 543 + ], + "score": 0.73, + "content": "( l r )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 162, + 556 + ], + "score": 1.0, + "content": "weight decay", + "type": "text" + }, + { + "bbox": [ + 162, + 544, + 181, + 555 + ], + "score": 0.76, + "content": "( w d )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "under both AdamW and SGD optimizers. To quantify this, we make use of error", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "distribution functions (EDFs) [30]. An EDF is computed by sorting a set of results from low-to-high", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "error and plotting the cumulative proportion of results as error increases, see [30] for details. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 330, + 588 + ], + "score": 1.0, + "content": "particular, we generate EDFs of a model as a function of", + "type": "text" + }, + { + "bbox": [ + 331, + 577, + 339, + 586 + ], + "score": 0.61, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 576, + 356, + 588 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 357, + 577, + 370, + 586 + ], + "score": 0.44, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 576, + 506, + 588 + ], + "score": 1.0, + "content": ". The intuition is that if a model is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "robust to these hyperparameter choices, the EDF will be steep (all models will perform similarly),", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 597, + 464, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 464, + 610 + ], + "score": 1.0, + "content": "while if the model is sensitive, the EDF will be shallow (performance will be spread out).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 197, + 628 + ], + "score": 1.0, + "content": "We test 6 ViT models", + "type": "text" + }, + { + "bbox": [ + 198, + 614, + 302, + 626 + ], + "score": 0.8, + "content": "( \\{ P , C \\} \\times \\{ 1 , 4 , 1 8 \\} \\mathrm { G F ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "and 3 RegNetY models ({1, 4, 16} GF). For each", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 398, + 639 + ], + "score": 1.0, + "content": "model and each optimizer, we compute an EDF by randomly sampling 64", + "type": "text" + }, + { + "bbox": [ + 398, + 626, + 428, + 636 + ], + "score": 0.5, + "content": "( l r , w d )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 624, + 506, + 639 + ], + "score": 1.0, + "content": "pairs with learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "rate and weight decay sampled in a fixed width interval around their optimal values for that model", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 647, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 506, + 659 + ], + "score": 1.0, + "content": "and optimizer (see the Appendix for sampling details). Rather than plotting absolute error in the EDF,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 658, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 138, + 670 + ], + "score": 1.0, + "content": "we plot", + "type": "text" + }, + { + "bbox": [ + 138, + 659, + 147, + 668 + ], + "score": 0.26, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 658, + 392, + 670 + ], + "score": 1.0, + "content": "top-1 error between the best result (obtained with the optimal", + "type": "text" + }, + { + "bbox": [ + 392, + 659, + 400, + 668 + ], + "score": 0.68, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 658, + 417, + 670 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 418, + 659, + 432, + 668 + ], + "score": 0.26, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 658, + 506, + 670 + ], + "score": 1.0, + "content": ") and the observed", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 670, + 412, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 412, + 681 + ], + "score": 1.0, + "content": "result. Due to the large number of models, we train each for only 50 epochs.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "Results. Figure 4 shows scatterplots and EDFs for models trained by AdamW. Figure 5 shows SGD", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 235, + 712 + ], + "score": 1.0, + "content": "results. In all cases we see that", + "type": "text" + }, + { + "bbox": [ + 235, + 700, + 259, + 711 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 700, + 368, + 712 + ], + "score": 1.0, + "content": "significantly improves the", + "type": "text" + }, + { + "bbox": [ + 368, + 700, + 377, + 710 + ], + "score": 0.62, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 700, + 395, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 700, + 409, + 710 + ], + "score": 0.68, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 700, + 465, + 712 + ], + "score": 1.0, + "content": "stability over", + "type": "text" + }, + { + "bbox": [ + 466, + 700, + 489, + 711 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 711, + 493, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 264, + 723 + ], + "score": 1.0, + "content": "both optimizers. This indicates that the", + "type": "text" + }, + { + "bbox": [ + 264, + 712, + 273, + 721 + ], + "score": 0.8, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 711, + 290, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 711, + 304, + 721 + ], + "score": 0.54, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 711, + 407, + 723 + ], + "score": 1.0, + "content": "are easier to optimize for", + "type": "text" + }, + { + "bbox": [ + 407, + 711, + 430, + 722 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 711, + 466, + 723 + ], + "score": 1.0, + "content": "than for", + "type": "text" + }, + { + "bbox": [ + 466, + 712, + 488, + 722 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 711, + 493, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 753 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 71, + 505, + 241 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 71, + 505, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 71, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 71, + 505, + 241 + ], + "score": 0.974, + "type": "image", + "image_path": "aba9b861e8efcb57d826b09c432be1e0382b373a7817ab870f1aaced18950672.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 71, + 505, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 127.66666666666666, + 505, + 184.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 184.33333333333331, + 505, + 240.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 246, + 505, + 335 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 310, + 259 + ], + "score": 1.0, + "content": "Figure 4: Hyperparameter stability for AdamW", + "type": "text" + }, + { + "bbox": [ + 310, + 248, + 318, + 257 + ], + "score": 0.43, + "content": "_ { l r }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 246, + 336, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 337, + 248, + 350, + 257 + ], + "score": 0.44, + "content": "{ \\pmb w d }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 246, + 506, + 259 + ], + "score": 1.0, + "content": "): For each model, we train 64 instances", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 291, + 270 + ], + "score": 1.0, + "content": "of the model for 50 epochs each with a random1.0", + "type": "text" + }, + { + "bbox": [ + 291, + 259, + 300, + 268 + ], + "score": 0.7, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 258, + 317, + 270 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 317, + 258, + 330, + 268 + ], + "score": 0.5, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "(in a fixed width interval around the optimal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 291, + 281 + ], + "score": 1.0, + "content": "value for each model). Top: Scatterplots of the", + "type": "text" + }, + { + "bbox": [ + 292, + 269, + 299, + 279 + ], + "score": 0.42, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 269, + 303, + 281 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 303, + 269, + 317, + 279 + ], + "score": 0.32, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 269, + 336, + 281 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 337, + 269, + 345, + 279 + ], + "score": 0.6, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "·wd for three 4GF models. Vertical bars", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 173, + 292 + ], + "score": 1.0, + "content": "indicate optimal", + "type": "text" + }, + { + "bbox": [ + 174, + 280, + 199, + 290 + ], + "score": 0.26, + "content": "l r , w d", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 280, + 219, + 292 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 219, + 280, + 246, + 290 + ], + "score": 0.26, + "content": "l r \\cdot w d", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "values for each model. Bottom: For each model, we generate an", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 356, + 303 + ], + "score": 1.0, + "content": "EDF of the errors by plotting the cumulative distribution of the 0.6", + "type": "text" + }, + { + "bbox": [ + 356, + 291, + 365, + 300 + ], + "score": 0.48, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 289, + 416, + 303 + ], + "score": 1.0, + "content": "top-1 errors (", + "type": "text" + }, + { + "bbox": [ + 416, + 291, + 426, + 300 + ], + "score": 0.71, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "to the optimal error", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 300, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 346, + 314 + ], + "score": 1.0, + "content": "for each model). A steeper EDF indicates better stability to 0.4 1GF models 4G", + "type": "text" + }, + { + "bbox": [ + 346, + 302, + 355, + 312 + ], + "score": 0.72, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 300, + 372, + 314 + ], + "score": 1.0, + "content": "and odels", + "type": "text" + }, + { + "bbox": [ + 372, + 302, + 387, + 312 + ], + "score": 0.33, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 300, + 428, + 314 + ], + "score": 1.0, + "content": "variation.", + "type": "text" + }, + { + "bbox": [ + 428, + 302, + 452, + 313 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 300, + 506, + 314 + ], + "score": 1.0, + "content": "significantly18GF models", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 313, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 262, + 325 + ], + "score": 1.0, + "content": "improves the stability over the baseline0.2 ViTC", + "type": "text" + }, + { + "bbox": [ + 263, + 313, + 286, + 324 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 313, + 506, + 325 + ], + "score": 1.0, + "content": "across the model complexity spectrum, and matches orViTC ViTC", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 324, + 353, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 353, + 336 + ], + "score": 1.0, + "content": "even outperforms the stability of the CNN model (RegNetY).0.0 RegNetY R", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "image", + "bbox": [ + 107, + 349, + 504, + 435 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 349, + 504, + 435 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 349, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 107, + 349, + 504, + 435 + ], + "score": 0.967, + "type": "image", + "image_path": "be011ecde540fa81014ef4ee685adfdc4ac01205383316fdb5d9823fcc557d92.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 107, + 349, + 504, + 377.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 107, + 377.6666666666667, + 504, + 406.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 107, + 406.33333333333337, + 504, + 435.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 441, + 506, + 485 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 297, + 454 + ], + "score": 1.0, + "content": "Figure 5: Hyperparameter stability for SGD", + "type": "text" + }, + { + "bbox": [ + 297, + 441, + 306, + 451 + ], + "score": 0.49, + "content": "_ { L r }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 440, + 324, + 454 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 325, + 442, + 339, + 451 + ], + "score": 0.64, + "content": "{ \\pmb w d }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 440, + 506, + 454 + ], + "score": 1.0, + "content": "): We repeat the setup from Figure 4 using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 329, + 464 + ], + "score": 1.0, + "content": "SGD instead of AdamW. The stability improvement of", + "type": "text" + }, + { + "bbox": [ + 329, + 452, + 353, + 463 + ], + "score": 0.9, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 451, + 424, + 464 + ], + "score": 1.0, + "content": "over the baseline", + "type": "text" + }, + { + "bbox": [ + 424, + 452, + 448, + 463 + ], + "score": 0.9, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "is even larger", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 183, + 475 + ], + "score": 1.0, + "content": "than with AdamW.", + "type": "text" + }, + { + "bbox": [ + 184, + 463, + 199, + 474 + ], + "score": 0.26, + "content": "E . g", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 463, + 204, + 475 + ], + "score": 1.0, + "content": ".,", + "type": "text" + }, + { + "bbox": [ + 205, + 463, + 230, + 473 + ], + "score": 0.89, + "content": "{ \\sim } 6 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 463, + 242, + 475 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 243, + 463, + 265, + 474 + ], + "score": 0.8, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 463, + 366, + 475 + ], + "score": 1.0, + "content": "-18GF models are within", + "type": "text" + }, + { + "bbox": [ + 366, + 463, + 381, + 473 + ], + "score": 0.78, + "content": "4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 463, + 391, + 473 + ], + "score": 0.49, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "top-1 error of the best result,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 472, + 486, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 167, + 487 + ], + "score": 1.0, + "content": "while less than", + "type": "text" + }, + { + "bbox": [ + 168, + 474, + 187, + 484 + ], + "score": 0.88, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 472, + 199, + 487 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 200, + 474, + 222, + 484 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 472, + 348, + 487 + ], + "score": 1.0, + "content": "-18GF models are (in fact most", + "type": "text" + }, + { + "bbox": [ + 349, + 474, + 372, + 484 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 472, + 486, + 487 + ], + "score": 1.0, + "content": "-18GF runs don’t converge).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + } + ], + "index": 13.75 + }, + { + "type": "title", + "bbox": [ + 106, + 510, + 310, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 311, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 311, + 525 + ], + "score": 1.0, + "content": "5.3 Learning Rate and Weight Decay Stability", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 472, + 545 + ], + "score": 1.0, + "content": "Next, we characterize how sensitive different model families are to changes in learning rate", + "type": "text" + }, + { + "bbox": [ + 473, + 533, + 487, + 543 + ], + "score": 0.73, + "content": "( l r )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 162, + 556 + ], + "score": 1.0, + "content": "weight decay", + "type": "text" + }, + { + "bbox": [ + 162, + 544, + 181, + 555 + ], + "score": 0.76, + "content": "( w d )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "under both AdamW and SGD optimizers. To quantify this, we make use of error", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "distribution functions (EDFs) [30]. An EDF is computed by sorting a set of results from low-to-high", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "error and plotting the cumulative proportion of results as error increases, see [30] for details. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 330, + 588 + ], + "score": 1.0, + "content": "particular, we generate EDFs of a model as a function of", + "type": "text" + }, + { + "bbox": [ + 331, + 577, + 339, + 586 + ], + "score": 0.61, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 576, + 356, + 588 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 357, + 577, + 370, + 586 + ], + "score": 0.44, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 576, + 506, + 588 + ], + "score": 1.0, + "content": ". The intuition is that if a model is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "robust to these hyperparameter choices, the EDF will be steep (all models will perform similarly),", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 597, + 464, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 464, + 610 + ], + "score": 1.0, + "content": "while if the model is sensitive, the EDF will be shallow (performance will be spread out).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 533, + 506, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 197, + 628 + ], + "score": 1.0, + "content": "We test 6 ViT models", + "type": "text" + }, + { + "bbox": [ + 198, + 614, + 302, + 626 + ], + "score": 0.8, + "content": "( \\{ P , C \\} \\times \\{ 1 , 4 , 1 8 \\} \\mathrm { G F ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "and 3 RegNetY models ({1, 4, 16} GF). For each", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 398, + 639 + ], + "score": 1.0, + "content": "model and each optimizer, we compute an EDF by randomly sampling 64", + "type": "text" + }, + { + "bbox": [ + 398, + 626, + 428, + 636 + ], + "score": 0.5, + "content": "( l r , w d )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 624, + 506, + 639 + ], + "score": 1.0, + "content": "pairs with learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "rate and weight decay sampled in a fixed width interval around their optimal values for that model", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 647, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 506, + 659 + ], + "score": 1.0, + "content": "and optimizer (see the Appendix for sampling details). Rather than plotting absolute error in the EDF,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 658, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 138, + 670 + ], + "score": 1.0, + "content": "we plot", + "type": "text" + }, + { + "bbox": [ + 138, + 659, + 147, + 668 + ], + "score": 0.26, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 658, + 392, + 670 + ], + "score": 1.0, + "content": "top-1 error between the best result (obtained with the optimal", + "type": "text" + }, + { + "bbox": [ + 392, + 659, + 400, + 668 + ], + "score": 0.68, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 658, + 417, + 670 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 418, + 659, + 432, + 668 + ], + "score": 0.26, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 658, + 506, + 670 + ], + "score": 1.0, + "content": ") and the observed", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 670, + 412, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 412, + 681 + ], + "score": 1.0, + "content": "result. Due to the large number of models, we train each for only 50 epochs.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 614, + 506, + 681 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "Results. Figure 4 shows scatterplots and EDFs for models trained by AdamW. Figure 5 shows SGD", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 235, + 712 + ], + "score": 1.0, + "content": "results. In all cases we see that", + "type": "text" + }, + { + "bbox": [ + 235, + 700, + 259, + 711 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 700, + 368, + 712 + ], + "score": 1.0, + "content": "significantly improves the", + "type": "text" + }, + { + "bbox": [ + 368, + 700, + 377, + 710 + ], + "score": 0.62, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 700, + 395, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 700, + 409, + 710 + ], + "score": 0.68, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 700, + 465, + 712 + ], + "score": 1.0, + "content": "stability over", + "type": "text" + }, + { + "bbox": [ + 466, + 700, + 489, + 711 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 711, + 493, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 264, + 723 + ], + "score": 1.0, + "content": "both optimizers. This indicates that the", + "type": "text" + }, + { + "bbox": [ + 264, + 712, + 273, + 721 + ], + "score": 0.8, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 711, + 290, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 711, + 304, + 721 + ], + "score": 0.54, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 711, + 407, + 723 + ], + "score": 1.0, + "content": "are easier to optimize for", + "type": "text" + }, + { + "bbox": [ + 407, + 711, + 430, + 722 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 711, + 466, + 723 + ], + "score": 1.0, + "content": "than for", + "type": "text" + }, + { + "bbox": [ + 466, + 712, + 488, + 722 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 711, + 493, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 688, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 220, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 221, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 221, + 86 + ], + "score": 1.0, + "content": "5.4 Experimental Details", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 93, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "In all experiments we train with a single half-period cosine learning rate decay schedule with a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 102, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 118 + ], + "score": 1.0, + "content": "5-epoch linear learning rate warm-up [16]. We use a minibatch size of 2048. Crucially, weight decay", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "is not applied to the gain factors found in normalization layers nor to bias parameters anywhere in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "model; we found that decaying these parameters can dramatically reduce top-1 accuracy for small", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "models and short schedules. For inference, we use an exponential moving average (EMA) of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 232, + 159 + ], + "score": 1.0, + "content": "model weights (e.g., [8]). The", + "type": "text" + }, + { + "bbox": [ + 232, + 148, + 241, + 158 + ], + "score": 0.65, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 147, + 259, + 159 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 259, + 148, + 273, + 158 + ], + "score": 0.67, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 147, + 506, + 159 + ], + "score": 1.0, + "content": "used in this section are reported in the Appendix. Other", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 489, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 383, + 170 + ], + "score": 1.0, + "content": "hyperparameters use defaults: SGD momentum is 0.9 and AdamW’s", + "type": "text" + }, + { + "bbox": [ + 383, + 158, + 420, + 169 + ], + "score": 0.91, + "content": "\\beta _ { 1 } = 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 158, + 438, + 170 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 438, + 158, + 486, + 170 + ], + "score": 0.92, + "content": "\\beta _ { 2 } = 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 158, + 489, + 170 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 178, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "Regularization and data augmentation. We use a simplified training recipe compared to recent", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "work such as DeiT [41], which we found to be equally effective across a wide spectrum of model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 406, + 212 + ], + "score": 1.0, + "content": "complexities and dataset scales. We use AutoAugment [7], mixup [52]", + "type": "text" + }, + { + "bbox": [ + 406, + 200, + 444, + 211 + ], + "score": 0.84, + "content": "\\langle \\alpha = 0 . 8 \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "), CutMix [51]", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 109, + 210, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 109, + 211, + 143, + 222 + ], + "score": 0.85, + "content": "\\alpha = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 210, + 255, + 223 + ], + "score": 1.0, + "content": "), and label smoothing [38]", + "type": "text" + }, + { + "bbox": [ + 255, + 211, + 288, + 222 + ], + "score": 0.84, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 210, + 506, + 223 + ], + "score": 1.0, + "content": "). We prefer this setup because it is similar to common", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "settings for CNNs (e.g., [12]) except for stronger mixup and the addition of CutMix (ViTs benefit", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "from both, while CNNs are not harmed). We compare this recipe to the one used for DeiT models in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "the Appendix, and observe that our setup provides substantially faster training convergence likely", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 255, + 461, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 461, + 267 + ], + "score": 1.0, + "content": "because we remove repeating augmentation [1, 20], which is known to slow training [1].", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 107, + 281, + 219, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 222, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 222, + 297 + ], + "score": 1.0, + "content": "6 Peak Performance", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "A model’s peak performance is the most commonly used metric in network design. It represents", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "what is possible with the best-known-so-far settings and naturally evolves over time. Making fair", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 506, + 342 + ], + "score": 1.0, + "content": "comparisons between different models is desirable but fraught with difficulty. Simply citing results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 507, + 353 + ], + "score": 1.0, + "content": "from prior work may be negatively biased against that work as it was unable to incorporate newer,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "yet applicable improvements. Here, we strive to provide a fairer comparison between state-of-the-art", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 137, + 374 + ], + "score": 1.0, + "content": "CNNs,", + "type": "text" + }, + { + "bbox": [ + 137, + 361, + 160, + 372 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 361, + 181, + 374 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 182, + 361, + 205, + 372 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 361, + 505, + 374 + ], + "score": 1.0, + "content": ". We identify a set of factors and then strike a pragmatic balance between", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 373, + 502, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 502, + 384 + ], + "score": 1.0, + "content": "which subset to optimize for each model vs. which subset share a constant value across all models.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 388, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 506, + 400 + ], + "score": 1.0, + "content": "In our comparison, all models share the same epochs (400), use of model weight EMA, and set of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 331, + 411 + ], + "score": 1.0, + "content": "regularization and augmentation methods (as specified in", + "type": "text" + }, + { + "bbox": [ + 332, + 400, + 351, + 410 + ], + "score": 0.76, + "content": "\\ S \\quad ,", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 399, + 505, + 411 + ], + "score": 1.0, + "content": ". All CNNs are trained with SGD with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 408, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 115, + 420 + ], + "score": 0.67, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 408, + 188, + 423 + ], + "score": 1.0, + "content": "of 2.54 and wd of", + "type": "text" + }, + { + "bbox": [ + 189, + 410, + 219, + 421 + ], + "score": 0.35, + "content": "2 . 4 \\mathrm { e } { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 408, + 505, + 423 + ], + "score": 1.0, + "content": "; we found this single choice worked well across all models, as similarly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 420, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 359, + 434 + ], + "score": 1.0, + "content": "observed in [12]. For all ViT models we found AdamW with a", + "type": "text" + }, + { + "bbox": [ + 359, + 421, + 382, + 432 + ], + "score": 0.31, + "content": "l r / w d", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 420, + 394, + 434 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 394, + 421, + 448, + 433 + ], + "score": 0.84, + "content": "1 . 0 \\mathrm { { e - } 3 / 0 . 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 420, + 507, + 434 + ], + "score": 1.0, + "content": "was effective,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 469, + 444 + ], + "score": 1.0, + "content": "except for the 36GF models. For these larger models we tested a few settings and found a", + "type": "text" + }, + { + "bbox": [ + 470, + 432, + 493, + 443 + ], + "score": 0.28, + "content": "l r / w d", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 160, + 455 + ], + "score": 0.79, + "content": "6 . 0 \\mathrm { { e } - 4 / 0 . 2 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 443, + 280, + 455 + ], + "score": 1.0, + "content": "to be more effective for both", + "type": "text" + }, + { + "bbox": [ + 281, + 443, + 332, + 454 + ], + "score": 0.3, + "content": "\\mathrm { V i T } _ { P ^ { - 3 6 } } \\mathrm { G F }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 443, + 349, + 455 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 350, + 443, + 373, + 454 + ], + "score": 0.78, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "-36GF models. For training and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 185, + 466 + ], + "score": 1.0, + "content": "inference, ViTs use", + "type": "text" + }, + { + "bbox": [ + 185, + 454, + 225, + 465 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "resolution (we do not fine-tune at higher resolutions), while the CNNs", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 479, + 478 + ], + "score": 1.0, + "content": "use (often larger) optimized resolutions specified in [12, 39]. Given this protocol, we compare", + "type": "text" + }, + { + "bbox": [ + 479, + 465, + 502, + 476 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 464, + 506, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 474, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 129, + 487 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 474, + 506, + 489 + ], + "score": 1.0, + "content": ", and CNNs across a spectrum of model complexities (1GF to 36GF) and dataset scales (directly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 487, + 496, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 496, + 500 + ], + "score": 1.0, + "content": "training on ImageNet-1k vs. pretraining on ImageNet-21k and then fine-tuning on ImageNet-1k).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "score": 1.0, + "content": "Results. Figure 6 shows a progression of results. Each plot shows ImageNet-1k val top-1 error vs.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "ImageNet-1k epoch training time.1 The left plot compares several state-of-the-art CNNs. RegNetY", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "and RegNetZ [12] achieve similar results across the training speed spectrum and outperform Effi-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "cientNets [39]. Surprisingly, ResNets [19] are highly competitive at fast runtimes, showing that under", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 550, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 507, + 563 + ], + "score": 1.0, + "content": "a fairer comparison these years-old models perform substantially better than often reported (cf . [39]).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 580 + ], + "score": 1.0, + "content": "The middle plot compares two representative CNNs (ResNet and RegNetY) to ViTs, still using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 578, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 277, + 589 + ], + "score": 1.0, + "content": "only ImageNet-1k training. The baseline", + "type": "text" + }, + { + "bbox": [ + 278, + 578, + 301, + 588 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 578, + 505, + 589 + ], + "score": 1.0, + "content": "underperforms RegNetY across the entire model", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 266, + 601 + ], + "score": 1.0, + "content": "complexity spectrum. To our surprise,", + "type": "text" + }, + { + "bbox": [ + 266, + 589, + 288, + 599 + ], + "score": 0.88, + "content": "V i T _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 589, + 470, + 601 + ], + "score": 1.0, + "content": "also underperforms ResNets in this regime.", + "type": "text" + }, + { + "bbox": [ + 470, + 588, + 494, + 600 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 598, + 405, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 405, + 614 + ], + "score": 1.0, + "content": "more competitive and outperforms CNNs in the middle-complexity range.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "The right plot compares the same models but with ImageNet-21k pretraining (details in Appendix).", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "In this setting ViT models demonstrates a greater capacity to benefit from the larger-scale data:", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 126, + 650 + ], + "score": 1.0, + "content": "now", + "type": "text" + }, + { + "bbox": [ + 126, + 638, + 150, + 649 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 637, + 254, + 650 + ], + "score": 1.0, + "content": "strictly outperforms both", + "type": "text" + }, + { + "bbox": [ + 255, + 638, + 279, + 649 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 637, + 445, + 650 + ], + "score": 1.0, + "content": "and RegNetY. Interestingly, the original", + "type": "text" + }, + { + "bbox": [ + 446, + 638, + 467, + 649 + ], + "score": 0.88, + "content": "V i T _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "does not", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "outperform a state-of-the-art CNN even when trained on this much larger dataset. Numerical results", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "are presented in Table 2 for reference to exact values. This table also highlights that flop counts are", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "not significantly correlated with runtime, but that activations are (see Appendix for more details), as", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 681, + 474, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 197, + 694 + ], + "score": 1.0, + "content": "also observed by [12].", + "type": "text" + }, + { + "bbox": [ + 198, + 682, + 214, + 693 + ], + "score": 0.36, + "content": "E . g .", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 681, + 474, + 694 + ], + "score": 1.0, + "content": "., EfficientNets are slow relative to their flops while ViTs are fast.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 119, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 119, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "1We time models in PyTorch on 8 32GB Volta GPUs. We note that batch inference time is highly correlated", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 711, + 487, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 487, + 723 + ], + "score": 1.0, + "content": "with training time, but we report epoch time as it is easy to interpret and does not depend on the use case.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 220, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 221, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 221, + 86 + ], + "score": 1.0, + "content": "5.4 Experimental Details", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 93, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "In all experiments we train with a single half-period cosine learning rate decay schedule with a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 102, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 118 + ], + "score": 1.0, + "content": "5-epoch linear learning rate warm-up [16]. We use a minibatch size of 2048. Crucially, weight decay", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "is not applied to the gain factors found in normalization layers nor to bias parameters anywhere in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "model; we found that decaying these parameters can dramatically reduce top-1 accuracy for small", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "models and short schedules. For inference, we use an exponential moving average (EMA) of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 232, + 159 + ], + "score": 1.0, + "content": "model weights (e.g., [8]). The", + "type": "text" + }, + { + "bbox": [ + 232, + 148, + 241, + 158 + ], + "score": 0.65, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 147, + 259, + 159 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 259, + 148, + 273, + 158 + ], + "score": 0.67, + "content": "w d", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 147, + 506, + 159 + ], + "score": 1.0, + "content": "used in this section are reported in the Appendix. Other", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 489, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 383, + 170 + ], + "score": 1.0, + "content": "hyperparameters use defaults: SGD momentum is 0.9 and AdamW’s", + "type": "text" + }, + { + "bbox": [ + 383, + 158, + 420, + 169 + ], + "score": 0.91, + "content": "\\beta _ { 1 } = 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 158, + 438, + 170 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 438, + 158, + 486, + 170 + ], + "score": 0.92, + "content": "\\beta _ { 2 } = 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 158, + 489, + 170 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 92, + 506, + 170 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 178, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "Regularization and data augmentation. We use a simplified training recipe compared to recent", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "work such as DeiT [41], which we found to be equally effective across a wide spectrum of model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 406, + 212 + ], + "score": 1.0, + "content": "complexities and dataset scales. We use AutoAugment [7], mixup [52]", + "type": "text" + }, + { + "bbox": [ + 406, + 200, + 444, + 211 + ], + "score": 0.84, + "content": "\\langle \\alpha = 0 . 8 \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "), CutMix [51]", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 109, + 210, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 109, + 211, + 143, + 222 + ], + "score": 0.85, + "content": "\\alpha = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 210, + 255, + 223 + ], + "score": 1.0, + "content": "), and label smoothing [38]", + "type": "text" + }, + { + "bbox": [ + 255, + 211, + 288, + 222 + ], + "score": 0.84, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 210, + 506, + 223 + ], + "score": 1.0, + "content": "). We prefer this setup because it is similar to common", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "settings for CNNs (e.g., [12]) except for stronger mixup and the addition of CutMix (ViTs benefit", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "from both, while CNNs are not harmed). We compare this recipe to the one used for DeiT models in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "the Appendix, and observe that our setup provides substantially faster training convergence likely", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 255, + 461, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 461, + 267 + ], + "score": 1.0, + "content": "because we remove repeating augmentation [1, 20], which is known to slow training [1].", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 178, + 506, + 267 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 281, + 219, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 222, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 222, + 297 + ], + "score": 1.0, + "content": "6 Peak Performance", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "A model’s peak performance is the most commonly used metric in network design. It represents", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "what is possible with the best-known-so-far settings and naturally evolves over time. Making fair", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 328, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 506, + 342 + ], + "score": 1.0, + "content": "comparisons between different models is desirable but fraught with difficulty. Simply citing results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 507, + 353 + ], + "score": 1.0, + "content": "from prior work may be negatively biased against that work as it was unable to incorporate newer,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "yet applicable improvements. Here, we strive to provide a fairer comparison between state-of-the-art", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 137, + 374 + ], + "score": 1.0, + "content": "CNNs,", + "type": "text" + }, + { + "bbox": [ + 137, + 361, + 160, + 372 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 361, + 181, + 374 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 182, + 361, + 205, + 372 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 361, + 505, + 374 + ], + "score": 1.0, + "content": ". We identify a set of factors and then strike a pragmatic balance between", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 373, + 502, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 502, + 384 + ], + "score": 1.0, + "content": "which subset to optimize for each model vs. which subset share a constant value across all models.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20, + "bbox_fs": [ + 104, + 306, + 507, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 388, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 506, + 400 + ], + "score": 1.0, + "content": "In our comparison, all models share the same epochs (400), use of model weight EMA, and set of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 331, + 411 + ], + "score": 1.0, + "content": "regularization and augmentation methods (as specified in", + "type": "text" + }, + { + "bbox": [ + 332, + 400, + 351, + 410 + ], + "score": 0.76, + "content": "\\ S \\quad ,", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 399, + 505, + 411 + ], + "score": 1.0, + "content": ". All CNNs are trained with SGD with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 408, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 115, + 420 + ], + "score": 0.67, + "content": "l r", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 408, + 188, + 423 + ], + "score": 1.0, + "content": "of 2.54 and wd of", + "type": "text" + }, + { + "bbox": [ + 189, + 410, + 219, + 421 + ], + "score": 0.35, + "content": "2 . 4 \\mathrm { e } { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 408, + 505, + 423 + ], + "score": 1.0, + "content": "; we found this single choice worked well across all models, as similarly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 420, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 359, + 434 + ], + "score": 1.0, + "content": "observed in [12]. For all ViT models we found AdamW with a", + "type": "text" + }, + { + "bbox": [ + 359, + 421, + 382, + 432 + ], + "score": 0.31, + "content": "l r / w d", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 420, + 394, + 434 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 394, + 421, + 448, + 433 + ], + "score": 0.84, + "content": "1 . 0 \\mathrm { { e - } 3 / 0 . 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 420, + 507, + 434 + ], + "score": 1.0, + "content": "was effective,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 469, + 444 + ], + "score": 1.0, + "content": "except for the 36GF models. For these larger models we tested a few settings and found a", + "type": "text" + }, + { + "bbox": [ + 470, + 432, + 493, + 443 + ], + "score": 0.28, + "content": "l r / w d", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 160, + 455 + ], + "score": 0.79, + "content": "6 . 0 \\mathrm { { e } - 4 / 0 . 2 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 443, + 280, + 455 + ], + "score": 1.0, + "content": "to be more effective for both", + "type": "text" + }, + { + "bbox": [ + 281, + 443, + 332, + 454 + ], + "score": 0.3, + "content": "\\mathrm { V i T } _ { P ^ { - 3 6 } } \\mathrm { G F }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 443, + 349, + 455 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 350, + 443, + 373, + 454 + ], + "score": 0.78, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "-36GF models. For training and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 185, + 466 + ], + "score": 1.0, + "content": "inference, ViTs use", + "type": "text" + }, + { + "bbox": [ + 185, + 454, + 225, + 465 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "resolution (we do not fine-tune at higher resolutions), while the CNNs", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 479, + 478 + ], + "score": 1.0, + "content": "use (often larger) optimized resolutions specified in [12, 39]. Given this protocol, we compare", + "type": "text" + }, + { + "bbox": [ + 479, + 465, + 502, + 476 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 464, + 506, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 474, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 129, + 487 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 474, + 506, + 489 + ], + "score": 1.0, + "content": ", and CNNs across a spectrum of model complexities (1GF to 36GF) and dataset scales (directly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 487, + 496, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 496, + 500 + ], + "score": 1.0, + "content": "training on ImageNet-1k vs. pretraining on ImageNet-21k and then fine-tuning on ImageNet-1k).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 389, + 507, + 500 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "score": 1.0, + "content": "Results. Figure 6 shows a progression of results. Each plot shows ImageNet-1k val top-1 error vs.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "ImageNet-1k epoch training time.1 The left plot compares several state-of-the-art CNNs. RegNetY", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "and RegNetZ [12] achieve similar results across the training speed spectrum and outperform Effi-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "cientNets [39]. Surprisingly, ResNets [19] are highly competitive at fast runtimes, showing that under", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 550, + 507, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 507, + 563 + ], + "score": 1.0, + "content": "a fairer comparison these years-old models perform substantially better than often reported (cf . [39]).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 505, + 507, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 580 + ], + "score": 1.0, + "content": "The middle plot compares two representative CNNs (ResNet and RegNetY) to ViTs, still using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 578, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 277, + 589 + ], + "score": 1.0, + "content": "only ImageNet-1k training. The baseline", + "type": "text" + }, + { + "bbox": [ + 278, + 578, + 301, + 588 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 578, + 505, + 589 + ], + "score": 1.0, + "content": "underperforms RegNetY across the entire model", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 266, + 601 + ], + "score": 1.0, + "content": "complexity spectrum. To our surprise,", + "type": "text" + }, + { + "bbox": [ + 266, + 589, + 288, + 599 + ], + "score": 0.88, + "content": "V i T _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 589, + 470, + 601 + ], + "score": 1.0, + "content": "also underperforms ResNets in this regime.", + "type": "text" + }, + { + "bbox": [ + 470, + 588, + 494, + 600 + ], + "score": 0.86, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 598, + 405, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 405, + 614 + ], + "score": 1.0, + "content": "more competitive and outperforms CNNs in the middle-complexity range.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 565, + 505, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "The right plot compares the same models but with ImageNet-21k pretraining (details in Appendix).", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "In this setting ViT models demonstrates a greater capacity to benefit from the larger-scale data:", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 126, + 650 + ], + "score": 1.0, + "content": "now", + "type": "text" + }, + { + "bbox": [ + 126, + 638, + 150, + 649 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 637, + 254, + 650 + ], + "score": 1.0, + "content": "strictly outperforms both", + "type": "text" + }, + { + "bbox": [ + 255, + 638, + 279, + 649 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 637, + 445, + 650 + ], + "score": 1.0, + "content": "and RegNetY. Interestingly, the original", + "type": "text" + }, + { + "bbox": [ + 446, + 638, + 467, + 649 + ], + "score": 0.88, + "content": "V i T _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "does not", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "outperform a state-of-the-art CNN even when trained on this much larger dataset. Numerical results", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "are presented in Table 2 for reference to exact values. This table also highlights that flop counts are", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 682 + ], + "score": 1.0, + "content": "not significantly correlated with runtime, but that activations are (see Appendix for more details), as", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 681, + 474, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 197, + 694 + ], + "score": 1.0, + "content": "also observed by [12].", + "type": "text" + }, + { + "bbox": [ + 198, + 682, + 214, + 693 + ], + "score": 0.36, + "content": "E . g .", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 681, + 474, + 694 + ], + "score": 1.0, + "content": "., EfficientNets are slow relative to their flops while ViTs are fast.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 616, + 506, + 694 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 71, + 500, + 157 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 71, + 500, + 157 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 71, + 500, + 157 + ], + "spans": [ + { + "bbox": [ + 109, + 71, + 500, + 157 + ], + "score": 0.963, + "type": "image", + "image_path": "294e2fe483ed1695691c2b1470b6210c847eef9d58f017019c1c1cfd8b31695c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 71, + 500, + 99.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 99.66666666666667, + 500, + 128.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 128.33333333333334, + 500, + 157.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 159, + 506, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "Figure 6: Peak performance (epoch training time vs. ImageNet-1k val top-1 error): Results", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 251, + 182 + ], + "score": 1.0, + "content": "of a fair, controlled comparison of", + "type": "text" + }, + { + "bbox": [ + 251, + 170, + 274, + 181 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 169, + 279, + 182 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 279, + 170, + 303, + 181 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 169, + 506, + 182 + ], + "score": 1.0, + "content": ", and CNNs. Each curve corresponds to a model", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "complexity sweep resulting in a training speed spectrum (minutes per ImageNet-1k epoch). Left:", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "State-of-the-art CNNs. Equipped with a modern training recipe, ResNets are highly competitive in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 201, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 507, + 216 + ], + "score": 1.0, + "content": "the faster regime, while RegNetY and Z perform similarly, and better than EfficientNets. Middle:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "Selected CNNs compared to ViTs. With access to only ImageNet-1k training data, RegNetY and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 184, + 239 + ], + "score": 1.0, + "content": "ResNet outperform", + "type": "text" + }, + { + "bbox": [ + 184, + 225, + 207, + 235 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 222, + 277, + 239 + ], + "score": 1.0, + "content": "across the board.", + "type": "text" + }, + { + "bbox": [ + 278, + 225, + 301, + 236 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 222, + 506, + 239 + ], + "score": 1.0, + "content": "is more competitive with CNNs. Right: Pretraining", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 507, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 404, + 249 + ], + "score": 1.0, + "content": "on ImageNet-21k improves the ViT models more than the CNNs, making", + "type": "text" + }, + { + "bbox": [ + 404, + 235, + 428, + 246 + ], + "score": 0.83, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 234, + 507, + 249 + ], + "score": 1.0, + "content": "competitive. Here,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 246, + 461, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 160, + 259 + ], + "score": 1.0, + "content": "the proposed", + "type": "text" + }, + { + "bbox": [ + 160, + 246, + 183, + 257 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 246, + 461, + 259 + ], + "score": 1.0, + "content": "outperforms all other models across the full training speed spectrum.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 385, + 505, + 451 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Table 2: Peak performance (grouped by model family): Model complexity and validation top-1", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "score": 1.0, + "content": "error at 100, 200, and 400 epoch schedules on ImageNet-1k, and the top-1 error after pretraining", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "on ImageNet-21k (IN 21k) and fine-tuning on ImageNet-1k. This table serves as reference for the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "results shown in Figure 6. Blue numbers: best model trainable under 20 minutes per ImageNet-1k", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "epoch. Batch sizes and training times are reported normalized to 8 32GB Volta GPUs (see Appendix).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 439, + 438, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 438, + 452 + ], + "score": 1.0, + "content": "Additional results on the ImageNet-V2 [33] test set are presented in the Appendix.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + } + ], + "index": 7 + }, + { + "type": "table", + "bbox": [ + 106, + 268, + 503, + 383 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 268, + 503, + 383 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 268, + 503, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 503, + 383 + ], + "score": 0.904, + "html": "
modelflops params actstime batch|epochsIN 21kmodel (B)flops paramstime batch|sizeepochsIN200400 21k
(B)(M)(M) (min)size100200400(M)(min)100
ResNet-504.125.611.33.4204822.521.220.721.6EffNet-B21.09.1(M) 13.85.9204821.4 20.519.9-
ResNet-1017.844.516.45.5204820.319.118.519.2EffNet-B44.419.349.519.451218.517.817.5
ResNet-15211.560.222.87.7204819.518.417.718.2EffNet-B510.330.498.9 41.725617.3317.017.0
ResNet-20015.064.732.310.7102419.518.317.617.7
RegNetY-1GF1.09.66.23.1204823.222.221.5-ViTp-1GF1.14.85.52.6204833.229.727.7
RegNetY-4GF4.122.414.57.6204819.418.317.918.4ViTp-4GF3.918.5111.13.8204823.3 20.819.620.6
RegNetY-16GF15.572.330.717.9102417.116.416.315.6ViTp-18GF17.586.624.011.5102419.918.417.916.4
RegNetY-32GF31.1128.646.235.151216.215.915.915.0ViTp-36GF35.9178.437.318.851219.918.818.215.1
RegNetZ-1GF1.011.08.84.2204820.8 20.219.6-ViTc-1GF1.14.65.72.7204828.626.124.7-
RegNetZ-4GF4.028.124.312.9102417.4 16.916.6ViTc-4GF4.017.811.33.9)204820.919.218.618.8
RegNetZ-16GF16.095.351.332.051216.0 15.915.9ViTc-18GF17.781.624.111.4102418.4 17.517.015.1
RegNetZ-32GF32.0175.179.6 55.325616.3 16.216.1ViTc-36GF35.0167.8 36.718.651218.3 17.616.814.2
", + "type": "table", + "image_path": "bfee31f4a850d3ac234c45e7f45341c3c4f9311de9e2162c5b1cbf2aa1a80323.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 106, + 268, + 503, + 306.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 306.3333333333333, + 503, + 344.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 344.66666666666663, + 503, + 382.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 201, + 478 + ], + "score": 1.0, + "content": "These results verify that", + "type": "text" + }, + { + "bbox": [ + 201, + 465, + 223, + 476 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "’s convolutional stem improves not only optimization stability, as seen in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "the previous section, but also peak performance. Moreover, this benefit can be seen across the model", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "complexity and dataset scale spectrum. Perhaps surprisingly, given the recent excitement over ViT,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 155, + 510 + ], + "score": 1.0, + "content": "we find that", + "type": "text" + }, + { + "bbox": [ + 155, + 498, + 179, + 509 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "struggles to compete with state-of-the-art CNNs. We only observe improvements", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 509, + 484, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 484, + 522 + ], + "score": 1.0, + "content": "over CNNs when using both large-scale pretraining data and the proposed convolutional stem.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 534, + 183, + 549 + ], + "lines": [ + { + "bbox": [ + 104, + 532, + 185, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 185, + 552 + ], + "score": 1.0, + "content": "7 Conclusion", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "In this work we demonstrated that the optimization challenges of ViT models are linked to the large-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "stride, large-kernel convolution in ViT’s patchify stem. The seemingly trivial change of replacing this", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 581, + 507, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 581, + 507, + 595 + ], + "score": 1.0, + "content": "patchify stem with a simple convolutional stem leads to a remarkable change in optimization behavior.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 282, + 605 + ], + "score": 1.0, + "content": "With the convolutional stem, ViT (termed", + "type": "text" + }, + { + "bbox": [ + 282, + 593, + 306, + 604 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 592, + 505, + 605 + ], + "score": 1.0, + "content": ") converges faster than the original ViT (termed", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 129, + 615 + ], + "score": 0.82, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 603, + 505, + 617 + ], + "score": 1.0, + "content": ") (§5.1), trains well with either AdamW or SGD (§5.2), improves learning rate and weight decay", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 615, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 334, + 626 + ], + "score": 1.0, + "content": "stability (§5.3), and improves ImageNet top-1 error by", + "type": "text" + }, + { + "bbox": [ + 334, + 615, + 364, + 625 + ], + "score": 0.88, + "content": "{ \\sim } 1 { - } 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 615, + 505, + 626 + ], + "score": 1.0, + "content": "(§6). These results are consistent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "across a wide spectrum of model complexities (1GF to 36GF) and dataset scales (ImageNet-1k to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "ImageNet-21k). Our results indicate that injecting a small dose of convolutional inductive bias into", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "score": 1.0, + "content": "the early stages of ViTs can be hugely beneficial. Looking forward, we are interested in the theoretical", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "foundation of why such a minimal architectural modification can have such large (positive) impact on", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "optimizability. We are also interested in studying larger models. Our preliminary explorations into", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "72GF models reveal that the convolutional stem still improves top-1 error, however we also find that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 691, + 494, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 466, + 704 + ], + "score": 1.0, + "content": "a new form of instability arises that causes training error to randomly spike, especially for", + "type": "text" + }, + { + "bbox": [ + 467, + 691, + 489, + 702 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 691, + 494, + 704 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 104, + 711, + 470, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 711, + 471, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 471, + 723 + ], + "score": 1.0, + "content": "Acknowledgements. We thank Hervé Jegou, Hugo Touvron, and Kaiming He for valuable feedback.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 71, + 500, + 157 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 71, + 500, + 157 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 71, + 500, + 157 + ], + "spans": [ + { + "bbox": [ + 109, + 71, + 500, + 157 + ], + "score": 0.963, + "type": "image", + "image_path": "294e2fe483ed1695691c2b1470b6210c847eef9d58f017019c1c1cfd8b31695c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 71, + 500, + 99.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 99.66666666666667, + 500, + 128.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 128.33333333333334, + 500, + 157.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 159, + 506, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "Figure 6: Peak performance (epoch training time vs. ImageNet-1k val top-1 error): Results", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 251, + 182 + ], + "score": 1.0, + "content": "of a fair, controlled comparison of", + "type": "text" + }, + { + "bbox": [ + 251, + 170, + 274, + 181 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 169, + 279, + 182 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 279, + 170, + 303, + 181 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 169, + 506, + 182 + ], + "score": 1.0, + "content": ", and CNNs. Each curve corresponds to a model", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "complexity sweep resulting in a training speed spectrum (minutes per ImageNet-1k epoch). Left:", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "State-of-the-art CNNs. Equipped with a modern training recipe, ResNets are highly competitive in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 201, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 507, + 216 + ], + "score": 1.0, + "content": "the faster regime, while RegNetY and Z perform similarly, and better than EfficientNets. Middle:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "Selected CNNs compared to ViTs. With access to only ImageNet-1k training data, RegNetY and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 184, + 239 + ], + "score": 1.0, + "content": "ResNet outperform", + "type": "text" + }, + { + "bbox": [ + 184, + 225, + 207, + 235 + ], + "score": 0.89, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 222, + 277, + 239 + ], + "score": 1.0, + "content": "across the board.", + "type": "text" + }, + { + "bbox": [ + 278, + 225, + 301, + 236 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 222, + 506, + 239 + ], + "score": 1.0, + "content": "is more competitive with CNNs. Right: Pretraining", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 507, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 404, + 249 + ], + "score": 1.0, + "content": "on ImageNet-21k improves the ViT models more than the CNNs, making", + "type": "text" + }, + { + "bbox": [ + 404, + 235, + 428, + 246 + ], + "score": 0.83, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 234, + 507, + 249 + ], + "score": 1.0, + "content": "competitive. Here,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 246, + 461, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 160, + 259 + ], + "score": 1.0, + "content": "the proposed", + "type": "text" + }, + { + "bbox": [ + 160, + 246, + 183, + 257 + ], + "score": 0.87, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 246, + 461, + 259 + ], + "score": 1.0, + "content": "outperforms all other models across the full training speed spectrum.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + }, + { + "type": "image_caption", + "bbox": [ + 106, + 385, + 505, + 451 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Table 2: Peak performance (grouped by model family): Model complexity and validation top-1", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "score": 1.0, + "content": "error at 100, 200, and 400 epoch schedules on ImageNet-1k, and the top-1 error after pretraining", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "on ImageNet-21k (IN 21k) and fine-tuning on ImageNet-1k. This table serves as reference for the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "results shown in Figure 6. Blue numbers: best model trainable under 20 minutes per ImageNet-1k", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "epoch. Batch sizes and training times are reported normalized to 8 32GB Volta GPUs (see Appendix).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 439, + 438, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 438, + 452 + ], + "score": 1.0, + "content": "Additional results on the ImageNet-V2 [33] test set are presented in the Appendix.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + } + ], + "index": 7 + }, + { + "type": "table", + "bbox": [ + 106, + 268, + 503, + 383 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 268, + 503, + 383 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 268, + 503, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 503, + 383 + ], + "score": 0.904, + "html": "
modelflops params actstime batch|epochsIN 21kmodel (B)flops paramstime batch|sizeepochsIN200400 21k
(B)(M)(M) (min)size100200400(M)(min)100
ResNet-504.125.611.33.4204822.521.220.721.6EffNet-B21.09.1(M) 13.85.9204821.4 20.519.9-
ResNet-1017.844.516.45.5204820.319.118.519.2EffNet-B44.419.349.519.451218.517.817.5
ResNet-15211.560.222.87.7204819.518.417.718.2EffNet-B510.330.498.9 41.725617.3317.017.0
ResNet-20015.064.732.310.7102419.518.317.617.7
RegNetY-1GF1.09.66.23.1204823.222.221.5-ViTp-1GF1.14.85.52.6204833.229.727.7
RegNetY-4GF4.122.414.57.6204819.418.317.918.4ViTp-4GF3.918.5111.13.8204823.3 20.819.620.6
RegNetY-16GF15.572.330.717.9102417.116.416.315.6ViTp-18GF17.586.624.011.5102419.918.417.916.4
RegNetY-32GF31.1128.646.235.151216.215.915.915.0ViTp-36GF35.9178.437.318.851219.918.818.215.1
RegNetZ-1GF1.011.08.84.2204820.8 20.219.6-ViTc-1GF1.14.65.72.7204828.626.124.7-
RegNetZ-4GF4.028.124.312.9102417.4 16.916.6ViTc-4GF4.017.811.33.9)204820.919.218.618.8
RegNetZ-16GF16.095.351.332.051216.0 15.915.9ViTc-18GF17.781.624.111.4102418.4 17.517.015.1
RegNetZ-32GF32.0175.179.6 55.325616.3 16.216.1ViTc-36GF35.0167.8 36.718.651218.3 17.616.814.2
", + "type": "table", + "image_path": "bfee31f4a850d3ac234c45e7f45341c3c4f9311de9e2162c5b1cbf2aa1a80323.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 106, + 268, + 503, + 306.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 306.3333333333333, + 503, + 344.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 344.66666666666663, + 503, + 382.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 201, + 478 + ], + "score": 1.0, + "content": "These results verify that", + "type": "text" + }, + { + "bbox": [ + 201, + 465, + 223, + 476 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "’s convolutional stem improves not only optimization stability, as seen in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "the previous section, but also peak performance. Moreover, this benefit can be seen across the model", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "complexity and dataset scale spectrum. Perhaps surprisingly, given the recent excitement over ViT,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 155, + 510 + ], + "score": 1.0, + "content": "we find that", + "type": "text" + }, + { + "bbox": [ + 155, + 498, + 179, + 509 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "struggles to compete with state-of-the-art CNNs. We only observe improvements", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 509, + 484, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 484, + 522 + ], + "score": 1.0, + "content": "over CNNs when using both large-scale pretraining data and the proposed convolutional stem.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 464, + 506, + 522 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 534, + 183, + 549 + ], + "lines": [ + { + "bbox": [ + 104, + 532, + 185, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 185, + 552 + ], + "score": 1.0, + "content": "7 Conclusion", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "In this work we demonstrated that the optimization challenges of ViT models are linked to the large-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "stride, large-kernel convolution in ViT’s patchify stem. The seemingly trivial change of replacing this", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 581, + 507, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 581, + 507, + 595 + ], + "score": 1.0, + "content": "patchify stem with a simple convolutional stem leads to a remarkable change in optimization behavior.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 282, + 605 + ], + "score": 1.0, + "content": "With the convolutional stem, ViT (termed", + "type": "text" + }, + { + "bbox": [ + 282, + 593, + 306, + 604 + ], + "score": 0.85, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 592, + 505, + 605 + ], + "score": 1.0, + "content": ") converges faster than the original ViT (termed", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 129, + 615 + ], + "score": 0.82, + "content": "\\mathrm { V i T } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 603, + 505, + 617 + ], + "score": 1.0, + "content": ") (§5.1), trains well with either AdamW or SGD (§5.2), improves learning rate and weight decay", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 615, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 334, + 626 + ], + "score": 1.0, + "content": "stability (§5.3), and improves ImageNet top-1 error by", + "type": "text" + }, + { + "bbox": [ + 334, + 615, + 364, + 625 + ], + "score": 0.88, + "content": "{ \\sim } 1 { - } 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 615, + 505, + 626 + ], + "score": 1.0, + "content": "(§6). These results are consistent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "across a wide spectrum of model complexities (1GF to 36GF) and dataset scales (ImageNet-1k to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "ImageNet-21k). Our results indicate that injecting a small dose of convolutional inductive bias into", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "score": 1.0, + "content": "the early stages of ViTs can be hugely beneficial. Looking forward, we are interested in the theoretical", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "foundation of why such a minimal architectural modification can have such large (positive) impact on", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "optimizability. We are also interested in studying larger models. Our preliminary explorations into", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "72GF models reveal that the convolutional stem still improves top-1 error, however we also find that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 691, + 494, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 466, + 704 + ], + "score": 1.0, + "content": "a new form of instability arises that causes training error to randomly spike, especially for", + "type": "text" + }, + { + "bbox": [ + 467, + 691, + 489, + 702 + ], + "score": 0.88, + "content": "\\mathrm { V i T } _ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 691, + 494, + 704 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33, + "bbox_fs": [ + 104, + 559, + 507, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 711, + 470, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 711, + 471, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 471, + 723 + ], + "score": 1.0, + "content": "Acknowledgements. We thank Hervé Jegou, Hugo Touvron, and Kaiming He for valuable feedback.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 711, + 471, + 723 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_model.json b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_model.json new file mode 100644 index 0000000000000000000000000000000000000000..3acfa97a6652d1a3b5844b177a85dbb6d05dd736 --- /dev/null +++ b/parse/train/Lpfh1Bpqfk/Lpfh1Bpqfk_model.json @@ -0,0 +1,18382 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1473, + 1405, + 1473, + 1405, + 1748, + 298, + 1748 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 398, + 692, + 1303, + 692, + 1303, + 1330, + 398, + 1330 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1762, + 1403, + 1762, + 1403, + 1976, + 298, + 1976 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 299, + 1399, + 530, + 1399, + 530, + 1437, + 299, + 1437 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 788, + 615, + 912, + 615, + 912, + 652, + 788, + 652 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 337, + 270, + 1365, + 270, + 1365, + 327, + 337, + 327 + ], + "score": 0.881 + }, + { + "category_id": 1, + "poly": [ + 316, + 439, + 1389, + 439, + 1389, + 477, + 316, + 477 + ], + "score": 0.851 + }, + { + "category_id": 1, + "poly": [ + 556, + 503, + 1151, + 503, + 1151, + 538, + 556, + 538 + ], + "score": 0.801 + }, + { + "category_id": 2, + "poly": [ + 298, + 2033, + 1069, + 2033, + 1069, + 2061, + 298, + 2061 + ], + "score": 0.792 + }, + { + "category_id": 13, + "poly": [ + 852, + 1147, + 932, + 1147, + 932, + 1176, + 852, + 1176 + ], + "score": 0.9, + "latex": "{ \\sim } 1 { - } 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 785, + 1889, + 839, + 1889, + 839, + 1917, + 785, + 1917 + ], + "score": 0.9, + "latex": "p { \\times } p" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1915, + 1402, + 1915, + 1402, + 1946, + 1319, + 1946 + ], + "score": 0.9, + "latex": "p = 1 6" + }, + { + "category_id": 13, + "poly": [ + 716, + 845, + 801, + 845, + 801, + 875, + 716, + 875 + ], + "score": 0.89, + "latex": "\\dot { p } = 1 6" + }, + { + "category_id": 13, + "poly": [ + 918, + 996, + 972, + 996, + 972, + 1025, + 918, + 1025 + ], + "score": 0.88, + "latex": "3 { \\times } 3" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1918, + 1113, + 1918, + 1113, + 1947, + 1038, + 1947 + ], + "score": 0.79, + "latex": "p p \\times p" + }, + { + "category_id": 13, + "poly": [ + 488, + 847, + 564, + 847, + 564, + 876, + 488, + 876 + ], + "score": 0.79, + "latex": "p p { \\times } p" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 536.0, + 1396.0, + 536.0, + 1444.0, + 292.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 615.0, + 917.0, + 615.0, + 917.0, + 654.0, + 784.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 270.0, + 1369.0, + 270.0, + 1369.0, + 333.0, + 333.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2067.0, + 293.0, + 2067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1475.0, + 1403.0, + 1475.0, + 1403.0, + 1508.0, + 297.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1501.0, + 1408.0, + 1501.0, + 1408.0, + 1541.0, + 292.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1535.0, + 1407.0, + 1535.0, + 1407.0, + 1571.0, + 295.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1565.0, + 1406.0, + 1565.0, + 1406.0, + 1601.0, + 295.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1596.0, + 1407.0, + 1596.0, + 1407.0, + 1633.0, + 293.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1663.0, + 293.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1655.0, + 1406.0, + 1655.0, + 1406.0, + 1690.0, + 296.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1685.0, + 1411.0, + 1685.0, + 1411.0, + 1725.0, + 295.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 1302.0, + 1715.0, + 1302.0, + 1752.0, + 293.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 689.0, + 1308.0, + 689.0, + 1308.0, + 729.0, + 395.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 723.0, + 1308.0, + 723.0, + 1308.0, + 758.0, + 394.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 753.0, + 1305.0, + 753.0, + 1305.0, + 786.0, + 393.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 784.0, + 1305.0, + 784.0, + 1305.0, + 818.0, + 393.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 812.0, + 1305.0, + 812.0, + 1305.0, + 850.0, + 393.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 845.0, + 487.0, + 845.0, + 487.0, + 878.0, + 394.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 845.0, + 715.0, + 845.0, + 715.0, + 878.0, + 565.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 845.0, + 1305.0, + 845.0, + 1305.0, + 878.0, + 802.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 874.0, + 1304.0, + 874.0, + 1304.0, + 908.0, + 394.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 904.0, + 1304.0, + 904.0, + 1304.0, + 939.0, + 394.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 936.0, + 1305.0, + 936.0, + 1305.0, + 967.0, + 394.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 965.0, + 1306.0, + 965.0, + 1306.0, + 997.0, + 394.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 995.0, + 917.0, + 995.0, + 917.0, + 1028.0, + 394.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 995.0, + 1306.0, + 995.0, + 1306.0, + 1028.0, + 973.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1026.0, + 1305.0, + 1026.0, + 1305.0, + 1059.0, + 393.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1055.0, + 1305.0, + 1055.0, + 1305.0, + 1091.0, + 394.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1084.0, + 1308.0, + 1084.0, + 1308.0, + 1123.0, + 392.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1118.0, + 1306.0, + 1118.0, + 1306.0, + 1150.0, + 395.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1147.0, + 851.0, + 1147.0, + 851.0, + 1180.0, + 394.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1147.0, + 1306.0, + 1147.0, + 1306.0, + 1180.0, + 933.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1176.0, + 1305.0, + 1176.0, + 1305.0, + 1211.0, + 394.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1207.0, + 1305.0, + 1207.0, + 1305.0, + 1243.0, + 394.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1237.0, + 1304.0, + 1237.0, + 1304.0, + 1273.0, + 394.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1268.0, + 1304.0, + 1268.0, + 1304.0, + 1302.0, + 393.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1296.0, + 1187.0, + 1296.0, + 1187.0, + 1336.0, + 393.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 1404.0, + 1761.0, + 1404.0, + 1799.0, + 294.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 1405.0, + 1794.0, + 1405.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1824.0, + 1405.0, + 1824.0, + 1405.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1854.0, + 1404.0, + 1854.0, + 1404.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 784.0, + 1881.0, + 784.0, + 1923.0, + 293.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1881.0, + 1409.0, + 1881.0, + 1409.0, + 1923.0, + 840.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1037.0, + 1913.0, + 1037.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1913.0, + 1318.0, + 1913.0, + 1318.0, + 1951.0, + 1114.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 439.0, + 1394.0, + 439.0, + 1394.0, + 480.0, + 311.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 498.0, + 918.0, + 498.0, + 918.0, + 546.0, + 558.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 496.0, + 1154.0, + 496.0, + 1154.0, + 547.0, + 985.0, + 547.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1656, + 1404, + 1656, + 1404, + 1901, + 298, + 1901 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1232, + 1403, + 1232, + 1403, + 1446, + 299, + 1446 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1460, + 1403, + 1460, + 1403, + 1642, + 299, + 1642 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1035, + 1404, + 1035, + 1404, + 1218, + 298, + 1218 + ], + "score": 0.977 + }, + { + "category_id": 4, + "poly": [ + 296, + 553, + 1405, + 553, + 1405, + 916, + 296, + 916 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1914, + 1403, + 1914, + 1403, + 2007, + 300, + 2007 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 296, + 195, + 1402, + 195, + 1402, + 536, + 296, + 536 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 300, + 960, + 1399, + 960, + 1399, + 1022, + 300, + 1022 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.721 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 859, + 2062, + 859, + 2084, + 841, + 2084 + ], + "score": 0.134 + }, + { + "category_id": 1, + "poly": [ + 1041, + 212, + 1404, + 212, + 1404, + 339, + 1041, + 339 + ], + "score": 0.131 + }, + { + "category_id": 13, + "poly": [ + 351, + 646, + 434, + 646, + 434, + 676, + 351, + 676 + ], + "score": 0.91, + "latex": "p = 1 6" + }, + { + "category_id": 13, + "poly": [ + 480, + 797, + 546, + 797, + 546, + 827, + 480, + 827 + ], + "score": 0.89, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 737, + 1135, + 737, + 1135, + 767, + 1069, + 767 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1173, + 857, + 1238, + 857, + 1238, + 888, + 1173, + 888 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 296, + 766, + 359, + 766, + 359, + 797, + 296, + 797 + ], + "score": 0.86, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 649, + 888, + 713, + 888, + 713, + 917, + 649, + 917 + ], + "score": 0.85, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 961, + 1318, + 961, + 1318, + 990, + 1264, + 990 + ], + "score": 0.85, + "latex": "3 { \\times } 3" + }, + { + "category_id": 13, + "poly": [ + 811, + 1355, + 868, + 1355, + 868, + 1384, + 811, + 1384 + ], + "score": 0.83, + "latex": "\\sim 1 - 2" + }, + { + "category_id": 13, + "poly": [ + 444, + 677, + 480, + 677, + 480, + 703, + 444, + 703 + ], + "score": 0.82, + "latex": "{ \\sim } 5 " + }, + { + "category_id": 13, + "poly": [ + 1062, + 1068, + 1098, + 1068, + 1098, + 1096, + 1062, + 1096 + ], + "score": 0.8, + "latex": "{ \\sim } 5" + }, + { + "category_id": 13, + "poly": [ + 1190, + 617, + 1264, + 617, + 1264, + 646, + 1190, + 646 + ], + "score": 0.66, + "latex": "p p { \\times } p" + }, + { + "category_id": 13, + "poly": [ + 1155, + 400, + 1205, + 400, + 1205, + 426, + 1155, + 426 + ], + "score": 0.58, + "latex": "\\mathrm { V i T } _ { C } ," + }, + { + "category_id": 13, + "poly": [ + 1043, + 704, + 1116, + 704, + 1116, + 734, + 1043, + 734 + ], + "score": 0.48, + "latex": "\\bar { L } - 1" + }, + { + "category_id": 13, + "poly": [ + 1298, + 213, + 1346, + 213, + 1346, + 239, + 1298, + 239 + ], + "score": 0.43, + "latex": "\\mathrm { V i T } _ { P } )" + }, + { + "category_id": 13, + "poly": [ + 1159, + 706, + 1181, + 706, + 1181, + 733, + 1159, + 733 + ], + "score": 0.29, + "latex": "L" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 1405.0, + 554.0, + 1405.0, + 587.0, + 295.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 623.0, + 291.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 612.0, + 1189.0, + 612.0, + 1189.0, + 652.0, + 291.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 612.0, + 1410.0, + 612.0, + 1410.0, + 652.0, + 1265.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 350.0, + 644.0, + 350.0, + 681.0, + 294.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 644.0, + 1407.0, + 644.0, + 1407.0, + 681.0, + 435.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 673.0, + 443.0, + 673.0, + 443.0, + 711.0, + 291.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 673.0, + 1407.0, + 673.0, + 1407.0, + 711.0, + 481.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 1042.0, + 702.0, + 1042.0, + 741.0, + 293.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 702.0, + 1158.0, + 702.0, + 1158.0, + 741.0, + 1117.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 702.0, + 1405.0, + 702.0, + 1405.0, + 741.0, + 1182.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 735.0, + 1068.0, + 735.0, + 1068.0, + 771.0, + 294.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 735.0, + 1406.0, + 735.0, + 1406.0, + 771.0, + 1136.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 765.0, + 1405.0, + 765.0, + 1405.0, + 802.0, + 360.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 479.0, + 794.0, + 479.0, + 829.0, + 293.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 794.0, + 1406.0, + 794.0, + 1406.0, + 829.0, + 547.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 828.0, + 1403.0, + 828.0, + 1403.0, + 861.0, + 295.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 857.0, + 1172.0, + 857.0, + 1172.0, + 894.0, + 294.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 857.0, + 1403.0, + 857.0, + 1403.0, + 894.0, + 1239.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 648.0, + 884.0, + 648.0, + 923.0, + 293.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 884.0, + 824.0, + 884.0, + 824.0, + 923.0, + 714.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 203.0, + 615.0, + 203.0, + 615.0, + 228.0, + 491.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 203.0, + 922.0, + 203.0, + 922.0, + 226.0, + 796.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 203.0, + 1017.0, + 203.0, + 1017.0, + 235.0, + 975.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 208.0, + 1297.0, + 208.0, + 1297.0, + 242.0, + 1038.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 208.0, + 1358.0, + 208.0, + 1358.0, + 242.0, + 1347.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 233.0, + 569.0, + 233.0, + 569.0, + 317.0, + 530.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 249.0, + 742.0, + 249.0, + 742.0, + 298.0, + 716.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 248.0, + 762.0, + 248.0, + 762.0, + 258.0, + 751.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 231.0, + 808.0, + 231.0, + 808.0, + 317.0, + 764.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 248.0, + 907.0, + 248.0, + 907.0, + 299.0, + 875.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 249.0, + 956.0, + 249.0, + 956.0, + 297.0, + 924.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 234.0, + 1312.0, + 234.0, + 1312.0, + 290.0, + 1035.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 282.0, + 1348.0, + 282.0, + 1348.0, + 314.0, + 1035.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 318.0, + 1060.0, + 318.0, + 1060.0, + 334.0, + 1042.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 309.0, + 1406.0, + 309.0, + 1406.0, + 340.0, + 1061.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 392.0, + 630.0, + 392.0, + 630.0, + 416.0, + 472.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 392.0, + 922.0, + 392.0, + 922.0, + 416.0, + 796.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 389.0, + 1019.0, + 389.0, + 1019.0, + 419.0, + 946.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 397.0, + 1154.0, + 397.0, + 1154.0, + 427.0, + 1038.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 397.0, + 1338.0, + 397.0, + 1338.0, + 427.0, + 1206.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 412.0, + 553.0, + 412.0, + 553.0, + 517.0, + 467.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 431.0, + 623.0, + 431.0, + 623.0, + 498.0, + 584.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 436.0, + 744.0, + 436.0, + 744.0, + 489.0, + 718.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 421.0, + 808.0, + 421.0, + 808.0, + 508.0, + 762.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 434.0, + 909.0, + 434.0, + 909.0, + 491.0, + 878.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 441.0, + 953.0, + 441.0, + 953.0, + 487.0, + 926.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 420.0, + 1298.0, + 420.0, + 1298.0, + 481.0, + 1037.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 468.0, + 1360.0, + 468.0, + 1360.0, + 502.0, + 1036.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 508.0, + 660.0, + 508.0, + 660.0, + 532.0, + 438.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 497.0, + 1384.0, + 497.0, + 1384.0, + 528.0, + 1044.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1656.0, + 1404.0, + 1656.0, + 1404.0, + 1692.0, + 293.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1722.0, + 295.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1716.0, + 1406.0, + 1716.0, + 1406.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1749.0, + 1408.0, + 1749.0, + 1408.0, + 1782.0, + 294.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1777.0, + 1406.0, + 1777.0, + 1406.0, + 1814.0, + 293.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1805.0, + 1405.0, + 1805.0, + 1405.0, + 1847.0, + 292.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1836.0, + 1408.0, + 1836.0, + 1408.0, + 1877.0, + 292.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1868.0, + 1401.0, + 1868.0, + 1401.0, + 1904.0, + 293.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 1404.0, + 1231.0, + 1404.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 1405.0, + 1264.0, + 1405.0, + 1299.0, + 295.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 1407.0, + 1292.0, + 1407.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1322.0, + 1407.0, + 1322.0, + 1407.0, + 1360.0, + 294.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1355.0, + 810.0, + 1355.0, + 810.0, + 1389.0, + 295.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1355.0, + 1403.0, + 1355.0, + 1403.0, + 1389.0, + 869.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1382.0, + 1404.0, + 1382.0, + 1404.0, + 1421.0, + 293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1415.0, + 826.0, + 1415.0, + 826.0, + 1449.0, + 295.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 1407.0, + 1459.0, + 1407.0, + 1494.0, + 295.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 1405.0, + 1489.0, + 1405.0, + 1526.0, + 293.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1517.0, + 1407.0, + 1517.0, + 1407.0, + 1557.0, + 292.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1550.0, + 1407.0, + 1550.0, + 1407.0, + 1589.0, + 293.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1577.0, + 1408.0, + 1577.0, + 1408.0, + 1618.0, + 293.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1609.0, + 1400.0, + 1609.0, + 1400.0, + 1645.0, + 294.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1034.0, + 1404.0, + 1034.0, + 1404.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1067.0, + 1061.0, + 1067.0, + 1061.0, + 1101.0, + 293.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1067.0, + 1409.0, + 1067.0, + 1409.0, + 1101.0, + 1099.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1095.0, + 1406.0, + 1095.0, + 1406.0, + 1132.0, + 293.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1125.0, + 1406.0, + 1125.0, + 1406.0, + 1161.0, + 293.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1153.0, + 1406.0, + 1153.0, + 1406.0, + 1196.0, + 292.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1186.0, + 1352.0, + 1186.0, + 1352.0, + 1224.0, + 293.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1946.0, + 1407.0, + 1946.0, + 1407.0, + 1980.0, + 296.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1405.0, + 1975.0, + 1405.0, + 2011.0, + 295.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 958.0, + 1263.0, + 958.0, + 1263.0, + 994.0, + 296.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 958.0, + 1403.0, + 958.0, + 1403.0, + 994.0, + 1319.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 988.0, + 762.0, + 988.0, + 762.0, + 1024.0, + 295.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 210.0, + 1297.0, + 210.0, + 1297.0, + 240.0, + 1039.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 210.0, + 1357.0, + 210.0, + 1357.0, + 240.0, + 1347.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 236.0, + 1310.0, + 236.0, + 1310.0, + 263.0, + 1042.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 261.0, + 1218.0, + 261.0, + 1218.0, + 288.0, + 1039.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 286.0, + 1346.0, + 286.0, + 1346.0, + 311.0, + 1036.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 317.0, + 1061.0, + 317.0, + 1061.0, + 334.0, + 1042.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 311.0, + 1404.0, + 311.0, + 1404.0, + 339.0, + 1062.0, + 339.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 485, + 1403, + 485, + 1403, + 759, + 298, + 759 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1379, + 1405, + 1379, + 1405, + 1653, + 298, + 1653 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 783, + 1404, + 783, + 1404, + 1088, + 298, + 1088 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1111, + 1406, + 1111, + 1406, + 1355, + 298, + 1355 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 278, + 1403, + 278, + 1403, + 462, + 298, + 462 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1822, + 1403, + 1822, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 298, + 1697, + 831, + 1697, + 831, + 1735, + 298, + 1735 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 292, + 1767, + 1368, + 1767, + 1368, + 1800, + 292, + 1800 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 299, + 198, + 548, + 198, + 548, + 235, + 299, + 235 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.603 + }, + { + "category_id": 2, + "poly": [ + 842, + 2061, + 859, + 2061, + 859, + 2084, + 842, + 2084 + ], + "score": 0.402 + }, + { + "category_id": 13, + "poly": [ + 440, + 1886, + 522, + 1886, + 522, + 1916, + 440, + 1916 + ], + "score": 0.91, + "latex": "p = 1 6" + }, + { + "category_id": 13, + "poly": [ + 1259, + 1828, + 1314, + 1828, + 1314, + 1856, + 1259, + 1856 + ], + "score": 0.89, + "latex": "p { \\times } p" + }, + { + "category_id": 13, + "poly": [ + 753, + 1885, + 860, + 1885, + 860, + 1914, + 753, + 1914 + ], + "score": 0.89, + "latex": "2 2 4 \\times 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 688, + 845, + 769, + 845, + 769, + 875, + 688, + 875 + ], + "score": 0.88, + "latex": "1 6 \\times 1 6" + }, + { + "category_id": 13, + "poly": [ + 705, + 1856, + 723, + 1856, + 723, + 1882, + 705, + 1882 + ], + "score": 0.81, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 705, + 1441, + 742, + 1441, + 742, + 1469, + 705, + 1469 + ], + "score": 0.81, + "latex": "{ \\sim } 5 " + }, + { + "category_id": 13, + "poly": [ + 577, + 1471, + 606, + 1471, + 606, + 1502, + 577, + 1502 + ], + "score": 0.46, + "latex": "_ { c f }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1692.0, + 835.0, + 1692.0, + 835.0, + 1742.0, + 291.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 195.0, + 551.0, + 195.0, + 551.0, + 240.0, + 292.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 479.0, + 1404.0, + 479.0, + 1404.0, + 523.0, + 293.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 517.0, + 1404.0, + 517.0, + 1404.0, + 549.0, + 297.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 544.0, + 1405.0, + 544.0, + 1405.0, + 582.0, + 293.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 574.0, + 1407.0, + 574.0, + 1407.0, + 613.0, + 293.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 641.0, + 293.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 639.0, + 1404.0, + 639.0, + 1404.0, + 671.0, + 296.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 667.0, + 1403.0, + 667.0, + 1403.0, + 700.0, + 294.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 695.0, + 1404.0, + 695.0, + 1404.0, + 732.0, + 293.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 727.0, + 1068.0, + 727.0, + 1068.0, + 762.0, + 293.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1377.0, + 1403.0, + 1377.0, + 1403.0, + 1415.0, + 295.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1445.0, + 296.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1439.0, + 704.0, + 1439.0, + 704.0, + 1476.0, + 295.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1439.0, + 1405.0, + 1439.0, + 1405.0, + 1476.0, + 743.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1467.0, + 576.0, + 1467.0, + 576.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1467.0, + 1406.0, + 1467.0, + 1406.0, + 1506.0, + 607.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1541.0, + 292.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1567.0, + 292.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 1407.0, + 1560.0, + 1407.0, + 1597.0, + 295.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1405.0, + 1589.0, + 1405.0, + 1628.0, + 293.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1621.0, + 1348.0, + 1621.0, + 1348.0, + 1658.0, + 295.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1405.0, + 780.0, + 1405.0, + 820.0, + 295.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 810.0, + 1405.0, + 810.0, + 1405.0, + 852.0, + 292.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 843.0, + 687.0, + 843.0, + 687.0, + 882.0, + 293.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 843.0, + 1405.0, + 843.0, + 1405.0, + 882.0, + 770.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 875.0, + 1406.0, + 875.0, + 1406.0, + 910.0, + 294.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 903.0, + 1407.0, + 903.0, + 1407.0, + 941.0, + 292.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 1408.0, + 933.0, + 1408.0, + 972.0, + 293.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1000.0, + 292.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 994.0, + 1405.0, + 994.0, + 1405.0, + 1033.0, + 292.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 1404.0, + 1025.0, + 1404.0, + 1061.0, + 294.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1054.0, + 1394.0, + 1054.0, + 1394.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1111.0, + 1404.0, + 1111.0, + 1404.0, + 1145.0, + 296.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1140.0, + 1408.0, + 1140.0, + 1408.0, + 1177.0, + 293.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1171.0, + 1407.0, + 1171.0, + 1407.0, + 1207.0, + 293.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1204.0, + 1403.0, + 1204.0, + 1403.0, + 1234.0, + 296.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1232.0, + 1406.0, + 1232.0, + 1406.0, + 1265.0, + 295.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1406.0, + 1263.0, + 1406.0, + 1296.0, + 295.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1290.0, + 1408.0, + 1290.0, + 1408.0, + 1329.0, + 292.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1324.0, + 1407.0, + 1324.0, + 1407.0, + 1357.0, + 296.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 277.0, + 1402.0, + 277.0, + 1402.0, + 309.0, + 297.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 345.0, + 293.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 334.0, + 1407.0, + 334.0, + 1407.0, + 378.0, + 292.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 367.0, + 1407.0, + 367.0, + 1407.0, + 404.0, + 293.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 1407.0, + 399.0, + 1407.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 430.0, + 1290.0, + 430.0, + 1290.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1823.0, + 1258.0, + 1823.0, + 1258.0, + 1859.0, + 295.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1823.0, + 1405.0, + 1823.0, + 1405.0, + 1859.0, + 1315.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1856.0, + 704.0, + 1856.0, + 704.0, + 1888.0, + 297.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1856.0, + 1405.0, + 1856.0, + 1405.0, + 1888.0, + 724.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1884.0, + 439.0, + 1884.0, + 439.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1884.0, + 752.0, + 1884.0, + 752.0, + 1920.0, + 523.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1920.0, + 861.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1950.0, + 293.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1945.0, + 1407.0, + 1945.0, + 1407.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1408.0, + 1974.0, + 1408.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1767.0, + 1371.0, + 1767.0, + 1371.0, + 1802.0, + 296.0, + 1802.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1020, + 1405, + 1020, + 1405, + 1326, + 298, + 1326 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1732, + 1404, + 1732, + 1404, + 2007, + 298, + 2007 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1526, + 1404, + 1526, + 1404, + 1708, + 298, + 1708 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 814, + 1404, + 814, + 1404, + 997, + 298, + 997 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1349, + 1402, + 1349, + 1402, + 1502, + 298, + 1502 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 698, + 1401, + 698, + 1401, + 790, + 300, + 790 + ], + "score": 0.96 + }, + { + "category_id": 5, + "poly": [ + 296, + 189, + 863, + 189, + 863, + 333, + 296, + 333 + ], + "score": 0.958, + "html": "
modelref model|hidden MLP sizemultnum headsnum blocksflops (B)params (M)acts (M)time (min)
ViTp-1GF~ViT-T19233121.14.85.52.6
ViTp-4GF~ViT-S38436123.918.511.13.8
ViTp-18GF=ViT-B7684121217.586.724.011.5
ViTp-36GFViT-L10244161435.9178.437.318.8
" + }, + { + "category_id": 1, + "poly": [ + 297, + 357, + 1404, + 357, + 1404, + 662, + 297, + 662 + ], + "score": 0.947 + }, + { + "category_id": 5, + "poly": [ + 889, + 189, + 1395, + 189, + 1395, + 332, + 889, + 332 + ], + "score": 0.888, + "html": "
modelhidden sizeMLP multnum heads blocksnumflops (B)params (M)acts (M)time (min)
ViTc-1GF19233111.14.65.72.7
ViTc-4GF38436114.017.811.33.9
ViTc-18GF7684121117.781.624.111.4
ViTc-36GF10244161335.0167.836.718.6
" + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.769 + }, + { + "category_id": 13, + "poly": [ + 610, + 1442, + 674, + 1442, + 674, + 1472, + 610, + 1472 + ], + "score": 0.91, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1083, + 1192, + 1083, + 1192, + 1112, + 1083, + 1112 + ], + "score": 0.89, + "latex": "2 2 4 \\times 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 708, + 631, + 772, + 631, + 772, + 662, + 708, + 662 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1053, + 843, + 1053, + 843, + 1081, + 789, + 1081 + ], + "score": 0.88, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 953, + 1619, + 1006, + 1619, + 1006, + 1647, + 953, + 1647 + ], + "score": 0.88, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 699, + 1113, + 778, + 1113, + 778, + 1142, + 699, + 1142 + ], + "score": 0.88, + "latex": "1 4 \\times 1 4" + }, + { + "category_id": 13, + "poly": [ + 823, + 632, + 887, + 632, + 887, + 662, + 823, + 662 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 553, + 481, + 592, + 481, + 592, + 509, + 553, + 509 + ], + "score": 0.88, + "latex": "3 \\times" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1528, + 1258, + 1528, + 1258, + 1556, + 1204, + 1556 + ], + "score": 0.88, + "latex": "3 { \\times } 3" + }, + { + "category_id": 13, + "poly": [ + 895, + 510, + 959, + 510, + 959, + 541, + 895, + 541 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 326, + 1441, + 390, + 1441, + 390, + 1471, + 326, + 1471 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 479, + 481, + 519, + 481, + 519, + 509, + 479, + 509 + ], + "score": 0.87, + "latex": "4 \\times" + }, + { + "category_id": 13, + "poly": [ + 1250, + 541, + 1314, + 541, + 1314, + 571, + 1250, + 571 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 919, + 1143, + 974, + 1143, + 974, + 1172, + 919, + 1172 + ], + "score": 0.87, + "latex": "3 { \\times } 3" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1587, + 1078, + 1587, + 1078, + 1616, + 1024, + 1616 + ], + "score": 0.86, + "latex": "3 { \\times } 3" + }, + { + "category_id": 13, + "poly": [ + 726, + 359, + 790, + 359, + 790, + 389, + 726, + 389 + ], + "score": 0.86, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1052, + 351, + 1052, + 351, + 1082, + 296, + 1082 + ], + "score": 0.86, + "latex": "3 { \\times } 3" + }, + { + "category_id": 13, + "poly": [ + 412, + 1471, + 476, + 1471, + 476, + 1502, + 412, + 1502 + ], + "score": 0.85, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1472, + 361, + 1472, + 361, + 1502, + 296, + 1502 + ], + "score": 0.84, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 295, + 1349, + 363, + 1349, + 363, + 1381, + 295, + 1381 + ], + "score": 0.84, + "latex": "\\mathbf { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 728, + 702, + 782, + 702, + 782, + 731, + 728, + 731 + ], + "score": 0.82, + "latex": "p { \\times } p" + }, + { + "category_id": 13, + "poly": [ + 295, + 814, + 363, + 814, + 363, + 845, + 295, + 845 + ], + "score": 0.81, + "latex": "\\mathbf { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1186, + 936, + 1250, + 936, + 1250, + 967, + 1186, + 967 + ], + "score": 0.81, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 584, + 968, + 610, + 968, + 610, + 994, + 584, + 994 + ], + "score": 0.79, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1053, + 1258, + 1053, + 1258, + 1079, + 1239, + 1079 + ], + "score": 0.78, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1678, + 1119, + 1678, + 1119, + 1709, + 1055, + 1709 + ], + "score": 0.76, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 665, + 1678, + 729, + 1678, + 729, + 1709, + 665, + 1709 + ], + "score": 0.71, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 700, + 704, + 717, + 704, + 717, + 731, + 700, + 731 + ], + "score": 0.62, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 297, + 261, + 340, + 261, + 340, + 282, + 297, + 282 + ], + "score": 0.26, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1018.0, + 1405.0, + 1018.0, + 1405.0, + 1058.0, + 295.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1052.0, + 788.0, + 1052.0, + 788.0, + 1084.0, + 352.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1052.0, + 1238.0, + 1052.0, + 1238.0, + 1084.0, + 844.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1084.0, + 1259.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1077.0, + 1082.0, + 1077.0, + 1082.0, + 1121.0, + 292.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1077.0, + 1406.0, + 1077.0, + 1406.0, + 1121.0, + 1193.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1112.0, + 698.0, + 1112.0, + 698.0, + 1148.0, + 295.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1112.0, + 1406.0, + 1112.0, + 1406.0, + 1148.0, + 779.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1143.0, + 918.0, + 1143.0, + 918.0, + 1178.0, + 293.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1143.0, + 1407.0, + 1143.0, + 1407.0, + 1178.0, + 975.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1173.0, + 1408.0, + 1173.0, + 1408.0, + 1207.0, + 295.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1201.0, + 1407.0, + 1201.0, + 1407.0, + 1239.0, + 293.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1234.0, + 1407.0, + 1234.0, + 1407.0, + 1269.0, + 295.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1266.0, + 1402.0, + 1266.0, + 1402.0, + 1297.0, + 296.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 1333.0, + 1295.0, + 1333.0, + 1330.0, + 293.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1734.0, + 1405.0, + 1734.0, + 1405.0, + 1767.0, + 297.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1761.0, + 1406.0, + 1761.0, + 1406.0, + 1799.0, + 292.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1791.0, + 1407.0, + 1791.0, + 1407.0, + 1832.0, + 292.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1862.0, + 292.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1854.0, + 1406.0, + 1854.0, + 1406.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1884.0, + 1408.0, + 1884.0, + 1408.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1911.0, + 1408.0, + 1911.0, + 1408.0, + 1953.0, + 292.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1985.0, + 292.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 1379.0, + 1975.0, + 1379.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1524.0, + 1203.0, + 1524.0, + 1203.0, + 1560.0, + 296.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1524.0, + 1404.0, + 1524.0, + 1404.0, + 1560.0, + 1259.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 1408.0, + 1554.0, + 1408.0, + 1591.0, + 292.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1582.0, + 1023.0, + 1582.0, + 1023.0, + 1623.0, + 292.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1582.0, + 1406.0, + 1582.0, + 1406.0, + 1623.0, + 1079.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1617.0, + 952.0, + 1617.0, + 952.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1617.0, + 1406.0, + 1617.0, + 1406.0, + 1652.0, + 1007.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 1405.0, + 1647.0, + 1405.0, + 1682.0, + 294.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 664.0, + 1677.0, + 664.0, + 1710.0, + 293.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1677.0, + 1054.0, + 1677.0, + 1054.0, + 1710.0, + 730.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1677.0, + 1201.0, + 1677.0, + 1201.0, + 1710.0, + 1120.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 813.0, + 1408.0, + 813.0, + 1408.0, + 849.0, + 364.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 841.0, + 1408.0, + 841.0, + 1408.0, + 878.0, + 293.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 874.0, + 1407.0, + 874.0, + 1407.0, + 911.0, + 292.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 904.0, + 1406.0, + 904.0, + 1406.0, + 938.0, + 293.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 1185.0, + 933.0, + 1185.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 933.0, + 1404.0, + 933.0, + 1404.0, + 970.0, + 1251.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 964.0, + 583.0, + 964.0, + 583.0, + 1002.0, + 293.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 964.0, + 1381.0, + 964.0, + 1381.0, + 1002.0, + 611.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1348.0, + 1404.0, + 1348.0, + 1404.0, + 1383.0, + 364.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1379.0, + 1404.0, + 1379.0, + 1404.0, + 1412.0, + 296.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1411.0, + 1404.0, + 1411.0, + 1404.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1437.0, + 325.0, + 1437.0, + 325.0, + 1477.0, + 292.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1437.0, + 609.0, + 1437.0, + 609.0, + 1477.0, + 391.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1477.0, + 675.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1468.0, + 411.0, + 1468.0, + 411.0, + 1506.0, + 362.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1468.0, + 1334.0, + 1468.0, + 1334.0, + 1506.0, + 477.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 697.0, + 699.0, + 697.0, + 699.0, + 733.0, + 294.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 697.0, + 727.0, + 697.0, + 727.0, + 733.0, + 718.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 697.0, + 1405.0, + 697.0, + 1405.0, + 733.0, + 783.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 728.0, + 1405.0, + 728.0, + 1405.0, + 762.0, + 294.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 760.0, + 1295.0, + 760.0, + 1295.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 358.0, + 725.0, + 358.0, + 725.0, + 393.0, + 294.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 358.0, + 1405.0, + 358.0, + 1405.0, + 393.0, + 791.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 388.0, + 1406.0, + 388.0, + 1406.0, + 421.0, + 292.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 420.0, + 1405.0, + 420.0, + 1405.0, + 451.0, + 296.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 447.0, + 1406.0, + 447.0, + 1406.0, + 484.0, + 292.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 479.0, + 478.0, + 479.0, + 478.0, + 515.0, + 294.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 479.0, + 552.0, + 479.0, + 552.0, + 515.0, + 520.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 479.0, + 1406.0, + 479.0, + 1406.0, + 515.0, + 593.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 507.0, + 894.0, + 507.0, + 894.0, + 545.0, + 292.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 507.0, + 1406.0, + 507.0, + 1406.0, + 545.0, + 960.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 540.0, + 1249.0, + 540.0, + 1249.0, + 575.0, + 295.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 540.0, + 1406.0, + 540.0, + 1406.0, + 575.0, + 1315.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 1409.0, + 570.0, + 1409.0, + 606.0, + 294.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1406.0, + 598.0, + 1406.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 630.0, + 707.0, + 630.0, + 707.0, + 665.0, + 295.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 630.0, + 822.0, + 630.0, + 822.0, + 665.0, + 773.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 630.0, + 1301.0, + 630.0, + 1301.0, + 665.0, + 888.0, + 665.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1147, + 1404, + 1147, + 1404, + 1422, + 298, + 1422 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1446, + 1404, + 1446, + 1404, + 1660, + 297, + 1660 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 612, + 1404, + 612, + 1404, + 857, + 298, + 857 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 879, + 1405, + 879, + 1405, + 1125, + 298, + 1125 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 436, + 1404, + 436, + 1404, + 589, + 298, + 589 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 269, + 1402, + 269, + 1402, + 422, + 298, + 422 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1777, + 1403, + 1777, + 1403, + 1871, + 299, + 1871 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1883, + 1403, + 1883, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 299, + 1705, + 661, + 1705, + 661, + 1744, + 299, + 1744 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 300, + 197, + 717, + 197, + 717, + 237, + 300, + 237 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.706 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.1 + }, + { + "category_id": 13, + "poly": [ + 398, + 942, + 456, + 942, + 456, + 971, + 398, + 971 + ], + "score": 0.89, + "latex": "\\sim 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 938, + 1033, + 994, + 1033, + 994, + 1062, + 938, + 1062 + ], + "score": 0.88, + "latex": "50 \\%" + }, + { + "category_id": 13, + "poly": [ + 498, + 1034, + 530, + 1034, + 530, + 1064, + 498, + 1064 + ], + "score": 0.88, + "latex": "\\beta _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1391, + 1382, + 1391, + 1382, + 1422, + 1331, + 1422 + ], + "score": 0.85, + "latex": "\\ S" + }, + { + "category_id": 13, + "poly": [ + 505, + 1149, + 591, + 1149, + 591, + 1180, + 505, + 1180 + ], + "score": 0.84, + "latex": "( l r , w d )" + }, + { + "category_id": 13, + "poly": [ + 991, + 675, + 1053, + 675, + 1053, + 704, + 991, + 704 + ], + "score": 0.83, + "latex": "2 \\%" + }, + { + "category_id": 13, + "poly": [ + 753, + 1977, + 775, + 1977, + 775, + 2003, + 753, + 2003 + ], + "score": 0.78, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1946, + 1144, + 1946, + 1144, + 1976, + 1090, + 1976 + ], + "score": 0.78, + "latex": "\\ S" + }, + { + "category_id": 13, + "poly": [ + 667, + 1810, + 698, + 1810, + 698, + 1839, + 667, + 1839 + ], + "score": 0.76, + "latex": "\\ S" + }, + { + "category_id": 13, + "poly": [ + 1188, + 1301, + 1213, + 1301, + 1213, + 1328, + 1188, + 1328 + ], + "score": 0.74, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1569, + 1252, + 1569, + 1252, + 1599, + 1220, + 1599 + ], + "score": 0.74, + "latex": "\\ S 6" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1780, + 1249, + 1780, + 1249, + 1809, + 1208, + 1809 + ], + "score": 0.72, + "latex": "( P )" + }, + { + "category_id": 13, + "poly": [ + 865, + 1150, + 906, + 1150, + 906, + 1179, + 865, + 1179 + ], + "score": 0.72, + "latex": "( l r )" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1332, + 1091, + 1332, + 1091, + 1359, + 1066, + 1359 + ], + "score": 0.71, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1301, + 1305, + 1301, + 1305, + 1328, + 1267, + 1328 + ], + "score": 0.66, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 1324, + 1629, + 1356, + 1629, + 1356, + 1659, + 1324, + 1659 + ], + "score": 0.66, + "latex": "\\ S 6" + }, + { + "category_id": 13, + "poly": [ + 950, + 973, + 1006, + 973, + 1006, + 1002, + 950, + 1002 + ], + "score": 0.65, + "latex": "\\ S 5 . 2 )" + }, + { + "category_id": 13, + "poly": [ + 454, + 1810, + 493, + 1810, + 493, + 1839, + 454, + 1839 + ], + "score": 0.6, + "latex": "( C )" + }, + { + "category_id": 13, + "poly": [ + 1338, + 675, + 1395, + 675, + 1395, + 706, + 1338, + 706 + ], + "score": 0.57, + "latex": "\\begin{array} { r l } { \\ S } & { { } \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1361, + 559, + 1392, + 559, + 1392, + 590, + 1361, + 590 + ], + "score": 0.57, + "latex": "\\ S 5" + }, + { + "category_id": 13, + "poly": [ + 824, + 1977, + 861, + 1977, + 861, + 2003, + 824, + 2003 + ], + "score": 0.55, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 915, + 1569, + 939, + 1569, + 939, + 1596, + 915, + 1596 + ], + "score": 0.51, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 988, + 1569, + 1025, + 1569, + 1025, + 1596, + 988, + 1596 + ], + "score": 0.41, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 1143, + 1508, + 1165, + 1508, + 1165, + 1535, + 1143, + 1535 + ], + "score": 0.38, + "latex": "l r" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1704.0, + 664.0, + 1704.0, + 664.0, + 1752.0, + 291.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 192.0, + 722.0, + 192.0, + 722.0, + 248.0, + 290.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1148.0, + 504.0, + 1148.0, + 504.0, + 1184.0, + 296.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1148.0, + 864.0, + 1148.0, + 864.0, + 1184.0, + 592.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1148.0, + 1406.0, + 1148.0, + 1406.0, + 1184.0, + 907.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1178.0, + 1406.0, + 1178.0, + 1406.0, + 1213.0, + 293.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1210.0, + 1405.0, + 1210.0, + 1405.0, + 1243.0, + 296.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1238.0, + 1406.0, + 1238.0, + 1406.0, + 1275.0, + 293.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1268.0, + 1406.0, + 1268.0, + 1406.0, + 1305.0, + 292.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1299.0, + 1187.0, + 1299.0, + 1187.0, + 1335.0, + 294.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1299.0, + 1266.0, + 1299.0, + 1266.0, + 1335.0, + 1214.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1299.0, + 1406.0, + 1299.0, + 1406.0, + 1335.0, + 1306.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1330.0, + 1065.0, + 1330.0, + 1065.0, + 1364.0, + 293.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1330.0, + 1405.0, + 1330.0, + 1405.0, + 1364.0, + 1092.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1394.0, + 293.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 1330.0, + 1390.0, + 1330.0, + 1424.0, + 293.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1390.0, + 1396.0, + 1390.0, + 1396.0, + 1424.0, + 1383.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1477.0, + 1405.0, + 1477.0, + 1405.0, + 1511.0, + 295.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 1142.0, + 1506.0, + 1142.0, + 1541.0, + 295.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1541.0, + 1166.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1576.0, + 291.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1563.0, + 914.0, + 1563.0, + 914.0, + 1606.0, + 291.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1563.0, + 987.0, + 1563.0, + 987.0, + 1606.0, + 940.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1563.0, + 1219.0, + 1563.0, + 1219.0, + 1606.0, + 1026.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1563.0, + 1405.0, + 1563.0, + 1405.0, + 1606.0, + 1253.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1598.0, + 1405.0, + 1598.0, + 1405.0, + 1633.0, + 294.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1628.0, + 1323.0, + 1628.0, + 1323.0, + 1665.0, + 292.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1628.0, + 1365.0, + 1628.0, + 1365.0, + 1665.0, + 1357.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 614.0, + 1405.0, + 614.0, + 1405.0, + 647.0, + 294.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 643.0, + 1409.0, + 643.0, + 1409.0, + 678.0, + 292.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 990.0, + 675.0, + 990.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 675.0, + 1337.0, + 675.0, + 1337.0, + 708.0, + 1054.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 675.0, + 1408.0, + 675.0, + 1408.0, + 708.0, + 1396.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 736.0, + 1404.0, + 736.0, + 1404.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 763.0, + 1404.0, + 763.0, + 1404.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 796.0, + 1405.0, + 796.0, + 1405.0, + 833.0, + 292.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 827.0, + 1244.0, + 827.0, + 1244.0, + 860.0, + 294.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 879.0, + 1410.0, + 879.0, + 1410.0, + 917.0, + 295.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 911.0, + 1405.0, + 911.0, + 1405.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 942.0, + 397.0, + 942.0, + 397.0, + 976.0, + 295.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 942.0, + 1405.0, + 942.0, + 1405.0, + 976.0, + 457.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 972.0, + 949.0, + 972.0, + 949.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1006.0, + 1007.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 998.0, + 1410.0, + 998.0, + 1410.0, + 1043.0, + 291.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1032.0, + 497.0, + 1032.0, + 497.0, + 1069.0, + 293.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1032.0, + 937.0, + 1032.0, + 937.0, + 1069.0, + 531.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1032.0, + 1407.0, + 1032.0, + 1407.0, + 1069.0, + 995.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1061.0, + 1406.0, + 1061.0, + 1406.0, + 1098.0, + 292.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1095.0, + 1408.0, + 1095.0, + 1408.0, + 1128.0, + 296.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 437.0, + 1406.0, + 437.0, + 1406.0, + 470.0, + 296.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 465.0, + 1405.0, + 465.0, + 1405.0, + 503.0, + 293.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 497.0, + 1409.0, + 497.0, + 1409.0, + 534.0, + 293.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 528.0, + 1404.0, + 528.0, + 1404.0, + 561.0, + 296.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 560.0, + 1360.0, + 560.0, + 1360.0, + 593.0, + 296.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 560.0, + 1401.0, + 560.0, + 1401.0, + 593.0, + 1393.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 269.0, + 1404.0, + 269.0, + 1404.0, + 305.0, + 293.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 299.0, + 1406.0, + 299.0, + 1406.0, + 335.0, + 293.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 330.0, + 1406.0, + 330.0, + 1406.0, + 367.0, + 294.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 360.0, + 1406.0, + 360.0, + 1406.0, + 397.0, + 293.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 392.0, + 1255.0, + 392.0, + 1255.0, + 429.0, + 294.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1774.0, + 1207.0, + 1774.0, + 1207.0, + 1813.0, + 292.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1774.0, + 1405.0, + 1774.0, + 1405.0, + 1813.0, + 1250.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1806.0, + 453.0, + 1806.0, + 453.0, + 1843.0, + 293.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1806.0, + 666.0, + 1806.0, + 666.0, + 1843.0, + 494.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1806.0, + 1407.0, + 1806.0, + 1407.0, + 1843.0, + 699.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1840.0, + 1172.0, + 1840.0, + 1172.0, + 1874.0, + 295.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1089.0, + 1946.0, + 1089.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1946.0, + 1404.0, + 1946.0, + 1404.0, + 1979.0, + 1145.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1977.0, + 752.0, + 1977.0, + 752.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1977.0, + 823.0, + 1977.0, + 823.0, + 2009.0, + 776.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1977.0, + 1407.0, + 1977.0, + 1407.0, + 2009.0, + 862.0, + 2009.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1792, + 1404, + 1792, + 1404, + 2007, + 298, + 2007 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1364, + 1404, + 1364, + 1404, + 1548, + 298, + 1548 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1158, + 1403, + 1158, + 1403, + 1342, + 297, + 1342 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1646, + 1405, + 1646, + 1405, + 1770, + 298, + 1770 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 304, + 594, + 1394, + 594, + 1394, + 830, + 304, + 830 + ], + "score": 0.965 + }, + { + "category_id": 3, + "poly": [ + 304, + 201, + 1394, + 201, + 1394, + 438, + 304, + 438 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 851, + 1405, + 851, + 1405, + 1036, + 296, + 1036 + ], + "score": 0.956 + }, + { + "category_id": 4, + "poly": [ + 297, + 460, + 1403, + 460, + 1403, + 555, + 297, + 555 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 299, + 1588, + 591, + 1588, + 591, + 1621, + 299, + 1621 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 299, + 1100, + 664, + 1100, + 664, + 1133, + 299, + 1133 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.788 + }, + { + "category_id": 13, + "poly": [ + 1032, + 944, + 1096, + 944, + 1096, + 975, + 1032, + 975 + ], + "score": 0.9, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 979, + 884, + 1042, + 884, + 1042, + 914, + 979, + 914 + ], + "score": 0.89, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 886, + 1250, + 971, + 1250, + 971, + 1281, + 886, + 1281 + ], + "score": 0.89, + "latex": "\\{ P , C \\}" + }, + { + "category_id": 13, + "poly": [ + 881, + 1824, + 1003, + 1824, + 1003, + 1853, + 881, + 1853 + ], + "score": 0.88, + "latex": "{ \\sim } 0 . 1 { - } 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 674, + 915, + 739, + 915, + 739, + 944, + 674, + 944 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 849, + 491, + 914, + 491, + 914, + 522, + 849, + 522 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1306, + 1855, + 1361, + 1855, + 1361, + 1884, + 1306, + 1884 + ], + "score": 0.87, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1886, + 1164, + 1886, + 1164, + 1916, + 1100, + 1916 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 946, + 1487, + 987, + 1487, + 987, + 1516, + 946, + 1516 + ], + "score": 0.87, + "latex": "6 \\%" + }, + { + "category_id": 13, + "poly": [ + 318, + 1487, + 372, + 1487, + 372, + 1516, + 318, + 1516 + ], + "score": 0.87, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1977, + 1307, + 1977, + 1307, + 2007, + 1243, + 2007 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 592, + 1976, + 656, + 1976, + 656, + 2007, + 592, + 2007 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 828, + 1396, + 895, + 1396, + 895, + 1427, + 828, + 1427 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1855, + 355, + 1855, + 355, + 1885, + 296, + 1885 + ], + "score": 0.86, + "latex": "V i T _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 491, + 1400, + 491, + 1400, + 521, + 1336, + 521 + ], + "score": 0.86, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1946, + 1300, + 1946, + 1300, + 1975, + 1240, + 1975 + ], + "score": 0.86, + "latex": "0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1396, + 1400, + 1396, + 1400, + 1427, + 1335, + 1427 + ], + "score": 0.86, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1487, + 642, + 1487, + 642, + 1517, + 577, + 1517 + ], + "score": 0.85, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1457, + 1299, + 1457, + 1299, + 1488, + 1236, + 1488 + ], + "score": 0.82, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1678, + 951, + 1678, + 951, + 1709, + 866, + 1709 + ], + "score": 0.81, + "latex": "\\{ P , C \\}" + }, + { + "category_id": 13, + "poly": [ + 1046, + 1250, + 1188, + 1250, + 1188, + 1281, + 1046, + 1281 + ], + "score": 0.75, + "latex": "\\times \\ \\{ 1 , 4 , 1 8 \\}" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1252, + 1403, + 1252, + 1403, + 1279, + 1375, + 1279 + ], + "score": 0.73, + "latex": "\\times" + }, + { + "category_id": 13, + "poly": [ + 1060, + 1281, + 1171, + 1281, + 1171, + 1311, + 1060, + 1311 + ], + "score": 0.47, + "latex": "\\{ 1 , 4 , 1 6 \\}" + }, + { + "category_id": 13, + "poly": [ + 791, + 914, + 901, + 914, + 901, + 945, + 791, + 945 + ], + "score": 0.43, + "latex": "\\mathrm { R e g N e t Y }" + }, + { + "category_id": 13, + "poly": [ + 493, + 1711, + 518, + 1711, + 518, + 1738, + 493, + 1738 + ], + "score": 0.42, + "latex": "\\times" + }, + { + "category_id": 13, + "poly": [ + 754, + 887, + 776, + 887, + 776, + 912, + 754, + 912 + ], + "score": 0.42, + "latex": "\\blacktriangledown" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1680, + 1294, + 1680, + 1294, + 1707, + 1270, + 1707 + ], + "score": 0.33, + "latex": "\\times" + }, + { + "category_id": 13, + "poly": [ + 388, + 888, + 410, + 888, + 410, + 912, + 388, + 912 + ], + "score": 0.31, + "latex": "\\blacktriangle" + }, + { + "category_id": 13, + "poly": [ + 631, + 1678, + 712, + 1678, + 712, + 1707, + 631, + 1707 + ], + "score": 0.28, + "latex": "4 8 \\ \\mathrm { V i T }" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 610.0, + 347.0, + 610.0, + 347.0, + 631.0, + 323.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 603.0, + 666.0, + 603.0, + 666.0, + 631.0, + 569.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 601.0, + 1024.0, + 601.0, + 1024.0, + 630.0, + 925.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 602.0, + 1383.0, + 602.0, + 1383.0, + 630.0, + 1276.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 629.0, + 363.0, + 629.0, + 363.0, + 758.0, + 288.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 648.0, + 641.0, + 648.0, + 641.0, + 675.0, + 599.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 625.0, + 998.0, + 625.0, + 998.0, + 675.0, + 951.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 625.0, + 1352.0, + 625.0, + 1352.0, + 675.0, + 1308.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 673.0, + 668.0, + 673.0, + 668.0, + 695.0, + 601.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 670.0, + 1026.0, + 670.0, + 1026.0, + 696.0, + 954.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 670.0, + 1380.0, + 670.0, + 1380.0, + 696.0, + 1309.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 695.0, + 720.0, + 695.0, + 720.0, + 705.0, + 710.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 716.0, + 1082.0, + 716.0, + 1082.0, + 730.0, + 1066.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 716.0, + 1189.0, + 716.0, + 1189.0, + 730.0, + 1161.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 716.0, + 1284.0, + 716.0, + 1284.0, + 730.0, + 1267.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 719.0, + 1382.0, + 719.0, + 1382.0, + 728.0, + 1368.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 724.0, + 347.0, + 724.0, + 347.0, + 750.0, + 321.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 751.0, + 347.0, + 751.0, + 347.0, + 774.0, + 323.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 758.0, + 923.0, + 758.0, + 923.0, + 775.0, + 915.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 775.0, + 347.0, + 775.0, + 347.0, + 796.0, + 323.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 791.0, + 371.0, + 791.0, + 371.0, + 812.0, + 346.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 792.0, + 476.0, + 792.0, + 476.0, + 812.0, + 445.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 789.0, + 580.0, + 789.0, + 580.0, + 813.0, + 545.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 791.0, + 683.0, + 791.0, + 683.0, + 813.0, + 648.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 789.0, + 729.0, + 789.0, + 729.0, + 813.0, + 699.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 791.0, + 834.0, + 791.0, + 834.0, + 813.0, + 799.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 789.0, + 936.0, + 789.0, + 936.0, + 813.0, + 902.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 791.0, + 1039.0, + 791.0, + 1039.0, + 813.0, + 1004.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 791.0, + 1083.0, + 791.0, + 1083.0, + 812.0, + 1057.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 791.0, + 1191.0, + 791.0, + 1191.0, + 813.0, + 1156.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 791.0, + 1293.0, + 791.0, + 1293.0, + 813.0, + 1258.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 791.0, + 1396.0, + 791.0, + 1396.0, + 813.0, + 1361.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 805.0, + 584.0, + 805.0, + 584.0, + 830.0, + 442.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 805.0, + 939.0, + 805.0, + 939.0, + 830.0, + 798.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 805.0, + 1295.0, + 805.0, + 1295.0, + 830.0, + 1154.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 623.0, + 640.0, + 623.0, + 640.0, + 652.0, + 598.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 213.0, + 351.0, + 213.0, + 351.0, + 235.0, + 327.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 213.0, + 367.0, + 213.0, + 367.0, + 226.0, + 356.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 214.0, + 668.0, + 214.0, + 668.0, + 239.0, + 568.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 211.0, + 1023.0, + 211.0, + 1023.0, + 241.0, + 921.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 214.0, + 1381.0, + 214.0, + 1381.0, + 239.0, + 1270.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 243.0, + 349.0, + 243.0, + 349.0, + 364.0, + 302.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 234.0, + 644.0, + 234.0, + 644.0, + 290.0, + 565.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 264.0, + 723.0, + 264.0, + 723.0, + 275.0, + 711.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 234.0, + 998.0, + 234.0, + 998.0, + 289.0, + 920.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 233.0, + 1351.0, + 233.0, + 1351.0, + 289.0, + 1272.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 283.0, + 351.0, + 283.0, + 351.0, + 300.0, + 335.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 287.0, + 367.0, + 287.0, + 367.0, + 297.0, + 356.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 280.0, + 672.0, + 280.0, + 672.0, + 310.0, + 595.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 291.0, + 724.0, + 291.0, + 724.0, + 306.0, + 709.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 287.0, + 946.0, + 287.0, + 946.0, + 301.0, + 930.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 280.0, + 1027.0, + 280.0, + 1027.0, + 310.0, + 951.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 298.0, + 1077.0, + 298.0, + 1077.0, + 309.0, + 1067.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 289.0, + 1296.0, + 289.0, + 1296.0, + 300.0, + 1283.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 280.0, + 1380.0, + 280.0, + 1380.0, + 309.0, + 1301.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 316.0, + 349.0, + 316.0, + 349.0, + 333.0, + 335.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 351.0, + 347.0, + 351.0, + 347.0, + 364.0, + 336.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 337.0, + 828.0, + 337.0, + 828.0, + 360.0, + 808.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 352.0, + 1181.0, + 352.0, + 1181.0, + 376.0, + 1168.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 381.0, + 351.0, + 381.0, + 351.0, + 398.0, + 335.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 367.0, + 574.0, + 367.0, + 574.0, + 389.0, + 555.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 380.0, + 680.0, + 380.0, + 680.0, + 400.0, + 658.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 375.0, + 926.0, + 375.0, + 926.0, + 388.0, + 916.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 379.0, + 1034.0, + 379.0, + 1034.0, + 400.0, + 1014.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 375.0, + 1283.0, + 375.0, + 1283.0, + 397.0, + 1268.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 379.0, + 1389.0, + 379.0, + 1389.0, + 400.0, + 1370.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 398.0, + 374.0, + 398.0, + 374.0, + 420.0, + 348.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 397.0, + 481.0, + 397.0, + 481.0, + 421.0, + 446.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 397.0, + 584.0, + 397.0, + 584.0, + 421.0, + 548.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 397.0, + 685.0, + 397.0, + 685.0, + 421.0, + 649.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 397.0, + 731.0, + 397.0, + 731.0, + 422.0, + 701.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 397.0, + 837.0, + 397.0, + 837.0, + 421.0, + 801.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 397.0, + 938.0, + 397.0, + 938.0, + 421.0, + 904.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 397.0, + 1041.0, + 397.0, + 1041.0, + 421.0, + 1005.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 397.0, + 1086.0, + 397.0, + 1086.0, + 421.0, + 1056.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 398.0, + 1191.0, + 398.0, + 1191.0, + 421.0, + 1156.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 397.0, + 1294.0, + 397.0, + 1294.0, + 421.0, + 1258.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 397.0, + 1396.0, + 397.0, + 1396.0, + 421.0, + 1361.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 410.0, + 586.0, + 410.0, + 586.0, + 439.0, + 444.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 410.0, + 942.0, + 410.0, + 942.0, + 439.0, + 798.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 409.0, + 1298.0, + 409.0, + 1298.0, + 441.0, + 1153.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 852.0, + 1405.0, + 852.0, + 1405.0, + 888.0, + 295.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 387.0, + 884.0, + 387.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 884.0, + 753.0, + 884.0, + 753.0, + 919.0, + 411.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 884.0, + 978.0, + 884.0, + 978.0, + 919.0, + 777.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 884.0, + 1405.0, + 884.0, + 1405.0, + 919.0, + 1043.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 912.0, + 673.0, + 912.0, + 673.0, + 949.0, + 293.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 912.0, + 790.0, + 912.0, + 790.0, + 949.0, + 740.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 912.0, + 1405.0, + 912.0, + 1405.0, + 949.0, + 902.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 942.0, + 1031.0, + 942.0, + 1031.0, + 978.0, + 294.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 942.0, + 1405.0, + 942.0, + 1405.0, + 978.0, + 1097.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 974.0, + 1405.0, + 974.0, + 1405.0, + 1010.0, + 295.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1006.0, + 885.0, + 1006.0, + 885.0, + 1038.0, + 295.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 459.0, + 1407.0, + 459.0, + 1407.0, + 497.0, + 295.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 489.0, + 848.0, + 489.0, + 848.0, + 527.0, + 293.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 489.0, + 1335.0, + 489.0, + 1335.0, + 527.0, + 915.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 489.0, + 1404.0, + 489.0, + 1404.0, + 527.0, + 1401.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 522.0, + 1403.0, + 522.0, + 1403.0, + 556.0, + 293.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1581.0, + 595.0, + 1581.0, + 595.0, + 1632.0, + 291.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1095.0, + 667.0, + 1095.0, + 667.0, + 1145.0, + 292.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1794.0, + 1402.0, + 1794.0, + 1402.0, + 1828.0, + 296.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 880.0, + 1823.0, + 880.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1823.0, + 1408.0, + 1823.0, + 1408.0, + 1858.0, + 1004.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1853.0, + 1305.0, + 1853.0, + 1305.0, + 1890.0, + 356.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1853.0, + 1406.0, + 1853.0, + 1406.0, + 1890.0, + 1362.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1885.0, + 1099.0, + 1885.0, + 1099.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1885.0, + 1405.0, + 1885.0, + 1405.0, + 1919.0, + 1165.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1408.0, + 1914.0, + 1408.0, + 1949.0, + 294.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1239.0, + 1946.0, + 1239.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1946.0, + 1406.0, + 1946.0, + 1406.0, + 1981.0, + 1301.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1976.0, + 591.0, + 1976.0, + 591.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1976.0, + 1242.0, + 1976.0, + 1242.0, + 2010.0, + 657.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1976.0, + 1400.0, + 1976.0, + 1400.0, + 2010.0, + 1308.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1366.0, + 1405.0, + 1366.0, + 1405.0, + 1398.0, + 297.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1395.0, + 827.0, + 1395.0, + 827.0, + 1431.0, + 296.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1395.0, + 1334.0, + 1395.0, + 1334.0, + 1431.0, + 896.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1395.0, + 1404.0, + 1395.0, + 1404.0, + 1431.0, + 1401.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1423.0, + 1409.0, + 1423.0, + 1409.0, + 1464.0, + 292.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1456.0, + 1235.0, + 1456.0, + 1235.0, + 1492.0, + 294.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 1456.0, + 1405.0, + 1456.0, + 1405.0, + 1492.0, + 1300.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1488.0, + 317.0, + 1488.0, + 317.0, + 1519.0, + 294.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1488.0, + 576.0, + 1488.0, + 576.0, + 1519.0, + 373.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1488.0, + 945.0, + 1488.0, + 945.0, + 1519.0, + 643.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1488.0, + 1404.0, + 1488.0, + 1404.0, + 1519.0, + 988.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1518.0, + 1355.0, + 1518.0, + 1355.0, + 1550.0, + 296.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1156.0, + 1404.0, + 1156.0, + 1404.0, + 1193.0, + 294.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1189.0, + 1407.0, + 1189.0, + 1407.0, + 1225.0, + 295.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1255.0, + 293.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1249.0, + 885.0, + 1249.0, + 885.0, + 1284.0, + 292.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1249.0, + 1045.0, + 1249.0, + 1045.0, + 1284.0, + 972.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1249.0, + 1374.0, + 1249.0, + 1374.0, + 1284.0, + 1189.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1279.0, + 1059.0, + 1279.0, + 1059.0, + 1315.0, + 292.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1279.0, + 1407.0, + 1279.0, + 1407.0, + 1315.0, + 1172.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1308.0, + 1310.0, + 1308.0, + 1310.0, + 1346.0, + 293.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1646.0, + 1406.0, + 1646.0, + 1406.0, + 1682.0, + 295.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1675.0, + 630.0, + 1675.0, + 630.0, + 1712.0, + 295.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1675.0, + 865.0, + 1675.0, + 865.0, + 1712.0, + 713.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1675.0, + 1269.0, + 1675.0, + 1269.0, + 1712.0, + 952.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1675.0, + 1407.0, + 1675.0, + 1407.0, + 1712.0, + 1295.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1706.0, + 492.0, + 1706.0, + 492.0, + 1745.0, + 293.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1706.0, + 1410.0, + 1706.0, + 1410.0, + 1745.0, + 519.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1737.0, + 984.0, + 1737.0, + 984.0, + 1775.0, + 292.0, + 1775.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1479, + 1405, + 1479, + 1405, + 1694, + 297, + 1694 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1706, + 1404, + 1706, + 1404, + 1892, + 298, + 1892 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 296, + 198, + 1403, + 198, + 1403, + 670, + 296, + 670 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1914, + 1403, + 1914, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 298, + 972, + 1401, + 972, + 1401, + 1210, + 298, + 1210 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 297, + 1225, + 1407, + 1225, + 1407, + 1348, + 297, + 1348 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 295, + 686, + 1405, + 686, + 1405, + 932, + 295, + 932 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 297, + 1419, + 863, + 1419, + 863, + 1453, + 297, + 1453 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 842, + 2061, + 858, + 2061, + 858, + 2084, + 842, + 2084 + ], + "score": 0.712 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.112 + }, + { + "category_id": 13, + "poly": [ + 1180, + 1256, + 1245, + 1256, + 1245, + 1287, + 1180, + 1287 + ], + "score": 0.9, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 916, + 1257, + 981, + 1257, + 981, + 1287, + 916, + 1287 + ], + "score": 0.9, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 570, + 1287, + 641, + 1287, + 641, + 1316, + 570, + 1316 + ], + "score": 0.89, + "latex": "{ \\sim } 6 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 655, + 1946, + 720, + 1946, + 720, + 1976, + 655, + 1976 + ], + "score": 0.89, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1191, + 839, + 1257, + 839, + 1257, + 870, + 1191, + 870 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1133, + 1976, + 1197, + 1976, + 1197, + 2007, + 1133, + 2007 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 467, + 1317, + 522, + 1317, + 522, + 1346, + 467, + 1346 + ], + "score": 0.88, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1295, + 1946, + 1360, + 1946, + 1360, + 1976, + 1295, + 1976 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 731, + 870, + 795, + 870, + 795, + 900, + 731, + 900 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1978, + 1358, + 1978, + 1358, + 2006, + 1296, + 2006 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 556, + 1318, + 619, + 1318, + 619, + 1347, + 556, + 1347 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 970, + 1317, + 1034, + 1317, + 1034, + 1347, + 970, + 1347 + ], + "score": 0.85, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 550, + 1708, + 841, + 1708, + 841, + 1741, + 550, + 1741 + ], + "score": 0.8, + "latex": "( \\{ P , C \\} \\times \\{ 1 , 4 , 1 8 \\} \\mathrm { G F ) }" + }, + { + "category_id": 13, + "poly": [ + 675, + 1287, + 738, + 1287, + 738, + 1317, + 675, + 1317 + ], + "score": 0.8, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 736, + 1978, + 760, + 1978, + 760, + 2003, + 736, + 2003 + ], + "score": 0.8, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1287, + 1059, + 1287, + 1059, + 1315, + 1018, + 1315 + ], + "score": 0.78, + "latex": "4 \\%" + }, + { + "category_id": 13, + "poly": [ + 451, + 1512, + 505, + 1512, + 505, + 1542, + 451, + 1542 + ], + "score": 0.76, + "latex": "( w d )" + }, + { + "category_id": 13, + "poly": [ + 1314, + 1482, + 1354, + 1482, + 1354, + 1511, + 1314, + 1511 + ], + "score": 0.73, + "latex": "( l r )" + }, + { + "category_id": 13, + "poly": [ + 963, + 840, + 988, + 840, + 988, + 867, + 963, + 867 + ], + "score": 0.72, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1158, + 810, + 1184, + 810, + 1184, + 836, + 1158, + 836 + ], + "score": 0.71, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 811, + 720, + 835, + 720, + 835, + 746, + 811, + 746 + ], + "score": 0.7, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1831, + 1113, + 1831, + 1113, + 1857, + 1090, + 1857 + ], + "score": 0.68, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1099, + 1947, + 1138, + 1947, + 1138, + 1974, + 1099, + 1974 + ], + "score": 0.68, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 903, + 1228, + 942, + 1228, + 942, + 1255, + 903, + 1255 + ], + "score": 0.64, + "latex": "{ \\pmb w d }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1947, + 1048, + 1947, + 1048, + 1973, + 1024, + 1973 + ], + "score": 0.62, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 920, + 1603, + 944, + 1603, + 944, + 1630, + 920, + 1630 + ], + "score": 0.61, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 937, + 749, + 961, + 749, + 961, + 776, + 937, + 776 + ], + "score": 0.6, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 809, + 1977, + 847, + 1977, + 847, + 2004, + 809, + 2004 + ], + "score": 0.54, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1741, + 1190, + 1741, + 1190, + 1769, + 1107, + 1769 + ], + "score": 0.5, + "latex": "( l r , w d )" + }, + { + "category_id": 13, + "poly": [ + 882, + 719, + 919, + 719, + 919, + 746, + 882, + 746 + ], + "score": 0.5, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1288, + 1087, + 1288, + 1087, + 1314, + 1063, + 1314 + ], + "score": 0.49, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 827, + 1227, + 851, + 1227, + 851, + 1254, + 827, + 1254 + ], + "score": 0.49, + "latex": "_ { L r }" + }, + { + "category_id": 13, + "poly": [ + 990, + 810, + 1015, + 810, + 1015, + 836, + 990, + 836 + ], + "score": 0.48, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 937, + 690, + 974, + 690, + 974, + 716, + 937, + 716 + ], + "score": 0.44, + "latex": "{ \\pmb w d }" + }, + { + "category_id": 13, + "poly": [ + 992, + 1603, + 1029, + 1603, + 1029, + 1630, + 992, + 1630 + ], + "score": 0.44, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 863, + 690, + 886, + 690, + 886, + 716, + 863, + 716 + ], + "score": 0.43, + "latex": "_ { l r }" + }, + { + "category_id": 13, + "poly": [ + 812, + 749, + 833, + 749, + 833, + 776, + 812, + 776 + ], + "score": 0.42, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 485, + 780, + 507, + 780, + 507, + 807, + 485, + 807 + ], + "score": 0.39, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 1036, + 840, + 1075, + 840, + 1075, + 868, + 1036, + 868 + ], + "score": 0.33, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 844, + 749, + 881, + 749, + 881, + 777, + 844, + 777 + ], + "score": 0.32, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 612, + 780, + 636, + 780, + 636, + 807, + 612, + 807 + ], + "score": 0.29, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 512, + 1288, + 554, + 1288, + 554, + 1317, + 512, + 1317 + ], + "score": 0.26, + "latex": "E . g" + }, + { + "category_id": 13, + "poly": [ + 484, + 780, + 555, + 780, + 555, + 808, + 484, + 808 + ], + "score": 0.26, + "latex": "l r , w d" + }, + { + "category_id": 13, + "poly": [ + 386, + 1831, + 410, + 1831, + 410, + 1857, + 386, + 1857 + ], + "score": 0.26, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1832, + 1200, + 1832, + 1200, + 1858, + 1162, + 1858 + ], + "score": 0.26, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 611, + 779, + 684, + 779, + 684, + 808, + 611, + 808 + ], + "score": 0.26, + "latex": "l r \\cdot w d" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 200.0, + 340.0, + 200.0, + 340.0, + 221.0, + 316.0, + 221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 205.0, + 540.0, + 205.0, + 540.0, + 216.0, + 525.0, + 216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 204.0, + 574.0, + 204.0, + 574.0, + 217.0, + 546.0, + 217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 204.0, + 704.0, + 204.0, + 704.0, + 225.0, + 684.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 203.0, + 783.0, + 203.0, + 783.0, + 225.0, + 712.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 207.0, + 829.0, + 207.0, + 829.0, + 222.0, + 813.0, + 222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 201.0, + 913.0, + 201.0, + 913.0, + 227.0, + 837.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 207.0, + 959.0, + 207.0, + 959.0, + 222.0, + 941.0, + 222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 202.0, + 1067.0, + 202.0, + 1067.0, + 224.0, + 964.0, + 224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 202.0, + 1371.0, + 202.0, + 1371.0, + 220.0, + 1316.0, + 220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 340.0, + 228.0, + 340.0, + 355.0, + 293.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 242.0, + 373.0, + 242.0, + 373.0, + 259.0, + 357.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 239.0, + 523.0, + 239.0, + 523.0, + 250.0, + 510.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 242.0, + 570.0, + 242.0, + 570.0, + 254.0, + 558.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 240.0, + 670.0, + 240.0, + 670.0, + 255.0, + 653.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 242.0, + 799.0, + 242.0, + 799.0, + 259.0, + 783.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 242.0, + 953.0, + 242.0, + 953.0, + 254.0, + 941.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 246.0, + 989.0, + 246.0, + 989.0, + 262.0, + 974.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 236.0, + 1029.0, + 236.0, + 1029.0, + 253.0, + 1013.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 244.0, + 1075.0, + 244.0, + 1075.0, + 259.0, + 1058.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 242.0, + 1395.0, + 242.0, + 1395.0, + 253.0, + 1383.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 264.0, + 339.0, + 264.0, + 339.0, + 286.0, + 315.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 263.0, + 388.0, + 263.0, + 388.0, + 281.0, + 357.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 262.0, + 876.0, + 262.0, + 876.0, + 283.0, + 855.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 264.0, + 966.0, + 264.0, + 966.0, + 280.0, + 951.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 263.0, + 1003.0, + 263.0, + 1003.0, + 274.0, + 990.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 263.0, + 1032.0, + 263.0, + 1032.0, + 280.0, + 1017.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 264.0, + 1134.0, + 264.0, + 1134.0, + 282.0, + 1117.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 264.0, + 1321.0, + 264.0, + 1321.0, + 274.0, + 1311.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 297.0, + 340.0, + 297.0, + 340.0, + 323.0, + 314.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 309.0, + 368.0, + 309.0, + 368.0, + 315.0, + 362.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 280.0, + 392.0, + 280.0, + 392.0, + 301.0, + 370.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 272.0, + 408.0, + 272.0, + 408.0, + 287.0, + 393.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 305.0, + 637.0, + 305.0, + 637.0, + 318.0, + 626.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 300.0, + 677.0, + 300.0, + 677.0, + 324.0, + 657.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 272.0, + 769.0, + 272.0, + 769.0, + 318.0, + 751.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 287.0, + 798.0, + 287.0, + 798.0, + 310.0, + 785.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 283.0, + 821.0, + 283.0, + 821.0, + 302.0, + 805.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 306.0, + 861.0, + 306.0, + 861.0, + 323.0, + 824.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 291.0, + 904.0, + 291.0, + 904.0, + 327.0, + 887.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 305.0, + 917.0, + 305.0, + 917.0, + 315.0, + 907.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 290.0, + 966.0, + 290.0, + 966.0, + 308.0, + 940.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 280.0, + 1010.0, + 280.0, + 1010.0, + 324.0, + 979.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 310.0, + 1027.0, + 310.0, + 1027.0, + 322.0, + 1015.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 273.0, + 1078.0, + 273.0, + 1078.0, + 318.0, + 1061.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 278.0, + 1320.0, + 278.0, + 1320.0, + 290.0, + 1308.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 333.0, + 740.0, + 333.0, + 740.0, + 343.0, + 729.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 323.0, + 768.0, + 323.0, + 768.0, + 341.0, + 754.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 336.0, + 797.0, + 336.0, + 797.0, + 346.0, + 787.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 323.0, + 915.0, + 323.0, + 915.0, + 334.0, + 902.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 320.0, + 953.0, + 320.0, + 953.0, + 331.0, + 938.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 325.0, + 1027.0, + 325.0, + 1027.0, + 341.0, + 1012.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 320.0, + 1081.0, + 320.0, + 1081.0, + 336.0, + 1066.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 320.0, + 1130.0, + 320.0, + 1130.0, + 329.0, + 1120.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 343.0, + 847.0, + 343.0, + 847.0, + 354.0, + 838.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 343.0, + 917.0, + 343.0, + 917.0, + 355.0, + 907.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 371.0, + 340.0, + 371.0, + 340.0, + 392.0, + 315.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 397.0, + 360.0, + 397.0, + 360.0, + 417.0, + 335.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 396.0, + 407.0, + 396.0, + 407.0, + 417.0, + 370.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 396.0, + 452.0, + 396.0, + 452.0, + 417.0, + 416.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 400.0, + 491.0, + 400.0, + 491.0, + 415.0, + 474.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 397.0, + 539.0, + 397.0, + 539.0, + 417.0, + 515.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 397.0, + 583.0, + 397.0, + 583.0, + 416.0, + 558.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 396.0, + 631.0, + 396.0, + 631.0, + 419.0, + 601.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 397.0, + 675.0, + 397.0, + 675.0, + 417.0, + 648.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 396.0, + 758.0, + 396.0, + 758.0, + 419.0, + 728.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 397.0, + 808.0, + 397.0, + 808.0, + 417.0, + 782.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 400.0, + 858.0, + 400.0, + 858.0, + 415.0, + 841.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 400.0, + 911.0, + 400.0, + 911.0, + 415.0, + 892.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 397.0, + 964.0, + 397.0, + 964.0, + 417.0, + 940.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 400.0, + 1014.0, + 400.0, + 1014.0, + 416.0, + 997.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 396.0, + 1105.0, + 396.0, + 1105.0, + 419.0, + 1070.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 396.0, + 1173.0, + 396.0, + 1173.0, + 419.0, + 1139.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 398.0, + 1238.0, + 398.0, + 1238.0, + 416.0, + 1212.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 396.0, + 1308.0, + 396.0, + 1308.0, + 419.0, + 1278.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 397.0, + 1371.0, + 397.0, + 1371.0, + 417.0, + 1347.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 410.0, + 546.0, + 410.0, + 546.0, + 437.0, + 473.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 408.0, + 912.0, + 408.0, + 912.0, + 437.0, + 824.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 409.0, + 1280.0, + 409.0, + 1280.0, + 435.0, + 1171.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 438.0, + 345.0, + 438.0, + 345.0, + 461.0, + 315.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 457.0, + 323.0, + 457.0, + 323.0, + 516.0, + 292.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 474.0, + 345.0, + 474.0, + 345.0, + 497.0, + 314.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 486.0, + 364.0, + 486.0, + 364.0, + 635.0, + 286.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 546.0, + 665.0, + 546.0, + 665.0, + 567.0, + 580.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 548.0, + 1024.0, + 548.0, + 1024.0, + 568.0, + 938.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 545.0, + 1388.0, + 545.0, + 1388.0, + 569.0, + 1291.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 564.0, + 648.0, + 564.0, + 648.0, + 591.0, + 607.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 564.0, + 1005.0, + 564.0, + 1005.0, + 591.0, + 965.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 563.0, + 1124.0, + 563.0, + 1124.0, + 576.0, + 1114.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 564.0, + 1362.0, + 564.0, + 1362.0, + 591.0, + 1322.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 581.0, + 345.0, + 581.0, + 345.0, + 604.0, + 315.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 583.0, + 650.0, + 583.0, + 650.0, + 610.0, + 607.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 583.0, + 1007.0, + 583.0, + 1007.0, + 610.0, + 964.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 591.0, + 1098.0, + 591.0, + 1098.0, + 613.0, + 1086.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 615.0, + 347.0, + 615.0, + 347.0, + 638.0, + 315.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 601.0, + 674.0, + 601.0, + 674.0, + 631.0, + 608.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 604.0, + 1031.0, + 604.0, + 1031.0, + 629.0, + 965.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 601.0, + 1389.0, + 601.0, + 1389.0, + 631.0, + 1322.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 636.0, + 370.0, + 636.0, + 370.0, + 652.0, + 353.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 634.0, + 435.0, + 634.0, + 435.0, + 655.0, + 414.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 636.0, + 496.0, + 636.0, + 496.0, + 652.0, + 480.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 636.0, + 559.0, + 636.0, + 559.0, + 652.0, + 543.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 633.0, + 624.0, + 633.0, + 624.0, + 655.0, + 604.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 634.0, + 691.0, + 634.0, + 691.0, + 655.0, + 665.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 636.0, + 728.0, + 636.0, + 728.0, + 652.0, + 711.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 636.0, + 790.0, + 636.0, + 790.0, + 654.0, + 774.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 636.0, + 853.0, + 636.0, + 853.0, + 652.0, + 837.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 636.0, + 917.0, + 636.0, + 917.0, + 652.0, + 901.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 633.0, + 982.0, + 633.0, + 982.0, + 655.0, + 961.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 634.0, + 1047.0, + 634.0, + 1047.0, + 655.0, + 1022.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 633.0, + 1086.0, + 633.0, + 1086.0, + 654.0, + 1066.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 636.0, + 1147.0, + 636.0, + 1147.0, + 654.0, + 1131.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 636.0, + 1210.0, + 636.0, + 1210.0, + 652.0, + 1195.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 636.0, + 1274.0, + 636.0, + 1274.0, + 652.0, + 1258.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 633.0, + 1340.0, + 633.0, + 1340.0, + 655.0, + 1318.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 634.0, + 1405.0, + 634.0, + 1405.0, + 654.0, + 1380.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 645.0, + 570.0, + 645.0, + 570.0, + 673.0, + 453.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 645.0, + 927.0, + 645.0, + 927.0, + 673.0, + 811.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 645.0, + 1286.0, + 645.0, + 1286.0, + 673.0, + 1168.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 263.5, + 1363.0, + 263.5, + 1363.0, + 281.5, + 1359.0, + 281.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 313.5, + 961.0, + 313.5, + 961.0, + 328.5, + 957.0, + 328.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.75, + 335.0, + 336.75, + 335.0, + 336.75, + 355.5, + 314.75, + 355.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.25, + 582.0, + 1361.25, + 582.0, + 1361.25, + 609.0, + 1322.25, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 607.0, + 385.0, + 607.0, + 385.0, + 621.5, + 358.0, + 621.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 976.0, + 346.0, + 976.0, + 346.0, + 1000.0, + 314.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 981.0, + 362.0, + 981.0, + 362.0, + 1173.0, + 281.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1010.0, + 346.0, + 1010.0, + 346.0, + 1036.0, + 314.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1083.0, + 346.0, + 1083.0, + 346.0, + 1107.0, + 314.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1086.0, + 667.0, + 1086.0, + 667.0, + 1107.0, + 581.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1084.0, + 1024.0, + 1084.0, + 1024.0, + 1110.0, + 938.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1086.0, + 1390.0, + 1086.0, + 1390.0, + 1107.0, + 1293.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1102.0, + 648.0, + 1102.0, + 648.0, + 1131.0, + 606.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1103.0, + 1005.0, + 1103.0, + 1005.0, + 1131.0, + 965.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1102.0, + 1362.0, + 1102.0, + 1362.0, + 1131.0, + 1322.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1119.0, + 344.0, + 1119.0, + 344.0, + 1142.0, + 314.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1121.0, + 649.0, + 1121.0, + 649.0, + 1149.0, + 606.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1121.0, + 1006.0, + 1121.0, + 1006.0, + 1149.0, + 965.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 1121.0, + 1363.0, + 1121.0, + 1363.0, + 1150.0, + 1323.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1154.0, + 347.0, + 1154.0, + 347.0, + 1178.0, + 314.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1140.0, + 674.0, + 1140.0, + 674.0, + 1170.0, + 606.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1140.0, + 1031.0, + 1140.0, + 1031.0, + 1170.0, + 964.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 1142.0, + 1387.0, + 1142.0, + 1387.0, + 1169.0, + 1323.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1174.0, + 370.0, + 1174.0, + 370.0, + 1193.0, + 353.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1173.0, + 433.0, + 1173.0, + 433.0, + 1195.0, + 415.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1174.0, + 496.0, + 1174.0, + 496.0, + 1190.0, + 480.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1173.0, + 561.0, + 1173.0, + 561.0, + 1194.0, + 541.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1172.0, + 625.0, + 1172.0, + 625.0, + 1195.0, + 604.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1173.0, + 690.0, + 1173.0, + 690.0, + 1194.0, + 664.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1173.0, + 729.0, + 1173.0, + 729.0, + 1194.0, + 709.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1173.0, + 792.0, + 1173.0, + 792.0, + 1195.0, + 772.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1174.0, + 853.0, + 1174.0, + 853.0, + 1190.0, + 837.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1174.0, + 917.0, + 1174.0, + 917.0, + 1193.0, + 901.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1173.0, + 982.0, + 1173.0, + 982.0, + 1195.0, + 961.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1173.0, + 1047.0, + 1173.0, + 1047.0, + 1194.0, + 1022.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1173.0, + 1086.0, + 1173.0, + 1086.0, + 1194.0, + 1066.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1174.0, + 1148.0, + 1174.0, + 1148.0, + 1193.0, + 1131.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1174.0, + 1212.0, + 1174.0, + 1212.0, + 1190.0, + 1195.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1174.0, + 1274.0, + 1174.0, + 1274.0, + 1193.0, + 1258.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1173.0, + 1339.0, + 1173.0, + 1339.0, + 1195.0, + 1319.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1173.0, + 1406.0, + 1173.0, + 1406.0, + 1194.0, + 1380.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1182.0, + 570.0, + 1182.0, + 570.0, + 1212.0, + 454.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1182.0, + 927.0, + 1182.0, + 927.0, + 1212.0, + 811.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1182.0, + 1284.0, + 1182.0, + 1284.0, + 1212.0, + 1169.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1223.0, + 826.0, + 1223.0, + 826.0, + 1262.0, + 292.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1223.0, + 902.0, + 1223.0, + 902.0, + 1262.0, + 852.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1223.0, + 1407.0, + 1223.0, + 1407.0, + 1262.0, + 943.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1253.0, + 915.0, + 1253.0, + 915.0, + 1291.0, + 294.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1253.0, + 1179.0, + 1253.0, + 1179.0, + 1291.0, + 982.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1291.0, + 1246.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 511.0, + 1288.0, + 511.0, + 1320.0, + 295.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1288.0, + 569.0, + 1288.0, + 569.0, + 1320.0, + 555.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1288.0, + 674.0, + 1288.0, + 674.0, + 1320.0, + 642.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1288.0, + 1017.0, + 1288.0, + 1017.0, + 1320.0, + 739.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1288.0, + 1407.0, + 1288.0, + 1407.0, + 1320.0, + 1088.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1313.0, + 466.0, + 1313.0, + 466.0, + 1353.0, + 292.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1313.0, + 555.0, + 1313.0, + 555.0, + 1353.0, + 523.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1313.0, + 969.0, + 1313.0, + 969.0, + 1353.0, + 620.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1313.0, + 1351.0, + 1313.0, + 1351.0, + 1353.0, + 1035.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 685.0, + 862.0, + 685.0, + 862.0, + 722.0, + 294.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 685.0, + 936.0, + 685.0, + 936.0, + 722.0, + 887.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 685.0, + 1406.0, + 685.0, + 1406.0, + 722.0, + 975.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 718.0, + 810.0, + 718.0, + 810.0, + 751.0, + 295.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 718.0, + 881.0, + 718.0, + 881.0, + 751.0, + 836.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 751.0, + 920.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 748.0, + 811.0, + 748.0, + 811.0, + 781.0, + 295.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 748.0, + 843.0, + 748.0, + 843.0, + 781.0, + 834.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 748.0, + 936.0, + 748.0, + 936.0, + 781.0, + 882.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 781.0, + 962.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 779.0, + 483.0, + 779.0, + 483.0, + 813.0, + 295.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 779.0, + 610.0, + 779.0, + 610.0, + 813.0, + 556.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 813.0, + 685.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 805.0, + 989.0, + 805.0, + 989.0, + 844.0, + 292.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 805.0, + 1157.0, + 805.0, + 1157.0, + 844.0, + 1016.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 805.0, + 1407.0, + 805.0, + 1407.0, + 844.0, + 1185.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 835.0, + 962.0, + 835.0, + 962.0, + 874.0, + 292.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 835.0, + 1035.0, + 835.0, + 1035.0, + 874.0, + 989.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 835.0, + 1190.0, + 835.0, + 1190.0, + 874.0, + 1076.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 835.0, + 1406.0, + 835.0, + 1406.0, + 874.0, + 1258.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 870.0, + 730.0, + 870.0, + 730.0, + 904.0, + 294.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 870.0, + 1406.0, + 870.0, + 1406.0, + 904.0, + 796.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 900.0, + 982.0, + 900.0, + 982.0, + 934.0, + 295.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1414.0, + 865.0, + 1414.0, + 865.0, + 1461.0, + 293.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2092.0, + 840.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2092.0, + 840.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1481.0, + 1313.0, + 1481.0, + 1313.0, + 1515.0, + 295.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1481.0, + 1405.0, + 1481.0, + 1405.0, + 1515.0, + 1355.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 450.0, + 1510.0, + 450.0, + 1545.0, + 294.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1510.0, + 1407.0, + 1510.0, + 1407.0, + 1545.0, + 506.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1540.0, + 1403.0, + 1540.0, + 1403.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1605.0, + 294.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1601.0, + 919.0, + 1601.0, + 919.0, + 1634.0, + 294.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1601.0, + 991.0, + 1601.0, + 991.0, + 1634.0, + 945.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1601.0, + 1406.0, + 1601.0, + 1406.0, + 1634.0, + 1030.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1633.0, + 1408.0, + 1633.0, + 1408.0, + 1668.0, + 294.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1660.0, + 1291.0, + 1660.0, + 1291.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1706.0, + 549.0, + 1706.0, + 549.0, + 1745.0, + 293.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1706.0, + 1406.0, + 1706.0, + 1406.0, + 1745.0, + 842.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1735.0, + 1106.0, + 1735.0, + 1106.0, + 1777.0, + 292.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1735.0, + 1406.0, + 1735.0, + 1406.0, + 1777.0, + 1191.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1768.0, + 1405.0, + 1768.0, + 1405.0, + 1803.0, + 292.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1798.0, + 1407.0, + 1798.0, + 1407.0, + 1833.0, + 293.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1830.0, + 385.0, + 1830.0, + 385.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1830.0, + 1089.0, + 1830.0, + 1089.0, + 1863.0, + 411.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1830.0, + 1161.0, + 1830.0, + 1161.0, + 1863.0, + 1114.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1830.0, + 1406.0, + 1830.0, + 1406.0, + 1863.0, + 1201.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1862.0, + 1146.0, + 1862.0, + 1146.0, + 1893.0, + 296.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 654.0, + 1946.0, + 654.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1946.0, + 1023.0, + 1946.0, + 1023.0, + 1980.0, + 721.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1946.0, + 1098.0, + 1946.0, + 1098.0, + 1980.0, + 1049.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1946.0, + 1294.0, + 1946.0, + 1294.0, + 1980.0, + 1139.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1946.0, + 1405.0, + 1946.0, + 1405.0, + 1980.0, + 1361.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1976.0, + 735.0, + 1976.0, + 735.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1976.0, + 808.0, + 1976.0, + 808.0, + 2010.0, + 761.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1976.0, + 1132.0, + 1976.0, + 1132.0, + 2010.0, + 848.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1976.0, + 1295.0, + 1976.0, + 1295.0, + 2010.0, + 1198.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1976.0, + 1371.0, + 1976.0, + 1371.0, + 2010.0, + 1359.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1079, + 1405, + 1079, + 1405, + 1385, + 297, + 1385 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 495, + 1404, + 495, + 1404, + 740, + 297, + 740 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 852, + 1405, + 852, + 1405, + 1065, + 298, + 1065 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 259, + 1404, + 259, + 1404, + 473, + 298, + 473 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1408, + 1405, + 1408, + 1405, + 1561, + 299, + 1561 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1574, + 1404, + 1574, + 1404, + 1698, + 298, + 1698 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1710, + 1405, + 1710, + 1405, + 1926, + 298, + 1926 + ], + "score": 0.973 + }, + { + "category_id": 2, + "poly": [ + 298, + 1949, + 1406, + 1949, + 1406, + 2007, + 298, + 2007 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 298, + 202, + 612, + 202, + 612, + 235, + 298, + 235 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 783, + 611, + 783, + 611, + 820, + 299, + 820 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.81 + }, + { + "category_id": 13, + "poly": [ + 1219, + 441, + 1350, + 441, + 1350, + 473, + 1219, + 473 + ], + "score": 0.92, + "latex": "\\beta _ { 2 } = 0 . 9 9 9" + }, + { + "category_id": 13, + "poly": [ + 1065, + 441, + 1169, + 441, + 1169, + 472, + 1065, + 472 + ], + "score": 0.91, + "latex": "\\beta _ { 1 } = 0 . 9" + }, + { + "category_id": 13, + "poly": [ + 506, + 1005, + 571, + 1005, + 571, + 1036, + 506, + 1036 + ], + "score": 0.89, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1263, + 625, + 1263, + 625, + 1292, + 516, + 1292 + ], + "score": 0.89, + "latex": "2 2 4 \\times 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 741, + 1637, + 800, + 1637, + 800, + 1666, + 741, + 1666 + ], + "score": 0.88, + "latex": "V i T _ { P }" + }, + { + "category_id": 13, + "poly": [ + 382, + 1005, + 447, + 1005, + 447, + 1036, + 382, + 1036 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1774, + 1298, + 1774, + 1298, + 1803, + 1239, + 1803 + ], + "score": 0.88, + "latex": "V i T _ { P }" + }, + { + "category_id": 13, + "poly": [ + 709, + 1773, + 775, + 1773, + 775, + 1803, + 709, + 1803 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 773, + 1606, + 838, + 1606, + 838, + 1636, + 773, + 1636 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 352, + 1773, + 418, + 1773, + 418, + 1804, + 352, + 1804 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1333, + 1293, + 1396, + 1293, + 1396, + 1324, + 1333, + 1324 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1323, + 359, + 1323, + 359, + 1354, + 296, + 1354 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1636, + 1374, + 1636, + 1374, + 1667, + 1308, + 1667 + ], + "score": 0.86, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 305, + 588, + 399, + 588, + 399, + 618, + 305, + 618 + ], + "score": 0.85, + "latex": "\\alpha = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 1130, + 558, + 1235, + 558, + 1235, + 587, + 1130, + 587 + ], + "score": 0.84, + "latex": "\\langle \\alpha = 0 . 8 \\rangle" + }, + { + "category_id": 13, + "poly": [ + 710, + 588, + 800, + 588, + 800, + 618, + 710, + 618 + ], + "score": 0.84, + "latex": "\\epsilon = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1171, + 1246, + 1171, + 1246, + 1204, + 1097, + 1204 + ], + "score": 0.84, + "latex": "1 . 0 \\mathrm { { e - } 3 / 0 . 2 4 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1231, + 447, + 1231, + 447, + 1265, + 297, + 1265 + ], + "score": 0.79, + "latex": "6 . 0 \\mathrm { { e } - 4 / 0 . 2 8 }" + }, + { + "category_id": 13, + "poly": [ + 973, + 1232, + 1038, + 1232, + 1038, + 1262, + 973, + 1262 + ], + "score": 0.78, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 923, + 1112, + 977, + 1112, + 977, + 1141, + 923, + 1141 + ], + "score": 0.76, + "latex": "\\ S \\quad ," + }, + { + "category_id": 13, + "poly": [ + 782, + 1232, + 846, + 1232, + 846, + 1262, + 782, + 1262 + ], + "score": 0.74, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1142, + 320, + 1142, + 320, + 1169, + 297, + 1169 + ], + "score": 0.67, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 722, + 412, + 761, + 412, + 761, + 439, + 722, + 439 + ], + "score": 0.67, + "latex": "w d" + }, + { + "category_id": 13, + "poly": [ + 646, + 412, + 671, + 412, + 671, + 439, + 646, + 439 + ], + "score": 0.65, + "latex": "l r" + }, + { + "category_id": 13, + "poly": [ + 550, + 1895, + 595, + 1895, + 595, + 1926, + 550, + 1926 + ], + "score": 0.36, + "latex": "E . g ." + }, + { + "category_id": 13, + "poly": [ + 525, + 1141, + 611, + 1141, + 611, + 1170, + 525, + 1170 + ], + "score": 0.35, + "latex": "2 . 4 \\mathrm { e } { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 999, + 1172, + 1063, + 1172, + 1063, + 1201, + 999, + 1201 + ], + "score": 0.31, + "latex": "l r / w d" + }, + { + "category_id": 13, + "poly": [ + 781, + 1232, + 923, + 1232, + 923, + 1263, + 781, + 1263 + ], + "score": 0.3, + "latex": "\\mathrm { V i T } _ { P ^ { - 3 6 } } \\mathrm { G F }" + }, + { + "category_id": 13, + "poly": [ + 1306, + 1202, + 1371, + 1202, + 1371, + 1231, + 1306, + 1231 + ], + "score": 0.28, + "latex": "l r / w d" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1945.0, + 1406.0, + 1945.0, + 1406.0, + 1982.0, + 332.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1976.0, + 1353.0, + 1976.0, + 1353.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 201.0, + 616.0, + 201.0, + 616.0, + 240.0, + 295.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 779.0, + 617.0, + 779.0, + 617.0, + 827.0, + 292.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2090.0, + 838.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1081.0, + 1406.0, + 1081.0, + 1406.0, + 1113.0, + 295.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1109.0, + 922.0, + 1109.0, + 922.0, + 1144.0, + 292.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1109.0, + 1405.0, + 1109.0, + 1405.0, + 1144.0, + 978.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1136.0, + 296.0, + 1136.0, + 296.0, + 1176.0, + 292.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1136.0, + 524.0, + 1136.0, + 524.0, + 1176.0, + 321.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1136.0, + 1405.0, + 1136.0, + 1405.0, + 1176.0, + 612.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1167.0, + 998.0, + 1167.0, + 998.0, + 1208.0, + 292.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1167.0, + 1096.0, + 1167.0, + 1096.0, + 1208.0, + 1064.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1167.0, + 1410.0, + 1167.0, + 1410.0, + 1208.0, + 1247.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1200.0, + 1305.0, + 1200.0, + 1305.0, + 1235.0, + 292.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1200.0, + 1407.0, + 1200.0, + 1407.0, + 1235.0, + 1372.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1231.0, + 780.0, + 1231.0, + 780.0, + 1266.0, + 448.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1231.0, + 972.0, + 1231.0, + 972.0, + 1266.0, + 924.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1231.0, + 1407.0, + 1231.0, + 1407.0, + 1266.0, + 1039.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1261.0, + 515.0, + 1261.0, + 515.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1261.0, + 1407.0, + 1261.0, + 1407.0, + 1297.0, + 626.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1332.0, + 1290.0, + 1332.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1290.0, + 1408.0, + 1290.0, + 1408.0, + 1328.0, + 1397.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1318.0, + 295.0, + 1318.0, + 295.0, + 1359.0, + 292.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1318.0, + 1407.0, + 1318.0, + 1407.0, + 1359.0, + 360.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1354.0, + 1378.0, + 1354.0, + 1378.0, + 1389.0, + 295.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 495.0, + 1406.0, + 495.0, + 1406.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 525.0, + 1404.0, + 525.0, + 1404.0, + 559.0, + 295.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 556.0, + 1129.0, + 556.0, + 1129.0, + 590.0, + 294.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 556.0, + 1404.0, + 556.0, + 1404.0, + 590.0, + 1236.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 586.0, + 304.0, + 586.0, + 304.0, + 622.0, + 291.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 586.0, + 709.0, + 586.0, + 709.0, + 622.0, + 400.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 586.0, + 1406.0, + 586.0, + 1406.0, + 622.0, + 801.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 618.0, + 1405.0, + 618.0, + 1405.0, + 651.0, + 294.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 647.0, + 1405.0, + 647.0, + 1405.0, + 681.0, + 295.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 676.0, + 1405.0, + 676.0, + 1405.0, + 715.0, + 292.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 710.0, + 1282.0, + 710.0, + 1282.0, + 743.0, + 295.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 851.0, + 1403.0, + 851.0, + 1403.0, + 888.0, + 293.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 1405.0, + 884.0, + 1405.0, + 918.0, + 295.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 912.0, + 1406.0, + 912.0, + 1406.0, + 950.0, + 293.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 1409.0, + 941.0, + 1409.0, + 982.0, + 292.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 974.0, + 1407.0, + 974.0, + 1407.0, + 1009.0, + 291.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1005.0, + 381.0, + 1005.0, + 381.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1005.0, + 505.0, + 1005.0, + 505.0, + 1039.0, + 448.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1005.0, + 1405.0, + 1005.0, + 1405.0, + 1039.0, + 572.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1037.0, + 1396.0, + 1037.0, + 1396.0, + 1067.0, + 296.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 256.0, + 1408.0, + 256.0, + 1408.0, + 295.0, + 292.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 285.0, + 1405.0, + 285.0, + 1405.0, + 328.0, + 292.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1404.0, + 319.0, + 1404.0, + 354.0, + 294.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 384.0, + 294.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 1404.0, + 381.0, + 1404.0, + 415.0, + 294.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 410.0, + 645.0, + 410.0, + 645.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 410.0, + 721.0, + 410.0, + 721.0, + 444.0, + 672.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 410.0, + 1406.0, + 410.0, + 1406.0, + 444.0, + 762.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 441.0, + 1064.0, + 441.0, + 1064.0, + 474.0, + 294.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 441.0, + 1218.0, + 441.0, + 1218.0, + 474.0, + 1170.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 441.0, + 1360.0, + 441.0, + 1360.0, + 474.0, + 1351.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1405.0, + 1409.0, + 1405.0, + 1409.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1474.0, + 295.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1408.0, + 1466.0, + 1408.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1533.0, + 294.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 1409.0, + 1529.0, + 1409.0, + 1566.0, + 293.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1612.0, + 292.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 772.0, + 1606.0, + 772.0, + 1638.0, + 294.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1606.0, + 1405.0, + 1606.0, + 1405.0, + 1638.0, + 839.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1637.0, + 740.0, + 1637.0, + 740.0, + 1670.0, + 294.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1637.0, + 1307.0, + 1637.0, + 1307.0, + 1670.0, + 801.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1637.0, + 1405.0, + 1637.0, + 1405.0, + 1670.0, + 1375.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1663.0, + 1126.0, + 1663.0, + 1126.0, + 1706.0, + 291.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1712.0, + 1407.0, + 1712.0, + 1407.0, + 1746.0, + 295.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 1408.0, + 1739.0, + 1408.0, + 1779.0, + 292.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1771.0, + 351.0, + 1771.0, + 351.0, + 1808.0, + 293.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1771.0, + 708.0, + 1771.0, + 708.0, + 1808.0, + 419.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1771.0, + 1238.0, + 1771.0, + 1238.0, + 1808.0, + 776.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1808.0, + 1299.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1837.0, + 293.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1869.0, + 292.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1862.0, + 1403.0, + 1862.0, + 1403.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1893.0, + 549.0, + 1893.0, + 549.0, + 1928.0, + 295.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1893.0, + 1318.0, + 1893.0, + 1318.0, + 1928.0, + 596.0, + 1928.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1556, + 1405, + 1556, + 1405, + 1952, + 297, + 1952 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1291, + 1404, + 1291, + 1404, + 1446, + 298, + 1446 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 304, + 198, + 1391, + 198, + 1391, + 437, + 304, + 437 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 296, + 442, + 1406, + 442, + 1406, + 717, + 296, + 717 + ], + "score": 0.963 + }, + { + "category_id": 0, + "poly": [ + 298, + 1486, + 509, + 1486, + 509, + 1525, + 298, + 1525 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 289, + 1976, + 1307, + 1976, + 1307, + 2007, + 289, + 2007 + ], + "score": 0.909 + }, + { + "category_id": 5, + "poly": [ + 296, + 746, + 1399, + 746, + 1399, + 1065, + 296, + 1065 + ], + "score": 0.904, + "html": "
modelflops params actstime batch|epochsIN 21kmodel (B)flops paramstime batch|sizeepochsIN200400 21k
(B)(M)(M) (min)size100200400(M)(min)100
ResNet-504.125.611.33.4204822.521.220.721.6EffNet-B21.09.1(M) 13.85.9204821.4 20.519.9-
ResNet-1017.844.516.45.5204820.319.118.519.2EffNet-B44.419.349.519.451218.517.817.5
ResNet-15211.560.222.87.7204819.518.417.718.2EffNet-B510.330.498.9 41.725617.3317.017.0
ResNet-20015.064.732.310.7102419.518.317.617.7
RegNetY-1GF1.09.66.23.1204823.222.221.5-ViTp-1GF1.14.85.52.6204833.229.727.7
RegNetY-4GF4.122.414.57.6204819.418.317.918.4ViTp-4GF3.918.5111.13.8204823.3 20.819.620.6
RegNetY-16GF15.572.330.717.9102417.116.416.315.6ViTp-18GF17.586.624.011.5102419.918.417.916.4
RegNetY-32GF31.1128.646.235.151216.215.915.915.0ViTp-36GF35.9178.437.318.851219.918.818.215.1
RegNetZ-1GF1.011.08.84.2204820.8 20.219.6-ViTc-1GF1.14.65.72.7204828.626.124.7-
RegNetZ-4GF4.028.124.312.9102417.4 16.916.6ViTc-4GF4.017.811.33.9)204820.919.218.618.8
RegNetZ-16GF16.095.351.332.051216.0 15.915.9ViTc-18GF17.781.624.111.4102418.4 17.517.015.1
RegNetZ-32GF32.0175.179.6 55.325616.3 16.216.1ViTc-36GF35.0167.8 36.718.651218.3 17.616.814.2
" + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.789 + }, + { + "category_id": 4, + "poly": [ + 297, + 1072, + 1405, + 1072, + 1405, + 1254, + 297, + 1254 + ], + "score": 0.459 + }, + { + "category_id": 13, + "poly": [ + 699, + 473, + 763, + 473, + 763, + 504, + 699, + 504 + ], + "score": 0.89, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 513, + 625, + 576, + 625, + 576, + 655, + 513, + 655 + ], + "score": 0.89, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 776, + 473, + 842, + 473, + 842, + 504, + 776, + 504 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1384, + 498, + 1384, + 498, + 1415, + 433, + 1415 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1921, + 1361, + 1921, + 1361, + 1952, + 1298, + 1952 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 929, + 1709, + 1012, + 1709, + 1012, + 1738, + 929, + 1738 + ], + "score": 0.88, + "latex": "{ \\sim } 1 { - } 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 560, + 1293, + 622, + 1293, + 622, + 1324, + 560, + 1324 + ], + "score": 0.88, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 447, + 685, + 511, + 685, + 511, + 715, + 447, + 715 + ], + "score": 0.87, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 773, + 625, + 837, + 625, + 837, + 656, + 773, + 656 + ], + "score": 0.85, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 786, + 1648, + 851, + 1648, + 851, + 1678, + 786, + 1678 + ], + "score": 0.85, + "latex": "\\mathrm { V i T } _ { C }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 655, + 1190, + 655, + 1190, + 685, + 1124, + 685 + ], + "score": 0.83, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1678, + 360, + 1678, + 360, + 1709, + 296, + 1709 + ], + "score": 0.82, + "latex": "\\mathrm { V i T } _ { P }" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 202.0, + 348.0, + 202.0, + 348.0, + 225.0, + 320.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 215.0, + 582.0, + 215.0, + 582.0, + 229.0, + 564.0, + 229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 210.0, + 645.0, + 210.0, + 645.0, + 234.0, + 583.0, + 234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 209.0, + 1000.0, + 209.0, + 1000.0, + 237.0, + 932.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 210.0, + 1379.0, + 210.0, + 1379.0, + 233.0, + 1264.0, + 233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 239.0, + 345.0, + 239.0, + 345.0, + 259.0, + 322.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 229.0, + 652.0, + 229.0, + 652.0, + 253.0, + 564.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 240.0, + 954.0, + 240.0, + 954.0, + 249.0, + 944.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 229.0, + 999.0, + 229.0, + 999.0, + 258.0, + 956.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 227.0, + 1343.0, + 227.0, + 1343.0, + 259.0, + 1272.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 246.0, + 333.0, + 246.0, + 333.0, + 356.0, + 297.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 250.0, + 390.0, + 250.0, + 390.0, + 266.0, + 373.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 248.0, + 654.0, + 248.0, + 654.0, + 274.0, + 567.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 254.0, + 1018.0, + 254.0, + 1018.0, + 277.0, + 956.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 250.0, + 1103.0, + 250.0, + 1103.0, + 262.0, + 1092.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 249.0, + 1343.0, + 249.0, + 1343.0, + 281.0, + 1273.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 275.0, + 345.0, + 275.0, + 345.0, + 294.0, + 321.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 281.0, + 459.0, + 281.0, + 459.0, + 292.0, + 448.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 269.0, + 673.0, + 269.0, + 673.0, + 293.0, + 563.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 274.0, + 1027.0, + 274.0, + 1027.0, + 297.0, + 937.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 274.0, + 1361.0, + 274.0, + 1361.0, + 297.0, + 1278.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 308.0, + 347.0, + 308.0, + 347.0, + 332.0, + 318.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 320.0, + 527.0, + 320.0, + 527.0, + 335.0, + 511.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 325.0, + 593.0, + 325.0, + 593.0, + 334.0, + 580.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 303.0, + 765.0, + 303.0, + 765.0, + 314.0, + 755.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 312.0, + 854.0, + 312.0, + 854.0, + 332.0, + 817.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 309.0, + 945.0, + 309.0, + 945.0, + 323.0, + 930.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 301.0, + 1117.0, + 301.0, + 1117.0, + 312.0, + 1107.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 293.0, + 1158.0, + 293.0, + 1158.0, + 303.0, + 1147.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 306.0, + 1199.0, + 306.0, + 1199.0, + 325.0, + 1176.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 320.0, + 1233.0, + 320.0, + 1233.0, + 334.0, + 1218.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 294.0, + 1368.0, + 294.0, + 1368.0, + 318.0, + 1279.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 333.0, + 679.0, + 333.0, + 679.0, + 343.0, + 667.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 334.0, + 885.0, + 334.0, + 885.0, + 342.0, + 875.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 338.0, + 548.0, + 338.0, + 548.0, + 352.0, + 533.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 339.0, + 941.0, + 339.0, + 941.0, + 348.0, + 930.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 346.0, + 345.0, + 346.0, + 345.0, + 365.0, + 322.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 345.0, + 584.0, + 345.0, + 584.0, + 356.0, + 573.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 349.0, + 663.0, + 349.0, + 663.0, + 366.0, + 637.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 346.0, + 939.0, + 346.0, + 939.0, + 355.0, + 927.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 350.0, + 1014.0, + 350.0, + 1014.0, + 366.0, + 1000.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 343.0, + 1241.0, + 343.0, + 1241.0, + 354.0, + 1228.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 367.0, + 1237.0, + 367.0, + 1237.0, + 376.0, + 1227.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 367.0, + 1368.0, + 367.0, + 1368.0, + 381.0, + 1353.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 381.0, + 345.0, + 381.0, + 345.0, + 401.0, + 322.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 380.0, + 1296.0, + 380.0, + 1296.0, + 395.0, + 1281.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 399.0, + 371.0, + 399.0, + 371.0, + 422.0, + 341.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 400.0, + 451.0, + 400.0, + 451.0, + 421.0, + 420.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 401.0, + 525.0, + 401.0, + 525.0, + 420.0, + 501.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 401.0, + 604.0, + 401.0, + 604.0, + 420.0, + 578.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 400.0, + 684.0, + 400.0, + 684.0, + 421.0, + 655.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 398.0, + 726.0, + 398.0, + 726.0, + 423.0, + 692.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 400.0, + 804.0, + 400.0, + 804.0, + 421.0, + 773.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 401.0, + 878.0, + 401.0, + 878.0, + 420.0, + 854.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 401.0, + 956.0, + 401.0, + 956.0, + 420.0, + 932.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 401.0, + 1035.0, + 401.0, + 1035.0, + 420.0, + 1009.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 400.0, + 1079.0, + 400.0, + 1079.0, + 422.0, + 1047.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 400.0, + 1158.0, + 400.0, + 1158.0, + 421.0, + 1126.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 401.0, + 1232.0, + 401.0, + 1232.0, + 420.0, + 1207.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 401.0, + 1309.0, + 401.0, + 1309.0, + 420.0, + 1284.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 401.0, + 1388.0, + 401.0, + 1388.0, + 420.0, + 1363.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 412.0, + 608.0, + 412.0, + 608.0, + 441.0, + 417.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 410.0, + 961.0, + 410.0, + 961.0, + 441.0, + 771.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 412.0, + 1315.0, + 412.0, + 1315.0, + 441.0, + 1123.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 263.0, + 754.0, + 263.0, + 754.0, + 281.5, + 742.0, + 281.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 270.5, + 423.0, + 270.5, + 423.0, + 292.0, + 390.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 268.0, + 1123.0, + 268.0, + 1123.0, + 283.5, + 1109.0, + 283.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 291.5, + 461.0, + 291.5, + 461.0, + 319.0, + 426.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 301.0, + 799.0, + 301.0, + 799.0, + 315.5, + 794.0, + 315.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.75, + 316.5, + 491.75, + 316.5, + 491.75, + 330.5, + 469.75, + 330.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 316.0, + 892.0, + 316.0, + 892.0, + 338.0, + 850.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 440.0, + 1406.0, + 440.0, + 1406.0, + 479.0, + 293.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 471.0, + 698.0, + 471.0, + 698.0, + 508.0, + 294.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 471.0, + 775.0, + 471.0, + 775.0, + 508.0, + 764.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 471.0, + 1406.0, + 471.0, + 1406.0, + 508.0, + 843.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 1407.0, + 503.0, + 1407.0, + 539.0, + 294.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 531.0, + 1407.0, + 531.0, + 1407.0, + 572.0, + 293.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 561.0, + 1411.0, + 561.0, + 1411.0, + 602.0, + 293.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 1407.0, + 593.0, + 1407.0, + 629.0, + 294.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 619.0, + 512.0, + 619.0, + 512.0, + 664.0, + 293.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 619.0, + 772.0, + 619.0, + 772.0, + 664.0, + 577.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 619.0, + 1407.0, + 619.0, + 1407.0, + 664.0, + 838.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 650.0, + 1123.0, + 650.0, + 1123.0, + 693.0, + 294.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 650.0, + 1411.0, + 650.0, + 1411.0, + 693.0, + 1191.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 685.0, + 446.0, + 685.0, + 446.0, + 721.0, + 295.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 685.0, + 1282.0, + 685.0, + 1282.0, + 721.0, + 512.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1479.0, + 515.0, + 1479.0, + 515.0, + 1535.0, + 289.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 860.0, + 2060.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1071.0, + 1405.0, + 1071.0, + 1405.0, + 1106.0, + 295.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1140.0, + 291.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1162.0, + 1406.0, + 1162.0, + 1406.0, + 1197.0, + 294.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1192.0, + 1408.0, + 1192.0, + 1408.0, + 1227.0, + 292.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1222.0, + 1217.0, + 1222.0, + 1217.0, + 1257.0, + 294.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 1408.0, + 1554.0, + 1408.0, + 1593.0, + 292.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1616.0, + 1410.0, + 1616.0, + 1410.0, + 1653.0, + 290.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1645.0, + 785.0, + 1645.0, + 785.0, + 1683.0, + 292.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1645.0, + 1405.0, + 1645.0, + 1405.0, + 1683.0, + 852.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1675.0, + 1405.0, + 1675.0, + 1405.0, + 1715.0, + 361.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1709.0, + 928.0, + 1709.0, + 928.0, + 1741.0, + 295.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1709.0, + 1403.0, + 1709.0, + 1403.0, + 1741.0, + 1013.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1773.0, + 292.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1768.0, + 1405.0, + 1768.0, + 1405.0, + 1804.0, + 295.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1798.0, + 1406.0, + 1798.0, + 1406.0, + 1834.0, + 294.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1826.0, + 1405.0, + 1826.0, + 1405.0, + 1866.0, + 292.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1860.0, + 1405.0, + 1860.0, + 1405.0, + 1896.0, + 294.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1887.0, + 1407.0, + 1887.0, + 1407.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1921.0, + 1297.0, + 1921.0, + 1297.0, + 1957.0, + 292.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1921.0, + 1373.0, + 1921.0, + 1373.0, + 1957.0, + 1362.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1291.0, + 559.0, + 1291.0, + 559.0, + 1329.0, + 294.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1291.0, + 1405.0, + 1291.0, + 1405.0, + 1329.0, + 623.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1322.0, + 1404.0, + 1322.0, + 1404.0, + 1358.0, + 294.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1355.0, + 1406.0, + 1355.0, + 1406.0, + 1388.0, + 296.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1382.0, + 432.0, + 1382.0, + 432.0, + 1419.0, + 293.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1382.0, + 1406.0, + 1382.0, + 1406.0, + 1419.0, + 499.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1415.0, + 1346.0, + 1415.0, + 1346.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1310.0, + 1975.0, + 1310.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/PS3IMnScugk/PS3IMnScugk.md b/parse/train/PS3IMnScugk/PS3IMnScugk.md new file mode 100644 index 0000000000000000000000000000000000000000..7366b6d87b26d6db57083d60f85ce35c073f8268 --- /dev/null +++ b/parse/train/PS3IMnScugk/PS3IMnScugk.md @@ -0,0 +1,628 @@ +# LEARNING TO RECOMBINE AND RESAMPLE DATA FOR COMPOSITIONAL GENERALIZATION + +Ekin Akyürek MIT CSAIL akyurek@mit.edu + +Afra Feyza Akyürek Boston University akyurek@bu.edu + +Jacob Andreas MIT CSAIL jda@mit.edu + +# ABSTRACT + +Flexible neural sequence models outperform grammar- and automaton-based counterparts on a variety of tasks. However, neural models perform poorly in settings requiring compositional generalization beyond the training data—particularly to rare or unseen subsequences. Past work has found symbolic scaffolding (e.g. grammars or automata) essential in these settings. We describe R&R, a learned data augmentation scheme that enables a large category of compositional generalizations without appeal to latent symbolic structure. R&R has two components: recombination of original training examples via a prototype-based generative model and resampling of generated examples to encourage extrapolation. Training an ordinary neural sequence model on a dataset augmented with recombined and resampled examples significantly improves generalization in two language processing problems—instruction following (SCAN) and morphological analysis (SIGMORPHON 2018)—where R&R enables learning of new constructions and tenses from as few as eight initial examples. + +# 1 INTRODUCTION + +How can we build machine learning models with the ability to learn new concepts in context from little data? Human language learners acquire new word meanings from a single exposure (Carey & Bartlett, 1978), and immediately incorporate words and their meanings productively and compositionally into larger linguistic and conceptual systems (Berko, 1958; Piantadosi & Aslin, 2016). Despite the remarkable success of neural network models on many learning problems in recent years—including one-shot learning of classifiers and policies (Santoro et al., 2016; Wang et al., 2016)—this kind of few-shot learning of composable concepts remains beyond the reach of standard neural models in both diagnostic and naturalistic settings (Lake & Baroni, 2018; Bahdanau et al., 2019a). + +Consider the few-shot morphology learning problem shown in Fig. 1, in which a learner must predict various linguistic features (e.g. 3rd person, SinGular, PRESent tense) from word forms, with only a small number of examples of the PAST tense in the training set. Neural sequenceto-sequence models (e.g. Bahdanau et al., 2015) trained on this kind of imbalanced data fail to predict past-tense tags on held-out inputs of any kind (Section 5). Previous attempts to address this and related shortcomings in neural models have focused on explicitly encouraging rule-like behavior by e.g. modeling data with symbolic grammars (Jia & Liang, 2016; Xiao et al., 2016; Cai et al., 2017) or applying rule-based data augmentation (Andreas, 2020). These procedures involve highly task-specific models or generative assumptions, preventing them from generalizing effectively to less structured problems that combine rule-like and exceptional behavior. More fundamentally, they fail to answer the question of whether explicit rules are necessary for compositional inductive bias, and whether it is possible to obtain “rule-like” inductive bias without appeal to an underlying symbolic generative process. + +![](images/90e5a910bec2b9f29ac8fa294300ce33c5ee9693859101e6bbd4ea305a8d9aec.jpg) +Figure 1: We first train a generative model to reconstruct training pairs $( x \triangleright y )$ by constructing them from other training pairs (a). We then perform data augmentation by sampling from this model, preferentially generating samples in which $_ y$ contains rare tokens or substructures (b). Dashed boxes show prediction targets. Conditional models trained on the augmented dataset accurately predict outputs $_ y$ from new inputs $_ x$ requiring compositional generalization (c). + +This paper describes a procedure for improving few-shot compositional generalization in neural sequence models without symbolic scaffolding. Our key insight is that even fixed, imbalanced training datasets provide a rich source of supervision for few-shot learning of concepts and composition rules. In particular, we propose a new class of prototype-based neural sequence models (c.f. Gu et al., 2018) that can be directly trained to perform the kinds of generalization exhibited in Fig. 1 by explicitly recombining fragments of training examples to reconstruct other examples. Even when these prototype-based models are not effective as general-purpose predictors, we can resample their outputs to select high-quality synthetic examples of rare phenomena. Ordinary neural sequence models may then be trained on datasets augmented with these synthetic examples, distilling the learned regularities into more flexible predictors. This procedure, which we abbreviate R&R, promotes efficient generalization in both challenging synthetic sequence modeling tasks (Lake & Baroni, 2018) and morphological analysis in multiple natural languages (Cotterell et al., 2018). + +By directly optimizing for the kinds of generalization that symbolic representations are supposed to support, we can bypass the need for symbolic representations themselves: R&R gives performance comparable to or better than state-of-the-art neuro-symbolic approaches on tests of compositional generalization. Our results suggest that some failures of systematicity in neural models can be explained by simpler structural constraints on data distributions and corrected with weaker inductive bias than previously described.1 + +# 2 BACKGROUND AND RELATED WORK + +Compositional generalization Systematic compositionality—the capacity to identify rule-like regularities from limited data and generalize these rules to novel situations—is an essential feature of human reasoning (Fodor et al., 1988). While details vary, a common feature of existing attempts to formalize systematicity in sequence modeling problems (e.g. Gordon et al., 2020) is the intuition that learners should make accurate predictions in situations featuring novel combinations of previously observed input or output subsequences. For example, learners should generalize from actions seen in isolation to more complex commands involving those actions (Lake et al., 2019), and from relations of the form $\boldsymbol { \Gamma } ( \mathsf { a } , \mathsf { b } )$ to ${ \sf r } ( { \sf b } , \sf a )$ (Keysers et al., 2020; Bahdanau et al., 2019b). In machine learning, previous studies have found that standard neural architectures fail to generalize systematically even when they achieve high in-distribution accuracy in a variety of settings (Lake & Baroni, 2018; Bastings et al., 2018; Johnson et al., 2017). + +Data augmentation and resampling Learning to predict sequential outputs with rare or novel subsequences is related to the widely studied problem of class imbalance in classification problems. There, undersampling of the majority class or oversampling of the minority class has been found to improve the quality of predictions for rare phenomena (Japkowicz et al., 2000). This can be combined with targeted data augmentation with synthetic examples of the minority class (Chawla et al., 2002). Generically, given a training dataset $\mathcal { D }$ , learning with class resampling and data augmentation involves defining an augmentation distribution $\tilde { p ( \boldsymbol { x } , \boldsymbol { y } \mid \boldsymbol { D } ) }$ and sample weighting function $u ( x , y )$ and maximizing a training objective of the form: + +$$ +\begin{array} { r } { \mathcal { L } ( \theta ) = \underbrace { \frac { 1 } { | \mathcal { D } | } \sum _ { x \in \mathcal { D } } \log p _ { \theta } ( y \mid x ) } _ { \mathrm { O r i g i n a l t r a i n i n g d a t a } } + \underbrace { { \mathbb { E } } _ { ( x , y ) \sim \tilde { p } } u ( x , y ) \log p _ { \theta } ( y \mid x ) } _ { \mathrm { A u g m e n t e d d a t a } } . } \end{array} +$$ + +In addition to task-specific model architectures (Andreas et al., 2016; Russin et al., 2019), recent years have seen a renewed interest in data augmentation as a flexible and model-agnostic tool for encouraging controlled generalization (Ratner et al., 2017). Existing proposals for sequence models are mainly rule-based—in sequence modeling problems, specifying a synchronous context-free grammar (Jia & Liang, 2016) or string rewriting system (Andreas, 2020) to generate new examples. Rule-based data augmentation schemes that recombine multiple training examples have been proposed for image classification (Inoue, 2018) and machine translation (Fadaee et al., 2017). While rulebased data augmentation is highly effective in structured problems featuring crisp correspondences between inputs and outputs, the effectiveness of such approaches involving more complicated, context-dependent relationships between inputs and outputs has not been well-studied. + +Learned data augmentation What might compositional data augmentation look like without rules as a source of inductive bias? As Fig. 1 suggests, an ideal data augmentation procedure $\tilde { p }$ in Eq. 1) should automatically identify valid ways of transforming and combining examples, without pre-committing to a fixed set of transformations.2 A promising starting point is provided by prototype-based models, a number of which (Gu et al., 2018; Guu et al., 2018; Khandelwal et al., 2020) have been recently proposed for sequence modeling. Such models generate data according to: + +$$ +d \sim p _ { \mathrm { r e w r i t e } } ( \cdot \mid d ^ { \prime } ; \theta ) \quad \mathrm { w h e r e } \quad d ^ { \prime } \sim \mathrm { U n i f } ( \mathcal { D } ) ; +$$ + +for a dataset $\mathcal { D }$ and a learned sequence rewriting model $p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } ; \theta )$ . (To avoid confusion, we will use the symbol $d$ to denote a datum. Because a data augmentation procedure must produce complete input–output examples, each $d$ is an $( x , y )$ pair for the conditional tasks evaluated in this paper.) While recent variants implement $p _ { \mathrm { r e w r i t e } }$ with neural networks, these models are closely related to classical kernel density estimators (Rosenblatt, 1956). But additionally—building on the motivation in Section 1—they may be viewed as one-shot learners trained to generate new data $d$ from a single example. + +Existing work uses prototype-based models as replacements for standard sequence models. We will show here that they are even better suited to use as data augmentation procedures: they can produce high-precision examples in the neighborhood of existing training data, then be used to bootstrap simpler predictors that extrapolate more effectively. But our experiments will also show that existing prototype-based models give mixed results on challenging generalizations of the kind depicted in Fig. 1 when used for either direct prediction or data augmentation—performing well in some settings but barely above baseline in others. + +Accordingly, R&R is built on two model components that transform prototype-based language models into an effective learned data augmentation scheme. Section 3 describes an implementation of prewrite that encourages greater sample diversity and well-formedness via a multi-prototype copying mechanism (a two-shot learner). Section 4 describes heuristics for sampling prototypes $d ^ { \prime }$ and model outputs $d$ to focus data augmentation on the most informative examples. Section 5 investigates the empirical performance of both components of the approach, finding that they together provide they a simple but surprisingly effective tool for enabling compositional generalization. + +# 3 PROTOTYPE-BASED SEQUENCE MODELS FOR DATA RECOMBINATION + +We begin with a brief review of existing prototype-based sequence models. Our presentation mostly follows the retrieve-and-edit approach of Guu et al. (2018), but versions of the approach in this paper could also be built on retrieval-based models implemented with memory networks (Miller et al., 2016; Gu et al., 2018) or transformers (Khandelwal et al., 2020; Guu et al., 2020). The generative process described in Eq. 2 implies a marginal sequence probability: + +$$ +p ( d ) = { \frac { 1 } { | { \mathcal { D } } | } } \sum _ { d ^ { \prime } \in { \mathcal { D } } } p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } ; \theta ) +$$ + +Maximizing this quantity over the training set with respect to $\theta$ will encourage $p _ { \mathrm { r e w r i t e } }$ to act as a model of valid data transformations: To be assigned high probability, every training example must be explained by at least one other example and a parametric rewriting operation. (The trivial solution where $p _ { \theta }$ is the identity function, with $p _ { \theta } ( d \mid d ^ { \prime } = d ) = 1$ , can be ruled out manually in the design of $p _ { \theta }$ .) When $\mathcal { D }$ is large, the sum in Eq. 3 is too large to enumerate exhaustively when computing the marginal likelihood. Instead, we can optimize a lower bound by restricting the sum to a neighborhood $\bar { \mathcal { N } } ( d ) \subset \mathcal { D }$ of training examples around each $d$ : + +$$ +p ( d ) \geq { \frac { 1 } { | { \mathcal { D } } | } } \sum _ { d ^ { \prime } \in { \mathcal { N } } ( d ) } p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } ; \theta ) ~ . +$$ + +The choice of $\mathcal { N }$ is discussed in more detail in Section 4. Now observe that: + +$$ +\begin{array} { l } { \displaystyle \log p ( { d } ) \geq \log \left( | \mathcal { N } ( d ) | \sum _ { d ^ { \prime } \in \mathcal { N } ( d ) } \frac { 1 } { | \mathcal { N } ( d ) | } p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } ; \theta ) \right) - \log | \mathcal { D } | } \\ { \geq \displaystyle \frac { 1 } { | \mathcal { N } ( d ) | } \sum _ { d ^ { \prime } \in \mathcal { N } ( d ) } \log p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } ; \theta ) + \log \left( \frac { | \mathcal { N } ( d ) | } { | \mathcal { D } | } \right) } \end{array} +$$ + +where the second step uses Jensen’s inequality. If all $| \mathcal { N } ( d ) |$ are the same size, maximizing this lower bound on log-likelihood is equivalent to simply maximizing + +$$ +\sum _ { d ^ { \prime } \in \mathcal { N } ( d ) } \log p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } ; \theta ) +$$ + +over $\mathcal { D }$ —this is the ordinary conditional likelihood for a string transducer (Ristad & Yianilos, 1998) or sequence-to-sequence model (Sutskever et al., 2014) with examples $d , d ^ { \prime } \in \mathcal { N } ( d )$ . 3 + +We have motivated prototype-based models by arguing that $p _ { \mathrm { r e w r i t e } }$ learns a model of transformations licensed by the training data. However, when generalization involves complex compositions, we will show that neither a basic RNN implementation of $p _ { \mathrm { r e w r i t e } }$ or a single prototype is enough; we must provide the learned rewriting model with a larger inventory of parts and encourage reuse of those parts as faithfully as possible. This motivates the two improvements on the prototype-based modeling framework described in the remainder of this section: generalization to multiple prototypes (Section 3.1) and a new rewriting model (Section 3.2). + +# 3.1 $n$ -PROTOTYPE MODELS + +To improve compositionality in prototype-based models, we equip them with the ability to condition on multiple examples simultaneously. We extend the basic prototype-based language model to $n$ prototypes, which we now refer to as a recombination model $p _ { \mathrm { r e c o m b } }$ : + +$$ +d \sim p _ { \mathrm { r e c o m b } } ( \cdot \mid d _ { 1 : n } ^ { \prime } ; \theta ) \quad \mathrm { w h e r e } \quad d _ { 1 : n } ^ { \prime } \stackrel { \scriptscriptstyle \mathrm { d e f } } { = } ( d _ { 1 } ^ { \prime } , d _ { 2 } ^ { \prime } , \ldots , d _ { n } ^ { \prime } ) \sim p _ { \Omega } ( \cdot ) +$$ + +A multi-protype model may be viewed as a meta-learner (Thrun & Pratt, 1998; Santoro et al., 2016): it maps from a small number of examples (the prototypes) to a distribution over new datapoints consistent with those examples. By choosing the neighborhood and implementation of $p _ { \mathrm { r e c o m b } }$ appropriately, we can train this meta-learner to specialize in one-shot concept learning (by reusing a fragment exhibited in a single prototype) or compositional generalization (by assembling fragments of prototypes into a novel configuration). To enable this behavior, we define a set of compatible prototypes $\Omega \subset { \mathcal { D } } ^ { n }$ (Section 4) and let $p _ { \Omega } \ { \stackrel { \mathrm { d e f } } { = } } \ \operatorname { U n i f } ( \Omega )$ . We update Eq. 6 to feature a corresponding multi-prototype neighborhood $\mathcal { N } : \mathcal { D } \Omega$ . The only terms that have changed are the conditioning variable and the constant term, and it is again sufficient to choose $\theta$ to optimize $\begin{array} { r } { \sum _ { d _ { 1 : n } ^ { \prime } \in \mathcal { N } ( d ) } \log p _ { \mathrm { r e c o m b } } ( d \mid d _ { 1 : n } ^ { \prime } ) } \end{array}$ over $\mathcal { D }$ , implementing $p _ { \mathrm { r e c o m b } }$ as described next. + +# 3.2 RECOMBINATION NETWORKS + +Past work has found that latent-variable neural sequence models often ignore the latent variable and attempt to directly model sequence marginals (Bowman et al., 2016). When an ordinary sequence-tosequence model with attention is used to implement $p _ { \mathrm { r e c o m b } }$ , even in the one-prototype case, generated + +$$ +p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } ) = \mathbb { E } _ { z \sim p ( z ) } [ p _ { \mathrm { r e w r i t e } } ( d \mid d ^ { \prime } , z ; \theta ) ] +$$ + +![](images/afec9d43b3c01eaf8327afb034dc715c70356cb08a599c76be0d10c0fb326089.jpg) +Figure 2: (a) RNN encoders produce contextual embeddings for prototype tokens. (b) In the decoder, a gated copy mechanism reuses prototypes and generated output tokens via an attention mechanism (dashed lines). + +sentences often have little overlap with their prototypes (Weston et al., 2018). We describe a specific model architecture for $p _ { \mathrm { r e c o m b } }$ that does not function as a generic noise model, and in which outputs are primarily generated via explicit reuse of fragments of multiple prototypes, by facilitating copying from independent streams containing prototypes and previously generated input tokens. + +We take $p _ { \mathrm { r e c o m b } } ( d \mid d _ { 1 : n } ^ { \prime } ; \theta )$ to be a neural (multi-)sequence-to-sequence model (c.f. Sutskever et al., 2014) which decomposes probability autoregressively: $\begin{array} { r } { p _ { \mathrm { r e c o m b } } ( d \mid \mathcal { \bar { d } } _ { 1 : n } ^ { \prime } ; \theta ) = \prod _ { t } p ( d ^ { t } \mid d ^ { < t } , d _ { 1 : n } ^ { \prime } ; \theta ) } \end{array}$ . As shown in Fig. 2, three LSTM encoders—two for the prototypes and one for the input prefix— compute sequences of token representations $h _ { \mathrm { p r o t o } }$ and $h _ { \mathrm { o u t } }$ respectively. Given the current decoder hidden state $\setminus h _ { o u t } ^ { t }$ , the model first attends to both prototype and output tokens: + +$$ +\begin{array} { r l } { \alpha _ { \mathrm { o u t } } ^ { i } \propto \exp ( { h _ { \mathrm { o u t } } ^ { t } W _ { o } h _ { \mathrm { o u t } } ^ { i } } ) } & { { i < t } } \\ { \alpha _ { \mathrm { p r o t o } } ^ { k j } \propto \exp ( { h _ { \mathrm { o u t } } ^ { t } W _ { p } h _ { \mathrm { p r o t o } } ^ { k j } } ) } & { { k \le n , j \le | d _ { k } ^ { \prime } | } } \end{array} +$$ + +To enable copying from each sequence, we project attention weights $\alpha _ { \mathrm { o u t } }$ and $\alpha _ { \mathrm { p r o t o } } ^ { k }$ onto the output vocabulary to produce a sparse vector of probabilities: + +$$ +\begin{array} { r l } & { p _ { \mathrm { c o p y , o u t } } ^ { t } ( d ^ { t } = w ) = \sum _ { i < t } \mathbb { 1 } [ d _ { i } = w ] \cdot \alpha _ { \mathrm { o u t } } ^ { i } } \\ & { p _ { \mathrm { c o p y , p r o t o - k } } ^ { t } ( d ^ { t } = w ) = \sum _ { j \le | d _ { k } ^ { \prime } | } \mathbb { 1 } [ d _ { k , j } ^ { \prime } = w ] \cdot \alpha _ { \mathrm { p r o t o } } ^ { k j } } \end{array} +$$ + +Unlike rule-based data recombination procedures, however, $p _ { \mathrm { r e c o m b } }$ is not required to copy from the prototypes, and can predict output tokens directly using values retrieved by the attention mechanism: + +$$ +\begin{array} { r l } & { \begin{array} { r l } { h _ { \mathrm { p r e } } ^ { t } = \left[ h _ { \mathrm { o u t } } ^ { t } , \quad \sum _ { i } \alpha _ { \mathrm { o u t } } ^ { i } h _ { \mathrm { o u t } } ^ { i } , } & { \sum _ { k , j } \alpha _ { \mathrm { p r o t o } } ^ { k j } h _ { \mathrm { p r o t o } } ^ { k j } \right] } \end{array} } \\ & { \begin{array} { r l } { p _ { \mathrm { w r i t e } } ^ { t } \propto \exp ( W _ { \mathrm { w r i t e } } h _ { \mathrm { p r e } } ^ { t } ) } & { } \end{array} } \end{array} +$$ + +To produce a final distribution over output tokens at time $t$ , we combine predictions from each stream: + +$$ +\begin{array} { r } { \beta _ { \mathrm { g a t e } } = \mathrm { s o f t m a x } ( W _ { g a t e } h _ { o u t } ^ { t } ) \qquad } \\ { p ( d ^ { t } = w \mid d ^ { < t } , d _ { 1 : n } ^ { t } ; \theta ) = \beta _ { \mathrm { g a t e } } \cdot [ p _ { \mathrm { w r i t e } } ^ { t } ( w ) , p _ { \mathrm { c o p y , o u t } } ^ { t } ( w ) , p _ { \mathrm { c o p y , p r o u o - } 1 } ^ { t } ( w ) , . . . , p _ { \mathrm { c o p y , p r o u o - n } } ^ { t } ( w ) ] } \end{array} +$$ + +This copy mechanism is similar to the one proposed by Merity et al. (2017) and See et al. (2017). We compare 1- and 2-prototype models to an ordinary sequence model and baselines in Section 5. + +# 4 SAMPLING SCHEMES + +The models above provide generic procedures for generating well-formed combinations of training data, but do nothing to ensure that the generated samples are of a kind useful for compositional generalization. While the training objective in Eq. 7 encourages the learned $p ( d )$ to lie close to the training data, an effective data augmentation procedure should intuitively provide novel examples of rare phenomena. To generate augmented training data, we combine the generative models of Section 3 with a simple sampling procedure that upweights useful examples. + +# 4.1 RESAMPLING AUGMENTED DATA + +In classification problems with imbalanced classes, a common strategy for improving accuracy on the rare class is to resample so that the rare class is better represented in training data (Japkowicz + +et al., 2000). When constructing an augmented dataset using the models described above, we apply a simple rejection sampling scheme. In Eq. 1, we set: + +$$ +u ( d ) = \mathbb { 1 } [ \operatorname* { m i n } _ { t } p ( d ^ { t } ) < \epsilon ] . +$$ + +Here $p ( d ^ { t } )$ is the marginal probability that the token $d ^ { t }$ appears in any example and $\epsilon$ is a hyperparameter. The final model is then trained using Eq. 1, retaining those augmented samples for which $u ( d ) = 1$ . For extremely imbalanced problems, like the ones considered in Section 5, this weighting scheme effectively functions as a rare tag constraint: only examples containing rare words or tags are used to augment the original training data. + +# 4.2 NEIGHBORHOODS AND PROTOTYPE PRIORS + +How can we ensure that the data augmentation procedure generates any samples with positive weight in Eq. 18? The prototype-based models described in Section 3 offer an additional means of control over the generated data. Aside from the implementation of $p _ { \mathrm { r e c o m b } }$ , the main factors governing the behavior of the model are the choice of neighborhood function ${ \mathcal { N } } ( d )$ and, for $n \geq 2$ , the set of prior compatible prototypes $\Omega$ . Defining these so that rare tags also preferentially appear in prototypes helps ensure that the generated samples contribute to generalization. Let $d _ { 1 }$ and $d _ { 2 }$ be prototypes. As a notational convenience, given two sequences $d _ { 1 }$ , $d _ { 2 }$ , let $d _ { 1 } \backslash d _ { 2 }$ the set of tokens in $d _ { 1 }$ but not $d _ { 2 }$ , and $d _ { 1 } \Delta d _ { 2 }$ denote the set of tokens not common to $d _ { 1 }$ and $d _ { 2 }$ . + +1-prototype neighborhoods Guu et al. (2018) define a one-prototype $\mathcal { N }$ based on a Jaccard distance threshold (Jaccard, 1901). For experiments with one-prototype models we employ a similar strategy, choosing an initial neighborhood of candidates such that + +$$ +{ \mathcal { N } } ( d ) \ { \stackrel { \scriptscriptstyle { \mathrm { d e f } } } { = } } \ \left\{ d _ { 1 } \in { \mathcal { D } } : ( { \boldsymbol { \alpha } } \cdot | d \Delta d _ { 1 } | + { \boldsymbol { \beta } } \cdot \operatorname { l e v } ( d , d _ { 1 } ) ) < \delta \right\} +$$ + +where lev is string edit distance (Levenshtein, 1966) and $\alpha , \beta$ and $\delta$ are hyperparameters (discussed in Appendix B). + +2-prototype neighborhoods The $n \geq 2$ prototype case requires a more complex neighborhood function—intuitively, for an input $d$ , we want each $( d _ { 1 } , d _ { 2 } , \ldots )$ in the neighborhood to collectively contain enough information to reconstruct $d$ . Future work might treat the neighborhood function itself as latent, allowing the model to identify groups of prototypes that make $d$ probable; here, as in existing one-prototype models, we provide heuristic implementations for the $n = 2$ case. + +Long–short recombination: For each $( d _ { 1 } , d _ { 2 } ) \in \mathcal { N } ( d )$ , $d _ { 1 }$ is chosen to be similar to $d$ , and $d _ { 2 }$ is chosen to be similar to the difference between $d$ and $d _ { 1 }$ . (The neighborhood is so named because one of the prototypes will generally have fewer tokens than the other one.) + +$$ +{ \mathcal { N } } ( d ) ~ { \stackrel { \mathrm { d e f } } { = } } ~ \left\{ ( d _ { 1 } , d _ { 2 } ) \in \Omega : { \mathrm { ~ l e v } } \left( d , d _ { 1 } \right) < \delta , { \mathrm { l e v } } \left( [ d \backslash d _ { 1 } ] , d _ { 2 } \right) < \delta , | d \backslash d _ { 1 } | > 0 , | d \backslash d _ { 1 } \backslash d _ { 2 } | = 0 \right\} +$$ + +Here $[ d \backslash d _ { 1 } ]$ is the sequence obtained by removing all tokens in $d _ { 1 }$ from $d$ . Recall that we have defined $p _ { \Omega } ( d _ { 1 : n } ) \ { \stackrel { \mathrm { d e f } } { = } } \ \mathrm { U n i f } ( \Omega )$ for a set $\Omega$ of “compatible” prototypes. For experiments using long–short combination, all prototypes are treated as compatible; that is, $\Omega = \mathcal { D } \times \mathcal { D }$ . + +Long–long recombination: ${ \mathcal { N } } ( d )$ contains pairs of prototypes that are individually similar to $d$ and collectively contain all the tokens needed to reconstruct $d$ : + +$$ +{ \mathcal { N } } ( d ) \ { \stackrel { \mathrm { d e f } } { = } } \ \{ ( d _ { 1 } , d _ { 2 } ) \in \Omega : \ { \mathrm { l e v } } \left( d , d _ { 1 } \right) < \delta , { \mathrm { l e v } } \left( d , d _ { 2 } \right) < \delta , | d \Delta d _ { 1 } | = 1 , | d \backslash d _ { 1 } \backslash d _ { 2 } | = 0 \} +$$ + +For experiments using long–long recombination, we take $\Omega = \{ ( d _ { 1 } , d _ { 2 } ) \in \mathcal { D } \times \mathcal { D } : | d _ { 1 } \Delta d _ { 2 } | = 1 \}$ + +# 5 DATASETS & EXPERIMENTS + +We evaluate R&R on two tests of compositional generalization: the SCAN instruction following task (Lake & Baroni, 2018) and a few-shot morphology learning task derived from the SIGMORPHON 2018 dataset (Kirov et al., 2018; Cotterell et al., 2018). Our experiments are designed to explore the effectiveness of learned data recombination procedures in controlled and natural settings. Both tasks involve conditional sequence prediction: while preceding sections have discussed augmentation + +Table 1: Results on the SCAN dataset. (a) Comparison of R&R with previous work. Connecting lines indicate that model components are inherited from the parent (e.g. the row labeled recomb-2 also includes resampling). Data augmentation with recomb- $^ { 2 + }$ resampling performs slightly worse than GECA on the jump and around right splits; data augmentation with recomb- $l +$ resampling or an ordinary RNN does not generalize robustly to either split. All differences except between GECA and recomb- $^ { 2 + }$ resampling in jump are significant (paired $t$ -test, $p \ll 0 . 0 0 1$ ). (Dashes indicate that all samples were rejected by resampling when decoding with temperature $T = 1 .$ ) (b) Ablation experiments on the jump split. Introducing the latent variable used in previous work (Guu et al., 2018) does not change performance; removing the copy mechanism results in a complete failure of generalization. While it is possible to perform conditional inference of $p ( y \mid x )$ given the generative model in Eq. 3 (direct inference), this gives significantly worse results than data augmentation (see Sec. 5.3). + +
(a)
around right jump
baseline0.00 ±0.000.00 ±0.00
GECA (published)0.82 ±0.110.87 ±0.05
GECA (ours)0.98 ±0.021.00 ±0.001
learned aug. (basic)0.00 ±0.000.00 ±0.00
L resampling--
├ recomb-10.17 ±0.07-
Lrecomb-20.75 ±0.140.87 ±0.08
recomb-2 (no resampling)0.82 ±0.080.88 ±0.07
+ +
jump
recomb-2 (no resampling)0.88 ±0.07
+ VAE0.88 ±0.07
+resampling0.87 ±0.08
- copying direct inference0.00 ±0.00
0.57 ±0.05
+ +procedures that produce data points $d = ( x , y )$ , learners are evaluated on their ability to predict an output $y$ from an input $x$ : actions $y$ given instructions $x$ , or morphological analyses $y$ given words $x$ + +For each task, we compare a baseline with no data augmentation, the rule-based GECA data augmentation procedure (Andreas, 2020), and a sequence of ablated versions of R&R that measure the importance of resampling and recombination. The basic Learned Aug model trains an RNN to generate $( x , y )$ pairs, then trains a conditional model on the original data and samples from the generative model. Resampling filters these samples as described in Section 4. Recomb-n models replace the RNN with a prototype-based model as described in Section 3. Additional experiments (Table 1b) compare data augmentation to prediction of $y$ via direct inference (Appendix E) in the prototype-based model and several other model variants. + +# 5.1 SCAN + +SCAN (Lake & Baroni, 2018) is a synthetic dataset featuring simple English commands paired with sequences of actions. Our experiments aim to show that R&R performs well at one-shot concept learning and zero-shot generalization on controlled tasks where rule-based models succeed. We experiment with two splits of the dataset, jump and around right. In the jump split, which tests one-shot learning, the word jump appears in a single command in the training set but in more complex commands in the test set (e.g. look and jump twice). The around right split (Loula et al., 2018) tests zero-shot generalization by presenting learners with constructions like walk around left and walk right in the training set, but walk around right only in the test set. + +Despite the apparent simplicity of the task, ordinary neural sequence-to-sequence models completely fail to make correct predictions on SCAN test set (Table 1). As such it has been a major focus of research on compositional generalization in sequence-to-sequence models, and a number of heuristic procedures and specialized model architectures and training procedures have been developed to solve it (Russin et al., 2019; Gordon et al., 2020; Lake, 2019; Andreas, 2020). Here we show that the generic prototype recombination procedure described above does so as well. We use long–short recombination for the jump split and long–long recombination for the around right split. We use a recombination network to generate 400 samples $d = ( x , y )$ and then train an ordinary LSTM with attention (Bahdanau et al., 2019b) on the original and augmented data to predict $y$ from $x$ . Training hyperparameters are provided in Appendix D. + +Table 1 shows the results of training these models on the SCAN dataset.4 2-prototype recombination is essential for successful generalization on both splits. Additional ablations (Table 1b) show that the continuous latent variable used by Guu et al. (2018) does not affect performance, but that the copy mechanism described in Section 3.2 and the use of the recomb-2 model for data augmentation rather than direct inference are necessary for accurate prediction. + +Table 2: $F _ { 1 }$ score for morphological analysis on rare $\mathrm { ( F U T + P S T ) }$ ) and frequent (OTHER) word forms. R&R variants with 1- and 2-prototype recombination (shaded in grey) consistently match or outperform both a no-augmentation baseline and GECA; recomb- $^ { l + }$ resampling is best overall. Bold numbers are not significantly different from the best result in each column under a paired t-test $\mathit { p } < 0 . 0 5$ after Bonferroni correction; nothing is bold if all differences are insignificant). The NOVEL portion of the table shows model accuracy on examples whose exact tag set never appeared in the training data. (There were no such words in the test set for the Spanish OTHER.) Differences between GECA and the best R&R variant (recomb- $^ { l + }$ resampling) are larger than in the full evaluation set. ∗The Spanish past tense was used as a development set. + +
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline Lresampling0.66 ±0.010.88 ±0.010.75 ±0.020.90 ±0.010.69 ±0.040.85 ±0.03
0.65 ±0.010.88 ±0.010.77 ±0.010.90 ±0.020.69 ±0.040.84 ±0.04
GECA0.66 ±0.010.88 ±0.010.76 ±0.020.90±0.020.69 ±0.020.87 ±0.01
Lresampling A0.72 ±0.020.88 ±0.010.81 ±0.020.89 ±0.010.75 ±0.030.85 ±0.02
learned aug. (basic)0.66 ±0.020.88 ±0.010.77 ±0.020.90 ±0.010.70 ±0.020.87 ±0.01
L resampling0.70 ±0.020.86 ±0.010.84 ±0.010.90 ±0.010.73 ±0.040.85 ±0.03
├recomb-10.72 ±0.020.87 ±0.010.85 ±0.010.90 ±0.020.77 ±0.020.87 ±0.02
recomb-20.71 ±0.010.87 ±0.020.82 ±0.020.90 ±0.010.75 ±0.030.86 ±0.03
GECA + recomb-1 + resamp.0.74 ±0.020.86 ±0.010.85 ±0.020.89 ±0.010.79 ±0.020.84 ±0.01
THAONbaseline0.63 ±0.030.72 ±0.020.42 ±0.120.68 ±0.040.66 ±0.15
GECA + resampling0.67 ±0.030.79 ±0.020.26 ±0.200.73 ±0.040.71 ±0.10
recomb-1 + resampling0.69 ±0.020.83 ±0.020.42 ±0.120.75 ±0.030.82 ±0.04
GECA + recomb-1 + resamp.0.69 ±0.020.83 ±0.020.35 ±0.110.77 ±0.030.71 ±0.07
+ +# 5.2 SIGMORPHON 2018 + +The SIGMORPHON 2018 dataset consists of words paired with morphological analyses (lemmas, or base forms, and tags for linguistic features like tense and case, as depicted in Fig. 1). We use the data to construct a morphological analysis task (Akyürek et al., 2019) (predicting analyses from surface forms) to test models’ few-shot learning of new morphological paradigms. In three languages of varying morphological complexity (Spanish, Swahili, and Turkish) we construct splits of the data featuring a training set of 1000 examples and three test sets of 100 examples. One test set consists exclusively of words in the past tense, one in the future tense and one with other word forms (present tense verbs, nouns and adjectives). The training set contains exactly eight past-tense and eight future-tense examples; all the rest are other word forms. Experiments evaluate R&R’s ability to efficiently learn noisy morphological rules, long viewed a key challenge for connectionist approaches to language learning (Rumelhart & McClelland, 1986). As approaches may be sensitive to the choice of the eight examples from which the model must generalize, we construct five different splits per language and use the Spanish past-tense data as a development set. As above, we use long–long recombination with similarity criteria applied to $y$ only. We augment the training data with 180 samples from $p _ { \mathrm { r e c o m b } }$ and again train an ordinary LSTM with attention for final predictions. Details are provided in Appendix B. + +Table 2 shows aggregate results across languages. We report the model’s $F _ { 1 }$ score for predicting morphological analyses of words in the few-shot training condition (past and future) and the standard training condition (other word forms). Here, learned data augmentation with both one- and twoprototype models consistently matches or outperforms GECA. The improvement is sometimes dramatic: for few-shot prediction in Swahili, recomb-1 augmentation reduces the error rate by $40 \%$ relative to the baseline and $21 \%$ relative to GECA. An additional baseline $^ +$ resampling experiment upweights the existing rare samples rather than synthesizing new ones; results demonstrate that recombination, and not simply reweighting, is important for generalization. Table 2 also includes a finer-grained analysis of novel word forms: words in the evaluation set whose exact morphological analysis never appeared in the training set. R&R again significantly outperforms both the baseline and GECA-based data augmentation in the few-shot FUT+PAST condition and the ordinary OTHER condition, underscoring the effectiveness of this approach for “in-distribution” compositional generalization. Finally, the gains provided by learned augmentation and GECA appear to be at least partially orthogonal: combining the GECA $^ +$ resampling and recomb- $\cdot l +$ resampling models gives further improvements in Spanish and Turkish. + +# 5.3 ANALYSIS + +Why is R&R effective? Samples from the best learned data augmentation models for SCAN and SIGMORPHON may be found in the Appendix G.3 . We programaticaly analyzed 400 samples from recomb-2 models in SCAN and found that $40 \%$ of novel samples are exactly correct in the around right split and $74 \%$ in the jump split. A manual analysis of 50 Turkish samples indicated that only $14 \%$ of the novel samples were exactly correct. The augmentation procedure has a high error rate! However, our analysis found that malformed samples either (1) feature malformed $x s$ that will never appear in a test set (a phenomenon also observed by Andreas (2020) for outputs of GECA), or (2) are mostly correct at the token level (inducing predictions with a high $F _ { 1 }$ score). Data augmentation thus contributes a mixture of irrelevant examples, label noise—which may exert a positive regularizing effect (Bishop, 1995)—and well-formed examples, a small number of which are sufficient to induce generalization (Bastings et al., 2018). Without resampling, SIGMORPHON models generate almost no examples of rare tags. + +Why does R&R outperform direct inference? A partial explanation is provided by the preceding analysis, which notes that the accuracy of the data augmentation procedure as a generative model is comparatively low. Additionally, the data augmentation procedure selects only the highest-confidence samples from the model, so the quality of predicted ys conditioned on random $x \mathbf { s }$ will in general be even lower. A conditional model trained on augmented data is able to compensate for errors in augmentation or direct inference (Table 12 in the Appendix). + +Why is Resampling without Recombination effective? One surprising feature of Table 2 is performance of the learned aug (basic) $^ +$ resampling model. While less effective than the recombinationbased models, augmentation with samples from an ordinary RNN trained on $( x , y )$ pairs improves performance for some test splits. One possible explanation is that resampling effectively acts as a posterior constraint on the final model’s predictive distribution, guiding it toward solutions in which rare tags are more probable than observed in the original training data. Future work might model this constraint explicitly, e.g. via posterior regularization (as in Li & Rush, 2020). + +# 6 CONCLUSIONS + +We have described a method for improving compositional generalization in sequence-to-sequence models via data augmentation with learned prototype recombination models. These are the first results we are aware of demonstrating that generative models of data are effective as data augmentation schemes in sequence-to-sequence learning problems, even when the generative models are themselves unreliable as base predictors. Our experiments demonstrate that it is possible to achieve compositional generalization on-par with complex symbolic models in clean, highly structured domains, and outperform them in natural ones, with basic neural modeling tools and without symbolic representations. + +# ACKNOWLEDGMENTS + +We thank Eric Chu for feedback on early drafts of this paper. This work was supported by a hardware donation from NVIDIA under the NVAIL grant program. The authors acknowledge the MIT SuperCloud and Lincoln Laboratory Supercomputing Center (Reuther et al., 2018) for providing HPC resources that have contributed to the research results reported within this paper. + +# REFERENCES + +Ekin Akyürek, Erenay Dayanık, and Deniz Yuret. Morphological analysis using a sequence decoder. Transactions of the Association for Computational Linguistics, 7:567–579, 2019. + +Jacob Andreas. Good-enough compositional data augmentation. In Procedings of the Annual Meeting of the Association for Computational Linguistics, 2020. + +Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48, 2016. + +Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. In International Conference on Learning Representations, 2015. + +Dzmitry Bahdanau, Harm de Vries, Timothy J O’Donnell, Shikhar Murty, Philippe Beaudoin, Yoshua Bengio, and Aaron Courville. Closure: Assessing systematic generalization of clevr models. arXiv preprint arXiv:1912.05783, 2019a. + +Dzmitry Bahdanau, Shikhar Murty, Michael Noukhovitch, Thien Huu Nguyen, Harm de Vries, and Aaron Courville. Systematic generalization: What is required and can it be learned? In International Conference on Learning Representations, 2019b. + +Jasmijn Bastings, Marco Baroni, Jason Weston, Kyunghyun Cho, and Douwe Kiela. Jump to better conclusions: SCAN both left and right. In Proceedings of the EMNLP BlackboxNLP Workshop, pp. 47–55, Brussels, Belgium, 2018. + +Jean Berko. The child’s learning of english morphology. Word, 14(2-3):150–177, 1958. + +Jeff Bezanson, Alan Edelman, Stefan Karpinski, and Viral B Shah. Julia: A fresh approach to numerical computing. SIAM review, 59(1):65–98, 2017. URL https://doi.org/10.1137/ 141000671. + +Chris M Bishop. Training with noise is equivalent to tikhonov regularization. Neural computation, 7 (1):108–116, 1995. + +Samuel Bowman, Luke Vilnis, Oriol Vinyals, Andrew Dai, Rafal Jozefowicz, and Samy Bengio. Generating sentences from a continuous space. In Proceedings of The 20th SIGNLL Conference on Computational Natural Language Learning, pp. 10–21, 2016. + +Jonathon Cai, Richard Shin, and Dawn Song. Making neural programming architectures generalize via recursion. In International Conference on Learning Representations, ICLR 2017, 2017. + +Susan Carey and Elsa Bartlett. Acquiring a single new word. Papers and Reports on Child Language Development, 2, 1978. + +Nitesh V Chawla, Kevin W Bowyer, Lawrence O Hall, and W Philip Kegelmeyer. Smote: synthetic minority over-sampling technique. Journal of artificial intelligence research, 16:321–357, 2002. + +Alexander Clark and Rémi Eyraud. Polynomial identification in the limit of substitutable context-free languages. Journal of Machine Learning Research, 8(Aug):1725–1745, 2007. + +Ryan Cotterell, Christo Kirov, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova, Arya D. McCarthy, Katharina Kann, Sabrina J. Mielke, Garrett Nicolai, Miikka Silfverberg, David Yarowsky, Jason Eisner, and Mans Hulden. The CoNLL–SIGMORPHON 2018 shared task: Universal morphological reinflection. In Proceedings of the CoNLL–SIGMORPHON 2018 Shared Task: Universal Morphological Reinflection, pp. 1–27, 2018. + +Marzieh Fadaee, Arianna Bisazza, and Christof Monz. Data augmentation for low-resource neural machine translation. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics, pp. 567–573, 2017. + +Jerry A Fodor, Zenon W Pylyshyn, et al. Connectionism and cognitive architecture: A critical analysis. Cognition, 28(1-2):3–71, 1988. + +Felix A Gers and E Schmidhuber. Lstm recurrent networks learn simple context-free and contextsensitive languages. IEEE Transactions on Neural Networks, 12(6):1333–1340, 2001. + +Jonathan Gordon, David Lopez-Paz, Marco Baroni, and Diane Bouchacourt. Permutation equivariant models for compositional generalization in language. In International Conference on Learning Representations, 2020. + +Jiatao Gu, Zhengdong Lu, Hang Li, and Victor O.K. Li. Incorporating copying mechanism in sequence-to-sequence learning. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics, pp. 1631–1640, 2016. + +Jiatao Gu, Yong Wang, Kyunghyun Cho, and Victor OK Li. Search engine guided neural machine translation. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018. + +Kelvin Guu, Tatsunori B. Hashimoto, Yonatan Oren, and Percy Liang. Generating sentences by editing prototypes. Transactions of the Association for Computational Linguistics, 6:437–450, 2018. + +Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. Realm: Retrievalaugmented language model pre-training. arXiv preprint arXiv:2002.08909, 2020. + +Tatsunori B Hashimoto, Kelvin Guu, Yonatan Oren, and Percy S Liang. A retrieve-and-edit framework for predicting structured outputs. In Advances in Neural Information Processing Systems, pp. 10052–10062, 2018. + +Hiroshi Inoue. Data augmentation by pairing samples for images classification. In International Conference on Learning Representations, 2018. + +Paul Jaccard. Comparative study of the distribution of flora in a portion of the Alps and Jura. Bull Soc Vaudoise Sci Nat, 37:547–579, 1901. + +Nathalie Japkowicz et al. Learning from imbalanced data sets: a comparison of various strategies. In AAAI workshop on learning from imbalanced data sets, volume 68, pp. 10–15, 2000. + +Robin Jia and Percy Liang. Data recombination for neural semantic parsing. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics, pp. 12–22, 2016. + +Justin Johnson, Bharath Hariharan, Laurens van der Maaten, Li Fei-Fei, C Lawrence Zitnick, and Ross Girshick. Clevr: A diagnostic dataset for compositional language and elementary visual reasoning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2901–2910, 2017. + +Daniel Keysers, Nathanael Schärli, Nathan Scales, Hylke Buisman, Daniel Furrer, Sergii Kashubin, Nikola Momchev, Danila Sinopalnikov, Lukasz Stafiniak, Tibor Tihon, Dmitry Tsarkov, Xiao Wang, Marc van Zee, and Olivier Bousquet. Measuring compositional generalization: A comprehensive method on realistic data. In International Conference on Learning Representations, 2020. + +Urvashi Khandelwal, Omer Levy, Dan Jurafsky, Luke Zettlemoyer, and Mike Lewis. Generalization through memorization: Nearest neighbor language models. In International Conference on Learning Representations, 2020. + +Christo Kirov, Ryan Cotterell, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova, Patrick Xia, Manaal Faruqui, Sabrina J. Mielke, Arya McCarthy, Sandra Kübler, David Yarowsky, Jason Eisner, and Mans Hulden. UniMorph 2.0: Universal Morphology. In Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018). European Language Resources Association (ELRA), 2018. + +B. Lake, Tal Linzen, and M. Baroni. Human few-shot learning of compositional instructions. In CogSci, 2019. + +Brenden Lake and Marco Baroni. Generalization without systematicity: On the compositional skills of sequence-to-sequence recurrent networks. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 2873–2882, 2018. + +Brenden M Lake. Compositional generalization through meta sequence-to-sequence learning. In Advances in Neural Information Processing Systems, pp. 9788–9798, 2019. + +Vladimir I Levenshtein. Binary codes capable of correcting deletions, insertions, and reversals. In Soviet physics doklady, volume 10, pp. 707–710, 1966. + +Xiang Lisa Li and Alexander M Rush. Posterior control of blackbox generation. arXiv preprint arXiv:2005.04560, 2020. + +João Loula, Marco Baroni, and Brenden Lake. Rearranging the familiar: Testing compositional generalization in recurrent networks. In Proceedings of the 2018 EMNLP Workshop BlackboxNLP: Analyzing and Interpreting Neural Networks for NLP, pp. 108–114, 2018. + +Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture models. In International Conference on Learning Representations, ICLR 2017, 2017. + +Alexander Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason Weston. Key-value memory networks for directly reading documents. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, pp. 1400–1409, 2016. + +Steven Piantadosi and Richard Aslin. Compositional reasoning in early childhood. PloS one, 11(9), 2016. + +Alexander J Ratner, Henry Ehrenberg, Zeshan Hussain, Jared Dunnmon, and Christopher Ré. Learning to compose domain-specific transformations for data augmentation. In Advances in neural information processing systems, pp. 3236–3246, 2017. + +Albert Reuther, Jeremy Kepner, Chansup Byun, Siddharth Samsi, William Arcand, David Bestor, Bill Bergeron, Vijay Gadepally, Michael Houle, Matthew Hubbell, et al. Interactive supercomputing on 40,000 cores for machine learning and data analysis. In 2018 IEEE High Performance extreme Computing Conference (HPEC), pp. 1–6. IEEE, 2018. + +Eric Sven Ristad and Peter N Yianilos. Learning string-edit distance. IEEE Transactions on Pattern Analysis and Machine Intelligence, 20(5):522–532, 1998. + +Murray Rosenblatt. Remarks on some nonparametric estimates of a density function. The Annals of Mathematical Statistics, pp. 832–837, 1956. + +David E. Rumelhart and James L. McClelland. On learning the past tenses of english verbs. Mechanisms of language aquisition, pp. 195–248, 1986. + +Jake Russin, Jason Jo, Randall C O’Reilly, and Yoshua Bengio. Compositional generalization in a deep seq2seq model by separating syntax and semantics. arXiv preprint arXiv:1904.09708, 2019. + +Adam Santoro, Sergey Bartunov, Matthew Botvinick, Daan Wierstra, and Timothy Lillicrap. Metalearning with memory-augmented neural networks. In International conference on machine learning, pp. 1842–1850, 2016. + +Abigail See, Peter J. Liu, and Christopher D. Manning. Get to the point: Summarization with pointer-generator networks. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics, pp. 1073–1083, 2017. + +Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks. In Advances in neural information processing systems, pp. 3104–3112, 2014. + +Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn, pp. 3–17. Springer, 1998. + +Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Ł ukasz Kaiser, and Illia Polosukhin. Attention is all you need. In I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), Advances in Neural Information Processing Systems, volume 30, 2017. + +Jane X. Wang, Zeb Kurth-Nelson, Hubert Soyer, Joel Z. Leibo, Dhruva Tirumala, Rémi Munos, Charles Blundell, Dharshan Kumaran, and Matt M. Botvinick. Learning to reinforcement learn. In CogSci, 2016. + +Gail Weiss, Yoav Goldberg, and Eran Yahav. On the practical computational power of finite precision RNNs for language recognition. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics, pp. 740–745, 2018. + +Jason Weston, Emily Dinan, and Alexander Miller. Retrieve and refine: Improved sequence generation models for dialogue. In Proceedings of the 2018 EMNLP Workshop SCAI: The 2nd International Workshop on Search-Oriented Conversational AI, pp. 87–92, 2018. + +Chunyang Xiao, Marc Dymetman, and Claire Gardent. Sequence-based structured prediction for semantic parsing. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics, pp. 1341–1350, 2016. + +Deniz Yuret. Knet: beginning deep learning with 100 lines of julia. In Machine Learning Systems Workshop at NIPS, volume 2016, pp. 5, 2016. + +# A MODEL ARCHITECTURE + +A.1 PROTOTYPE ENCODER + +We use a single layer BiLSTM network to encode $h _ { \mathrm { p r o t o } } ^ { k j }$ as follows: + +$$ +h _ { \mathrm { p r o t o } } ^ { k } = \mathrm { p r o j } ( \mathrm { B i L S T M } \left( W _ { e } d _ { k } ^ { \prime } \right) ) +$$ + +Morphology The hidden and embedding sizes are 1024. No dropout is applied. We project bidirectional embeddings to the hidden size with a linear projection. We concatenate the backward and the forward hidden states. + +SCAN We choose the hidden size as 512, and embedding size as 64. We apply 0.5 dropout to the input. We project hidden vectors in the attention mechanism. + +# A.2 DECODER + +The decoder is implemented by a single layer. In addition to the hidden state and memory cell, we also carry out a feed vector through time: + +$$ +\begin{array} { l l l } { { } } & { { \displaystyle h _ { \mathrm { p r e } } ^ { t } = \left[ h _ { \mathrm { o u t } } ^ { t } , ~ \sum _ { i } \alpha _ { \mathrm { o u t } } ^ { i } h _ { \mathrm { o u t } } ^ { i } , ~ \sum _ { j \leq | d _ { 1 } | } \alpha _ { \mathrm { p r o t o } } ^ { 1 j } h _ { \mathrm { p r o t o } } ^ { 1 j } , ~ \cdots ~ , ~ \sum _ { j \leq | d _ { n } | } \alpha _ { \mathrm { p r o t o } } ^ { n j } h _ { \mathrm { p r o t o } } ^ { n j } ~ \right] } } \\ { { } } & { { \mathrm { f e e d } ^ { t } = \mathrm { L i n e a r } _ { \mathrm { f e e d } } ( h _ { \mathrm { p r e } } ^ { t } ) } } \end{array} +$$ + +The input to the LSTM decoder at time step $t$ is the concatenation of the previous token’s representation, previous feed vector, and a latent $z$ vector (in the VAE model). + +$$ +\mathrm { i n p u t } ^ { t } = [ W _ { d } d ^ { t - 1 } , f e e d ^ { t - 1 } , z ] +$$ + +Morphology We use a single-layer LSTM network with a hidden size of 1024, and an embedding size of 1024. We initialize the decoder hidden states with the final hidden states of the BiLSTM encoder. feed is the same size as the hidden state. No dropout is applied in the decoder. Output calculations are provided in the original paper in equation Eq. 16. The query vector for the attentions is identically the hidden state: + +$$ +{ \sf q u e r y } ^ { t } = h _ { \mathrm { o u t } } ^ { t } +$$ + +Further details of the attention are provided in Appendix A.3. + +SCAN The decoder is implemented by a single layer LSTM network with hidden size of 512, and embedding size of 64. The embedding parameters are shared with the encoder. Here the size of the feed vector is equal to embedding size, 64. + +We have no self-attention for this decoder in the feed vector. There is an attention projection with dimension is 128. The details of the attention mechanism given in Appendix A.3. Finally, we use transpose of the embedding matrix to project feed to the output space. + +$$ +\mathrm { o u t p u t } ^ { t } = W _ { e } ^ { \top } \mathrm { f e e d } ^ { t } +$$ + +outputt contains unnormalized scores before the final softmax layer. We apply 0.7 dropout to $h _ { o u t } ^ { t }$ during both training and test. The copy mechanism will be further described in Appendix A.3. + +The input to the LSTM decoder is the same as Eq. 25 except the decoder embedding matrix, $W _ { d }$ , shares parameters with encoder embedding matrix $W _ { e }$ . We applied 0.5 dropout to the embeddings $d _ { t - 1 }$ . + +The query vector for the attention is calculated by: + +$$ +{ \displaystyle \mathrm { q u e r y } ^ { t } } = [ h _ { \mathrm { o u t } } ^ { t } , \mathrm { i n p u t } ^ { t } ] +$$ + +# A.3 ATTENTION AND COPYING + +We use the attention mechanism described in Vaswani et al. (2017) with slight modifications. + +Morphology We use a linear transformation for key while retaining an embedding size of 1024, and leave query and value transformations as the identity. We do not normalize by the square root of the attention dimension. The query vector is described in the decoder Appendix A.2. The copy mechanism for the morphology task is explained in the paper in detail. + +SCAN We use the nonlinear tanh transformation for key, query and value. That the attention scores are calculated separately for each prototype using different parameters as well as the normalization i.e. obtaining $\alpha$ ’s is performed separately for each prototype. + +The copy mechanism for this task is slightly different and follows Gu et al. (2016) We normalize prototype attention scores and output scores jointly. Let $\bar { \alpha } _ { i }$ represent attention weights for each prototype sequence before normalization. Then, we concatenate them to the output vector in Eq. 27. + +$$ +\mathrm { f i n a l } ^ { t } = [ \mathrm { o u t p u t } ^ { t } , \bar { \alpha } _ { 1 } , . . . , \bar { \alpha } _ { n } ] +$$ + +We obtain a probability vector via a final softmax layer: + +$$ +{ \mathrm { p r o b } } ^ { t } = \operatorname { s o f t m a x } ( f i n a l ^ { t } ) +$$ + +That size of this probability vector is vocabulary size plus the total length all prototypes. We then project this into the output space by: + +$$ +p ^ { t } ( w ) = \mathtt { p r o b } ^ { t } ( \mathtt { i n d i c e s } ( w ) ) +$$ + +where indices finds all corresponding scores in probt for token $w$ where there might be more than one element for a given $w$ . This is because one score can come from the outputt region, and others from the prototype regions of $p r o b ^ { t }$ . During training we applied 0.5 dropout to the indices from outputt. Thus, the model is encouraged to copy more. + +# B NEIGHBORHOODS AND SAMPLING + +In the Eq. 20 and Eq. 21 we expressed the generic form of neighborhood sets. Here we provide the implementation details. + +SCAN In the jump split, we use long-short recombination with $\delta = 0 . 5$ . In around right we use long-long recombination with $\delta = 0 . 5$ , and construct $\Omega$ so that the first and second prototypes to differ by a single token. We randomly pick $k < 1 0 \times 3$ (10 different first prototypes, and 3 different second prototypes for each of them) prototype pairs that satisfy these conditions. For the recomb- $^ { l }$ experiment, we use the same neighborhood setup except but consider only the $k < 1 0$ first prototypes. + +Sampling In the jump split, we used beam search with beam size 4 in the decoder. We calculate the mean and standard deviation over the lengths of both among the first $d _ { 1 } ^ { \prime }$ and the second $d _ { 2 } ^ { \prime }$ prototypes in the train set. Then, during the sampling, we expect the first and second prototypes whose length is shorter than their respective mean plus standard deviation. This decision is based on the fact that the part of the $\Omega$ that the model is exposed to is determined by the empirical distribution, $\hat { \Omega }$ , that arises from training neighborhoods. When sampling, we try to pick prototypes from a distribution that are close to properties of that empirical distribution. In around right, we use temperature sampling with $T = 0 . 4$ . If a model cannot sample the expected number of both novel and unique samples within a reasonable time, we increase temperature $T$ . + +Morphology We use long-long recombination, as explained in the paper, with slight modifications which leverage the structure of the task. We set $\Omega$ as: + +$$ +\begin{array} { r } { \Omega = \{ ( d _ { 1 } , d _ { 2 } ) | d _ { \mathrm { 1 t a g s } } ^ { \prime } \neq d _ { 2 t a g s } ^ { \prime } , ( d _ { \mathrm { t a g s } } \backslash d _ { \mathrm { 1 t a g s } } ^ { \prime } \backslash d _ { \mathrm { 2 t a g s } } ^ { \prime } ) = 0 \} } \end{array} +$$ + +For the recomb-1 model ${ \mathcal { N } } ( d )$ utilizes tag similarity, lemma similarity and is constructed using a score function: + +$$ +\mathrm { s c o r e } _ { 1 } ( d , d _ { 1 } ^ { \prime } ) = \left( | d _ { \mathrm { t a g s } } \Delta d _ { \mathrm { 1 t a g s } } ^ { \prime } | , \mathrm { j a c c a r d } ( d _ { \mathrm { l e m m a } } , d _ { \mathrm { 1 l e m m a } } ^ { \prime } ) \right) +$$ + +Given $d$ , we sort training examples by using $s c o r e _ { 1 }$ as the comparison key and pick the four smallest neighbors (using a lexicographic sort) to form ${ \mathcal { N } } ( d )$ . + +For the recomb-2 model, ${ \mathcal { N } } ( d )$ uses the same score function for the first prototype as in the recomb-1 case. The second prototype is selected using: + +$$ +\mathrm { s c o r e } _ { 2 } ( d , d _ { 1 } ^ { \prime } , d _ { 2 } ^ { \prime } ) = \left( d _ { \mathrm { t a g s } } \neq d _ { \mathrm { 2 t a g s } } ^ { \prime } , | d _ { \mathrm { 1 t a g s } } ^ { \prime } \Delta d _ { \mathrm { 2 t a g s } } ^ { \prime } | \right) +$$ + +Given $x$ , and a scored first prototype, we do one more sort over training examples by using ${ \mathrm { s c o r e } } _ { 2 }$ as the comparison key. Then we pick first four neighbors for ${ \mathcal { N } } ( d )$ . + +Sampling We use a mix strategy of temperature sampling with $T = 0 . 5$ and greedy sampling in which we use the former for $d _ { \mathrm { i n p u t } }$ and the latter for $d _ { \mathrm { o u t p u t } }$ . We sample 180 unique and novel examples. + +# C GENERATIVE MODEL TRAINING + +Morphology All of the hyper parameters mentioned here are optimized by a grid search on the Spanish validation set. We train our models for 25 epochs5. We use Adam optimizer with learning rate 0.0001. The generative model is trained on morphological reinflection order $( d _ { \mathrm { l e m m a } } d _ { \mathrm { t a g s } } \triangleright d _ { \mathrm { i n f l e c t i o n } } )$ from left to right, then the samples from the model are reordered for morphological analysis task $( d _ { \mathrm { i n f l e c t i o n } } \triangleright d _ { \mathrm { l e m m a } } d _ { \mathrm { t a g s } } )$ . + +SCAN We use different number of epochs for jump and around right splits where all models are trained for 8 epochs in the former and 3 epochs in the latter. We use Adam optimizer with learning rate 0.002, and gradient norm clip with 1.0. + +# D SEQ2SEQ BASELINE MODEL + +After generating novel samples, we either concatenate them to the training data (in morphology), or sample training batches from a mixture of the original training data and the augmented data. Our conditional model is the same as the generative model used in morphology experiments, described in detail in the paper body, replacing $d _ { \mathrm { p r o t o } }$ with $x$ , and $d$ with $y$ . + +Every conditional model’s size is the same as the corresponding generative model which was used for augmentation. This is to ensure that the conditional model and the generative model have the same capacity. We train conditional models for 150 epochs for SCAN and we used augmentation ratios of $p _ { \mathrm { a u g } } = 0 . 0 1$ and $p _ { \mathrm { a u g } } = 0 . 2$ in jump and around right, respectively. For morphology, we train the conditional models for 100 epochs, and we use all generated examples for augmentation. + +# E DIRECT INFERENCE + +To adapt the prototype-based model for conditional prediction, we condition the neighborhood function on the input $x$ rather than the full datum $d$ , as in Hashimoto et al. (2018). Candidate $y \mathrm { s }$ are then sampled from the generative model given the observed $x$ while marginalizing over retrieved prototypes. Finally, we re-rank these candidates via Eq. 7 and output the highest-scoring candidate. + +# F VAE MODEL + +Prior $p ( z )$ : We use the same prior as Guu et al. (2018) given in Eq. 31. In this prior, $z$ is defined by a norm and direction vector. The norm is sampled from the uniform distribution between zero and a maximum possible norm $\mu _ { \mathrm { m a x } } ~ = ~ 1 0 . 0$ , and the direction is sampled uniformly from the unit hypersphere. This sampling procedure corresponds to a von Mises–Fisher distribution with concentration parameter zero. + +$$ +z = z _ { \mathrm { n o r m } } \cdot z _ { \mathrm { d i r } } \quad w h e r e \quad z _ { \mathrm { n o r m } } \sim U ( 0 , \mu _ { \mathrm { m a x } } ) , \quad z _ { \mathrm { d i r } } \sim \mathrm { v m F } ( \vec { u } , 0 ) +$$ + +For SCAN, the size of $z$ is 32, and for morphology the size of $z$ is 2. + +Proposal Network $\boldsymbol { q } ( \boldsymbol { z } | \boldsymbol { d } , d _ { 1 : n } )$ : Similarly to the prior, the posterior network decomposes $z$ into its norm and direction vectors. The norm vector is sampled from a uniform distribution at $( | \mu | , \operatorname* { m i n } ( | \mu | +$ $\epsilon , \mu _ { \mathrm { m a x } } )$ ), and the direction is sampled from the von Mises–Fisher distribution $\operatorname { v m F } ( \mu , \kappa )$ where $\kappa = 2 5 , \epsilon = 1 . 0$ . + +$$ +\begin{array} { r l } & { h _ { \mathrm { f i n a l } } = \bigl ( \overline { { h } } _ { \mathrm { p r o t o } } \bigr ) _ { \mathrm { s t a r t } } + \bigl ( \overline { { h } } _ { \mathrm { p r o t o } } \bigr ) _ { e n d } } \\ & { \qquad \mu = \mathrm { t a n h } \bigl ( W _ { z } \left[ h _ { d \mathrm { f i n a l } } , h _ { q \mathrm { f i n a l } } \right] \bigr ) } \\ & { z _ { \mathrm { n o r m } } \sim U ( | \mu | , m i n ( | \mu | + \epsilon , \mu _ { \mathrm { m a x } } ) \bigr ) } \\ & { \qquad z _ { \mathrm { d i r } } \sim v m F ( \mu , \kappa ) } \\ & { \qquad z = z _ { \mathrm { n o r m } } \cdot z _ { \mathrm { d i r } } } \end{array} +$$ + +# G ADDITIONAL RESULTS + +# G.1 MORPHOLOGY RESULTS + +In the paper, Table 2 shows morphology results for (non-VAE) models with 8 hints (past- and futuretense examples in the training set). Here, we provide additional results for different hint set sizes and model variants. + +# G.1.1 HINTS=4 + +Table 3: Exact Match Accuracy + +
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.078 ±0.0290.63 ±0.090.107 ±0.0340.532 ±0.0290.067 ±0.0200.57 ±0.04
geca0.072 ±0.0190.63 ±0.050.039 ±0.0110.496 ±0.0270.052 ±0.0140.54 ±0.08
geca + resampling0.16 ±0.040.65 ±0.050.27 ±0.080.52 ±0.040.12 ±0.040.554 ±0.029
learned aug0.063 ±0.0120.65 ±0.040.066 ±0.0340.52 ±0.040.074 ±0.0210.57 ±0.04
learned aug + resampling0.098 ±0.0210.65 ±0.050.29 ±0.060.480 ±0.0350.092 ±0.0290.54 ±0.06
recomb-10.063 ±0.0170.674 ±0.0210.061 ±0.0170.520 ±0.0280.055 ±0.0210.554 ±0.030
recomb-1 + resampling0.13 ±0.040.64 ±0.040.29 ±0.040.48 ±0.040.15 ±0.040.52 ±0.06
recomb-20.061 ±0.0100.656 ±0.0300.08 ±0.060.524 ±0.0260.073 ±0.0190.58 ±0.05
recomb-2+resampling0.108 ±0.0210.64 ±0.050.18 ±0.040.542 ±0.0350.067 ±0.0260.55 ±0.06
+ +Table 4: F1 Accuracy + +
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.609 ±0.0250.873 ±0.0340.746 ±0.0130.897 ±0.0050.561 ±0.0320.867 ±0.015
geca0.606 ±0.0190.871 ±0.0170.722 ±0.0180.884 ±0.0070.565 ±0.0340.856 ±0.028
geca + resampling0.675 ±0.0170.870 ±0.0220.802 ±0.0230.892 ±0.0100.65 ±0.050.850 ±0.019
learned aug0.597 ±0.0210.871 ±0.0240.737 ±0.0100.897 ±0.0110.58 ±0.040.853 ±0.026
learned aug +resampling0.646 ±0.0070.872 ±0.0280.826 ±0.0130.887 ±0.0100.637 ±0.0320.835 ±0.034
recomb-10.596 ±0.0200.884 ±0.0100.727 ±0.0120.893 ±0.0100.557 ±0.0320.868 ±0.010
recomb-1 + resampling0.663 ±0.0290.874 ±0.0140.812 ±0.0170.886 ±0.0110.67 ±0.040.84 ±0.04
recomb-20.598 ±0.0190.874 ±0.0070.730 ±0.0230.894 ±0.0080.581 ±0.0350.865 ±0.024
recomb-2 + resampling0.658 ±0.0120.872 ±0.0150.778 ±0.0110.897 ±0.0070.609 ±0.0320.850 ±0.029
+ +# G.1.2 HINTS=8 + +Main 8-prototype $F _ { 1 }$ results are provided in the body of the paper. Here we provide exact match results and an extra set of comparisons to the VAE model. + +Table 5: Exact Match Accuracy + +
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.151 ±0.0170.65 ±0.040.15 ±0.040.554 ±0.0340.23 ±0.060.55 ±0.04
geca0.136 ±0.0300.638 ±0.0260.15 ±0.050.55 ±0.060.21 ±0.050.550 ±0.032
geca +resampling0.249 ±0.0340.64 ±0.040.25 ±0.050.532 ±0.0330.27 ±0.070.524 ±0.026
learned aug0.163 ±0.0300.652 ±0.0330.18 ±0.050.560 ±0.0260.23 ±0.040.548 ±0.019
learned aug + resampling0.181 ±0.0260.590 ±0.0320.34 ±0.060.552 ±0.0290.24 ±0.040.53 ±0.05
recomb-10.155 ±0.0180.628 ±0.0200.161 ±0.0170.560 ±0.0250.22 ±0.040.538 ±0.025
recomb-1 +resampling0.218 ±0.0320.616 ±0.0340.35 ±0.040.53 ±0.040.30 ±0.040.52 ±0.04
recomb-20.131 ±0.0280.634 ±0.0270.19 ±0.110.56 ±0.040.24 ±0.050.528 ±0.032
recomb-2 +resampling0.203 ±0.0350.63 ±0.050.27 ±0.070.552 ±0.0310.25 ±0.050.54 ±0.06
+ +Table 6: $F _ { 1 }$ Accuracy (VAE model) + +
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
learned aug + resampling +vae0.689 ±0.0180.859 ±0.0100.845 ±0.0140.896 ±0.0110.730 ±0.0320.850 ±0.015
recomb-1 + resampling +vae0.717 ±0.0140.870 ±0.0070.843 ±0.0140.898 ±0.0100.736 ±0.0300.859 ±0.031
recomb-2 + resampling +vae0.710 ±0.0080.865 ±0.0120.824 ±0.0150.896 ±0.0110.751 ±0.0270.848 ±0.027
+ +# G.1.3 HINTS=16 + +Table 7: Exact Match Accuracy + +
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.27 ±0.050.65 ±0.040.28 ±0.060.544 ±0.0290.40 ±0.040.614 ±0.032
geca0.26 ±0.060.65 ±0.060.26 ±0.050.530 ±0.0280.37 ±0.050.570 ±0.035
geca +resampling0.34 ±0.050.63 ±0.040.32 ±0.070.506 ±0.0340.42 ±0.050.590 ±0.035
learned aug0.25 ±0.040.65 ±0.040.32 ±0.060.538 ±0.0280.39 ±0.040.58 ±0.05
learned aug +resampling0.230 ±0.0350.61 ±0.040.42 ±0.060.54 ±0.040.42 ±0.050.578 ±0.027
recomb-10.27 ±0.050.63 ±0.060.32 ±0.050.55 ±0.040.35 ±0.060.60 ±0.05
recomb-1 +resampling0.28 ±0.040.61 ±0.070.418 ±0.0350.548 ±0.0230.35 ±0.060.56 ±0.04
recomb-20.22 ±0.060.62 ±0.070.28 ±0.040.56 ±0.040.40 ±0.060.596 ±0.024
recomb-2 +resampling0.262 ±0.0250.61 ±0.070.405 ±0.0280.53 ±0.040.43 ±0.060.61 ±0.04
+ +Table 8: F1 Accuracy + +
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.733 ±0.0140.881 ±0.0120.811 ±0.0180.893 ±0.0110.750 ±0.0260.875 ±0.021
geca0.736 ±0.0190.884 ±0.0180.800 ±0.0240.889 ±0.0120.74 ±0.040.863 ±0.019
geca + resampling0.782 ±0.0240.867 ±0.0120.830 ±0.0210.885 ±0.0130.794 ±0.0320.865 ±0.018
learned aug0.738 ±0.0200.877 ±0.0080.816 ±0.0240.893 ±0.0120.752 ±0.0240.868 ±0.020
learned aug + resampling0.745 ±0.0190.870 ±0.0120.866 ±0.0160.894 ±0.0130.787 ±0.0310.863 ±0.021
recomb-10.738 ±0.0210.877 ±0.0190.820 ±0.0180.896 ±0.0140.735 ±0.0330.874 ±0.026
recomb-1 + resampling0.770 ±0.0200.867 ±0.0230.872 ±0.0050.892 ±0.0100.778 ±0.0240.861 ±0.022
recomb-20.716 ±0.0190.876 ±0.0220.815 ±0.0170.897 ±0.0160.752 ±0.0340.873 ±0.017
recomb-2+resampling0.765 ±0.0230.868 ±0.0210.856 ±0.0150.888 ±0.0160.808 ±0.0180.868 ±0.027
+ +# G.2 SIGNIFICANCE TESTS + +Tables 9, 10 and 11 sho the $p$ -values for pairwise differences between the baseline and prototype-based models + +Table 9: Turkish language $p$ -values for paired $t$ -test in $\mathrm { P S T + F U T }$ tenses for the average $F _ { 1 }$ (micro) scores over several runs without Bonferronni correction. + +
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.259314
learned aug0.3525060.802058
recomb-10.7075340.1292440.187597
recomb-20.2335780.02305540.03317940.363375
geca + resampling1.0125e-163.7044e-124.07678e-156.04788e-171.71167e-19
leamed aug + resampling8.00807e-101.37553e-076.51548e-086.35314e-113.76501e-130.0167999
recomb-1 + resampling3.85877e-261.60117e-202.76421e-226.41228e-262.07776e-260.01093651.948e-06
recomb-2 + resampling2.56689e-153.4083e-132.08177e-142.92113e-181.79928e-190.9818860.01904620.0101878
+ +Table 10: Spanish language $p$ -values for paired $t$ -test in PST+FUT tenses for the average $F _ { 1 }$ (micro) scores over several runs without Bonferronni correction. + +
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.394748
learned aug0.7611290.635337
recomb-10.4286060.9748510.620601
recomb-20.1997680.6019980.3174940.625078
geca + resampling2.27478e-256.11513e-293.30904e-241.38242e-242.19894e-27
learned aug + resampling1.09224e-109.34816e-131.40474e-114.70624e-134.78418e-140.000137083
recomb-1 + resampling4.00039e-278.88347e-304.06546e-251.2159e-287.2465e-290.4957341.35727e-05
recomb-2 + resampling1.17709e-171.29429e-214.07864e-181.12332e-191.66638e-210.3131430.009254770.103819
+ +Table 11: Swahili language $p$ -values for paired $t$ -test in $\mathrm { P S T + F U T }$ tenses for the average $F _ { 1 }$ (micro) scores over several runs without Bonferronni correction. + +
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.606002
learned aug0.0008571310.00384601
recomb-16.27581e-050.001013510.769589
recomb-21.75947e-050.0002075070.2632420.402064
geca + resampling2.58696e-218.85433e-194.57259e-111.33673e-111.87968e-08
learned aug + resampling7.09377e-531.46895e-472.3846e-386.32242e-382.09274e-303.26321e-10
recomb-1 + resampling1.66361e-581.28557e-549.46035e-442.05703e-459.46848e-371.60241e-170.0749463
recomb-2 +resampling2.16531e-313.52334e-257.80047e-201.08762e-191.26218e-150.07566461.52594e-062.51776e-11
+ +# G.3 GENERATED SAMPLES + +All samples are randomly selected unless otherwise indicated. + +# G.3.1 SCAN + +In Table 12, we present three test samples from the SCAN task along with the predictions by direct inference and the conditional model trained on the augmented data with recomb-2. Note that the augmentation procedure was able to create novel samples whose input $( x )$ happens to be in the test set (Examples 1 and 3) while $y$ may or may not be correct (Example 1). + +
Example 1 (jump)Example 2 (jump)Example 3 (around right)
Input (𝑥= )walk twice after jump twicerun right after jump twice jump left and jump around right
True label (y) in augmented datasetJUMP JUMP WALK WALK JUMP JUMP JUMP WALKJUMP JUMP RTURN RUN (not generated)TURN LEFT JUMP'TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN LEFT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP
Predicted @
├ direct inference Lrecomb-2JUMP JUMP JUMP WALK JUMP JUMP WALK WALKLOOK LOOK RTURN JUMP JUMP JUMP RTURN RUNTURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP
+ +Table 12: Comparison of generative and unconditional model predictions with and without data augmentation. The conditional model trained on augmented data (final row) is able to compensate for errors in data augmentation (Example 1) and generalize to examples never generated by the data augmentation procedure (Example 2), and often times if a sample is correctly created by the augmentation procedure, the conditional model also gets it right (Example 3). + +Below are a set of samples from the learned aug (basic) model for SCAN dataset’s jump and around right splits, in order: + +IN: run opposite and walk opposite right twice OUT: RUN TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN RIGHT WALK +IN: look around right thrice after run around thrice thrice OUT: TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK +IN: look opposite right twice and walk around twice OUT: TURN RIGHT TURN RIGHT LOOK TURN RIGHT TURN RIGHT LOOK TURN RIGHT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK +IN: run opposite and thrice OUT: RUN TURN LEFT RUN RUN + +IN: walk opposite right thrice turn turn right thrice OUT: TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT WALK IN: jump opposite right twice jump look around left OUT: TURN RIGHT TURN RIGHT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT LOOK TURN LEFT TURN LEFT LOOK + +IN: walk around left thrice after jump left left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK + +IN: run opposite right twice walk run left thrice OUT: TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN RIGHT WALK TURN LEFT TURN LEFT RUN TURN LEFT TURN LEFT RUN + +Below are a set of samples from the recomb-1 model for SCAN dataset’s around right split. Note that there were no samples with rare tags generated by the model for the jump split: + +IN: run around right after walk around left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT RUN TURN LEFT RUN TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK +IN: look around right after jump around left OUT: TURN LEFT LOOK TURN LEFT JUMP TURN LEFT LOOK TURN LEFT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP +IN: look around right and jump around left OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP +IN: walk around right and turn right twice OUT: TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT TURN RIGHT + +Below are 4 samples from the recomb-2 model for each of SCAN dataset’s jump and around right splits, respectively: + +IN: jump opposite left thrice after jump opposite left thrice OUT: TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT WALK TURN LEFT TURN LEFT WALK TURN LEFT TURN LEFT WALK +IN: jump left thrice and jump left thrice OUT: TURN LEFT LOOK TURN LEFT LOOK TURN LEFT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP IN: jump opposite right and turn around left OUT: TURN RIGHT TURN RIGHT JUMP +TURN LEFT TURN LEFT TURN LEFT TURN LEFT +IN: turn around left and jump around left OUT: TURN LEFT TURN LEFT TURN LEFT TURN LEFT TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP IN: look right twice after run around right OUT: TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK +IN: turn right twice after look around right OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT TURN RIGHT +IN: look twice and run around right OUT: LOOK LOOK TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN +IN: walk opposite right twice and jump around right OUT: TURN RIGHT TURN RIGHT WALK TURN RIGHT TURN RIGHT WALK TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP + +# G.3.2 MORPHOLOGY + +Below are a set of samples from the learned aug (basic) model in SIGMORPHON format. + +şahmiçe şahmiçende N;LOC;SG;PSS2S +karadan havaya füze karadan havaya füzel N;DAT;PL;PSS3P +ernek erneklerine N;DAT;PL;PSS3P +kiler kilerime N;DAT;SG;PSS1S +mahlep mahlebimizi N;ACC;SG;PSS1P +süzmek süzerler V;IND;3;PL;PRS;POS;DECL +âlap âlaps N;LGSPEC1;3S;SG;PRS +jöle jöleleri N;ACC;PL + +envejecerse envejeciéndose V.CVB;PRS colaxar colaxa V;IND;PRS;3;SG pergedrer no pergedremos V;NEG;IMP;1;PL mantear no mantees V;NEG;IMP;2;SG flaguear no flagueen V;NEG;IMP;3;PL malacostar malacostaría V;COND;3;SG + +desinstar desinse V;POS;IMP;3;SG concretizar no concretices V;NEG;IMP;2;SG + +Below are a set of samples from the learned aug (basic) $^ +$ resampling model. + +şaşırmak şaşırmıyor musun? V;IND;2;PL;PST;PROG;POS;INTR ayılmak ayılmaya V;IND;1;SG;PST;DECL pleşmek pleşmiyor muyuz? V;IND;1;PL;PST;PROG;NEG;INTR imciyetmek imciyetmezdeğiz V;IND;1;PL;FUT;NEG;DECL kuvaşmak kuvaşmayacağız V;IND;1;PL;FUT;NEG;DECL yermek yermeyeceğiz V;IND;1;PL;FUT;NEG;DECL yarıtmak yarıtmayacağız V;IND;1;PL;FUT;NEG;DECL kelimek kelimeyeceğiz V;IND;1;PL;FUT;NEG;DECL + +trasescar trasescáis V;IND;PST;2;PL;IPFV tronar tronar V;IND;FUT;1;SG terzcalminar terzcalminan V;IND;PST;3;PL;IPFV esubronizar esubronizamos V;IND;PST;1;PL;IPFV urdir urdiremos V;IND;FUT;1;PL conder conderemos V;IND;FUT;1;PL florear florearían V;IND;PST;3;PL;LGSPEC1;SG sabrordar sabrordamos V;IND;PST;1;PL;IPFV + +Below are a set of samples from the recomb- $l +$ resampling model (the best performing model in Table 2). Here we additionally annotate samples with error categories. + +kovulmak kovulmaz mısınız V;IND;2;PL;FUT;NEG;INTR (Inflection and tags don’t match.) düşünmek düşündüler V;IND;3;PL;PST;POS;DECL (Correct and novel.) sütmek sütmez miyiz? V;IND;2;SG;FUT;NEG;INTR (Inflection and tags don’t match.) bakmak bakmayacak mıyım? V;IND;1;PL;FUT;NEG;INTR (Inflection and tags don’t match) döndürmek döndürecek misiniz? V;IND;2;PL;FUT;POS;INTR (Correct and novel.) türkçeleştirtmek türkçeleştirtiyor m V;IND;2;PL;PST;PROG;NEG;INTR (Wrong inflection, novel tag.) çalmak çalmayız V;IND;2;PL;FUT;POS;DECL (Inflection and tags don’t match.) üsürmek üsürmezsin V;IND;2;SG;PST;NEG;DECL (Inflection and tags don’t match.) + +duplicar duplicaráis V;IND;FUT;2;PL (Correct and novel) +efundar efundan V;SBJV;FUT;3;PL (Inflection and tags don’t match) +deshumanizar deshumanicas V;SBJV;PST;2;SG (Inplausible inflection.) +emular emulares V;SBJV;FUT;2;SG (Correct and also in train set.) +languidecer languidecíamos V;IND;PST;1;SG;IPFV (Inflection and tags don’t match) +nominar nominamos V;SBJV;FUT;1;PL (Novel tags, incorrect inflection.) +finciar finciare V;SBJV;FUT;1;SG (Correct and novel.) +abastar abasto V;IND;PST;1;SG (Inflection and tags don’t match) + +# G.4 ATTENTION HEATMAP + +Here we provide a visualization copy and attention mechanism in recomb-2 model for SCAN experiments. + +![](images/010da7139c478be872214ea2c500b70f5256aa5879a8b45e8f401cb24f16a4cc.jpg) +Figure 3: Generation of a sample. We plot normalized output scores on the left, and attention weights to the different prototypes on the right. The prototypes are on the y axes. The model is recomb-2 model trained on SCAN jump split. + +# H COMPUTE + +We use a single 32GB NVIDIA V100 Volta GPU for each experiment. For every experiment, the whole pipeline which consists of training of the generative model, sampling and training of the conditional model takes less than an hour. \ No newline at end of file diff --git a/parse/train/PS3IMnScugk/PS3IMnScugk_content_list.json b/parse/train/PS3IMnScugk/PS3IMnScugk_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..2e7a50f166ae5949c16230425d3e55c1e76a318c --- /dev/null +++ b/parse/train/PS3IMnScugk/PS3IMnScugk_content_list.json @@ -0,0 +1,3104 @@ +[ + { + "type": "text", + "text": "LEARNING TO RECOMBINE AND RESAMPLE DATA FOR COMPOSITIONAL GENERALIZATION ", + "text_level": 1, + "bbox": [ + 174, + 98, + 823, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ekin Akyürek MIT CSAIL akyurek@mit.edu ", + "bbox": [ + 184, + 170, + 308, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Afra Feyza Akyürek Boston University akyurek@bu.edu ", + "bbox": [ + 400, + 170, + 544, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Jacob Andreas MIT CSAIL jda@mit.edu ", + "bbox": [ + 633, + 170, + 740, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 452, + 250, + 544, + 263 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Flexible neural sequence models outperform grammar- and automaton-based counterparts on a variety of tasks. However, neural models perform poorly in settings requiring compositional generalization beyond the training data—particularly to rare or unseen subsequences. Past work has found symbolic scaffolding (e.g. grammars or automata) essential in these settings. We describe R&R, a learned data augmentation scheme that enables a large category of compositional generalizations without appeal to latent symbolic structure. R&R has two components: recombination of original training examples via a prototype-based generative model and resampling of generated examples to encourage extrapolation. Training an ordinary neural sequence model on a dataset augmented with recombined and resampled examples significantly improves generalization in two language processing problems—instruction following (SCAN) and morphological analysis (SIGMORPHON 2018)—where R&R enables learning of new constructions and tenses from as few as eight initial examples. ", + "bbox": [ + 233, + 281, + 766, + 474 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 496, + 336, + 512 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "How can we build machine learning models with the ability to learn new concepts in context from little data? Human language learners acquire new word meanings from a single exposure (Carey & Bartlett, 1978), and immediately incorporate words and their meanings productively and compositionally into larger linguistic and conceptual systems (Berko, 1958; Piantadosi & Aslin, 2016). Despite the remarkable success of neural network models on many learning problems in recent years—including one-shot learning of classifiers and policies (Santoro et al., 2016; Wang et al., 2016)—this kind of few-shot learning of composable concepts remains beyond the reach of standard neural models in both diagnostic and naturalistic settings (Lake & Baroni, 2018; Bahdanau et al., 2019a). ", + "bbox": [ + 174, + 529, + 549, + 722 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Consider the few-shot morphology learning problem shown in Fig. 1, in which a learner must predict various linguistic features (e.g. 3rd person, SinGular, PRESent tense) from word forms, with only a small number of examples of the PAST tense in the training set. Neural sequenceto-sequence models (e.g. Bahdanau et al., 2015) trained on this kind of imbalanced data fail to predict past-tense tags on held-out inputs of any kind (Section 5). Previous attempts to address this and related shortcomings in neural models have focused on explicitly encouraging rule-like behavior by e.g. modeling data with symbolic grammars (Jia & Liang, 2016; Xiao et al., 2016; Cai et al., 2017) or applying rule-based data augmentation (Andreas, 2020). These procedures involve highly task-specific models or generative assumptions, preventing them from generalizing effectively to less structured problems that combine rule-like and exceptional behavior. More fundamentally, they fail to answer the question of whether explicit rules are necessary for compositional inductive bias, and whether it is possible to obtain “rule-like” inductive bias without appeal to an underlying symbolic generative process. ", + "bbox": [ + 174, + 729, + 549, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/90e5a910bec2b9f29ac8fa294300ce33c5ee9693859101e6bbd4ea305a8d9aec.jpg", + "image_caption": [ + "Figure 1: We first train a generative model to reconstruct training pairs $( x \\triangleright y )$ by constructing them from other training pairs (a). We then perform data augmentation by sampling from this model, preferentially generating samples in which $_ y$ contains rare tokens or substructures (b). Dashed boxes show prediction targets. Conditional models trained on the augmented dataset accurately predict outputs $_ y$ from new inputs $_ x$ requiring compositional generalization (c). " + ], + "image_footnote": [], + "bbox": [ + 566, + 535, + 820, + 761 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 159 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This paper describes a procedure for improving few-shot compositional generalization in neural sequence models without symbolic scaffolding. Our key insight is that even fixed, imbalanced training datasets provide a rich source of supervision for few-shot learning of concepts and composition rules. In particular, we propose a new class of prototype-based neural sequence models (c.f. Gu et al., 2018) that can be directly trained to perform the kinds of generalization exhibited in Fig. 1 by explicitly recombining fragments of training examples to reconstruct other examples. Even when these prototype-based models are not effective as general-purpose predictors, we can resample their outputs to select high-quality synthetic examples of rare phenomena. Ordinary neural sequence models may then be trained on datasets augmented with these synthetic examples, distilling the learned regularities into more flexible predictors. This procedure, which we abbreviate R&R, promotes efficient generalization in both challenging synthetic sequence modeling tasks (Lake & Baroni, 2018) and morphological analysis in multiple natural languages (Cotterell et al., 2018). ", + "bbox": [ + 174, + 166, + 825, + 333 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "By directly optimizing for the kinds of generalization that symbolic representations are supposed to support, we can bypass the need for symbolic representations themselves: R&R gives performance comparable to or better than state-of-the-art neuro-symbolic approaches on tests of compositional generalization. Our results suggest that some failures of systematicity in neural models can be explained by simpler structural constraints on data distributions and corrected with weaker inductive bias than previously described.1 ", + "bbox": [ + 174, + 340, + 825, + 424 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND AND RELATED WORK ", + "text_level": 1, + "bbox": [ + 174, + 444, + 506, + 459 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Compositional generalization Systematic compositionality—the capacity to identify rule-like regularities from limited data and generalize these rules to novel situations—is an essential feature of human reasoning (Fodor et al., 1988). While details vary, a common feature of existing attempts to formalize systematicity in sequence modeling problems (e.g. Gordon et al., 2020) is the intuition that learners should make accurate predictions in situations featuring novel combinations of previously observed input or output subsequences. For example, learners should generalize from actions seen in isolation to more complex commands involving those actions (Lake et al., 2019), and from relations of the form $\\boldsymbol { \\Gamma } ( \\mathsf { a } , \\mathsf { b } )$ to ${ \\sf r } ( { \\sf b } , \\sf a )$ (Keysers et al., 2020; Bahdanau et al., 2019b). In machine learning, previous studies have found that standard neural architectures fail to generalize systematically even when they achieve high in-distribution accuracy in a variety of settings (Lake & Baroni, 2018; Bastings et al., 2018; Johnson et al., 2017). ", + "bbox": [ + 174, + 474, + 825, + 628 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Data augmentation and resampling Learning to predict sequential outputs with rare or novel subsequences is related to the widely studied problem of class imbalance in classification problems. There, undersampling of the majority class or oversampling of the minority class has been found to improve the quality of predictions for rare phenomena (Japkowicz et al., 2000). This can be combined with targeted data augmentation with synthetic examples of the minority class (Chawla et al., 2002). Generically, given a training dataset $\\mathcal { D }$ , learning with class resampling and data augmentation involves defining an augmentation distribution $\\tilde { p ( \\boldsymbol { x } , \\boldsymbol { y } \\mid \\boldsymbol { D } ) }$ and sample weighting function $u ( x , y )$ and maximizing a training objective of the form: ", + "bbox": [ + 173, + 635, + 826, + 746 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/7e12847269d0964d0b1efc0f572e0991fd11c3929442b9ffdc76e2d562fa87b5.jpg", + "text": "$$\n\\begin{array} { r } { \\mathcal { L } ( \\theta ) = \\underbrace { \\frac { 1 } { | \\mathcal { D } | } \\sum _ { x \\in \\mathcal { D } } \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { O r i g i n a l t r a i n i n g d a t a } } + \\underbrace { { \\mathbb { E } } _ { ( x , y ) \\sim \\tilde { p } } u ( x , y ) \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { A u g m e n t e d d a t a } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 279, + 750, + 717, + 792 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In addition to task-specific model architectures (Andreas et al., 2016; Russin et al., 2019), recent years have seen a renewed interest in data augmentation as a flexible and model-agnostic tool for encouraging controlled generalization (Ratner et al., 2017). Existing proposals for sequence models are mainly rule-based—in sequence modeling problems, specifying a synchronous context-free grammar (Jia & Liang, 2016) or string rewriting system (Andreas, 2020) to generate new examples. Rule-based data augmentation schemes that recombine multiple training examples have been proposed for image classification (Inoue, 2018) and machine translation (Fadaee et al., 2017). While rulebased data augmentation is highly effective in structured problems featuring crisp correspondences between inputs and outputs, the effectiveness of such approaches involving more complicated, context-dependent relationships between inputs and outputs has not been well-studied. ", + "bbox": [ + 173, + 803, + 825, + 888 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Learned data augmentation What might compositional data augmentation look like without rules as a source of inductive bias? As Fig. 1 suggests, an ideal data augmentation procedure $\\tilde { p }$ in Eq. 1) should automatically identify valid ways of transforming and combining examples, without pre-committing to a fixed set of transformations.2 A promising starting point is provided by prototype-based models, a number of which (Gu et al., 2018; Guu et al., 2018; Khandelwal et al., 2020) have been recently proposed for sequence modeling. Such models generate data according to: ", + "bbox": [ + 173, + 166, + 825, + 251 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/8ffc15e9a7914505e760b122ffd7973cc0a48dc88008d2b9a316e1c18964391b.jpg", + "text": "$$\nd \\sim p _ { \\mathrm { r e w r i t e } } ( \\cdot \\mid d ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d ^ { \\prime } \\sim \\mathrm { U n i f } ( \\mathcal { D } ) ;\n$$", + "text_format": "latex", + "bbox": [ + 348, + 256, + 650, + 273 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "for a dataset $\\mathcal { D }$ and a learned sequence rewriting model $p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )$ . (To avoid confusion, we will use the symbol $d$ to denote a datum. Because a data augmentation procedure must produce complete input–output examples, each $d$ is an $( x , y )$ pair for the conditional tasks evaluated in this paper.) While recent variants implement $p _ { \\mathrm { r e w r i t e } }$ with neural networks, these models are closely related to classical kernel density estimators (Rosenblatt, 1956). But additionally—building on the motivation in Section 1—they may be viewed as one-shot learners trained to generate new data $d$ from a single example. ", + "bbox": [ + 173, + 279, + 825, + 377 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Existing work uses prototype-based models as replacements for standard sequence models. We will show here that they are even better suited to use as data augmentation procedures: they can produce high-precision examples in the neighborhood of existing training data, then be used to bootstrap simpler predictors that extrapolate more effectively. But our experiments will also show that existing prototype-based models give mixed results on challenging generalizations of the kind depicted in Fig. 1 when used for either direct prediction or data augmentation—performing well in some settings but barely above baseline in others. ", + "bbox": [ + 174, + 383, + 825, + 481 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Accordingly, R&R is built on two model components that transform prototype-based language models into an effective learned data augmentation scheme. Section 3 describes an implementation of prewrite that encourages greater sample diversity and well-formedness via a multi-prototype copying mechanism (a two-shot learner). Section 4 describes heuristics for sampling prototypes $d ^ { \\prime }$ and model outputs $d$ to focus data augmentation on the most informative examples. Section 5 investigates the empirical performance of both components of the approach, finding that they together provide they a simple but surprisingly effective tool for enabling compositional generalization. ", + "bbox": [ + 174, + 487, + 825, + 585 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 PROTOTYPE-BASED SEQUENCE MODELS FOR DATA RECOMBINATION ", + "text_level": 1, + "bbox": [ + 173, + 606, + 769, + 622 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We begin with a brief review of existing prototype-based sequence models. Our presentation mostly follows the retrieve-and-edit approach of Guu et al. (2018), but versions of the approach in this paper could also be built on retrieval-based models implemented with memory networks (Miller et al., 2016; Gu et al., 2018) or transformers (Khandelwal et al., 2020; Guu et al., 2020). The generative process described in Eq. 2 implies a marginal sequence probability: ", + "bbox": [ + 173, + 636, + 825, + 707 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/220e079d12b825b1b8005126f87823211b0213a7c002e1946a181257a91f2d1a.jpg", + "text": "$$\np ( d ) = { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { D } } } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )\n$$", + "text_format": "latex", + "bbox": [ + 387, + 712, + 609, + 751 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Maximizing this quantity over the training set with respect to $\\theta$ will encourage $p _ { \\mathrm { r e w r i t e } }$ to act as a model of valid data transformations: To be assigned high probability, every training example must be explained by at least one other example and a parametric rewriting operation. (The trivial solution where $p _ { \\theta }$ is the identity function, with $p _ { \\theta } ( d \\mid d ^ { \\prime } = d ) = 1$ , can be ruled out manually in the design of $p _ { \\theta }$ .) When $\\mathcal { D }$ is large, the sum in Eq. 3 is too large to enumerate exhaustively when computing the marginal likelihood. Instead, we can optimize a lower bound by restricting the sum to a neighborhood $\\bar { \\mathcal { N } } ( d ) \\subset \\mathcal { D }$ of training examples around each $d$ : ", + "bbox": [ + 173, + 756, + 825, + 813 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 821, + 146 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/162f6f9165d5ea95173d62c2cedb7f002d06baefa87e5ed0349f2843bfa0ab0b.jpg", + "text": "$$\np ( d ) \\geq { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { N } } ( d ) } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) ~ .\n$$", + "text_format": "latex", + "bbox": [ + 374, + 148, + 624, + 189 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The choice of $\\mathcal { N }$ is discussed in more detail in Section 4. Now observe that: ", + "bbox": [ + 171, + 193, + 673, + 208 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/332d40e27af37edf8f661099d1ab669b0e7b1a5d2190d648f4e0d5392a51802d.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\log p ( { d } ) \\geq \\log \\left( | \\mathcal { N } ( d ) | \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\frac { 1 } { | \\mathcal { N } ( d ) | } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) \\right) - \\log | \\mathcal { D } | } \\\\ { \\geq \\displaystyle \\frac { 1 } { | \\mathcal { N } ( d ) | } \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) + \\log \\left( \\frac { | \\mathcal { N } ( d ) | } { | \\mathcal { D } | } \\right) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 208, + 723, + 292 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where the second step uses Jensen’s inequality. If all $| \\mathcal { N } ( d ) |$ are the same size, maximizing this lower bound on log-likelihood is equivalent to simply maximizing ", + "bbox": [ + 173, + 296, + 821, + 325 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/045a2d63b5f48014d567b2002ee574688de0358f4404cb18ec9bbefb7406348b.jpg", + "text": "$$\n\\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )\n$$", + "text_format": "latex", + "bbox": [ + 408, + 329, + 593, + 364 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "over $\\mathcal { D }$ —this is the ordinary conditional likelihood for a string transducer (Ristad & Yianilos, 1998) or sequence-to-sequence model (Sutskever et al., 2014) with examples $d , d ^ { \\prime } \\in \\mathcal { N } ( d )$ . 3 ", + "bbox": [ + 174, + 368, + 825, + 397 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We have motivated prototype-based models by arguing that $p _ { \\mathrm { r e w r i t e } }$ learns a model of transformations licensed by the training data. However, when generalization involves complex compositions, we will show that neither a basic RNN implementation of $p _ { \\mathrm { r e w r i t e } }$ or a single prototype is enough; we must provide the learned rewriting model with a larger inventory of parts and encourage reuse of those parts as faithfully as possible. This motivates the two improvements on the prototype-based modeling framework described in the remainder of this section: generalization to multiple prototypes (Section 3.1) and a new rewriting model (Section 3.2). ", + "bbox": [ + 173, + 404, + 825, + 501 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 $n$ -PROTOTYPE MODELS ", + "text_level": 1, + "bbox": [ + 174, + 517, + 374, + 531 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To improve compositionality in prototype-based models, we equip them with the ability to condition on multiple examples simultaneously. We extend the basic prototype-based language model to $n$ prototypes, which we now refer to as a recombination model $p _ { \\mathrm { r e c o m b } }$ : ", + "bbox": [ + 174, + 542, + 825, + 585 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/c430672e7e4264a2bae1563dab96acc996feae244f8b3a1d384ca4da7ef221cf.jpg", + "text": "$$\nd \\sim p _ { \\mathrm { r e c o m b } } ( \\cdot \\mid d _ { 1 : n } ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d _ { 1 : n } ^ { \\prime } \\stackrel { \\scriptscriptstyle \\mathrm { d e f } } { = } ( d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } , \\ldots , d _ { n } ^ { \\prime } ) \\sim p _ { \\Omega } ( \\cdot )\n$$", + "text_format": "latex", + "bbox": [ + 277, + 590, + 718, + 611 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "A multi-protype model may be viewed as a meta-learner (Thrun & Pratt, 1998; Santoro et al., 2016): it maps from a small number of examples (the prototypes) to a distribution over new datapoints consistent with those examples. By choosing the neighborhood and implementation of $p _ { \\mathrm { r e c o m b } }$ appropriately, we can train this meta-learner to specialize in one-shot concept learning (by reusing a fragment exhibited in a single prototype) or compositional generalization (by assembling fragments of prototypes into a novel configuration). To enable this behavior, we define a set of compatible prototypes $\\Omega \\subset { \\mathcal { D } } ^ { n }$ (Section 4) and let $p _ { \\Omega } \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\operatorname { U n i f } ( \\Omega )$ . We update Eq. 6 to feature a corresponding multi-prototype neighborhood $\\mathcal { N } : \\mathcal { D } \\Omega$ . The only terms that have changed are the conditioning variable and the constant term, and it is again sufficient to choose $\\theta$ to optimize $\\begin{array} { r } { \\sum _ { d _ { 1 : n } ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ) } \\end{array}$ over $\\mathcal { D }$ , implementing $p _ { \\mathrm { r e c o m b } }$ as described next. ", + "bbox": [ + 173, + 621, + 826, + 767 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 RECOMBINATION NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 784, + 418, + 797 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Past work has found that latent-variable neural sequence models often ignore the latent variable and attempt to directly model sequence marginals (Bowman et al., 2016). When an ordinary sequence-tosequence model with attention is used to implement $p _ { \\mathrm { r e c o m b } }$ , even in the one-prototype case, generated ", + "bbox": [ + 174, + 809, + 825, + 852 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/29a86739ecfb868dbaf60a0ad333443a8cc5fb0698034bc6535601f93bf28546.jpg", + "text": "$$\np _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ) = \\mathbb { E } _ { z \\sim p ( z ) } [ p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } , z ; \\theta ) ]\n$$", + "text_format": "latex", + "bbox": [ + 364, + 877, + 633, + 895 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/afec9d43b3c01eaf8327afb034dc715c70356cb08a599c76be0d10c0fb326089.jpg", + "image_caption": [ + "Figure 2: (a) RNN encoders produce contextual embeddings for prototype tokens. (b) In the decoder, a gated copy mechanism reuses prototypes and generated output tokens via an attention mechanism (dashed lines). " + ], + "image_footnote": [], + "bbox": [ + 238, + 85, + 756, + 224 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "sentences often have little overlap with their prototypes (Weston et al., 2018). We describe a specific model architecture for $p _ { \\mathrm { r e c o m b } }$ that does not function as a generic noise model, and in which outputs are primarily generated via explicit reuse of fragments of multiple prototypes, by facilitating copying from independent streams containing prototypes and previously generated input tokens. ", + "bbox": [ + 174, + 273, + 825, + 330 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We take $p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ; \\theta )$ to be a neural (multi-)sequence-to-sequence model (c.f. Sutskever et al., 2014) which decomposes probability autoregressively: $\\begin{array} { r } { p _ { \\mathrm { r e c o m b } } ( d \\mid \\mathcal { \\bar { d } } _ { 1 : n } ^ { \\prime } ; \\theta ) = \\prod _ { t } p ( d ^ { t } \\mid d ^ { < t } , d _ { 1 : n } ^ { \\prime } ; \\theta ) } \\end{array}$ . As shown in Fig. 2, three LSTM encoders—two for the prototypes and one for the input prefix— compute sequences of token representations $h _ { \\mathrm { p r o t o } }$ and $h _ { \\mathrm { o u t } }$ respectively. Given the current decoder hidden state $\\setminus h _ { o u t } ^ { t }$ , the model first attends to both prototype and output tokens: ", + "bbox": [ + 174, + 335, + 826, + 406 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/cdc57cf2dd1c625bb3a1b2d5b31f9475c3f13ef7b754aac851e8e84ee25d4892.jpg", + "text": "$$\n\\begin{array} { r l } { \\alpha _ { \\mathrm { o u t } } ^ { i } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { o } h _ { \\mathrm { o u t } } ^ { i } } ) } & { { i < t } } \\\\ { \\alpha _ { \\mathrm { p r o t o } } ^ { k j } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { p } h _ { \\mathrm { p r o t o } } ^ { k j } } ) } & { { k \\le n , j \\le | d _ { k } ^ { \\prime } | } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 346, + 411, + 651, + 459 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To enable copying from each sequence, we project attention weights $\\alpha _ { \\mathrm { o u t } }$ and $\\alpha _ { \\mathrm { p r o t o } } ^ { k }$ onto the output vocabulary to produce a sparse vector of probabilities: ", + "bbox": [ + 173, + 462, + 825, + 491 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2f51659d4dd0cfc1bf8185b7cca4d9a33ae23af60f0088d1fe507032ae576e38.jpg", + "text": "$$\n\\begin{array} { r l } & { p _ { \\mathrm { c o p y , o u t } } ^ { t } ( d ^ { t } = w ) = \\sum _ { i < t } \\mathbb { 1 } [ d _ { i } = w ] \\cdot \\alpha _ { \\mathrm { o u t } } ^ { i } } \\\\ & { p _ { \\mathrm { c o p y , p r o t o - k } } ^ { t } ( d ^ { t } = w ) = \\sum _ { j \\le | d _ { k } ^ { \\prime } | } \\mathbb { 1 } [ d _ { k , j } ^ { \\prime } = w ] \\cdot \\alpha _ { \\mathrm { p r o t o } } ^ { k j } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 330, + 493, + 669, + 540 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Unlike rule-based data recombination procedures, however, $p _ { \\mathrm { r e c o m b } }$ is not required to copy from the prototypes, and can predict output tokens directly using values retrieved by the attention mechanism: ", + "bbox": [ + 173, + 542, + 821, + 571 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/7e0bcd0cbc227086b9bdb8351c119f1dce20e09a3ae9e530042624784f2db1e5.jpg", + "text": "$$\n\\begin{array} { r l } & { \\begin{array} { r l } { h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , \\quad \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , } & { \\sum _ { k , j } \\alpha _ { \\mathrm { p r o t o } } ^ { k j } h _ { \\mathrm { p r o t o } } ^ { k j } \\right] } \\end{array} } \\\\ & { \\begin{array} { r l } { p _ { \\mathrm { w r i t e } } ^ { t } \\propto \\exp ( W _ { \\mathrm { w r i t e } } h _ { \\mathrm { p r e } } ^ { t } ) } & { } \\end{array} } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 336, + 575, + 660, + 619 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To produce a final distribution over output tokens at time $t$ , we combine predictions from each stream: ", + "bbox": [ + 174, + 621, + 823, + 636 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/85b81ad796a9d2c0f796ffd77939b8bb84d30fdd5e067d94d56600cbc1b925f3.jpg", + "text": "$$\n\\begin{array} { r } { \\beta _ { \\mathrm { g a t e } } = \\mathrm { s o f t m a x } ( W _ { g a t e } h _ { o u t } ^ { t } ) \\qquad } \\\\ { p ( d ^ { t } = w \\mid d ^ { < t } , d _ { 1 : n } ^ { t } ; \\theta ) = \\beta _ { \\mathrm { g a t e } } \\cdot [ p _ { \\mathrm { w r i t e } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , o u t } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , p r o u o - } 1 } ^ { t } ( w ) , . . . , p _ { \\mathrm { c o p y , p r o u o - n } } ^ { t } ( w ) ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 191, + 638, + 781, + 681 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This copy mechanism is similar to the one proposed by Merity et al. (2017) and See et al. (2017). We compare 1- and 2-prototype models to an ordinary sequence model and baselines in Section 5. ", + "bbox": [ + 173, + 689, + 825, + 718 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 SAMPLING SCHEMES ", + "text_level": 1, + "bbox": [ + 176, + 738, + 379, + 753 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The models above provide generic procedures for generating well-formed combinations of training data, but do nothing to ensure that the generated samples are of a kind useful for compositional generalization. While the training objective in Eq. 7 encourages the learned $p ( d )$ to lie close to the training data, an effective data augmentation procedure should intuitively provide novel examples of rare phenomena. To generate augmented training data, we combine the generative models of Section 3 with a simple sampling procedure that upweights useful examples. ", + "bbox": [ + 173, + 768, + 825, + 853 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 RESAMPLING AUGMENTED DATA ", + "text_level": 1, + "bbox": [ + 176, + 869, + 441, + 883 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In classification problems with imbalanced classes, a common strategy for improving accuracy on the rare class is to resample so that the rare class is better represented in training data (Japkowicz ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "et al., 2000). When constructing an augmented dataset using the models described above, we apply a simple rejection sampling scheme. In Eq. 1, we set: ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/958a8df5af88fc54204e7f733ac11126d6b3d19ff1e80798251cd7fdd910bf59.jpg", + "text": "$$\nu ( d ) = \\mathbb { 1 } [ \\operatorname* { m i n } _ { t } p ( d ^ { t } ) < \\epsilon ] .\n$$", + "text_format": "latex", + "bbox": [ + 411, + 137, + 588, + 160 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Here $p ( d ^ { t } )$ is the marginal probability that the token $d ^ { t }$ appears in any example and $\\epsilon$ is a hyperparameter. The final model is then trained using Eq. 1, retaining those augmented samples for which $u ( d ) = 1$ . For extremely imbalanced problems, like the ones considered in Section 5, this weighting scheme effectively functions as a rare tag constraint: only examples containing rare words or tags are used to augment the original training data. ", + "bbox": [ + 173, + 167, + 825, + 238 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 NEIGHBORHOODS AND PROTOTYPE PRIORS ", + "text_level": 1, + "bbox": [ + 178, + 255, + 513, + 268 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "How can we ensure that the data augmentation procedure generates any samples with positive weight in Eq. 18? The prototype-based models described in Section 3 offer an additional means of control over the generated data. Aside from the implementation of $p _ { \\mathrm { r e c o m b } }$ , the main factors governing the behavior of the model are the choice of neighborhood function ${ \\mathcal { N } } ( d )$ and, for $n \\geq 2$ , the set of prior compatible prototypes $\\Omega$ . Defining these so that rare tags also preferentially appear in prototypes helps ensure that the generated samples contribute to generalization. Let $d _ { 1 }$ and $d _ { 2 }$ be prototypes. As a notational convenience, given two sequences $d _ { 1 }$ , $d _ { 2 }$ , let $d _ { 1 } \\backslash d _ { 2 }$ the set of tokens in $d _ { 1 }$ but not $d _ { 2 }$ , and $d _ { 1 } \\Delta d _ { 2 }$ denote the set of tokens not common to $d _ { 1 }$ and $d _ { 2 }$ . ", + "bbox": [ + 173, + 280, + 825, + 393 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1-prototype neighborhoods Guu et al. (2018) define a one-prototype $\\mathcal { N }$ based on a Jaccard distance threshold (Jaccard, 1901). For experiments with one-prototype models we employ a similar strategy, choosing an initial neighborhood of candidates such that ", + "bbox": [ + 173, + 398, + 826, + 441 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/626e30a50efc6b441df4beb1037310e57545588dda8080e31e52c6be22d4f8fb.jpg", + "text": "$$\n{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\scriptscriptstyle { \\mathrm { d e f } } } { = } } \\ \\left\\{ d _ { 1 } \\in { \\mathcal { D } } : ( { \\boldsymbol { \\alpha } } \\cdot | d \\Delta d _ { 1 } | + { \\boldsymbol { \\beta } } \\cdot \\operatorname { l e v } ( d , d _ { 1 } ) ) < \\delta \\right\\}\n$$", + "text_format": "latex", + "bbox": [ + 316, + 448, + 681, + 469 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where lev is string edit distance (Levenshtein, 1966) and $\\alpha , \\beta$ and $\\delta$ are hyperparameters (discussed in Appendix B). ", + "bbox": [ + 174, + 474, + 826, + 503 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "2-prototype neighborhoods The $n \\geq 2$ prototype case requires a more complex neighborhood function—intuitively, for an input $d$ , we want each $( d _ { 1 } , d _ { 2 } , \\ldots )$ in the neighborhood to collectively contain enough information to reconstruct $d$ . Future work might treat the neighborhood function itself as latent, allowing the model to identify groups of prototypes that make $d$ probable; here, as in existing one-prototype models, we provide heuristic implementations for the $n = 2$ case. ", + "bbox": [ + 174, + 510, + 825, + 582 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Long–short recombination: For each $( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { N } ( d )$ , $d _ { 1 }$ is chosen to be similar to $d$ , and $d _ { 2 }$ is chosen to be similar to the difference between $d$ and $d _ { 1 }$ . (The neighborhood is so named because one of the prototypes will generally have fewer tokens than the other one.) ", + "bbox": [ + 174, + 587, + 825, + 630 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/68b380206b57e3dd8f6ef32c29aeb4a19419a811eecf430abaa404a361ddb255.jpg", + "text": "$$\n{ \\mathcal { N } } ( d ) ~ { \\stackrel { \\mathrm { d e f } } { = } } ~ \\left\\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : { \\mathrm { ~ l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( [ d \\backslash d _ { 1 } ] , d _ { 2 } \\right) < \\delta , | d \\backslash d _ { 1 } | > 0 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\right\\}\n$$", + "text_format": "latex", + "bbox": [ + 183, + 638, + 785, + 657 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Here $[ d \\backslash d _ { 1 } ]$ is the sequence obtained by removing all tokens in $d _ { 1 }$ from $d$ . Recall that we have defined $p _ { \\Omega } ( d _ { 1 : n } ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\mathrm { U n i f } ( \\Omega )$ for a set $\\Omega$ of “compatible” prototypes. For experiments using long–short combination, all prototypes are treated as compatible; that is, $\\Omega = \\mathcal { D } \\times \\mathcal { D }$ . ", + "bbox": [ + 174, + 664, + 825, + 710 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Long–long recombination: ${ \\mathcal { N } } ( d )$ contains pairs of prototypes that are individually similar to $d$ and collectively contain all the tokens needed to reconstruct $d$ : ", + "bbox": [ + 171, + 717, + 823, + 746 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/66ab4b1ffcd80ff7d9593390dfe6135171e04306e5f09a3a5faa8f42c94fc1b3.jpg", + "text": "$$\n{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : \\ { \\mathrm { l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( d , d _ { 2 } \\right) < \\delta , | d \\Delta d _ { 1 } | = 1 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\}\n$$", + "text_format": "latex", + "bbox": [ + 196, + 753, + 772, + 773 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For experiments using long–long recombination, we take $\\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { D } \\times \\mathcal { D } : | d _ { 1 } \\Delta d _ { 2 } | = 1 \\}$ ", + "bbox": [ + 176, + 786, + 820, + 803 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 DATASETS & EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 821, + 439, + 838 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We evaluate R&R on two tests of compositional generalization: the SCAN instruction following task (Lake & Baroni, 2018) and a few-shot morphology learning task derived from the SIGMORPHON 2018 dataset (Kirov et al., 2018; Cotterell et al., 2018). Our experiments are designed to explore the effectiveness of learned data recombination procedures in controlled and natural settings. Both tasks involve conditional sequence prediction: while preceding sections have discussed augmentation ", + "bbox": [ + 173, + 853, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1: Results on the SCAN dataset. (a) Comparison of R&R with previous work. Connecting lines indicate that model components are inherited from the parent (e.g. the row labeled recomb-2 also includes resampling). Data augmentation with recomb- $^ { 2 + }$ resampling performs slightly worse than GECA on the jump and around right splits; data augmentation with recomb- $l +$ resampling or an ordinary RNN does not generalize robustly to either split. All differences except between GECA and recomb- $^ { 2 + }$ resampling in jump are significant (paired $t$ -test, $p \\ll 0 . 0 0 1$ ). (Dashes indicate that all samples were rejected by resampling when decoding with temperature $T = 1 .$ ) (b) Ablation experiments on the jump split. Introducing the latent variable used in previous work (Guu et al., 2018) does not change performance; removing the copy mechanism results in a complete failure of generalization. While it is possible to perform conditional inference of $p ( y \\mid x )$ given the generative model in Eq. 3 (direct inference), this gives significantly worse results than data augmentation (see Sec. 5.3). ", + "bbox": [ + 173, + 94, + 825, + 222 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/82923d66569b93052b9e83149baffab4e1327615cf6521cc2be96d79c0ddead4.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
(a)
around right jump
baseline0.00 ±0.000.00 ±0.00
GECA (published)0.82 ±0.110.87 ±0.05
GECA (ours)0.98 ±0.021.00 ±0.001
learned aug. (basic)0.00 ±0.000.00 ±0.00
L resampling--
├ recomb-10.17 ±0.07-
Lrecomb-20.75 ±0.140.87 ±0.08
recomb-2 (no resampling)0.82 ±0.080.88 ±0.07
", + "bbox": [ + 196, + 227, + 535, + 373 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/bd8e83d50057daa52a6aeb460c6675ba869851fd2cadfa2577e40dcecab57f2c.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
jump
recomb-2 (no resampling)0.88 ±0.07
+ VAE0.88 ±0.07
+resampling0.87 ±0.08
- copying direct inference0.00 ±0.00
0.57 ±0.05
", + "bbox": [ + 558, + 242, + 797, + 342 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "procedures that produce data points $d = ( x , y )$ , learners are evaluated on their ability to predict an output $y$ from an input $x$ : actions $y$ given instructions $x$ , or morphological analyses $y$ given words $x$ ", + "bbox": [ + 176, + 393, + 825, + 421 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For each task, we compare a baseline with no data augmentation, the rule-based GECA data augmentation procedure (Andreas, 2020), and a sequence of ablated versions of R&R that measure the importance of resampling and recombination. The basic Learned Aug model trains an RNN to generate $( x , y )$ pairs, then trains a conditional model on the original data and samples from the generative model. Resampling filters these samples as described in Section 4. Recomb-n models replace the RNN with a prototype-based model as described in Section 3. Additional experiments (Table 1b) compare data augmentation to prediction of $y$ via direct inference (Appendix E) in the prototype-based model and several other model variants. ", + "bbox": [ + 174, + 428, + 825, + 540 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1 SCAN ", + "text_level": 1, + "bbox": [ + 174, + 556, + 261, + 570 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "SCAN (Lake & Baroni, 2018) is a synthetic dataset featuring simple English commands paired with sequences of actions. Our experiments aim to show that R&R performs well at one-shot concept learning and zero-shot generalization on controlled tasks where rule-based models succeed. We experiment with two splits of the dataset, jump and around right. In the jump split, which tests one-shot learning, the word jump appears in a single command in the training set but in more complex commands in the test set (e.g. look and jump twice). The around right split (Loula et al., 2018) tests zero-shot generalization by presenting learners with constructions like walk around left and walk right in the training set, but walk around right only in the test set. ", + "bbox": [ + 174, + 582, + 825, + 694 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Despite the apparent simplicity of the task, ordinary neural sequence-to-sequence models completely fail to make correct predictions on SCAN test set (Table 1). As such it has been a major focus of research on compositional generalization in sequence-to-sequence models, and a number of heuristic procedures and specialized model architectures and training procedures have been developed to solve it (Russin et al., 2019; Gordon et al., 2020; Lake, 2019; Andreas, 2020). Here we show that the generic prototype recombination procedure described above does so as well. We use long–short recombination for the jump split and long–long recombination for the around right split. We use a recombination network to generate 400 samples $d = ( x , y )$ and then train an ordinary LSTM with attention (Bahdanau et al., 2019b) on the original and augmented data to predict $y$ from $x$ . Training hyperparameters are provided in Appendix D. ", + "bbox": [ + 174, + 700, + 825, + 840 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 1 shows the results of training these models on the SCAN dataset.4 2-prototype recombination is essential for successful generalization on both splits. Additional ablations (Table 1b) show that the continuous latent variable used by Guu et al. (2018) does not affect performance, but that the copy mechanism described in Section 3.2 and the use of the recomb-2 model for data augmentation rather than direct inference are necessary for accurate prediction. ", + "bbox": [ + 176, + 847, + 823, + 876 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/662b57c7af50cd3e5b506c123f6802f95eda0db40c7caee885e186eb17cc26e1.jpg", + "table_caption": [ + "Table 2: $F _ { 1 }$ score for morphological analysis on rare $\\mathrm { ( F U T + P S T ) }$ ) and frequent (OTHER) word forms. R&R variants with 1- and 2-prototype recombination (shaded in grey) consistently match or outperform both a no-augmentation baseline and GECA; recomb- $^ { l + }$ resampling is best overall. Bold numbers are not significantly different from the best result in each column under a paired t-test $\\mathit { p } < 0 . 0 5$ after Bonferroni correction; nothing is bold if all differences are insignificant). The NOVEL portion of the table shows model accuracy on examples whose exact tag set never appeared in the training data. (There were no such words in the test set for the Spanish OTHER.) Differences between GECA and the best R&R variant (recomb- $^ { l + }$ resampling) are larger than in the full evaluation set. ∗The Spanish past tense was used as a development set. " + ], + "table_footnote": [], + "table_body": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline Lresampling0.66 ±0.010.88 ±0.010.75 ±0.020.90 ±0.010.69 ±0.040.85 ±0.03
0.65 ±0.010.88 ±0.010.77 ±0.010.90 ±0.020.69 ±0.040.84 ±0.04
GECA0.66 ±0.010.88 ±0.010.76 ±0.020.90±0.020.69 ±0.020.87 ±0.01
Lresampling A0.72 ±0.020.88 ±0.010.81 ±0.020.89 ±0.010.75 ±0.030.85 ±0.02
learned aug. (basic)0.66 ±0.020.88 ±0.010.77 ±0.020.90 ±0.010.70 ±0.020.87 ±0.01
L resampling0.70 ±0.020.86 ±0.010.84 ±0.010.90 ±0.010.73 ±0.040.85 ±0.03
├recomb-10.72 ±0.020.87 ±0.010.85 ±0.010.90 ±0.020.77 ±0.020.87 ±0.02
recomb-20.71 ±0.010.87 ±0.020.82 ±0.020.90 ±0.010.75 ±0.030.86 ±0.03
GECA + recomb-1 + resamp.0.74 ±0.020.86 ±0.010.85 ±0.020.89 ±0.010.79 ±0.020.84 ±0.01
THAONbaseline0.63 ±0.030.72 ±0.020.42 ±0.120.68 ±0.040.66 ±0.15
GECA + resampling0.67 ±0.030.79 ±0.020.26 ±0.200.73 ±0.040.71 ±0.10
recomb-1 + resampling0.69 ±0.020.83 ±0.020.42 ±0.120.75 ±0.030.82 ±0.04
GECA + recomb-1 + resamp.0.69 ±0.020.83 ±0.020.35 ±0.110.77 ±0.030.71 ±0.07
", + "bbox": [ + 171, + 208, + 826, + 405 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 436, + 825, + 479 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 SIGMORPHON 2018 ", + "text_level": 1, + "bbox": [ + 176, + 500, + 370, + 515 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The SIGMORPHON 2018 dataset consists of words paired with morphological analyses (lemmas, or base forms, and tags for linguistic features like tense and case, as depicted in Fig. 1). We use the data to construct a morphological analysis task (Akyürek et al., 2019) (predicting analyses from surface forms) to test models’ few-shot learning of new morphological paradigms. In three languages of varying morphological complexity (Spanish, Swahili, and Turkish) we construct splits of the data featuring a training set of 1000 examples and three test sets of 100 examples. One test set consists exclusively of words in the past tense, one in the future tense and one with other word forms (present tense verbs, nouns and adjectives). The training set contains exactly eight past-tense and eight future-tense examples; all the rest are other word forms. Experiments evaluate R&R’s ability to efficiently learn noisy morphological rules, long viewed a key challenge for connectionist approaches to language learning (Rumelhart & McClelland, 1986). As approaches may be sensitive to the choice of the eight examples from which the model must generalize, we construct five different splits per language and use the Spanish past-tense data as a development set. As above, we use long–long recombination with similarity criteria applied to $y$ only. We augment the training data with 180 samples from $p _ { \\mathrm { r e c o m b } }$ and again train an ordinary LSTM with attention for final predictions. Details are provided in Appendix B. ", + "bbox": [ + 174, + 529, + 825, + 750 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 2 shows aggregate results across languages. We report the model’s $F _ { 1 }$ score for predicting morphological analyses of words in the few-shot training condition (past and future) and the standard training condition (other word forms). Here, learned data augmentation with both one- and twoprototype models consistently matches or outperforms GECA. The improvement is sometimes dramatic: for few-shot prediction in Swahili, recomb-1 augmentation reduces the error rate by $40 \\%$ relative to the baseline and $21 \\%$ relative to GECA. An additional baseline $^ +$ resampling experiment upweights the existing rare samples rather than synthesizing new ones; results demonstrate that recombination, and not simply reweighting, is important for generalization. Table 2 also includes a finer-grained analysis of novel word forms: words in the evaluation set whose exact morphological analysis never appeared in the training set. R&R again significantly outperforms both the baseline and GECA-based data augmentation in the few-shot FUT+PAST condition and the ordinary OTHER condition, underscoring the effectiveness of this approach for “in-distribution” compositional generalization. Finally, the gains provided by learned augmentation and GECA appear to be at least partially orthogonal: combining the GECA $^ +$ resampling and recomb- $\\cdot l +$ resampling models gives further improvements in Spanish and Turkish. ", + "bbox": [ + 174, + 757, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 103, + 823, + 145 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.3 ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 164, + 285, + 178 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Why is R&R effective? Samples from the best learned data augmentation models for SCAN and SIGMORPHON may be found in the Appendix G.3 . We programaticaly analyzed 400 samples from recomb-2 models in SCAN and found that $40 \\%$ of novel samples are exactly correct in the around right split and $74 \\%$ in the jump split. A manual analysis of 50 Turkish samples indicated that only $14 \\%$ of the novel samples were exactly correct. The augmentation procedure has a high error rate! However, our analysis found that malformed samples either (1) feature malformed $x s$ that will never appear in a test set (a phenomenon also observed by Andreas (2020) for outputs of GECA), or (2) are mostly correct at the token level (inducing predictions with a high $F _ { 1 }$ score). Data augmentation thus contributes a mixture of irrelevant examples, label noise—which may exert a positive regularizing effect (Bishop, 1995)—and well-formed examples, a small number of which are sufficient to induce generalization (Bastings et al., 2018). Without resampling, SIGMORPHON models generate almost no examples of rare tags. ", + "bbox": [ + 174, + 190, + 825, + 357 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Why does R&R outperform direct inference? A partial explanation is provided by the preceding analysis, which notes that the accuracy of the data augmentation procedure as a generative model is comparatively low. Additionally, the data augmentation procedure selects only the highest-confidence samples from the model, so the quality of predicted ys conditioned on random $x \\mathbf { s }$ will in general be even lower. A conditional model trained on augmented data is able to compensate for errors in augmentation or direct inference (Table 12 in the Appendix). ", + "bbox": [ + 174, + 363, + 825, + 446 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Why is Resampling without Recombination effective? One surprising feature of Table 2 is performance of the learned aug (basic) $^ +$ resampling model. While less effective than the recombinationbased models, augmentation with samples from an ordinary RNN trained on $( x , y )$ pairs improves performance for some test splits. One possible explanation is that resampling effectively acts as a posterior constraint on the final model’s predictive distribution, guiding it toward solutions in which rare tags are more probable than observed in the original training data. Future work might model this constraint explicitly, e.g. via posterior regularization (as in Li & Rush, 2020). ", + "bbox": [ + 174, + 454, + 825, + 551 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 566, + 328, + 582 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We have described a method for improving compositional generalization in sequence-to-sequence models via data augmentation with learned prototype recombination models. These are the first results we are aware of demonstrating that generative models of data are effective as data augmentation schemes in sequence-to-sequence learning problems, even when the generative models are themselves unreliable as base predictors. Our experiments demonstrate that it is possible to achieve compositional generalization on-par with complex symbolic models in clean, highly structured domains, and outperform them in natural ones, with basic neural modeling tools and without symbolic representations. ", + "bbox": [ + 174, + 598, + 825, + 709 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 729, + 326, + 742 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We thank Eric Chu for feedback on early drafts of this paper. This work was supported by a hardware donation from NVIDIA under the NVAIL grant program. The authors acknowledge the MIT SuperCloud and Lincoln Laboratory Supercomputing Center (Reuther et al., 2018) for providing HPC resources that have contributed to the research results reported within this paper. ", + "bbox": [ + 174, + 755, + 825, + 810 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 832, + 285, + 847 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ekin Akyürek, Erenay Dayanık, and Deniz Yuret. Morphological analysis using a sequence decoder. Transactions of the Association for Computational Linguistics, 7:567–579, 2019. ", + "bbox": [ + 174, + 856, + 825, + 885 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Jacob Andreas. Good-enough compositional data augmentation. In Procedings of the Annual Meeting of the Association for Computational Linguistics, 2020. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48, 2016. ", + "bbox": [ + 174, + 103, + 825, + 146 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. In International Conference on Learning Representations, 2015. ", + "bbox": [ + 173, + 155, + 823, + 185 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Harm de Vries, Timothy J O’Donnell, Shikhar Murty, Philippe Beaudoin, Yoshua Bengio, and Aaron Courville. Closure: Assessing systematic generalization of clevr models. arXiv preprint arXiv:1912.05783, 2019a. ", + "bbox": [ + 174, + 194, + 826, + 237 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Shikhar Murty, Michael Noukhovitch, Thien Huu Nguyen, Harm de Vries, and Aaron Courville. Systematic generalization: What is required and can it be learned? In International Conference on Learning Representations, 2019b. ", + "bbox": [ + 174, + 246, + 826, + 290 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jasmijn Bastings, Marco Baroni, Jason Weston, Kyunghyun Cho, and Douwe Kiela. Jump to better conclusions: SCAN both left and right. In Proceedings of the EMNLP BlackboxNLP Workshop, pp. 47–55, Brussels, Belgium, 2018. ", + "bbox": [ + 173, + 297, + 826, + 342 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jean Berko. The child’s learning of english morphology. Word, 14(2-3):150–177, 1958. ", + "bbox": [ + 173, + 351, + 746, + 367 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeff Bezanson, Alan Edelman, Stefan Karpinski, and Viral B Shah. Julia: A fresh approach to numerical computing. SIAM review, 59(1):65–98, 2017. URL https://doi.org/10.1137/ 141000671. ", + "bbox": [ + 173, + 375, + 825, + 417 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chris M Bishop. Training with noise is equivalent to tikhonov regularization. Neural computation, 7 (1):108–116, 1995. ", + "bbox": [ + 173, + 428, + 825, + 457 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Samuel Bowman, Luke Vilnis, Oriol Vinyals, Andrew Dai, Rafal Jozefowicz, and Samy Bengio. Generating sentences from a continuous space. In Proceedings of The 20th SIGNLL Conference on Computational Natural Language Learning, pp. 10–21, 2016. ", + "bbox": [ + 176, + 465, + 823, + 510 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jonathon Cai, Richard Shin, and Dawn Song. Making neural programming architectures generalize via recursion. In International Conference on Learning Representations, ICLR 2017, 2017. ", + "bbox": [ + 169, + 517, + 823, + 547 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Susan Carey and Elsa Bartlett. Acquiring a single new word. Papers and Reports on Child Language Development, 2, 1978. ", + "bbox": [ + 174, + 556, + 823, + 585 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nitesh V Chawla, Kevin W Bowyer, Lawrence O Hall, and W Philip Kegelmeyer. Smote: synthetic minority over-sampling technique. Journal of artificial intelligence research, 16:321–357, 2002. ", + "bbox": [ + 173, + 594, + 821, + 625 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexander Clark and Rémi Eyraud. Polynomial identification in the limit of substitutable context-free languages. Journal of Machine Learning Research, 8(Aug):1725–1745, 2007. ", + "bbox": [ + 173, + 633, + 821, + 662 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ryan Cotterell, Christo Kirov, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova, Arya D. McCarthy, Katharina Kann, Sabrina J. Mielke, Garrett Nicolai, Miikka Silfverberg, David Yarowsky, Jason Eisner, and Mans Hulden. The CoNLL–SIGMORPHON 2018 shared task: Universal morphological reinflection. In Proceedings of the CoNLL–SIGMORPHON 2018 Shared Task: Universal Morphological Reinflection, pp. 1–27, 2018. ", + "bbox": [ + 173, + 671, + 826, + 742 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marzieh Fadaee, Arianna Bisazza, and Christof Monz. Data augmentation for low-resource neural machine translation. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics, pp. 567–573, 2017. ", + "bbox": [ + 173, + 751, + 823, + 795 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jerry A Fodor, Zenon W Pylyshyn, et al. Connectionism and cognitive architecture: A critical analysis. Cognition, 28(1-2):3–71, 1988. ", + "bbox": [ + 168, + 804, + 825, + 833 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Felix A Gers and E Schmidhuber. Lstm recurrent networks learn simple context-free and contextsensitive languages. IEEE Transactions on Neural Networks, 12(6):1333–1340, 2001. ", + "bbox": [ + 168, + 843, + 825, + 872 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jonathan Gordon, David Lopez-Paz, Marco Baroni, and Diane Bouchacourt. Permutation equivariant models for compositional generalization in language. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 174, + 882, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jiatao Gu, Zhengdong Lu, Hang Li, and Victor O.K. Li. Incorporating copying mechanism in sequence-to-sequence learning. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics, pp. 1631–1640, 2016. ", + "bbox": [ + 174, + 103, + 823, + 147 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jiatao Gu, Yong Wang, Kyunghyun Cho, and Victor OK Li. Search engine guided neural machine translation. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018. ", + "bbox": [ + 169, + 155, + 823, + 184 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kelvin Guu, Tatsunori B. Hashimoto, Yonatan Oren, and Percy Liang. Generating sentences by editing prototypes. Transactions of the Association for Computational Linguistics, 6:437–450, 2018. ", + "bbox": [ + 174, + 193, + 826, + 236 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. Realm: Retrievalaugmented language model pre-training. arXiv preprint arXiv:2002.08909, 2020. ", + "bbox": [ + 173, + 244, + 821, + 275 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tatsunori B Hashimoto, Kelvin Guu, Yonatan Oren, and Percy S Liang. A retrieve-and-edit framework for predicting structured outputs. In Advances in Neural Information Processing Systems, pp. 10052–10062, 2018. ", + "bbox": [ + 174, + 284, + 826, + 327 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hiroshi Inoue. Data augmentation by pairing samples for images classification. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 335, + 823, + 366 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Paul Jaccard. Comparative study of the distribution of flora in a portion of the Alps and Jura. Bull Soc Vaudoise Sci Nat, 37:547–579, 1901. ", + "bbox": [ + 176, + 375, + 823, + 404 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nathalie Japkowicz et al. Learning from imbalanced data sets: a comparison of various strategies. In AAAI workshop on learning from imbalanced data sets, volume 68, pp. 10–15, 2000. ", + "bbox": [ + 173, + 412, + 823, + 441 + ], + "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, pp. 12–22, 2016. ", + "bbox": [ + 173, + 450, + 823, + 481 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Justin Johnson, Bharath Hariharan, Laurens van der Maaten, Li Fei-Fei, C Lawrence Zitnick, and Ross Girshick. Clevr: A diagnostic dataset for compositional language and elementary visual reasoning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2901–2910, 2017. ", + "bbox": [ + 174, + 488, + 826, + 545 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Daniel Keysers, Nathanael Schärli, Nathan Scales, Hylke Buisman, Daniel Furrer, Sergii Kashubin, Nikola Momchev, Danila Sinopalnikov, Lukasz Stafiniak, Tibor Tihon, Dmitry Tsarkov, Xiao Wang, Marc van Zee, and Olivier Bousquet. Measuring compositional generalization: A comprehensive method on realistic data. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 174, + 554, + 825, + 612 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Urvashi Khandelwal, Omer Levy, Dan Jurafsky, Luke Zettlemoyer, and Mike Lewis. Generalization through memorization: Nearest neighbor language models. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 174, + 621, + 825, + 664 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christo Kirov, Ryan Cotterell, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova, Patrick Xia, Manaal Faruqui, Sabrina J. Mielke, Arya McCarthy, Sandra Kübler, David Yarowsky, Jason Eisner, and Mans Hulden. UniMorph 2.0: Universal Morphology. In Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018). European Language Resources Association (ELRA), 2018. ", + "bbox": [ + 173, + 672, + 825, + 743 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B. Lake, Tal Linzen, and M. Baroni. Human few-shot learning of compositional instructions. In CogSci, 2019. ", + "bbox": [ + 169, + 752, + 825, + 782 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Brenden Lake and Marco Baroni. Generalization without systematicity: On the compositional skills of sequence-to-sequence recurrent networks. In Jennifer Dy and Andreas Krause (eds.), Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 2873–2882, 2018. ", + "bbox": [ + 173, + 791, + 826, + 848 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Brenden M Lake. Compositional generalization through meta sequence-to-sequence learning. In Advances in Neural Information Processing Systems, pp. 9788–9798, 2019. ", + "bbox": [ + 173, + 857, + 823, + 886 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Vladimir I Levenshtein. Binary codes capable of correcting deletions, insertions, and reversals. In Soviet physics doklady, volume 10, pp. 707–710, 1966. ", + "bbox": [ + 176, + 895, + 821, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xiang Lisa Li and Alexander M Rush. Posterior control of blackbox generation. arXiv preprint arXiv:2005.04560, 2020. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "João Loula, Marco Baroni, and Brenden Lake. Rearranging the familiar: Testing compositional generalization in recurrent networks. In Proceedings of the 2018 EMNLP Workshop BlackboxNLP: Analyzing and Interpreting Neural Networks for NLP, pp. 108–114, 2018. ", + "bbox": [ + 174, + 140, + 823, + 184 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture models. In International Conference on Learning Representations, ICLR 2017, 2017. ", + "bbox": [ + 173, + 191, + 823, + 222 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Alexander Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason Weston. Key-value memory networks for directly reading documents. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, pp. 1400–1409, 2016. ", + "bbox": [ + 176, + 229, + 823, + 273 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Steven Piantadosi and Richard Aslin. Compositional reasoning in early childhood. PloS one, 11(9), 2016. ", + "bbox": [ + 173, + 281, + 821, + 310 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Alexander J Ratner, Henry Ehrenberg, Zeshan Hussain, Jared Dunnmon, and Christopher Ré. Learning to compose domain-specific transformations for data augmentation. In Advances in neural information processing systems, pp. 3236–3246, 2017. ", + "bbox": [ + 174, + 319, + 823, + 363 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Albert Reuther, Jeremy Kepner, Chansup Byun, Siddharth Samsi, William Arcand, David Bestor, Bill Bergeron, Vijay Gadepally, Michael Houle, Matthew Hubbell, et al. Interactive supercomputing on 40,000 cores for machine learning and data analysis. In 2018 IEEE High Performance extreme Computing Conference (HPEC), pp. 1–6. IEEE, 2018. ", + "bbox": [ + 173, + 369, + 825, + 428 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Eric Sven Ristad and Peter N Yianilos. Learning string-edit distance. IEEE Transactions on Pattern Analysis and Machine Intelligence, 20(5):522–532, 1998. ", + "bbox": [ + 173, + 435, + 823, + 465 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Murray Rosenblatt. Remarks on some nonparametric estimates of a density function. The Annals of Mathematical Statistics, pp. 832–837, 1956. ", + "bbox": [ + 173, + 473, + 823, + 502 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "David E. Rumelhart and James L. McClelland. On learning the past tenses of english verbs. Mechanisms of language aquisition, pp. 195–248, 1986. ", + "bbox": [ + 173, + 511, + 823, + 541 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jake Russin, Jason Jo, Randall C O’Reilly, and Yoshua Bengio. Compositional generalization in a deep seq2seq model by separating syntax and semantics. arXiv preprint arXiv:1904.09708, 2019. ", + "bbox": [ + 173, + 547, + 825, + 578 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Adam Santoro, Sergey Bartunov, Matthew Botvinick, Daan Wierstra, and Timothy Lillicrap. Metalearning with memory-augmented neural networks. In International conference on machine learning, pp. 1842–1850, 2016. ", + "bbox": [ + 173, + 587, + 825, + 630 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Abigail See, Peter J. Liu, and Christopher D. Manning. Get to the point: Summarization with pointer-generator networks. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics, pp. 1073–1083, 2017. ", + "bbox": [ + 173, + 637, + 825, + 681 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks. In Advances in neural information processing systems, pp. 3104–3112, 2014. ", + "bbox": [ + 169, + 689, + 825, + 719 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn, pp. 3–17. Springer, 1998. ", + "bbox": [ + 171, + 727, + 825, + 756 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Ł ukasz Kaiser, and Illia Polosukhin. Attention is all you need. In I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), Advances in Neural Information Processing Systems, volume 30, 2017. ", + "bbox": [ + 174, + 765, + 826, + 820 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jane X. Wang, Zeb Kurth-Nelson, Hubert Soyer, Joel Z. Leibo, Dhruva Tirumala, Rémi Munos, Charles Blundell, Dharshan Kumaran, and Matt M. Botvinick. Learning to reinforcement learn. In CogSci, 2016. ", + "bbox": [ + 173, + 829, + 823, + 872 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Gail Weiss, Yoav Goldberg, and Eran Yahav. On the practical computational power of finite precision RNNs for language recognition. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics, pp. 740–745, 2018. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jason Weston, Emily Dinan, and Alexander Miller. Retrieve and refine: Improved sequence generation models for dialogue. In Proceedings of the 2018 EMNLP Workshop SCAI: The 2nd International Workshop on Search-Oriented Conversational AI, pp. 87–92, 2018. ", + "bbox": [ + 176, + 103, + 823, + 146 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Chunyang Xiao, Marc Dymetman, and Claire Gardent. Sequence-based structured prediction for semantic parsing. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics, pp. 1341–1350, 2016. ", + "bbox": [ + 176, + 155, + 823, + 196 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Deniz Yuret. Knet: beginning deep learning with 100 lines of julia. In Machine Learning Systems Workshop at NIPS, volume 2016, pp. 5, 2016. ", + "bbox": [ + 176, + 207, + 821, + 236 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A MODEL ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 176, + 102, + 413, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.1 PROTOTYPE ENCODER ", + "bbox": [ + 176, + 133, + 375, + 148 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We use a single layer BiLSTM network to encode $h _ { \\mathrm { p r o t o } } ^ { k j }$ as follows: ", + "bbox": [ + 173, + 159, + 614, + 178 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/54c509cfb3d5eb93829a5ad063905da3888e74e97f4f73b57b638b8a3340d9d7.jpg", + "text": "$$\nh _ { \\mathrm { p r o t o } } ^ { k } = \\mathrm { p r o j } ( \\mathrm { B i L S T M } \\left( W _ { e } d _ { k } ^ { \\prime } \\right) )\n$$", + "text_format": "latex", + "bbox": [ + 390, + 185, + 606, + 207 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Morphology The hidden and embedding sizes are 1024. No dropout is applied. We project bidirectional embeddings to the hidden size with a linear projection. We concatenate the backward and the forward hidden states. ", + "bbox": [ + 173, + 220, + 826, + 263 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "SCAN We choose the hidden size as 512, and embedding size as 64. We apply 0.5 dropout to the input. We project hidden vectors in the attention mechanism. ", + "bbox": [ + 174, + 270, + 823, + 299 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.2 DECODER ", + "text_level": 1, + "bbox": [ + 174, + 316, + 289, + 332 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The decoder is implemented by a single layer. In addition to the hidden state and memory cell, we also carry out a feed vector through time: ", + "bbox": [ + 174, + 343, + 823, + 373 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/7112765bc2f05c5477f8f447e14c90e628b482c79c1d9875a9274439805becf7.jpg", + "text": "$$\n\\begin{array} { l l l } { { } } & { { \\displaystyle h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , ~ \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , ~ \\sum _ { j \\leq | d _ { 1 } | } \\alpha _ { \\mathrm { p r o t o } } ^ { 1 j } h _ { \\mathrm { p r o t o } } ^ { 1 j } , ~ \\cdots ~ , ~ \\sum _ { j \\leq | d _ { n } | } \\alpha _ { \\mathrm { p r o t o } } ^ { n j } h _ { \\mathrm { p r o t o } } ^ { n j } ~ \\right] } } \\\\ { { } } & { { \\mathrm { f e e d } ^ { t } = \\mathrm { L i n e a r } _ { \\mathrm { f e e d } } ( h _ { \\mathrm { p r e } } ^ { t } ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 238, + 397, + 758, + 457 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The input to the LSTM decoder at time step $t$ is the concatenation of the previous token’s representation, previous feed vector, and a latent $z$ vector (in the VAE model). ", + "bbox": [ + 173, + 469, + 826, + 500 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/83f894b6067d421244ee465c4ac93a50877c0ed48aa5bfadb511af893d868b51.jpg", + "text": "$$\n\\mathrm { i n p u t } ^ { t } = [ W _ { d } d ^ { t - 1 } , f e e d ^ { t - 1 } , z ]\n$$", + "text_format": "latex", + "bbox": [ + 393, + 520, + 602, + 539 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Morphology We use a single-layer LSTM network with a hidden size of 1024, and an embedding size of 1024. We initialize the decoder hidden states with the final hidden states of the BiLSTM encoder. feed is the same size as the hidden state. No dropout is applied in the decoder. Output calculations are provided in the original paper in equation Eq. 16. The query vector for the attentions is identically the hidden state: ", + "bbox": [ + 173, + 550, + 825, + 621 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/12c7b9b8e1b1ed79a2d9eca7f3c3fe761f3e59809e6fd1aa7e573361ec72d8f8.jpg", + "text": "$$\n{ \\sf q u e r y } ^ { t } = h _ { \\mathrm { o u t } } ^ { t }\n$$", + "text_format": "latex", + "bbox": [ + 450, + 621, + 545, + 640 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Further details of the attention are provided in Appendix A.3. ", + "bbox": [ + 173, + 643, + 576, + 660 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "SCAN The decoder is implemented by a single layer LSTM network with hidden size of 512, and embedding size of 64. The embedding parameters are shared with the encoder. Here the size of the feed vector is equal to embedding size, 64. ", + "bbox": [ + 174, + 665, + 825, + 708 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We have no self-attention for this decoder in the feed vector. There is an attention projection with dimension is 128. The details of the attention mechanism given in Appendix A.3. Finally, we use transpose of the embedding matrix to project feed to the output space. ", + "bbox": [ + 174, + 714, + 823, + 757 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/94d163da51117ea9445486b736592da4ca481bf14dec3a043d80d293aeb1871b.jpg", + "text": "$$\n\\mathrm { o u t p u t } ^ { t } = W _ { e } ^ { \\top } \\mathrm { f e e d } ^ { t }\n$$", + "text_format": "latex", + "bbox": [ + 429, + 765, + 566, + 785 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "outputt contains unnormalized scores before the final softmax layer. We apply 0.7 dropout to $h _ { o u t } ^ { t }$ during both training and test. The copy mechanism will be further described in Appendix A.3. ", + "bbox": [ + 174, + 800, + 825, + 829 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The input to the LSTM decoder is the same as Eq. 25 except the decoder embedding matrix, $W _ { d }$ , shares parameters with encoder embedding matrix $W _ { e }$ . We applied 0.5 dropout to the embeddings $d _ { t - 1 }$ . ", + "bbox": [ + 174, + 835, + 825, + 878 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The query vector for the attention is calculated by: ", + "bbox": [ + 174, + 885, + 504, + 900 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/54b175f47d069db5adac0206567c61a1e7135b192849a5b1e87b936efccd862c.jpg", + "text": "$$\n{ \\displaystyle \\mathrm { q u e r y } ^ { t } } = [ h _ { \\mathrm { o u t } } ^ { t } , \\mathrm { i n p u t } ^ { t } ]\n$$", + "text_format": "latex", + "bbox": [ + 423, + 906, + 575, + 925 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.3 ATTENTION AND COPYING ", + "text_level": 1, + "bbox": [ + 176, + 103, + 405, + 118 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We use the attention mechanism described in Vaswani et al. (2017) with slight modifications. ", + "bbox": [ + 173, + 128, + 782, + 145 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Morphology We use a linear transformation for key while retaining an embedding size of 1024, and leave query and value transformations as the identity. We do not normalize by the square root of the attention dimension. The query vector is described in the decoder Appendix A.2. The copy mechanism for the morphology task is explained in the paper in detail. ", + "bbox": [ + 173, + 150, + 825, + 208 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "SCAN We use the nonlinear tanh transformation for key, query and value. That the attention scores are calculated separately for each prototype using different parameters as well as the normalization i.e. obtaining $\\alpha$ ’s is performed separately for each prototype. ", + "bbox": [ + 174, + 213, + 821, + 257 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The copy mechanism for this task is slightly different and follows Gu et al. (2016) We normalize prototype attention scores and output scores jointly. Let $\\bar { \\alpha } _ { i }$ represent attention weights for each prototype sequence before normalization. Then, we concatenate them to the output vector in Eq. 27. ", + "bbox": [ + 174, + 262, + 825, + 305 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/474c8db76d93d8262f36055e1d92625372a3048edb47abf1873d302463f1fbf9.jpg", + "text": "$$\n\\mathrm { f i n a l } ^ { t } = [ \\mathrm { o u t p u t } ^ { t } , \\bar { \\alpha } _ { 1 } , . . . , \\bar { \\alpha } _ { n } ]\n$$", + "text_format": "latex", + "bbox": [ + 403, + 310, + 593, + 329 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We obtain a probability vector via a final softmax layer: ", + "bbox": [ + 173, + 337, + 539, + 352 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/ecd1b3b02c963b3bd88c4d8c468a03ec1470f302eb3aa5516efdb7577a7c4899.jpg", + "text": "$$\n{ \\mathrm { p r o b } } ^ { t } = \\operatorname { s o f t m a x } ( f i n a l ^ { t } )\n$$", + "text_format": "latex", + "bbox": [ + 411, + 357, + 584, + 376 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "That size of this probability vector is vocabulary size plus the total length all prototypes. We then project this into the output space by: ", + "bbox": [ + 173, + 382, + 823, + 411 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/0f768d76e2126cd4611f8a7a352d8ed7b0ac2606a51a8a6919774e6bc3b31728.jpg", + "text": "$$\np ^ { t } ( w ) = \\mathtt { p r o b } ^ { t } ( \\mathtt { i n d i c e s } ( w ) )\n$$", + "text_format": "latex", + "bbox": [ + 401, + 416, + 596, + 435 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where indices finds all corresponding scores in probt for token $w$ where there might be more than one element for a given $w$ . This is because one score can come from the outputt region, and others from the prototype regions of $p r o b ^ { t }$ . During training we applied 0.5 dropout to the indices from outputt. Thus, the model is encouraged to copy more. ", + "bbox": [ + 174, + 443, + 825, + 500 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B NEIGHBORHOODS AND SAMPLING ", + "text_level": 1, + "bbox": [ + 174, + 520, + 496, + 536 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In the Eq. 20 and Eq. 21 we expressed the generic form of neighborhood sets. Here we provide the implementation details. ", + "bbox": [ + 173, + 551, + 823, + 580 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "SCAN In the jump split, we use long-short recombination with $\\delta = 0 . 5$ . In around right we use long-long recombination with $\\delta = 0 . 5$ , and construct $\\Omega$ so that the first and second prototypes to differ by a single token. We randomly pick $k < 1 0 \\times 3$ (10 different first prototypes, and 3 different second prototypes for each of them) prototype pairs that satisfy these conditions. For the recomb- $^ { l }$ experiment, we use the same neighborhood setup except but consider only the $k < 1 0$ first prototypes. ", + "bbox": [ + 174, + 587, + 825, + 657 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Sampling In the jump split, we used beam search with beam size 4 in the decoder. We calculate the mean and standard deviation over the lengths of both among the first $d _ { 1 } ^ { \\prime }$ and the second $d _ { 2 } ^ { \\prime }$ prototypes in the train set. Then, during the sampling, we expect the first and second prototypes whose length is shorter than their respective mean plus standard deviation. This decision is based on the fact that the part of the $\\Omega$ that the model is exposed to is determined by the empirical distribution, $\\hat { \\Omega }$ , that arises from training neighborhoods. When sampling, we try to pick prototypes from a distribution that are close to properties of that empirical distribution. In around right, we use temperature sampling with $T = 0 . 4$ . If a model cannot sample the expected number of both novel and unique samples within a reasonable time, we increase temperature $T$ . ", + "bbox": [ + 173, + 664, + 825, + 791 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Morphology We use long-long recombination, as explained in the paper, with slight modifications which leverage the structure of the task. We set $\\Omega$ as: ", + "bbox": [ + 174, + 797, + 823, + 827 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/6691ccb2f6b51ca608c9ef5f4e59bd85c280588c2f6818bdc7d38544557dec0d.jpg", + "text": "$$\n\\begin{array} { r } { \\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\neq d _ { 2 t a g s } ^ { \\prime } , ( d _ { \\mathrm { t a g s } } \\backslash d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\backslash d _ { \\mathrm { 2 t a g s } } ^ { \\prime } ) = 0 \\} } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 310, + 833, + 686, + 853 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For the recomb-1 model ${ \\mathcal { N } } ( d )$ utilizes tag similarity, lemma similarity and is constructed using a score function: ", + "bbox": [ + 173, + 859, + 825, + 888 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/a40678b4b18b53ff2b22c38f02e4e224b1b9132876421e7aa83e8b56e88df4dd.jpg", + "text": "$$\n\\mathrm { s c o r e } _ { 1 } ( d , d _ { 1 } ^ { \\prime } ) = \\left( | d _ { \\mathrm { t a g s } } \\Delta d _ { \\mathrm { 1 t a g s } } ^ { \\prime } | , \\mathrm { j a c c a r d } ( d _ { \\mathrm { l e m m a } } , d _ { \\mathrm { 1 l e m m a } } ^ { \\prime } ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 313, + 907, + 683, + 926 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Given $d$ , we sort training examples by using $s c o r e _ { 1 }$ as the comparison key and pick the four smallest neighbors (using a lexicographic sort) to form ${ \\mathcal { N } } ( d )$ . ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "For the recomb-2 model, ${ \\mathcal { N } } ( d )$ uses the same score function for the first prototype as in the recomb-1 case. The second prototype is selected using: ", + "bbox": [ + 173, + 138, + 823, + 167 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/ad74dbbe710eff2c9778c1ae7ae1efb6309c81c4b5cf526e3242d9ca0e36c198.jpg", + "text": "$$\n\\mathrm { s c o r e } _ { 2 } ( d , d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } ) = \\left( d _ { \\mathrm { t a g s } } \\neq d _ { \\mathrm { 2 t a g s } } ^ { \\prime } , | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\Delta d _ { \\mathrm { 2 t a g s } } ^ { \\prime } | \\right)\n$$", + "text_format": "latex", + "bbox": [ + 334, + 194, + 661, + 214 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Given $x$ , and a scored first prototype, we do one more sort over training examples by using ${ \\mathrm { s c o r e } } _ { 2 }$ as the comparison key. Then we pick first four neighbors for ${ \\mathcal { N } } ( d )$ . ", + "bbox": [ + 171, + 227, + 823, + 255 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Sampling We use a mix strategy of temperature sampling with $T = 0 . 5$ and greedy sampling in which we use the former for $d _ { \\mathrm { i n p u t } }$ and the latter for $d _ { \\mathrm { o u t p u t } }$ . We sample 180 unique and novel examples. ", + "bbox": [ + 174, + 261, + 825, + 303 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C GENERATIVE MODEL TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 323, + 478, + 339 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Morphology All of the hyper parameters mentioned here are optimized by a grid search on the Spanish validation set. We train our models for 25 epochs5. We use Adam optimizer with learning rate 0.0001. The generative model is trained on morphological reinflection order $( d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } \\triangleright d _ { \\mathrm { i n f l e c t i o n } } )$ from left to right, then the samples from the model are reordered for morphological analysis task $( d _ { \\mathrm { i n f l e c t i o n } } \\triangleright d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } )$ . ", + "bbox": [ + 174, + 354, + 825, + 426 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "SCAN We use different number of epochs for jump and around right splits where all models are trained for 8 epochs in the former and 3 epochs in the latter. We use Adam optimizer with learning rate 0.002, and gradient norm clip with 1.0. ", + "bbox": [ + 174, + 431, + 825, + 474 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "D SEQ2SEQ BASELINE MODEL ", + "text_level": 1, + "bbox": [ + 176, + 493, + 447, + 511 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "After generating novel samples, we either concatenate them to the training data (in morphology), or sample training batches from a mixture of the original training data and the augmented data. Our conditional model is the same as the generative model used in morphology experiments, described in detail in the paper body, replacing $d _ { \\mathrm { p r o t o } }$ with $x$ , and $d$ with $y$ . ", + "bbox": [ + 174, + 525, + 825, + 582 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Every conditional model’s size is the same as the corresponding generative model which was used for augmentation. This is to ensure that the conditional model and the generative model have the same capacity. We train conditional models for 150 epochs for SCAN and we used augmentation ratios of $p _ { \\mathrm { a u g } } = 0 . 0 1$ and $p _ { \\mathrm { a u g } } = 0 . 2$ in jump and around right, respectively. For morphology, we train the conditional models for 100 epochs, and we use all generated examples for augmentation. ", + "bbox": [ + 174, + 588, + 825, + 659 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "E DIRECT INFERENCE ", + "text_level": 1, + "bbox": [ + 176, + 678, + 375, + 694 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "To adapt the prototype-based model for conditional prediction, we condition the neighborhood function on the input $x$ rather than the full datum $d$ , as in Hashimoto et al. (2018). Candidate $y \\mathrm { s }$ are then sampled from the generative model given the observed $x$ while marginalizing over retrieved prototypes. Finally, we re-rank these candidates via Eq. 7 and output the highest-scoring candidate. ", + "bbox": [ + 174, + 709, + 825, + 766 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "F VAE MODEL ", + "text_level": 1, + "bbox": [ + 174, + 785, + 315, + 801 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Prior $p ( z )$ : We use the same prior as Guu et al. (2018) given in Eq. 31. In this prior, $z$ is defined by a norm and direction vector. The norm is sampled from the uniform distribution between zero and a maximum possible norm $\\mu _ { \\mathrm { m a x } } ~ = ~ 1 0 . 0$ , and the direction is sampled uniformly from the unit hypersphere. This sampling procedure corresponds to a von Mises–Fisher distribution with concentration parameter zero. ", + "bbox": [ + 174, + 818, + 825, + 887 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/146c7bea2310a1887cf4f82018aa78c620bd682bb4aba6629bc8c9bf22269d34.jpg", + "text": "$$\nz = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } \\quad w h e r e \\quad z _ { \\mathrm { n o r m } } \\sim U ( 0 , \\mu _ { \\mathrm { m a x } } ) , \\quad z _ { \\mathrm { d i r } } \\sim \\mathrm { v m F } ( \\vec { u } , 0 )\n$$", + "text_format": "latex", + "bbox": [ + 282, + 121, + 715, + 138 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For SCAN, the size of $z$ is 32, and for morphology the size of $z$ is 2. ", + "bbox": [ + 171, + 154, + 620, + 170 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proposal Network $\\boldsymbol { q } ( \\boldsymbol { z } | \\boldsymbol { d } , d _ { 1 : n } )$ : Similarly to the prior, the posterior network decomposes $z$ into its norm and direction vectors. The norm vector is sampled from a uniform distribution at $( | \\mu | , \\operatorname* { m i n } ( | \\mu | +$ $\\epsilon , \\mu _ { \\mathrm { m a x } } )$ ), and the direction is sampled from the von Mises–Fisher distribution $\\operatorname { v m F } ( \\mu , \\kappa )$ where $\\kappa = 2 5 , \\epsilon = 1 . 0$ . ", + "bbox": [ + 173, + 175, + 826, + 232 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/f74a6d8544bc93ebb3be6b84b48c7083a92cb42a8377e61247c6217c55800b43.jpg", + "text": "$$\n\\begin{array} { r l } & { h _ { \\mathrm { f i n a l } } = \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { \\mathrm { s t a r t } } + \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { e n d } } \\\\ & { \\qquad \\mu = \\mathrm { t a n h } \\bigl ( W _ { z } \\left[ h _ { d \\mathrm { f i n a l } } , h _ { q \\mathrm { f i n a l } } \\right] \\bigr ) } \\\\ & { z _ { \\mathrm { n o r m } } \\sim U ( | \\mu | , m i n ( | \\mu | + \\epsilon , \\mu _ { \\mathrm { m a x } } ) \\bigr ) } \\\\ & { \\qquad z _ { \\mathrm { d i r } } \\sim v m F ( \\mu , \\kappa ) } \\\\ & { \\qquad z = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 380, + 261, + 617, + 354 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "G ADDITIONAL RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 376, + 400, + 392 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "G.1 MORPHOLOGY RESULTS", + "text_level": 1, + "bbox": [ + 174, + 410, + 390, + 424 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In the paper, Table 2 shows morphology results for (non-VAE) models with 8 hints (past- and futuretense examples in the training set). Here, we provide additional results for different hint set sizes and model variants. ", + "bbox": [ + 174, + 438, + 825, + 479 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "G.1.1 HINTS=4 ", + "text_level": 1, + "bbox": [ + 174, + 500, + 294, + 513 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/a62a53ed1a042ae191e2bb11f194aff3be73c3a693ae2eb264979f3cf1442b17.jpg", + "table_caption": [ + "Table 3: Exact Match Accuracy " + ], + "table_footnote": [], + "table_body": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.078 ±0.0290.63 ±0.090.107 ±0.0340.532 ±0.0290.067 ±0.0200.57 ±0.04
geca0.072 ±0.0190.63 ±0.050.039 ±0.0110.496 ±0.0270.052 ±0.0140.54 ±0.08
geca + resampling0.16 ±0.040.65 ±0.050.27 ±0.080.52 ±0.040.12 ±0.040.554 ±0.029
learned aug0.063 ±0.0120.65 ±0.040.066 ±0.0340.52 ±0.040.074 ±0.0210.57 ±0.04
learned aug + resampling0.098 ±0.0210.65 ±0.050.29 ±0.060.480 ±0.0350.092 ±0.0290.54 ±0.06
recomb-10.063 ±0.0170.674 ±0.0210.061 ±0.0170.520 ±0.0280.055 ±0.0210.554 ±0.030
recomb-1 + resampling0.13 ±0.040.64 ±0.040.29 ±0.040.48 ±0.040.15 ±0.040.52 ±0.06
recomb-20.061 ±0.0100.656 ±0.0300.08 ±0.060.524 ±0.0260.073 ±0.0190.58 ±0.05
recomb-2+resampling0.108 ±0.0210.64 ±0.050.18 ±0.040.542 ±0.0350.067 ±0.0260.55 ±0.06
", + "bbox": [ + 241, + 559, + 754, + 670 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/95fcb92747c5b18d2262db980ea02934e8a4d62660ffe5d2065b7d1af227721a.jpg", + "table_caption": [ + "Table 4: F1 Accuracy " + ], + "table_footnote": [], + "table_body": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.609 ±0.0250.873 ±0.0340.746 ±0.0130.897 ±0.0050.561 ±0.0320.867 ±0.015
geca0.606 ±0.0190.871 ±0.0170.722 ±0.0180.884 ±0.0070.565 ±0.0340.856 ±0.028
geca + resampling0.675 ±0.0170.870 ±0.0220.802 ±0.0230.892 ±0.0100.65 ±0.050.850 ±0.019
learned aug0.597 ±0.0210.871 ±0.0240.737 ±0.0100.897 ±0.0110.58 ±0.040.853 ±0.026
learned aug +resampling0.646 ±0.0070.872 ±0.0280.826 ±0.0130.887 ±0.0100.637 ±0.0320.835 ±0.034
recomb-10.596 ±0.0200.884 ±0.0100.727 ±0.0120.893 ±0.0100.557 ±0.0320.868 ±0.010
recomb-1 + resampling0.663 ±0.0290.874 ±0.0140.812 ±0.0170.886 ±0.0110.67 ±0.040.84 ±0.04
recomb-20.598 ±0.0190.874 ±0.0070.730 ±0.0230.894 ±0.0080.581 ±0.0350.865 ±0.024
recomb-2 + resampling0.658 ±0.0120.872 ±0.0150.778 ±0.0110.897 ±0.0070.609 ±0.0320.850 ±0.029
", + "bbox": [ + 241, + 731, + 756, + 842 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "G.1.2 HINTS=8 ", + "text_level": 1, + "bbox": [ + 174, + 869, + 294, + 883 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Main 8-prototype $F _ { 1 }$ results are provided in the body of the paper. Here we provide exact match results and an extra set of comparisons to the VAE model. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/69faebc7cdfbc3bcc0527c2fa58e58071182957a8b79c6d37cc24f2019aaafd2.jpg", + "table_caption": [ + "Table 5: Exact Match Accuracy " + ], + "table_footnote": [], + "table_body": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.151 ±0.0170.65 ±0.040.15 ±0.040.554 ±0.0340.23 ±0.060.55 ±0.04
geca0.136 ±0.0300.638 ±0.0260.15 ±0.050.55 ±0.060.21 ±0.050.550 ±0.032
geca +resampling0.249 ±0.0340.64 ±0.040.25 ±0.050.532 ±0.0330.27 ±0.070.524 ±0.026
learned aug0.163 ±0.0300.652 ±0.0330.18 ±0.050.560 ±0.0260.23 ±0.040.548 ±0.019
learned aug + resampling0.181 ±0.0260.590 ±0.0320.34 ±0.060.552 ±0.0290.24 ±0.040.53 ±0.05
recomb-10.155 ±0.0180.628 ±0.0200.161 ±0.0170.560 ±0.0250.22 ±0.040.538 ±0.025
recomb-1 +resampling0.218 ±0.0320.616 ±0.0340.35 ±0.040.53 ±0.040.30 ±0.040.52 ±0.04
recomb-20.131 ±0.0280.634 ±0.0270.19 ±0.110.56 ±0.040.24 ±0.050.528 ±0.032
recomb-2 +resampling0.203 ±0.0350.63 ±0.050.27 ±0.070.552 ±0.0310.25 ±0.050.54 ±0.06
", + "bbox": [ + 241, + 126, + 756, + 238 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/3ece8a8229f1da33042bdb3d39cbf512e18542f1afc7b1f790a3ff7617dd6b74.jpg", + "table_caption": [ + "Table 6: $F _ { 1 }$ Accuracy (VAE model) " + ], + "table_footnote": [], + "table_body": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
learned aug + resampling +vae0.689 ±0.0180.859 ±0.0100.845 ±0.0140.896 ±0.0110.730 ±0.0320.850 ±0.015
recomb-1 + resampling +vae0.717 ±0.0140.870 ±0.0070.843 ±0.0140.898 ±0.0100.736 ±0.0300.859 ±0.031
recomb-2 + resampling +vae0.710 ±0.0080.865 ±0.0120.824 ±0.0150.896 ±0.0110.751 ±0.0270.848 ±0.027
", + "bbox": [ + 240, + 295, + 756, + 351 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "G.1.3 HINTS=16 ", + "text_level": 1, + "bbox": [ + 174, + 376, + 302, + 390 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/e8779c4bfa9aa087e00f348d785e14fe5f63941b703cb1121e013569aa9f0615.jpg", + "table_caption": [ + "Table 7: Exact Match Accuracy " + ], + "table_footnote": [], + "table_body": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.27 ±0.050.65 ±0.040.28 ±0.060.544 ±0.0290.40 ±0.040.614 ±0.032
geca0.26 ±0.060.65 ±0.060.26 ±0.050.530 ±0.0280.37 ±0.050.570 ±0.035
geca +resampling0.34 ±0.050.63 ±0.040.32 ±0.070.506 ±0.0340.42 ±0.050.590 ±0.035
learned aug0.25 ±0.040.65 ±0.040.32 ±0.060.538 ±0.0280.39 ±0.040.58 ±0.05
learned aug +resampling0.230 ±0.0350.61 ±0.040.42 ±0.060.54 ±0.040.42 ±0.050.578 ±0.027
recomb-10.27 ±0.050.63 ±0.060.32 ±0.050.55 ±0.040.35 ±0.060.60 ±0.05
recomb-1 +resampling0.28 ±0.040.61 ±0.070.418 ±0.0350.548 ±0.0230.35 ±0.060.56 ±0.04
recomb-20.22 ±0.060.62 ±0.070.28 ±0.040.56 ±0.040.40 ±0.060.596 ±0.024
recomb-2 +resampling0.262 ±0.0250.61 ±0.070.405 ±0.0280.53 ±0.040.43 ±0.060.61 ±0.04
", + "bbox": [ + 241, + 433, + 754, + 547 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/c450bd975d7b10ccbfa66a55ac7cca904456a57831df63e362fd15e92225b9f4.jpg", + "table_caption": [ + "Table 8: F1 Accuracy " + ], + "table_footnote": [], + "table_body": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.733 ±0.0140.881 ±0.0120.811 ±0.0180.893 ±0.0110.750 ±0.0260.875 ±0.021
geca0.736 ±0.0190.884 ±0.0180.800 ±0.0240.889 ±0.0120.74 ±0.040.863 ±0.019
geca + resampling0.782 ±0.0240.867 ±0.0120.830 ±0.0210.885 ±0.0130.794 ±0.0320.865 ±0.018
learned aug0.738 ±0.0200.877 ±0.0080.816 ±0.0240.893 ±0.0120.752 ±0.0240.868 ±0.020
learned aug + resampling0.745 ±0.0190.870 ±0.0120.866 ±0.0160.894 ±0.0130.787 ±0.0310.863 ±0.021
recomb-10.738 ±0.0210.877 ±0.0190.820 ±0.0180.896 ±0.0140.735 ±0.0330.874 ±0.026
recomb-1 + resampling0.770 ±0.0200.867 ±0.0230.872 ±0.0050.892 ±0.0100.778 ±0.0240.861 ±0.022
recomb-20.716 ±0.0190.876 ±0.0220.815 ±0.0170.897 ±0.0160.752 ±0.0340.873 ±0.017
recomb-2+resampling0.765 ±0.0230.868 ±0.0210.856 ±0.0150.888 ±0.0160.808 ±0.0180.868 ±0.027
", + "bbox": [ + 241, + 604, + 756, + 715 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "G.2 SIGNIFICANCE TESTS ", + "text_level": 1, + "bbox": [ + 174, + 741, + 369, + 755 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Tables 9, 10 and 11 sho the $p$ -values for pairwise differences between the baseline and prototype-based models ", + "bbox": [ + 173, + 767, + 823, + 795 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Table 9: Turkish language $p$ -values for paired $t$ -test in $\\mathrm { P S T + F U T }$ tenses for the average $F _ { 1 }$ (micro) scores over several runs without Bonferronni correction. ", + "bbox": [ + 171, + 809, + 821, + 835 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/9970f9707fb881457e608de94d36acfe1d09f6938fc2a0386b1a7144bbe2f83c.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.259314
learned aug0.3525060.802058
recomb-10.7075340.1292440.187597
recomb-20.2335780.02305540.03317940.363375
geca + resampling1.0125e-163.7044e-124.07678e-156.04788e-171.71167e-19
leamed aug + resampling8.00807e-101.37553e-076.51548e-086.35314e-113.76501e-130.0167999
recomb-1 + resampling3.85877e-261.60117e-202.76421e-226.41228e-262.07776e-260.01093651.948e-06
recomb-2 + resampling2.56689e-153.4083e-132.08177e-142.92113e-181.79928e-190.9818860.01904620.0101878
", + "bbox": [ + 176, + 847, + 821, + 921 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/b22dd5dbf133998bb856503ea8171f273e6ba4f6752644efa0ca64d41f584545.jpg", + "table_caption": [ + "Table 10: Spanish language $p$ -values for paired $t$ -test in PST+FUT tenses for the average $F _ { 1 }$ (micro) scores over several runs without Bonferronni correction. " + ], + "table_footnote": [], + "table_body": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.394748
learned aug0.7611290.635337
recomb-10.4286060.9748510.620601
recomb-20.1997680.6019980.3174940.625078
geca + resampling2.27478e-256.11513e-293.30904e-241.38242e-242.19894e-27
learned aug + resampling1.09224e-109.34816e-131.40474e-114.70624e-134.78418e-140.000137083
recomb-1 + resampling4.00039e-278.88347e-304.06546e-251.2159e-287.2465e-290.4957341.35727e-05
recomb-2 + resampling1.17709e-171.29429e-214.07864e-181.12332e-191.66638e-210.3131430.009254770.103819
", + "bbox": [ + 176, + 137, + 823, + 213 + ], + "page_idx": 18 + }, + { + "type": "table", + "img_path": "images/08a8f779523e582a10bf277d2ee3960d987e0f7b05be29635adbe1ca40e98be4.jpg", + "table_caption": [ + "Table 11: Swahili language $p$ -values for paired $t$ -test in $\\mathrm { P S T + F U T }$ tenses for the average $F _ { 1 }$ (micro) scores over several runs without Bonferronni correction. " + ], + "table_footnote": [], + "table_body": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.606002
learned aug0.0008571310.00384601
recomb-16.27581e-050.001013510.769589
recomb-21.75947e-050.0002075070.2632420.402064
geca + resampling2.58696e-218.85433e-194.57259e-111.33673e-111.87968e-08
learned aug + resampling7.09377e-531.46895e-472.3846e-386.32242e-382.09274e-303.26321e-10
recomb-1 + resampling1.66361e-581.28557e-549.46035e-442.05703e-459.46848e-371.60241e-170.0749463
recomb-2 +resampling2.16531e-313.52334e-257.80047e-201.08762e-191.26218e-150.07566461.52594e-062.51776e-11
", + "bbox": [ + 176, + 280, + 823, + 356 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "G.3 GENERATED SAMPLES ", + "text_level": 1, + "bbox": [ + 176, + 380, + 375, + 393 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "All samples are randomly selected unless otherwise indicated. ", + "bbox": [ + 174, + 406, + 578, + 420 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "G.3.1 SCAN ", + "text_level": 1, + "bbox": [ + 174, + 435, + 279, + 450 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "In Table 12, we present three test samples from the SCAN task along with the predictions by direct inference and the conditional model trained on the augmented data with recomb-2. Note that the augmentation procedure was able to create novel samples whose input $( x )$ happens to be in the test set (Examples 1 and 3) while $y$ may or may not be correct (Example 1). ", + "bbox": [ + 174, + 460, + 825, + 517 + ], + "page_idx": 18 + }, + { + "type": "table", + "img_path": "images/ad30a87018b066837b8706d2093056cab29a45560ebed7942d7158d508134faf.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Example 1 (jump)Example 2 (jump)Example 3 (around right)
Input (𝑥= )walk twice after jump twicerun right after jump twice jump left and jump around right
True label (y) in augmented datasetJUMP JUMP WALK WALK JUMP JUMP JUMP WALKJUMP JUMP RTURN RUN (not generated)TURN LEFT JUMP'TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN LEFT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP
Predicted @
├ direct inference Lrecomb-2JUMP JUMP JUMP WALK JUMP JUMP WALK WALKLOOK LOOK RTURN JUMP JUMP JUMP RTURN RUNTURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP
", + "bbox": [ + 176, + 531, + 821, + 593 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Table 12: Comparison of generative and unconditional model predictions with and without data augmentation. The conditional model trained on augmented data (final row) is able to compensate for errors in data augmentation (Example 1) and generalize to examples never generated by the data augmentation procedure (Example 2), and often times if a sample is correctly created by the augmentation procedure, the conditional model also gets it right (Example 3). ", + "bbox": [ + 174, + 604, + 825, + 667 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Below are a set of samples from the learned aug (basic) model for SCAN dataset’s jump and around right splits, in order: ", + "bbox": [ + 174, + 694, + 823, + 722 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "IN: run opposite and walk opposite right twice OUT: RUN TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN RIGHT WALK \nIN: look around right thrice after run around thrice thrice OUT: TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK \nIN: look opposite right twice and walk around twice OUT: TURN RIGHT TURN RIGHT LOOK TURN RIGHT TURN RIGHT LOOK TURN RIGHT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK \nIN: run opposite and thrice OUT: RUN TURN LEFT RUN RUN ", + "bbox": [ + 173, + 731, + 826, + 854 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "IN: walk opposite right thrice turn turn right thrice OUT: TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT WALK IN: jump opposite right twice jump look around left OUT: TURN RIGHT TURN RIGHT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT LOOK TURN LEFT TURN LEFT LOOK ", + "bbox": [ + 174, + 869, + 825, + 922 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "IN: walk around left thrice after jump left left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK ", + "bbox": [ + 174, + 104, + 825, + 159 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "IN: run opposite right twice walk run left thrice OUT: TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN RIGHT WALK TURN LEFT TURN LEFT RUN TURN LEFT TURN LEFT RUN ", + "bbox": [ + 173, + 161, + 821, + 186 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Below are a set of samples from the recomb-1 model for SCAN dataset’s around right split. Note that there were no samples with rare tags generated by the model for the jump split: ", + "bbox": [ + 174, + 194, + 820, + 223 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "IN: run around right after walk around left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT RUN TURN LEFT RUN TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK \nIN: look around right after jump around left OUT: TURN LEFT LOOK TURN LEFT JUMP TURN LEFT LOOK TURN LEFT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP \nIN: look around right and jump around left OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP \nIN: walk around right and turn right twice OUT: TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT TURN RIGHT ", + "bbox": [ + 173, + 231, + 826, + 340 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Below are 4 samples from the recomb-2 model for each of SCAN dataset’s jump and around right splits, respectively: ", + "bbox": [ + 174, + 348, + 823, + 376 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "IN: jump opposite left thrice after jump opposite left thrice OUT: TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT WALK TURN LEFT TURN LEFT WALK TURN LEFT TURN LEFT WALK \nIN: jump left thrice and jump left thrice OUT: TURN LEFT LOOK TURN LEFT LOOK TURN LEFT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP IN: jump opposite right and turn around left OUT: TURN RIGHT TURN RIGHT JUMP \nTURN LEFT TURN LEFT TURN LEFT TURN LEFT \nIN: turn around left and jump around left OUT: TURN LEFT TURN LEFT TURN LEFT TURN LEFT TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP IN: look right twice after run around right OUT: TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK \nIN: turn right twice after look around right OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT TURN RIGHT \nIN: look twice and run around right OUT: LOOK LOOK TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN \nIN: walk opposite right twice and jump around right OUT: TURN RIGHT TURN RIGHT WALK TURN RIGHT TURN RIGHT WALK TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP ", + "bbox": [ + 173, + 383, + 825, + 507 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 523, + 826, + 632 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "G.3.2 MORPHOLOGY", + "text_level": 1, + "bbox": [ + 174, + 662, + 334, + 678 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Below are a set of samples from the learned aug (basic) model in SIGMORPHON format. ", + "bbox": [ + 174, + 694, + 748, + 709 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "şahmiçe şahmiçende N;LOC;SG;PSS2S \nkaradan havaya füze karadan havaya füzel N;DAT;PL;PSS3P \nernek erneklerine N;DAT;PL;PSS3P \nkiler kilerime N;DAT;SG;PSS1S \nmahlep mahlebimizi N;ACC;SG;PSS1P \nsüzmek süzerler V;IND;3;PL;PRS;POS;DECL \nâlap âlaps N;LGSPEC1;3S;SG;PRS \njöle jöleleri N;ACC;PL ", + "bbox": [ + 174, + 717, + 535, + 827 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "envejecerse envejeciéndose V.CVB;PRS colaxar colaxa V;IND;PRS;3;SG pergedrer no pergedremos V;NEG;IMP;1;PL mantear no mantees V;NEG;IMP;2;SG flaguear no flagueen V;NEG;IMP;3;PL malacostar malacostaría V;COND;3;SG ", + "bbox": [ + 173, + 842, + 429, + 924 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "desinstar desinse V;POS;IMP;3;SG concretizar no concretices V;NEG;IMP;2;SG ", + "bbox": [ + 174, + 106, + 444, + 132 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Below are a set of samples from the learned aug (basic) $^ +$ resampling model. ", + "bbox": [ + 174, + 138, + 674, + 154 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "şaşırmak şaşırmıyor musun? V;IND;2;PL;PST;PROG;POS;INTR ayılmak ayılmaya V;IND;1;SG;PST;DECL pleşmek pleşmiyor muyuz? V;IND;1;PL;PST;PROG;NEG;INTR imciyetmek imciyetmezdeğiz V;IND;1;PL;FUT;NEG;DECL kuvaşmak kuvaşmayacağız V;IND;1;PL;FUT;NEG;DECL yermek yermeyeceğiz V;IND;1;PL;FUT;NEG;DECL yarıtmak yarıtmayacağız V;IND;1;PL;FUT;NEG;DECL kelimek kelimeyeceğiz V;IND;1;PL;FUT;NEG;DECL ", + "bbox": [ + 174, + 162, + 534, + 272 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "trasescar trasescáis V;IND;PST;2;PL;IPFV tronar tronar V;IND;FUT;1;SG terzcalminar terzcalminan V;IND;PST;3;PL;IPFV esubronizar esubronizamos V;IND;PST;1;PL;IPFV urdir urdiremos V;IND;FUT;1;PL conder conderemos V;IND;FUT;1;PL florear florearían V;IND;PST;3;PL;LGSPEC1;SG sabrordar sabrordamos V;IND;PST;1;PL;IPFV ", + "bbox": [ + 174, + 286, + 470, + 396 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Below are a set of samples from the recomb- $l +$ resampling model (the best performing model in Table 2). Here we additionally annotate samples with error categories. ", + "bbox": [ + 169, + 404, + 823, + 431 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "kovulmak kovulmaz mısınız V;IND;2;PL;FUT;NEG;INTR (Inflection and tags don’t match.) düşünmek düşündüler V;IND;3;PL;PST;POS;DECL (Correct and novel.) sütmek sütmez miyiz? V;IND;2;SG;FUT;NEG;INTR (Inflection and tags don’t match.) bakmak bakmayacak mıyım? V;IND;1;PL;FUT;NEG;INTR (Inflection and tags don’t match) döndürmek döndürecek misiniz? V;IND;2;PL;FUT;POS;INTR (Correct and novel.) türkçeleştirtmek türkçeleştirtiyor m V;IND;2;PL;PST;PROG;NEG;INTR (Wrong inflection, novel tag.) çalmak çalmayız V;IND;2;PL;FUT;POS;DECL (Inflection and tags don’t match.) üsürmek üsürmezsin V;IND;2;SG;PST;NEG;DECL (Inflection and tags don’t match.) ", + "bbox": [ + 173, + 439, + 802, + 549 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "duplicar duplicaráis V;IND;FUT;2;PL (Correct and novel) \nefundar efundan V;SBJV;FUT;3;PL (Inflection and tags don’t match) \ndeshumanizar deshumanicas V;SBJV;PST;2;SG (Inplausible inflection.) \nemular emulares V;SBJV;FUT;2;SG (Correct and also in train set.) \nlanguidecer languidecíamos V;IND;PST;1;SG;IPFV (Inflection and tags don’t match) \nnominar nominamos V;SBJV;FUT;1;PL (Novel tags, incorrect inflection.) \nfinciar finciare V;SBJV;FUT;1;SG (Correct and novel.) \nabastar abasto V;IND;PST;1;SG (Inflection and tags don’t match) ", + "bbox": [ + 173, + 564, + 697, + 674 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "G.4 ATTENTION HEATMAP ", + "text_level": 1, + "bbox": [ + 174, + 103, + 374, + 117 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Here we provide a visualization copy and attention mechanism in recomb-2 model for SCAN experiments. ", + "bbox": [ + 171, + 130, + 823, + 159 + ], + "page_idx": 21 + }, + { + "type": "image", + "img_path": "images/010da7139c478be872214ea2c500b70f5256aa5879a8b45e8f401cb24f16a4cc.jpg", + "image_caption": [ + "Figure 3: Generation of a sample. We plot normalized output scores on the left, and attention weights to the different prototypes on the right. The prototypes are on the y axes. The model is recomb-2 model trained on SCAN jump split. " + ], + "image_footnote": [], + "bbox": [ + 173, + 172, + 825, + 674 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "H COMPUTE ", + "text_level": 1, + "bbox": [ + 174, + 751, + 294, + 767 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "We use a single 32GB NVIDIA V100 Volta GPU for each experiment. For every experiment, the whole pipeline which consists of training of the generative model, sampling and training of the conditional model takes less than an hour. ", + "bbox": [ + 174, + 782, + 825, + 825 + ], + "page_idx": 21 + } +] \ No newline at end of file diff --git a/parse/train/PS3IMnScugk/PS3IMnScugk_middle.json b/parse/train/PS3IMnScugk/PS3IMnScugk_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..d98e5267d9a8d4e2bdd4aad18dbdbcf23ad4875c --- /dev/null +++ b/parse/train/PS3IMnScugk/PS3IMnScugk_middle.json @@ -0,0 +1,59232 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "score": 1.0, + "content": "LEARNING TO RECOMBINE AND RESAMPLE DATA FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 373, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 373, + 119 + ], + "score": 1.0, + "content": "COMPOSITIONAL GENERALIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 189, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 175, + 146 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 175, + 146 + ], + "score": 1.0, + "content": "Ekin Akyürek", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 145, + 165, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 165, + 158 + ], + "score": 1.0, + "content": "MIT CSAIL", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 157, + 190, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 157, + 190, + 169 + ], + "score": 1.0, + "content": "akyurek@mit.edu", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 245, + 135, + 333, + 168 + ], + "lines": [ + { + "bbox": [ + 244, + 135, + 334, + 147 + ], + "spans": [ + { + "bbox": [ + 244, + 135, + 334, + 147 + ], + "score": 1.0, + "content": "Afra Feyza Akyürek", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 243, + 144, + 320, + 159 + ], + "spans": [ + { + "bbox": [ + 243, + 144, + 320, + 159 + ], + "score": 1.0, + "content": "Boston University", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 244, + 157, + 317, + 169 + ], + "spans": [ + { + "bbox": [ + 244, + 157, + 317, + 169 + ], + "score": 1.0, + "content": "akyurek@bu.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 388, + 135, + 453, + 168 + ], + "lines": [ + { + "bbox": [ + 387, + 133, + 455, + 147 + ], + "spans": [ + { + "bbox": [ + 387, + 133, + 455, + 147 + ], + "score": 1.0, + "content": "Jacob Andreas", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 387, + 145, + 441, + 158 + ], + "spans": [ + { + "bbox": [ + 387, + 145, + 441, + 158 + ], + "score": 1.0, + "content": "MIT CSAIL", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 388, + 157, + 446, + 169 + ], + "spans": [ + { + "bbox": [ + 388, + 157, + 446, + 169 + ], + "score": 1.0, + "content": "jda@mit.edu", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 277, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 223, + 469, + 376 + ], + "lines": [ + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "score": 1.0, + "content": "Flexible neural sequence models outperform grammar- and automaton-based coun-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 234, + 470, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 470, + 247 + ], + "score": 1.0, + "content": "terparts on a variety of tasks. However, neural models perform poorly in settings", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "requiring compositional generalization beyond the training data—particularly to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 140, + 255, + 471, + 270 + ], + "spans": [ + { + "bbox": [ + 140, + 255, + 471, + 270 + ], + "score": 1.0, + "content": "rare or unseen subsequences. Past work has found symbolic scaffolding (e.g.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 267, + 470, + 278 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 278 + ], + "score": 1.0, + "content": "grammars or automata) essential in these settings. We describe R&R, a learned", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 277, + 471, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 471, + 290 + ], + "score": 1.0, + "content": "data augmentation scheme that enables a large category of compositional general-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 289, + 471, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 471, + 300 + ], + "score": 1.0, + "content": "izations without appeal to latent symbolic structure. R&R has two components:", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "score": 1.0, + "content": "recombination of original training examples via a prototype-based generative", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 142, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "model and resampling of generated examples to encourage extrapolation. Train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "score": 1.0, + "content": "ing an ordinary neural sequence model on a dataset augmented with recombined", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "score": 1.0, + "content": "and resampled examples significantly improves generalization in two language", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "processing problems—instruction following (SCAN) and morphological analysis", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "(SIGMORPHON 2018)—where R&R enables learning of new constructions and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 365, + 320, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 320, + 378 + ], + "score": 1.0, + "content": "tenses from as few as eight initial examples.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 393, + 206, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 208, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 208, + 408 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 336, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 338, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 338, + 430 + ], + "score": 1.0, + "content": "How can we build machine learning models with the abil-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 338, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 338, + 442 + ], + "score": 1.0, + "content": "ity to learn new concepts in context from little data? Hu-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 441, + 337, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 337, + 452 + ], + "score": 1.0, + "content": "man language learners acquire new word meanings from", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 452, + 338, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 338, + 463 + ], + "score": 1.0, + "content": "a single exposure (Carey & Bartlett, 1978), and immedi-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 463, + 337, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 337, + 475 + ], + "score": 1.0, + "content": "ately incorporate words and their meanings productively", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 474, + 337, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 337, + 486 + ], + "score": 1.0, + "content": "and compositionally into larger linguistic and conceptual", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 485, + 336, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 336, + 497 + ], + "score": 1.0, + "content": "systems (Berko, 1958; Piantadosi & Aslin, 2016). Despite", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 337, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 337, + 508 + ], + "score": 1.0, + "content": "the remarkable success of neural network models on many", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 506, + 338, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 338, + 519 + ], + "score": 1.0, + "content": "learning problems in recent years—including one-shot", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 517, + 338, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 338, + 529 + ], + "score": 1.0, + "content": "learning of classifiers and policies (Santoro et al., 2016;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 528, + 338, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 338, + 541 + ], + "score": 1.0, + "content": "Wang et al., 2016)—this kind of few-shot learning of com-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 540, + 337, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 337, + 551 + ], + "score": 1.0, + "content": "posable concepts remains beyond the reach of standard", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 337, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 337, + 563 + ], + "score": 1.0, + "content": "neural models in both diagnostic and naturalistic settings", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 561, + 299, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 299, + 574 + ], + "score": 1.0, + "content": "(Lake & Baroni, 2018; Bahdanau et al., 2019a).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 336, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 336, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 336, + 591 + ], + "score": 1.0, + "content": "Consider the few-shot morphology learning problem", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "score": 1.0, + "content": "shown in Fig. 1, in which a learner must predict various lin-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 600, + 337, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 337, + 613 + ], + "score": 1.0, + "content": "guistic features (e.g. 3rd person, SinGular, PRESent tense)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 611, + 336, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 336, + 623 + ], + "score": 1.0, + "content": "from word forms, with only a small number of examples", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 621, + 338, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 338, + 635 + ], + "score": 1.0, + "content": "of the PAST tense in the training set. Neural sequence-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 633, + 337, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 337, + 645 + ], + "score": 1.0, + "content": "to-sequence models (e.g. Bahdanau et al., 2015) trained", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 644, + 337, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 337, + 656 + ], + "score": 1.0, + "content": "on this kind of imbalanced data fail to predict past-tense", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 655, + 337, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 337, + 667 + ], + "score": 1.0, + "content": "tags on held-out inputs of any kind (Section 5). Previous", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 666, + 337, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 337, + 678 + ], + "score": 1.0, + "content": "attempts to address this and related shortcomings in neural", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 677, + 337, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 337, + 690 + ], + "score": 1.0, + "content": "models have focused on explicitly encouraging rule-like", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 687, + 337, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 337, + 700 + ], + "score": 1.0, + "content": "behavior by e.g. modeling data with symbolic grammars", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 699, + 337, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 337, + 711 + ], + "score": 1.0, + "content": "(Jia & Liang, 2016; Xiao et al., 2016; Cai et al., 2017) or", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 710, + 338, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 338, + 722 + ], + "score": 1.0, + "content": "applying rule-based data augmentation (Andreas, 2020).", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 721, + 337, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 337, + 732 + ], + "score": 1.0, + "content": "These procedures involve highly task-specific models or", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 47.5 + }, + { + "type": "image", + "bbox": [ + 347, + 424, + 502, + 603 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 347, + 424, + 502, + 603 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 347, + 424, + 502, + 603 + ], + "spans": [ + { + "bbox": [ + 347, + 424, + 502, + 603 + ], + "score": 0.969, + "type": "image", + "image_path": "90e5a910bec2b9f29ac8fa294300ce33c5ee9693859101e6bbd4ea305a8d9aec.jpg" + } + ] + } + ], + "index": 61.5, + "virtual_lines": [ + { + "bbox": [ + 347, + 424, + 502, + 436.7857142857143 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 347, + 436.7857142857143, + 502, + 449.57142857142856 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 347, + 449.57142857142856, + 502, + 462.35714285714283 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 347, + 462.35714285714283, + 502, + 475.1428571428571 + ], + "spans": [], + "index": 58 + }, + { + "bbox": [ + 347, + 475.1428571428571, + 502, + 487.9285714285714 + ], + "spans": [], + "index": 59 + }, + { + "bbox": [ + 347, + 487.9285714285714, + 502, + 500.71428571428567 + ], + "spans": [], + "index": 60 + }, + { + "bbox": [ + 347, + 500.71428571428567, + 502, + 513.5 + ], + "spans": [], + "index": 61 + }, + { + "bbox": [ + 347, + 513.5, + 502, + 526.2857142857143 + ], + "spans": [], + "index": 62 + }, + { + "bbox": [ + 347, + 526.2857142857143, + 502, + 539.0714285714287 + ], + "spans": [], + "index": 63 + }, + { + "bbox": [ + 347, + 539.0714285714287, + 502, + 551.857142857143 + ], + "spans": [], + "index": 64 + }, + { + "bbox": [ + 347, + 551.857142857143, + 502, + 564.6428571428573 + ], + "spans": [], + "index": 65 + }, + { + "bbox": [ + 347, + 564.6428571428573, + 502, + 577.4285714285717 + ], + "spans": [], + "index": 66 + }, + { + "bbox": [ + 347, + 577.4285714285717, + 502, + 590.214285714286 + ], + "spans": [], + "index": 67 + }, + { + "bbox": [ + 347, + 590.214285714286, + 502, + 603.0000000000003 + ], + "spans": [], + "index": 68 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 613, + 505, + 723 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 344, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "Figure 1: We first train a generative model to", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 343, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 343, + 623, + 433, + 635 + ], + "score": 1.0, + "content": "reconstruct training pairs", + "type": "text" + }, + { + "bbox": [ + 434, + 623, + 457, + 634 + ], + "score": 0.88, + "content": "( x \\triangleright y )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 623, + 506, + 635 + ], + "score": 1.0, + "content": "by construct-", + "type": "text" + } + ], + "index": 70 + }, + { + "bbox": [ + 343, + 633, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 343, + 633, + 505, + 644 + ], + "score": 1.0, + "content": "ing them from other training pairs (a). We", + "type": "text" + } + ], + "index": 71 + }, + { + "bbox": [ + 343, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 343, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "then perform data augmentation by sampling", + "type": "text" + } + ], + "index": 72 + }, + { + "bbox": [ + 343, + 652, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 343, + 652, + 505, + 665 + ], + "score": 1.0, + "content": "from this model, preferentially generating", + "type": "text" + } + ], + "index": 73 + }, + { + "bbox": [ + 344, + 664, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 344, + 664, + 411, + 673 + ], + "score": 1.0, + "content": "samples in which", + "type": "text" + }, + { + "bbox": [ + 411, + 664, + 417, + 673 + ], + "score": 0.72, + "content": "_ y", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 664, + 505, + 673 + ], + "score": 1.0, + "content": "contains rare tokens or", + "type": "text" + } + ], + "index": 74 + }, + { + "bbox": [ + 343, + 673, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 343, + 673, + 506, + 684 + ], + "score": 1.0, + "content": "substructures (b). Dashed boxes show pre-", + "type": "text" + } + ], + "index": 75 + }, + { + "bbox": [ + 344, + 683, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 344, + 683, + 505, + 694 + ], + "score": 1.0, + "content": "diction targets. Conditional models trained", + "type": "text" + } + ], + "index": 76 + }, + { + "bbox": [ + 343, + 693, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 343, + 693, + 505, + 704 + ], + "score": 1.0, + "content": "on the augmented dataset accurately predict", + "type": "text" + } + ], + "index": 77 + }, + { + "bbox": [ + 343, + 703, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 343, + 703, + 373, + 715 + ], + "score": 1.0, + "content": "outputs", + "type": "text" + }, + { + "bbox": [ + 373, + 704, + 380, + 713 + ], + "score": 0.79, + "content": "_ y", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 703, + 442, + 715 + ], + "score": 1.0, + "content": "from new inputs", + "type": "text" + }, + { + "bbox": [ + 442, + 705, + 449, + 712 + ], + "score": 0.77, + "content": "_ x", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 703, + 506, + 715 + ], + "score": 1.0, + "content": "requiring com-", + "type": "text" + } + ], + "index": 78 + }, + { + "bbox": [ + 343, + 713, + 449, + 724 + ], + "spans": [ + { + "bbox": [ + 343, + 713, + 449, + 724 + ], + "score": 1.0, + "content": "positional generalization (c).", + "type": "text" + } + ], + "index": 79 + } + ], + "index": 74 + } + ], + "index": 67.75 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "score": 1.0, + "content": "LEARNING TO RECOMBINE AND RESAMPLE DATA FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 373, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 373, + 119 + ], + "score": 1.0, + "content": "COMPOSITIONAL GENERALIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 189, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 175, + 146 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 175, + 146 + ], + "score": 1.0, + "content": "Ekin Akyürek", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 145, + 165, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 165, + 158 + ], + "score": 1.0, + "content": "MIT CSAIL", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 157, + 190, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 157, + 190, + 169 + ], + "score": 1.0, + "content": "akyurek@mit.edu", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 111, + 135, + 190, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 245, + 135, + 333, + 168 + ], + "lines": [ + { + "bbox": [ + 244, + 135, + 334, + 147 + ], + "spans": [ + { + "bbox": [ + 244, + 135, + 334, + 147 + ], + "score": 1.0, + "content": "Afra Feyza Akyürek", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 243, + 144, + 320, + 159 + ], + "spans": [ + { + "bbox": [ + 243, + 144, + 320, + 159 + ], + "score": 1.0, + "content": "Boston University", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 244, + 157, + 317, + 169 + ], + "spans": [ + { + "bbox": [ + 244, + 157, + 317, + 169 + ], + "score": 1.0, + "content": "akyurek@bu.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 243, + 135, + 334, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 388, + 135, + 453, + 168 + ], + "lines": [ + { + "bbox": [ + 387, + 133, + 455, + 147 + ], + "spans": [ + { + "bbox": [ + 387, + 133, + 455, + 147 + ], + "score": 1.0, + "content": "Jacob Andreas", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 387, + 145, + 441, + 158 + ], + "spans": [ + { + "bbox": [ + 387, + 145, + 441, + 158 + ], + "score": 1.0, + "content": "MIT CSAIL", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 388, + 157, + 446, + 169 + ], + "spans": [ + { + "bbox": [ + 388, + 157, + 446, + 169 + ], + "score": 1.0, + "content": "jda@mit.edu", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 387, + 133, + 455, + 169 + ] + }, + { + "type": "title", + "bbox": [ + 277, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 223, + 469, + 376 + ], + "lines": [ + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "score": 1.0, + "content": "Flexible neural sequence models outperform grammar- and automaton-based coun-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 234, + 470, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 470, + 247 + ], + "score": 1.0, + "content": "terparts on a variety of tasks. However, neural models perform poorly in settings", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "requiring compositional generalization beyond the training data—particularly to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 140, + 255, + 471, + 270 + ], + "spans": [ + { + "bbox": [ + 140, + 255, + 471, + 270 + ], + "score": 1.0, + "content": "rare or unseen subsequences. Past work has found symbolic scaffolding (e.g.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 267, + 470, + 278 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 278 + ], + "score": 1.0, + "content": "grammars or automata) essential in these settings. We describe R&R, a learned", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 277, + 471, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 471, + 290 + ], + "score": 1.0, + "content": "data augmentation scheme that enables a large category of compositional general-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 289, + 471, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 471, + 300 + ], + "score": 1.0, + "content": "izations without appeal to latent symbolic structure. R&R has two components:", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "score": 1.0, + "content": "recombination of original training examples via a prototype-based generative", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 142, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "model and resampling of generated examples to encourage extrapolation. Train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "score": 1.0, + "content": "ing an ordinary neural sequence model on a dataset augmented with recombined", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "score": 1.0, + "content": "and resampled examples significantly improves generalization in two language", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "processing problems—instruction following (SCAN) and morphological analysis", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "(SIGMORPHON 2018)—where R&R enables learning of new constructions and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 365, + 320, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 320, + 378 + ], + "score": 1.0, + "content": "tenses from as few as eight initial examples.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5, + "bbox_fs": [ + 140, + 222, + 471, + 378 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 393, + 206, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 208, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 208, + 408 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 336, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 338, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 338, + 430 + ], + "score": 1.0, + "content": "How can we build machine learning models with the abil-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 338, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 338, + 442 + ], + "score": 1.0, + "content": "ity to learn new concepts in context from little data? Hu-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 441, + 337, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 337, + 452 + ], + "score": 1.0, + "content": "man language learners acquire new word meanings from", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 452, + 338, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 338, + 463 + ], + "score": 1.0, + "content": "a single exposure (Carey & Bartlett, 1978), and immedi-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 463, + 337, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 337, + 475 + ], + "score": 1.0, + "content": "ately incorporate words and their meanings productively", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 474, + 337, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 337, + 486 + ], + "score": 1.0, + "content": "and compositionally into larger linguistic and conceptual", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 485, + 336, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 336, + 497 + ], + "score": 1.0, + "content": "systems (Berko, 1958; Piantadosi & Aslin, 2016). Despite", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 337, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 337, + 508 + ], + "score": 1.0, + "content": "the remarkable success of neural network models on many", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 506, + 338, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 338, + 519 + ], + "score": 1.0, + "content": "learning problems in recent years—including one-shot", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 517, + 338, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 338, + 529 + ], + "score": 1.0, + "content": "learning of classifiers and policies (Santoro et al., 2016;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 528, + 338, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 338, + 541 + ], + "score": 1.0, + "content": "Wang et al., 2016)—this kind of few-shot learning of com-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 540, + 337, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 337, + 551 + ], + "score": 1.0, + "content": "posable concepts remains beyond the reach of standard", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 337, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 337, + 563 + ], + "score": 1.0, + "content": "neural models in both diagnostic and naturalistic settings", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 561, + 299, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 299, + 574 + ], + "score": 1.0, + "content": "(Lake & Baroni, 2018; Bahdanau et al., 2019a).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 419, + 338, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 336, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 336, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 336, + 591 + ], + "score": 1.0, + "content": "Consider the few-shot morphology learning problem", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "score": 1.0, + "content": "shown in Fig. 1, in which a learner must predict various lin-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 600, + 337, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 337, + 613 + ], + "score": 1.0, + "content": "guistic features (e.g. 3rd person, SinGular, PRESent tense)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 611, + 336, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 336, + 623 + ], + "score": 1.0, + "content": "from word forms, with only a small number of examples", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 621, + 338, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 338, + 635 + ], + "score": 1.0, + "content": "of the PAST tense in the training set. Neural sequence-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 633, + 337, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 337, + 645 + ], + "score": 1.0, + "content": "to-sequence models (e.g. Bahdanau et al., 2015) trained", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 644, + 337, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 337, + 656 + ], + "score": 1.0, + "content": "on this kind of imbalanced data fail to predict past-tense", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 655, + 337, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 337, + 667 + ], + "score": 1.0, + "content": "tags on held-out inputs of any kind (Section 5). Previous", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 666, + 337, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 337, + 678 + ], + "score": 1.0, + "content": "attempts to address this and related shortcomings in neural", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 677, + 337, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 337, + 690 + ], + "score": 1.0, + "content": "models have focused on explicitly encouraging rule-like", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 687, + 337, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 337, + 700 + ], + "score": 1.0, + "content": "behavior by e.g. modeling data with symbolic grammars", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 699, + 337, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 337, + 711 + ], + "score": 1.0, + "content": "(Jia & Liang, 2016; Xiao et al., 2016; Cai et al., 2017) or", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 710, + 338, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 338, + 722 + ], + "score": 1.0, + "content": "applying rule-based data augmentation (Andreas, 2020).", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 721, + 337, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 337, + 732 + ], + "score": 1.0, + "content": "These procedures involve highly task-specific models or", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "generative assumptions, preventing them from generalizing effectively to less structured problems", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "that combine rule-like and exceptional behavior. More fundamentally, they fail to answer the question", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "of whether explicit rules are necessary for compositional inductive bias, and whether it is possible to", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 483, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 483, + 128 + ], + "score": 1.0, + "content": "obtain “rule-like” inductive bias without appeal to an underlying symbolic generative process.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 577, + 338, + 732 + ] + }, + { + "type": "image", + "bbox": [ + 347, + 424, + 502, + 603 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 347, + 424, + 502, + 603 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 347, + 424, + 502, + 603 + ], + "spans": [ + { + "bbox": [ + 347, + 424, + 502, + 603 + ], + "score": 0.969, + "type": "image", + "image_path": "90e5a910bec2b9f29ac8fa294300ce33c5ee9693859101e6bbd4ea305a8d9aec.jpg" + } + ] + } + ], + "index": 61.5, + "virtual_lines": [ + { + "bbox": [ + 347, + 424, + 502, + 436.7857142857143 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 347, + 436.7857142857143, + 502, + 449.57142857142856 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 347, + 449.57142857142856, + 502, + 462.35714285714283 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 347, + 462.35714285714283, + 502, + 475.1428571428571 + ], + "spans": [], + "index": 58 + }, + { + "bbox": [ + 347, + 475.1428571428571, + 502, + 487.9285714285714 + ], + "spans": [], + "index": 59 + }, + { + "bbox": [ + 347, + 487.9285714285714, + 502, + 500.71428571428567 + ], + "spans": [], + "index": 60 + }, + { + "bbox": [ + 347, + 500.71428571428567, + 502, + 513.5 + ], + "spans": [], + "index": 61 + }, + { + "bbox": [ + 347, + 513.5, + 502, + 526.2857142857143 + ], + "spans": [], + "index": 62 + }, + { + "bbox": [ + 347, + 526.2857142857143, + 502, + 539.0714285714287 + ], + "spans": [], + "index": 63 + }, + { + "bbox": [ + 347, + 539.0714285714287, + 502, + 551.857142857143 + ], + "spans": [], + "index": 64 + }, + { + "bbox": [ + 347, + 551.857142857143, + 502, + 564.6428571428573 + ], + "spans": [], + "index": 65 + }, + { + "bbox": [ + 347, + 564.6428571428573, + 502, + 577.4285714285717 + ], + "spans": [], + "index": 66 + }, + { + "bbox": [ + 347, + 577.4285714285717, + 502, + 590.214285714286 + ], + "spans": [], + "index": 67 + }, + { + "bbox": [ + 347, + 590.214285714286, + 502, + 603.0000000000003 + ], + "spans": [], + "index": 68 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 613, + 505, + 723 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 344, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "Figure 1: We first train a generative model to", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 343, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 343, + 623, + 433, + 635 + ], + "score": 1.0, + "content": "reconstruct training pairs", + "type": "text" + }, + { + "bbox": [ + 434, + 623, + 457, + 634 + ], + "score": 0.88, + "content": "( x \\triangleright y )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 623, + 506, + 635 + ], + "score": 1.0, + "content": "by construct-", + "type": "text" + } + ], + "index": 70 + }, + { + "bbox": [ + 343, + 633, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 343, + 633, + 505, + 644 + ], + "score": 1.0, + "content": "ing them from other training pairs (a). We", + "type": "text" + } + ], + "index": 71 + }, + { + "bbox": [ + 343, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 343, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "then perform data augmentation by sampling", + "type": "text" + } + ], + "index": 72 + }, + { + "bbox": [ + 343, + 652, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 343, + 652, + 505, + 665 + ], + "score": 1.0, + "content": "from this model, preferentially generating", + "type": "text" + } + ], + "index": 73 + }, + { + "bbox": [ + 344, + 664, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 344, + 664, + 411, + 673 + ], + "score": 1.0, + "content": "samples in which", + "type": "text" + }, + { + "bbox": [ + 411, + 664, + 417, + 673 + ], + "score": 0.72, + "content": "_ y", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 664, + 505, + 673 + ], + "score": 1.0, + "content": "contains rare tokens or", + "type": "text" + } + ], + "index": 74 + }, + { + "bbox": [ + 343, + 673, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 343, + 673, + 506, + 684 + ], + "score": 1.0, + "content": "substructures (b). Dashed boxes show pre-", + "type": "text" + } + ], + "index": 75 + }, + { + "bbox": [ + 344, + 683, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 344, + 683, + 505, + 694 + ], + "score": 1.0, + "content": "diction targets. Conditional models trained", + "type": "text" + } + ], + "index": 76 + }, + { + "bbox": [ + 343, + 693, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 343, + 693, + 505, + 704 + ], + "score": 1.0, + "content": "on the augmented dataset accurately predict", + "type": "text" + } + ], + "index": 77 + }, + { + "bbox": [ + 343, + 703, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 343, + 703, + 373, + 715 + ], + "score": 1.0, + "content": "outputs", + "type": "text" + }, + { + "bbox": [ + 373, + 704, + 380, + 713 + ], + "score": 0.79, + "content": "_ y", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 703, + 442, + 715 + ], + "score": 1.0, + "content": "from new inputs", + "type": "text" + }, + { + "bbox": [ + 442, + 705, + 449, + 712 + ], + "score": 0.77, + "content": "_ x", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 703, + 506, + 715 + ], + "score": 1.0, + "content": "requiring com-", + "type": "text" + } + ], + "index": 78 + }, + { + "bbox": [ + 343, + 713, + 449, + 724 + ], + "spans": [ + { + "bbox": [ + 343, + 713, + 449, + 724 + ], + "score": 1.0, + "content": "positional generalization (c).", + "type": "text" + } + ], + "index": 79 + } + ], + "index": 74 + } + ], + "index": 67.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "generative assumptions, preventing them from generalizing effectively to less structured problems", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "that combine rule-like and exceptional behavior. More fundamentally, they fail to answer the question", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "of whether explicit rules are necessary for compositional inductive bias, and whether it is possible to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 483, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 483, + 128 + ], + "score": 1.0, + "content": "obtain “rule-like” inductive bias without appeal to an underlying symbolic generative process.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "This paper describes a procedure for improving few-shot compositional generalization in neural", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "sequence models without symbolic scaffolding. Our key insight is that even fixed, imbalanced training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "datasets provide a rich source of supervision for few-shot learning of concepts and composition", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "rules. In particular, we propose a new class of prototype-based neural sequence models (c.f. Gu", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "et al., 2018) that can be directly trained to perform the kinds of generalization exhibited in Fig. 1 by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "explicitly recombining fragments of training examples to reconstruct other examples. Even when", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "these prototype-based models are not effective as general-purpose predictors, we can resample their", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "score": 1.0, + "content": "outputs to select high-quality synthetic examples of rare phenomena. Ordinary neural sequence", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "models may then be trained on datasets augmented with these synthetic examples, distilling the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "learned regularities into more flexible predictors. This procedure, which we abbreviate R&R,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "promotes efficient generalization in both challenging synthetic sequence modeling tasks (Lake &", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 488, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 488, + 266 + ], + "score": 1.0, + "content": "Baroni, 2018) and morphological analysis in multiple natural languages (Cotterell et al., 2018).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 505, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "By directly optimizing for the kinds of generalization that symbolic representations are supposed to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "support, we can bypass the need for symbolic representations themselves: R&R gives performance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "comparable to or better than state-of-the-art neuro-symbolic approaches on tests of compositional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "score": 1.0, + "content": "generalization. Our results suggest that some failures of systematicity in neural models can be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "explained by simpler structural constraints on data distributions and corrected with weaker inductive", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 235, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 235, + 337 + ], + "score": 1.0, + "content": "bias than previously described.1", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 352, + 310, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 311, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 311, + 366 + ], + "score": 1.0, + "content": "2 BACKGROUND AND RELATED WORK", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 376, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 376, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 506, + 390 + ], + "score": 1.0, + "content": "Compositional generalization Systematic compositionality—the capacity to identify rule-like", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 388, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 400 + ], + "score": 1.0, + "content": "regularities from limited data and generalize these rules to novel situations—is an essential feature of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "human reasoning (Fodor et al., 1988). While details vary, a common feature of existing attempts to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "formalize systematicity in sequence modeling problems (e.g. Gordon et al., 2020) is the intuition that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "learners should make accurate predictions in situations featuring novel combinations of previously", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 431, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 506, + 444 + ], + "score": 1.0, + "content": "observed input or output subsequences. For example, learners should generalize from actions seen in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "isolation to more complex commands involving those actions (Lake et al., 2019), and from relations", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 451, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 154, + 468 + ], + "score": 1.0, + "content": "of the form", + "type": "text" + }, + { + "bbox": [ + 155, + 454, + 185, + 465 + ], + "score": 0.5, + "content": "\\boldsymbol { \\Gamma } ( \\mathsf { a } , \\mathsf { b } )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 451, + 197, + 468 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 198, + 454, + 228, + 465 + ], + "score": 0.57, + "content": "{ \\sf r } ( { \\sf b } , \\sf a )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 451, + 507, + 468 + ], + "score": 1.0, + "content": "(Keysers et al., 2020; Bahdanau et al., 2019b). In machine learning,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "previous studies have found that standard neural architectures fail to generalize systematically even", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "when they achieve high in-distribution accuracy in a variety of settings (Lake & Baroni, 2018;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 487, + 280, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 280, + 498 + ], + "score": 1.0, + "content": "Bastings et al., 2018; Johnson et al., 2017).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 506, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "Data augmentation and resampling Learning to predict sequential outputs with rare or novel", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "subsequences is related to the widely studied problem of class imbalance in classification problems.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "There, undersampling of the majority class or oversampling of the minority class has been found", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "to improve the quality of predictions for rare phenomena (Japkowicz et al., 2000). This can be", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "combined with targeted data augmentation with synthetic examples of the minority class (Chawla", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 321, + 570 + ], + "score": 1.0, + "content": "et al., 2002). Generically, given a training dataset", + "type": "text" + }, + { + "bbox": [ + 321, + 559, + 331, + 568 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 558, + 506, + 570 + ], + "score": 1.0, + "content": ", learning with class resampling and data", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 360, + 583 + ], + "score": 1.0, + "content": "augmentation involves defining an augmentation distribution", + "type": "text" + }, + { + "bbox": [ + 361, + 569, + 409, + 581 + ], + "score": 0.93, + "content": "\\tilde { p ( \\boldsymbol { x } , \\boldsymbol { y } \\mid \\boldsymbol { D } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 568, + 506, + 583 + ], + "score": 1.0, + "content": "and sample weighting", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 579, + 370, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 142, + 593 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 580, + 172, + 592 + ], + "score": 0.94, + "content": "u ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 579, + 370, + 593 + ], + "score": 1.0, + "content": "and maximizing a training objective of the form:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 594, + 439, + 628 + ], + "lines": [ + { + "bbox": [ + 171, + 594, + 439, + 628 + ], + "spans": [ + { + "bbox": [ + 171, + 594, + 439, + 628 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\theta ) = \\underbrace { \\frac { 1 } { | \\mathcal { D } | } \\sum _ { x \\in \\mathcal { D } } \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { O r i g i n a l t r a i n i n g d a t a } } + \\underbrace { { \\mathbb { E } } _ { ( x , y ) \\sim \\tilde { p } } u ( x , y ) \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { A u g m e n t e d d a t a } } . } \\end{array}", + "type": "interline_equation", + "image_path": "7e12847269d0964d0b1efc0f572e0991fd11c3929442b9ffdc76e2d562fa87b5.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 171, + 594, + 439, + 605.3333333333334 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 171, + 605.3333333333334, + 439, + 616.6666666666667 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 171, + 616.6666666666667, + 439, + 628.0000000000001 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 636, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "In addition to task-specific model architectures (Andreas et al., 2016; Russin et al., 2019), recent", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "years have seen a renewed interest in data augmentation as a flexible and model-agnostic tool for", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "encouraging controlled generalization (Ratner et al., 2017). Existing proposals for sequence models", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "are mainly rule-based—in sequence modeling problems, specifying a synchronous context-free", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "grammar (Jia & Liang, 2016) or string rewriting system (Andreas, 2020) to generate new examples.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 692, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 506, + 705 + ], + "score": 1.0, + "content": "Rule-based data augmentation schemes that recombine multiple training examples have been proposed", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "1Code for all experiments in this paper is available at https://github.com/ekinakyurek/compgen. We", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 423, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 423, + 732 + ], + "score": 1.0, + "content": "implemented our experiments in Knet (Yuret, 2016) using Julia (Bezanson et al., 2017).", + "type": "text" + } + ] + } + ] + }, + { + "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, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 126 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 83, + 506, + 128 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "This paper describes a procedure for improving few-shot compositional generalization in neural", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "sequence models without symbolic scaffolding. Our key insight is that even fixed, imbalanced training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "datasets provide a rich source of supervision for few-shot learning of concepts and composition", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "rules. In particular, we propose a new class of prototype-based neural sequence models (c.f. Gu", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 190 + ], + "score": 1.0, + "content": "et al., 2018) that can be directly trained to perform the kinds of generalization exhibited in Fig. 1 by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "explicitly recombining fragments of training examples to reconstruct other examples. Even when", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "these prototype-based models are not effective as general-purpose predictors, we can resample their", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "score": 1.0, + "content": "outputs to select high-quality synthetic examples of rare phenomena. Ordinary neural sequence", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "models may then be trained on datasets augmented with these synthetic examples, distilling the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "learned regularities into more flexible predictors. This procedure, which we abbreviate R&R,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "promotes efficient generalization in both challenging synthetic sequence modeling tasks (Lake &", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 488, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 488, + 266 + ], + "score": 1.0, + "content": "Baroni, 2018) and morphological analysis in multiple natural languages (Cotterell et al., 2018).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 131, + 506, + 266 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 505, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "By directly optimizing for the kinds of generalization that symbolic representations are supposed to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "support, we can bypass the need for symbolic representations themselves: R&R gives performance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "comparable to or better than state-of-the-art neuro-symbolic approaches on tests of compositional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "score": 1.0, + "content": "generalization. Our results suggest that some failures of systematicity in neural models can be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "explained by simpler structural constraints on data distributions and corrected with weaker inductive", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 235, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 235, + 337 + ], + "score": 1.0, + "content": "bias than previously described.1", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 270, + 506, + 337 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 352, + 310, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 311, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 311, + 366 + ], + "score": 1.0, + "content": "2 BACKGROUND AND RELATED WORK", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 376, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 376, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 506, + 390 + ], + "score": 1.0, + "content": "Compositional generalization Systematic compositionality—the capacity to identify rule-like", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 388, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 400 + ], + "score": 1.0, + "content": "regularities from limited data and generalize these rules to novel situations—is an essential feature of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "human reasoning (Fodor et al., 1988). While details vary, a common feature of existing attempts to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "formalize systematicity in sequence modeling problems (e.g. Gordon et al., 2020) is the intuition that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "learners should make accurate predictions in situations featuring novel combinations of previously", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 431, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 506, + 444 + ], + "score": 1.0, + "content": "observed input or output subsequences. For example, learners should generalize from actions seen in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "isolation to more complex commands involving those actions (Lake et al., 2019), and from relations", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 451, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 154, + 468 + ], + "score": 1.0, + "content": "of the form", + "type": "text" + }, + { + "bbox": [ + 155, + 454, + 185, + 465 + ], + "score": 0.5, + "content": "\\boldsymbol { \\Gamma } ( \\mathsf { a } , \\mathsf { b } )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 451, + 197, + 468 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 198, + 454, + 228, + 465 + ], + "score": 0.57, + "content": "{ \\sf r } ( { \\sf b } , \\sf a )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 451, + 507, + 468 + ], + "score": 1.0, + "content": "(Keysers et al., 2020; Bahdanau et al., 2019b). In machine learning,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "previous studies have found that standard neural architectures fail to generalize systematically even", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "when they achieve high in-distribution accuracy in a variety of settings (Lake & Baroni, 2018;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 487, + 280, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 280, + 498 + ], + "score": 1.0, + "content": "Bastings et al., 2018; Johnson et al., 2017).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 376, + 507, + 498 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 506, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "Data augmentation and resampling Learning to predict sequential outputs with rare or novel", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "subsequences is related to the widely studied problem of class imbalance in classification problems.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "There, undersampling of the majority class or oversampling of the minority class has been found", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "to improve the quality of predictions for rare phenomena (Japkowicz et al., 2000). This can be", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "combined with targeted data augmentation with synthetic examples of the minority class (Chawla", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 321, + 570 + ], + "score": 1.0, + "content": "et al., 2002). Generically, given a training dataset", + "type": "text" + }, + { + "bbox": [ + 321, + 559, + 331, + 568 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 558, + 506, + 570 + ], + "score": 1.0, + "content": ", learning with class resampling and data", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 360, + 583 + ], + "score": 1.0, + "content": "augmentation involves defining an augmentation distribution", + "type": "text" + }, + { + "bbox": [ + 361, + 569, + 409, + 581 + ], + "score": 0.93, + "content": "\\tilde { p ( \\boldsymbol { x } , \\boldsymbol { y } \\mid \\boldsymbol { D } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 568, + 506, + 583 + ], + "score": 1.0, + "content": "and sample weighting", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 579, + 370, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 142, + 593 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 580, + 172, + 592 + ], + "score": 0.94, + "content": "u ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 579, + 370, + 593 + ], + "score": 1.0, + "content": "and maximizing a training objective of the form:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 503, + 506, + 593 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 594, + 439, + 628 + ], + "lines": [ + { + "bbox": [ + 171, + 594, + 439, + 628 + ], + "spans": [ + { + "bbox": [ + 171, + 594, + 439, + 628 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\theta ) = \\underbrace { \\frac { 1 } { | \\mathcal { D } | } \\sum _ { x \\in \\mathcal { D } } \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { O r i g i n a l t r a i n i n g d a t a } } + \\underbrace { { \\mathbb { E } } _ { ( x , y ) \\sim \\tilde { p } } u ( x , y ) \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { A u g m e n t e d d a t a } } . } \\end{array}", + "type": "interline_equation", + "image_path": "7e12847269d0964d0b1efc0f572e0991fd11c3929442b9ffdc76e2d562fa87b5.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 171, + 594, + 439, + 605.3333333333334 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 171, + 605.3333333333334, + 439, + 616.6666666666667 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 171, + 616.6666666666667, + 439, + 628.0000000000001 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 636, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "In addition to task-specific model architectures (Andreas et al., 2016; Russin et al., 2019), recent", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "years have seen a renewed interest in data augmentation as a flexible and model-agnostic tool for", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "encouraging controlled generalization (Ratner et al., 2017). Existing proposals for sequence models", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "are mainly rule-based—in sequence modeling problems, specifying a synchronous context-free", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "grammar (Jia & Liang, 2016) or string rewriting system (Andreas, 2020) to generate new examples.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 692, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 506, + 705 + ], + "score": 1.0, + "content": "Rule-based data augmentation schemes that recombine multiple training examples have been proposed", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "for image classification (Inoue, 2018) and machine translation (Fadaee et al., 2017). While rule-", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "based data augmentation is highly effective in structured problems featuring crisp correspondences", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "score": 1.0, + "content": "between inputs and outputs, the effectiveness of such approaches involving more complicated,", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 454, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 454, + 128 + ], + "score": 1.0, + "content": "context-dependent relationships between inputs and outputs has not been well-studied.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 637, + 507, + 705 + ] + } + ] + }, + { + "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": "for image classification (Inoue, 2018) and machine translation (Fadaee et al., 2017). While rule-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "based data augmentation is highly effective in structured problems featuring crisp correspondences", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "score": 1.0, + "content": "between inputs and outputs, the effectiveness of such approaches involving more complicated,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 454, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 454, + 128 + ], + "score": 1.0, + "content": "context-dependent relationships between inputs and outputs has not been well-studied.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "Learned data augmentation What might compositional data augmentation look like without", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "rules as a source of inductive bias? As Fig. 1 suggests, an ideal data augmentation procedure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 116, + 165 + ], + "score": 0.65, + "content": "\\tilde { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "in Eq. 1) should automatically identify valid ways of transforming and combining examples,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "score": 1.0, + "content": "without pre-committing to a fixed set of transformations.2 A promising starting point is provided by", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "prototype-based models, a number of which (Gu et al., 2018; Guu et al., 2018; Khandelwal et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "2020) have been recently proposed for sequence modeling. Such models generate data according to:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 203, + 398, + 217 + ], + "lines": [ + { + "bbox": [ + 213, + 203, + 398, + 217 + ], + "spans": [ + { + "bbox": [ + 213, + 203, + 398, + 217 + ], + "score": 0.92, + "content": "d \\sim p _ { \\mathrm { r e w r i t e } } ( \\cdot \\mid d ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d ^ { \\prime } \\sim \\mathrm { U n i f } ( \\mathcal { D } ) ;", + "type": "interline_equation", + "image_path": "8ffc15e9a7914505e760b122ffd7973cc0a48dc88008d2b9a316e1c18964391b.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 213, + 203, + 398, + 217 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 156, + 235 + ], + "score": 1.0, + "content": "for a dataset", + "type": "text" + }, + { + "bbox": [ + 156, + 222, + 165, + 231 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 221, + 322, + 235 + ], + "score": 1.0, + "content": "and a learned sequence rewriting model", + "type": "text" + }, + { + "bbox": [ + 322, + 221, + 387, + 234 + ], + "score": 0.91, + "content": "p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 221, + 506, + 235 + ], + "score": 1.0, + "content": ". (To avoid confusion, we will", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 168, + 245 + ], + "score": 1.0, + "content": "use the symbol", + "type": "text" + }, + { + "bbox": [ + 168, + 233, + 175, + 243 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "to denote a datum. Because a data augmentation procedure must produce complete", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 244, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 227, + 256 + ], + "score": 1.0, + "content": "input–output examples, each", + "type": "text" + }, + { + "bbox": [ + 227, + 244, + 234, + 253 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 244, + 258, + 256 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 258, + 244, + 282, + 255 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 244, + 506, + 256 + ], + "score": 1.0, + "content": "pair for the conditional tasks evaluated in this paper.)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 253, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 253, + 242, + 268 + ], + "score": 1.0, + "content": "While recent variants implement", + "type": "text" + }, + { + "bbox": [ + 242, + 256, + 268, + 266 + ], + "score": 0.85, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 253, + 507, + 268 + ], + "score": 1.0, + "content": "with neural networks, these models are closely related to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 504, + 277 + ], + "score": 1.0, + "content": "classical kernel density estimators (Rosenblatt, 1956). But additionally—building on the motivation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 442, + 289 + ], + "score": 1.0, + "content": "in Section 1—they may be viewed as one-shot learners trained to generate new data", + "type": "text" + }, + { + "bbox": [ + 443, + 277, + 449, + 286 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "from a single", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 287, + 145, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 145, + 300 + ], + "score": 1.0, + "content": "example.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "Existing work uses prototype-based models as replacements for standard sequence models. We will", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "show here that they are even better suited to use as data augmentation procedures: they can produce", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "high-precision examples in the neighborhood of existing training data, then be used to bootstrap", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "simpler predictors that extrapolate more effectively. But our experiments will also show that existing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "prototype-based models give mixed results on challenging generalizations of the kind depicted in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "Fig. 1 when used for either direct prediction or data augmentation—performing well in some settings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 370, + 249, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 249, + 382 + ], + "score": 1.0, + "content": "but barely above baseline in others.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 401 + ], + "score": 1.0, + "content": "Accordingly, R&R is built on two model components that transform prototype-based language", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "models into an effective learned data augmentation scheme. Section 3 describes an implementation of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 104, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "prewrite that encourages greater sample diversity and well-formedness via a multi-prototype copying", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 451, + 432 + ], + "score": 1.0, + "content": "mechanism (a two-shot learner). Section 4 describes heuristics for sampling prototypes", + "type": "text" + }, + { + "bbox": [ + 451, + 420, + 460, + 430 + ], + "score": 0.84, + "content": "d ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "and model", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 138, + 443 + ], + "score": 1.0, + "content": "outputs", + "type": "text" + }, + { + "bbox": [ + 139, + 431, + 145, + 441 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "to focus data augmentation on the most informative examples. Section 5 investigates the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "empirical performance of both components of the approach, finding that they together provide they a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 453, + 426, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 426, + 465 + ], + "score": 1.0, + "content": "simple but surprisingly effective tool for enabling compositional generalization.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 106, + 480, + 471, + 493 + ], + "lines": [ + { + "bbox": [ + 104, + 479, + 473, + 496 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 473, + 496 + ], + "score": 1.0, + "content": "3 PROTOTYPE-BASED SEQUENCE MODELS FOR DATA RECOMBINATION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 518 + ], + "score": 1.0, + "content": "We begin with a brief review of existing prototype-based sequence models. Our presentation mostly", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 515, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 529 + ], + "score": 1.0, + "content": "follows the retrieve-and-edit approach of Guu et al. (2018), but versions of the approach in this paper", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "score": 1.0, + "content": "could also be built on retrieval-based models implemented with memory networks (Miller et al., 2016;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "Gu et al., 2018) or transformers (Khandelwal et al., 2020; Guu et al., 2020). The generative process", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 547, + 345, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 345, + 563 + ], + "score": 1.0, + "content": "described in Eq. 2 implies a marginal sequence probability:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 564, + 373, + 595 + ], + "lines": [ + { + "bbox": [ + 237, + 564, + 373, + 595 + ], + "spans": [ + { + "bbox": [ + 237, + 564, + 373, + 595 + ], + "score": 0.95, + "content": "p ( d ) = { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { D } } } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )", + "type": "interline_equation", + "image_path": "220e079d12b825b1b8005126f87823211b0213a7c002e1946a181257a91f2d1a.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 237, + 564, + 373, + 579.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 237, + 579.5, + 373, + 595.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 366, + 612 + ], + "score": 1.0, + "content": "Maximizing this quantity over the training set with respect to", + "type": "text" + }, + { + "bbox": [ + 366, + 600, + 372, + 609 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 598, + 438, + 612 + ], + "score": 1.0, + "content": "will encourage", + "type": "text" + }, + { + "bbox": [ + 439, + 601, + 465, + 611 + ], + "score": 0.78, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "to act as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "score": 1.0, + "content": "a model of valid data transformations: To be assigned high probability, every training example", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "must be explained by at least one other example and a parametric rewriting operation. (The trivial", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 169, + 645 + ], + "score": 1.0, + "content": "solution where", + "type": "text" + }, + { + "bbox": [ + 169, + 633, + 180, + 644 + ], + "score": 0.83, + "content": "p _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 632, + 300, + 645 + ], + "score": 1.0, + "content": "is the identity function, with", + "type": "text" + }, + { + "bbox": [ + 301, + 632, + 381, + 644 + ], + "score": 0.92, + "content": "p _ { \\theta } ( d \\mid d ^ { \\prime } = d ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 632, + 505, + 645 + ], + "score": 1.0, + "content": ", can be ruled out manually in", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 651, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 118, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "2As a concrete example of the potential advantage of learned data augmentation, consider applying the GECA", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 661, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 304, + 673 + ], + "score": 1.0, + "content": "procedure of Andreas (2020) to the language of strings", + "type": "text" + }, + { + "bbox": [ + 304, + 662, + 324, + 671 + ], + "score": 0.88, + "content": "a ^ { n } b ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 661, + 505, + 673 + ], + "score": 1.0, + "content": ". GECA produces a training set that is substitutable", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 303, + 682 + ], + "score": 1.0, + "content": "in the sense of Clark & Eyraud (2007); as noted there,", + "type": "text" + }, + { + "bbox": [ + 304, + 672, + 324, + 681 + ], + "score": 0.86, + "content": "a ^ { n } b ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 671, + 472, + 682 + ], + "score": 1.0, + "content": "is not substitutable. GECA will infer that", + "type": "text" + }, + { + "bbox": [ + 472, + 673, + 478, + 681 + ], + "score": 0.7, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 681, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 303, + 693 + ], + "score": 1.0, + "content": "replaced with aab based on their common context in", + "type": "text" + }, + { + "bbox": [ + 304, + 682, + 359, + 692 + ], + "score": 0.35, + "content": "( a \\underline { { a } } b b , a \\underline { { a } } a b b b )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 681, + 506, + 693 + ], + "score": 1.0, + "content": ", then generate the malformed example", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 691, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 201, + 703 + ], + "score": 1.0, + "content": "aaababbb by replacing an", + "type": "text" + }, + { + "bbox": [ + 201, + 693, + 208, + 700 + ], + "score": 0.67, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 691, + 505, + 703 + ], + "score": 1.0, + "content": "in the wrong position. In contrast, recurrent neural networks can accurately model", + "type": "text" + } + ] + }, + { + "bbox": [ + 107, + 700, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 107, + 701, + 127, + 711 + ], + "score": 0.86, + "content": "a ^ { n } b ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 700, + 505, + 714 + ], + "score": 1.0, + "content": "(Weiss et al., 2018; Gers & Schmidhuber, 2001). Of course, this language can also be generated using", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 712, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 505, + 723 + ], + "score": 1.0, + "content": "even more constrained procedures than GECA, but in general learned sequence models can capture a broader set", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 389, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 389, + 733 + ], + "score": 1.0, + "content": "of both formal regularities and exceptions compared to rule-based procedures.", + "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, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 507, + 128 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "Learned data augmentation What might compositional data augmentation look like without", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "rules as a source of inductive bias? As Fig. 1 suggests, an ideal data augmentation procedure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 116, + 165 + ], + "score": 0.65, + "content": "\\tilde { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "in Eq. 1) should automatically identify valid ways of transforming and combining examples,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "score": 1.0, + "content": "without pre-committing to a fixed set of transformations.2 A promising starting point is provided by", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "prototype-based models, a number of which (Gu et al., 2018; Guu et al., 2018; Khandelwal et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "2020) have been recently proposed for sequence modeling. Such models generate data according to:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 132, + 506, + 200 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 203, + 398, + 217 + ], + "lines": [ + { + "bbox": [ + 213, + 203, + 398, + 217 + ], + "spans": [ + { + "bbox": [ + 213, + 203, + 398, + 217 + ], + "score": 0.92, + "content": "d \\sim p _ { \\mathrm { r e w r i t e } } ( \\cdot \\mid d ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d ^ { \\prime } \\sim \\mathrm { U n i f } ( \\mathcal { D } ) ;", + "type": "interline_equation", + "image_path": "8ffc15e9a7914505e760b122ffd7973cc0a48dc88008d2b9a316e1c18964391b.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 213, + 203, + 398, + 217 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 156, + 235 + ], + "score": 1.0, + "content": "for a dataset", + "type": "text" + }, + { + "bbox": [ + 156, + 222, + 165, + 231 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 221, + 322, + 235 + ], + "score": 1.0, + "content": "and a learned sequence rewriting model", + "type": "text" + }, + { + "bbox": [ + 322, + 221, + 387, + 234 + ], + "score": 0.91, + "content": "p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 221, + 506, + 235 + ], + "score": 1.0, + "content": ". (To avoid confusion, we will", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 168, + 245 + ], + "score": 1.0, + "content": "use the symbol", + "type": "text" + }, + { + "bbox": [ + 168, + 233, + 175, + 243 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "to denote a datum. Because a data augmentation procedure must produce complete", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 244, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 227, + 256 + ], + "score": 1.0, + "content": "input–output examples, each", + "type": "text" + }, + { + "bbox": [ + 227, + 244, + 234, + 253 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 244, + 258, + 256 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 258, + 244, + 282, + 255 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 244, + 506, + 256 + ], + "score": 1.0, + "content": "pair for the conditional tasks evaluated in this paper.)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 253, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 253, + 242, + 268 + ], + "score": 1.0, + "content": "While recent variants implement", + "type": "text" + }, + { + "bbox": [ + 242, + 256, + 268, + 266 + ], + "score": 0.85, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 253, + 507, + 268 + ], + "score": 1.0, + "content": "with neural networks, these models are closely related to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 504, + 277 + ], + "score": 1.0, + "content": "classical kernel density estimators (Rosenblatt, 1956). But additionally—building on the motivation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 442, + 289 + ], + "score": 1.0, + "content": "in Section 1—they may be viewed as one-shot learners trained to generate new data", + "type": "text" + }, + { + "bbox": [ + 443, + 277, + 449, + 286 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "from a single", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 287, + 145, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 145, + 300 + ], + "score": 1.0, + "content": "example.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 221, + 507, + 300 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "Existing work uses prototype-based models as replacements for standard sequence models. We will", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "show here that they are even better suited to use as data augmentation procedures: they can produce", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "high-precision examples in the neighborhood of existing training data, then be used to bootstrap", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "simpler predictors that extrapolate more effectively. But our experiments will also show that existing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "prototype-based models give mixed results on challenging generalizations of the kind depicted in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "Fig. 1 when used for either direct prediction or data augmentation—performing well in some settings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 370, + 249, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 249, + 382 + ], + "score": 1.0, + "content": "but barely above baseline in others.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 304, + 506, + 382 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 401 + ], + "score": 1.0, + "content": "Accordingly, R&R is built on two model components that transform prototype-based language", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "models into an effective learned data augmentation scheme. Section 3 describes an implementation of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 104, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "prewrite that encourages greater sample diversity and well-formedness via a multi-prototype copying", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 451, + 432 + ], + "score": 1.0, + "content": "mechanism (a two-shot learner). Section 4 describes heuristics for sampling prototypes", + "type": "text" + }, + { + "bbox": [ + 451, + 420, + 460, + 430 + ], + "score": 0.84, + "content": "d ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "and model", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 138, + 443 + ], + "score": 1.0, + "content": "outputs", + "type": "text" + }, + { + "bbox": [ + 139, + 431, + 145, + 441 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "to focus data augmentation on the most informative examples. Section 5 investigates the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "empirical performance of both components of the approach, finding that they together provide they a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 453, + 426, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 426, + 465 + ], + "score": 1.0, + "content": "simple but surprisingly effective tool for enabling compositional generalization.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 385, + 506, + 465 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 480, + 471, + 493 + ], + "lines": [ + { + "bbox": [ + 104, + 479, + 473, + 496 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 473, + 496 + ], + "score": 1.0, + "content": "3 PROTOTYPE-BASED SEQUENCE MODELS FOR DATA RECOMBINATION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 518 + ], + "score": 1.0, + "content": "We begin with a brief review of existing prototype-based sequence models. Our presentation mostly", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 515, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 529 + ], + "score": 1.0, + "content": "follows the retrieve-and-edit approach of Guu et al. (2018), but versions of the approach in this paper", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "score": 1.0, + "content": "could also be built on retrieval-based models implemented with memory networks (Miller et al., 2016;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "Gu et al., 2018) or transformers (Khandelwal et al., 2020; Guu et al., 2020). The generative process", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 547, + 345, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 345, + 563 + ], + "score": 1.0, + "content": "described in Eq. 2 implies a marginal sequence probability:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 504, + 506, + 563 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 564, + 373, + 595 + ], + "lines": [ + { + "bbox": [ + 237, + 564, + 373, + 595 + ], + "spans": [ + { + "bbox": [ + 237, + 564, + 373, + 595 + ], + "score": 0.95, + "content": "p ( d ) = { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { D } } } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )", + "type": "interline_equation", + "image_path": "220e079d12b825b1b8005126f87823211b0213a7c002e1946a181257a91f2d1a.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 237, + 564, + 373, + 579.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 237, + 579.5, + 373, + 595.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 366, + 612 + ], + "score": 1.0, + "content": "Maximizing this quantity over the training set with respect to", + "type": "text" + }, + { + "bbox": [ + 366, + 600, + 372, + 609 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 598, + 438, + 612 + ], + "score": 1.0, + "content": "will encourage", + "type": "text" + }, + { + "bbox": [ + 439, + 601, + 465, + 611 + ], + "score": 0.78, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "to act as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "score": 1.0, + "content": "a model of valid data transformations: To be assigned high probability, every training example", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "must be explained by at least one other example and a parametric rewriting operation. (The trivial", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 169, + 645 + ], + "score": 1.0, + "content": "solution where", + "type": "text" + }, + { + "bbox": [ + 169, + 633, + 180, + 644 + ], + "score": 0.83, + "content": "p _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 632, + 300, + 645 + ], + "score": 1.0, + "content": "is the identity function, with", + "type": "text" + }, + { + "bbox": [ + 301, + 632, + 381, + 644 + ], + "score": 0.92, + "content": "p _ { \\theta } ( d \\mid d ^ { \\prime } = d ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 632, + 505, + 645 + ], + "score": 1.0, + "content": ", can be ruled out manually in", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 162, + 95 + ], + "score": 1.0, + "content": "the design of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 162, + 84, + 172, + 94 + ], + "score": 0.81, + "content": "p _ { \\theta }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 173, + 83, + 208, + 95 + ], + "score": 1.0, + "content": ".) When", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 208, + 83, + 217, + 92 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 218, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is large, the sum in Eq. 3 is too large to enumerate exhaustively when", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "computing the marginal likelihood. Instead, we can optimize a lower bound by restricting the sum to", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 367, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 175, + 117 + ], + "score": 1.0, + "content": "a neighborhood", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 176, + 104, + 220, + 117 + ], + "score": 0.93, + "content": "\\bar { \\mathcal { N } } ( d ) \\subset \\mathcal { D }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 221, + 105, + 356, + 117 + ], + "score": 1.0, + "content": "of training examples around each", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 357, + 105, + 363, + 114 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 363, + 105, + 367, + 117 + ], + "score": 1.0, + "content": ":", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 598, + 506, + 645 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 162, + 95 + ], + "score": 1.0, + "content": "the design of", + "type": "text" + }, + { + "bbox": [ + 162, + 84, + 172, + 94 + ], + "score": 0.81, + "content": "p _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 83, + 208, + 95 + ], + "score": 1.0, + "content": ".) When", + "type": "text" + }, + { + "bbox": [ + 208, + 83, + 217, + 92 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is large, the sum in Eq. 3 is too large to enumerate exhaustively when", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "computing the marginal likelihood. Instead, we can optimize a lower bound by restricting the sum to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 367, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 175, + 117 + ], + "score": 1.0, + "content": "a neighborhood", + "type": "text" + }, + { + "bbox": [ + 176, + 104, + 220, + 117 + ], + "score": 0.93, + "content": "\\bar { \\mathcal { N } } ( d ) \\subset \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 105, + 356, + 117 + ], + "score": 1.0, + "content": "of training examples around each", + "type": "text" + }, + { + "bbox": [ + 357, + 105, + 363, + 114 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 105, + 367, + 117 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 118, + 382, + 150 + ], + "lines": [ + { + "bbox": [ + 229, + 118, + 382, + 150 + ], + "spans": [ + { + "bbox": [ + 229, + 118, + 382, + 150 + ], + "score": 0.95, + "content": "p ( d ) \\geq { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { N } } ( d ) } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) ~ .", + "type": "interline_equation", + "image_path": "162f6f9165d5ea95173d62c2cedb7f002d06baefa87e5ed0349f2843bfa0ab0b.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 229, + 118, + 382, + 134.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 229, + 134.0, + 382, + 150.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 153, + 412, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 411, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 164, + 166 + ], + "score": 1.0, + "content": "The choice of", + "type": "text" + }, + { + "bbox": [ + 164, + 154, + 174, + 163 + ], + "score": 0.84, + "content": "\\mathcal { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 152, + 411, + 166 + ], + "score": 1.0, + "content": "is discussed in more detail in Section 4. Now observe that:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 165, + 443, + 232 + ], + "lines": [ + { + "bbox": [ + 168, + 165, + 443, + 232 + ], + "spans": [ + { + "bbox": [ + 168, + 165, + 443, + 232 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\log p ( { d } ) \\geq \\log \\left( | \\mathcal { N } ( d ) | \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\frac { 1 } { | \\mathcal { N } ( d ) | } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) \\right) - \\log | \\mathcal { D } | } \\\\ { \\geq \\displaystyle \\frac { 1 } { | \\mathcal { N } ( d ) | } \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) + \\log \\left( \\frac { | \\mathcal { N } ( d ) | } { | \\mathcal { D } | } \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "332d40e27af37edf8f661099d1ab669b0e7b1a5d2190d648f4e0d5392a51802d.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 168, + 165, + 443, + 187.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 168, + 187.33333333333334, + 443, + 209.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 168, + 209.66666666666669, + 443, + 232.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 313, + 248 + ], + "score": 1.0, + "content": "where the second step uses Jensen’s inequality. If all", + "type": "text" + }, + { + "bbox": [ + 314, + 235, + 343, + 247 + ], + "score": 0.92, + "content": "| \\mathcal { N } ( d ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 233, + 505, + 248 + ], + "score": 1.0, + "content": "are the same size, maximizing this lower", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 245, + 348, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 348, + 260 + ], + "score": 1.0, + "content": "bound on log-likelihood is equivalent to simply maximizing", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 250, + 261, + 363, + 289 + ], + "lines": [ + { + "bbox": [ + 250, + 261, + 363, + 289 + ], + "spans": [ + { + "bbox": [ + 250, + 261, + 363, + 289 + ], + "score": 0.94, + "content": "\\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )", + "type": "interline_equation", + "image_path": "045a2d63b5f48014d567b2002ee574688de0358f4404cb18ec9bbefb7406348b.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 250, + 261, + 363, + 275.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 250, + 275.0, + 363, + 289.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 292, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 126, + 304 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 127, + 293, + 135, + 302 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "—this is the ordinary conditional likelihood for a string transducer (Ristad & Yianilos, 1998)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 302, + 451, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 389, + 315 + ], + "score": 1.0, + "content": "or sequence-to-sequence model (Sutskever et al., 2014) with examples", + "type": "text" + }, + { + "bbox": [ + 390, + 303, + 443, + 315 + ], + "score": 0.92, + "content": "d , d ^ { \\prime } \\in \\mathcal { N } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 302, + 451, + 315 + ], + "score": 1.0, + "content": ". 3", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 342, + 334 + ], + "score": 1.0, + "content": "We have motivated prototype-based models by arguing that", + "type": "text" + }, + { + "bbox": [ + 343, + 321, + 369, + 331 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "learns a model of transformations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 330, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 344 + ], + "score": 1.0, + "content": "licensed by the training data. However, when generalization involves complex compositions, we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 341, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 330, + 356 + ], + "score": 1.0, + "content": "will show that neither a basic RNN implementation of", + "type": "text" + }, + { + "bbox": [ + 330, + 343, + 357, + 353 + ], + "score": 0.85, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 341, + 506, + 356 + ], + "score": 1.0, + "content": "or a single prototype is enough; we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "must provide the learned rewriting model with a larger inventory of parts and encourage reuse of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "score": 1.0, + "content": "those parts as faithfully as possible. This motivates the two improvements on the prototype-based", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 374, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 389 + ], + "score": 1.0, + "content": "modeling framework described in the remainder of this section: generalization to multiple prototypes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 385, + 325, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 325, + 398 + ], + "score": 1.0, + "content": "(Section 3.1) and a new rewriting model (Section 3.2).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 410, + 229, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 230, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 130, + 423 + ], + "score": 1.0, + "content": "3.1", + "type": "text" + }, + { + "bbox": [ + 131, + 412, + 138, + 420 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 410, + 230, + 423 + ], + "score": 1.0, + "content": "-PROTOTYPE MODELS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "To improve compositionality in prototype-based models, we equip them with the ability to condition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 442, + 504, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 497, + 454 + ], + "score": 1.0, + "content": "on multiple examples simultaneously. We extend the basic prototype-based language model to", + "type": "text" + }, + { + "bbox": [ + 497, + 445, + 504, + 451 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 387, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 354, + 466 + ], + "score": 1.0, + "content": "prototypes, which we now refer to as a recombination model", + "type": "text" + }, + { + "bbox": [ + 354, + 454, + 382, + 464 + ], + "score": 0.75, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 452, + 387, + 466 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 468, + 440, + 484 + ], + "lines": [ + { + "bbox": [ + 170, + 468, + 440, + 484 + ], + "spans": [ + { + "bbox": [ + 170, + 468, + 440, + 484 + ], + "score": 0.88, + "content": "d \\sim p _ { \\mathrm { r e c o m b } } ( \\cdot \\mid d _ { 1 : n } ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d _ { 1 : n } ^ { \\prime } \\stackrel { \\scriptscriptstyle \\mathrm { d e f } } { = } ( d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } , \\ldots , d _ { n } ^ { \\prime } ) \\sim p _ { \\Omega } ( \\cdot )", + "type": "interline_equation", + "image_path": "c430672e7e4264a2bae1563dab96acc996feae244f8b3a1d384ca4da7ef221cf.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 170, + 468, + 440, + 484 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 506, + 505 + ], + "score": 1.0, + "content": "A multi-protype model may be viewed as a meta-learner (Thrun & Pratt, 1998; Santoro et al., 2016):", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "it maps from a small number of examples (the prototypes) to a distribution over new datapoints consis-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 421, + 528 + ], + "score": 1.0, + "content": "tent with those examples. By choosing the neighborhood and implementation of", + "type": "text" + }, + { + "bbox": [ + 421, + 516, + 449, + 527 + ], + "score": 0.88, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "appropriately,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 525, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 507, + 539 + ], + "score": 1.0, + "content": "we can train this meta-learner to specialize in one-shot concept learning (by reusing a fragment exhib-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "ited in a single prototype) or compositional generalization (by assembling fragments of prototypes", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 547, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 547, + 469, + 560 + ], + "score": 1.0, + "content": "into a novel configuration). To enable this behavior, we define a set of compatible prototypes", + "type": "text" + }, + { + "bbox": [ + 469, + 548, + 504, + 558 + ], + "score": 0.89, + "content": "\\Omega \\subset { \\mathcal { D } } ^ { n }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 556, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 185, + 577 + ], + "score": 1.0, + "content": "(Section 4) and let", + "type": "text" + }, + { + "bbox": [ + 186, + 559, + 250, + 573 + ], + "score": 0.91, + "content": "p _ { \\Omega } \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\operatorname { U n i f } ( \\Omega )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 556, + 507, + 577 + ], + "score": 1.0, + "content": ". We update Eq. 6 to feature a corresponding multi-prototype", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 571, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 571, + 164, + 586 + ], + "score": 1.0, + "content": "neighborhood", + "type": "text" + }, + { + "bbox": [ + 165, + 573, + 214, + 583 + ], + "score": 0.89, + "content": "\\mathcal { N } : \\mathcal { D } \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 571, + 506, + 586 + ], + "score": 1.0, + "content": ". The only terms that have changed are the conditioning variable and the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 581, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 581, + 299, + 601 + ], + "score": 1.0, + "content": "constant term, and it is again sufficient to choose", + "type": "text" + }, + { + "bbox": [ + 299, + 584, + 306, + 593 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 581, + 353, + 601 + ], + "score": 1.0, + "content": "to optimize", + "type": "text" + }, + { + "bbox": [ + 354, + 583, + 484, + 598 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\sum _ { d _ { 1 : n } ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 581, + 507, + 601 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 596, + 280, + 609 + ], + "spans": [ + { + "bbox": [ + 107, + 596, + 115, + 606 + ], + "score": 0.75, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 596, + 177, + 609 + ], + "score": 1.0, + "content": ", implementing", + "type": "text" + }, + { + "bbox": [ + 177, + 597, + 205, + 608 + ], + "score": 0.84, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 596, + 280, + 609 + ], + "score": 1.0, + "content": "as described next.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 621, + 256, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 621, + 257, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 257, + 633 + ], + "score": 1.0, + "content": "3.2 RECOMBINATION NETWORKS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 641, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "Past work has found that latent-variable neural sequence models often ignore the latent variable and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 653, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 506, + 664 + ], + "score": 1.0, + "content": "attempt to directly model sequence marginals (Bowman et al., 2016). When an ordinary sequence-to-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 664, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 310, + 676 + ], + "score": 1.0, + "content": "sequence model with attention is used to implement", + "type": "text" + }, + { + "bbox": [ + 310, + 665, + 338, + 675 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 664, + 506, + 676 + ], + "score": 1.0, + "content": ", even in the one-prototype case, generated", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 695, + 388, + 709 + ], + "lines": [ + { + "bbox": [ + 223, + 695, + 388, + 709 + ], + "spans": [ + { + "bbox": [ + 223, + 695, + 388, + 709 + ], + "score": 0.92, + "content": "p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ) = \\mathbb { E } _ { z \\sim p ( z ) } [ p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } , z ; \\theta ) ]", + "type": "interline_equation", + "image_path": "29a86739ecfb868dbaf60a0ad333443a8cc5fb0698034bc6535601f93bf28546.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 223, + 695, + 388, + 709 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 119, + 682, + 353, + 693 + ], + "lines": [ + { + "bbox": [ + 119, + 680, + 353, + 694 + ], + "spans": [ + { + "bbox": [ + 119, + 680, + 310, + 694 + ], + "score": 1.0, + "content": "3Past work also includes a continuous latent variable", + "type": "text" + }, + { + "bbox": [ + 310, + 685, + 316, + 691 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 680, + 353, + 694 + ], + "score": 1.0, + "content": ", defining:", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 712, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 711, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 722 + ], + "score": 1.0, + "content": "As discussed in Section 5, the use of a continuous latent variable appears to make no difference in prediction", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "performance for the tasks in this paper. The remainder of our presentation focuses on the simpler model in Eq. 7.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 503, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 106, + 83, + 505, + 117 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 118, + 382, + 150 + ], + "lines": [ + { + "bbox": [ + 229, + 118, + 382, + 150 + ], + "spans": [ + { + "bbox": [ + 229, + 118, + 382, + 150 + ], + "score": 0.95, + "content": "p ( d ) \\geq { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { N } } ( d ) } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) ~ .", + "type": "interline_equation", + "image_path": "162f6f9165d5ea95173d62c2cedb7f002d06baefa87e5ed0349f2843bfa0ab0b.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 229, + 118, + 382, + 134.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 229, + 134.0, + 382, + 150.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 153, + 412, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 411, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 164, + 166 + ], + "score": 1.0, + "content": "The choice of", + "type": "text" + }, + { + "bbox": [ + 164, + 154, + 174, + 163 + ], + "score": 0.84, + "content": "\\mathcal { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 152, + 411, + 166 + ], + "score": 1.0, + "content": "is discussed in more detail in Section 4. Now observe that:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 152, + 411, + 166 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 165, + 443, + 232 + ], + "lines": [ + { + "bbox": [ + 168, + 165, + 443, + 232 + ], + "spans": [ + { + "bbox": [ + 168, + 165, + 443, + 232 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\log p ( { d } ) \\geq \\log \\left( | \\mathcal { N } ( d ) | \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\frac { 1 } { | \\mathcal { N } ( d ) | } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) \\right) - \\log | \\mathcal { D } | } \\\\ { \\geq \\displaystyle \\frac { 1 } { | \\mathcal { N } ( d ) | } \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) + \\log \\left( \\frac { | \\mathcal { N } ( d ) | } { | \\mathcal { D } | } \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "332d40e27af37edf8f661099d1ab669b0e7b1a5d2190d648f4e0d5392a51802d.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 168, + 165, + 443, + 187.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 168, + 187.33333333333334, + 443, + 209.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 168, + 209.66666666666669, + 443, + 232.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 313, + 248 + ], + "score": 1.0, + "content": "where the second step uses Jensen’s inequality. If all", + "type": "text" + }, + { + "bbox": [ + 314, + 235, + 343, + 247 + ], + "score": 0.92, + "content": "| \\mathcal { N } ( d ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 233, + 505, + 248 + ], + "score": 1.0, + "content": "are the same size, maximizing this lower", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 245, + 348, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 348, + 260 + ], + "score": 1.0, + "content": "bound on log-likelihood is equivalent to simply maximizing", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 233, + 505, + 260 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 250, + 261, + 363, + 289 + ], + "lines": [ + { + "bbox": [ + 250, + 261, + 363, + 289 + ], + "spans": [ + { + "bbox": [ + 250, + 261, + 363, + 289 + ], + "score": 0.94, + "content": "\\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )", + "type": "interline_equation", + "image_path": "045a2d63b5f48014d567b2002ee574688de0358f4404cb18ec9bbefb7406348b.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 250, + 261, + 363, + 275.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 250, + 275.0, + 363, + 289.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 292, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 126, + 304 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 127, + 293, + 135, + 302 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "—this is the ordinary conditional likelihood for a string transducer (Ristad & Yianilos, 1998)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 302, + 451, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 389, + 315 + ], + "score": 1.0, + "content": "or sequence-to-sequence model (Sutskever et al., 2014) with examples", + "type": "text" + }, + { + "bbox": [ + 390, + 303, + 443, + 315 + ], + "score": 0.92, + "content": "d , d ^ { \\prime } \\in \\mathcal { N } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 302, + 451, + 315 + ], + "score": 1.0, + "content": ". 3", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 292, + 505, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 342, + 334 + ], + "score": 1.0, + "content": "We have motivated prototype-based models by arguing that", + "type": "text" + }, + { + "bbox": [ + 343, + 321, + 369, + 331 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "learns a model of transformations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 330, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 344 + ], + "score": 1.0, + "content": "licensed by the training data. However, when generalization involves complex compositions, we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 341, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 330, + 356 + ], + "score": 1.0, + "content": "will show that neither a basic RNN implementation of", + "type": "text" + }, + { + "bbox": [ + 330, + 343, + 357, + 353 + ], + "score": 0.85, + "content": "p _ { \\mathrm { r e w r i t e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 341, + 506, + 356 + ], + "score": 1.0, + "content": "or a single prototype is enough; we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "must provide the learned rewriting model with a larger inventory of parts and encourage reuse of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "score": 1.0, + "content": "those parts as faithfully as possible. This motivates the two improvements on the prototype-based", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 374, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 389 + ], + "score": 1.0, + "content": "modeling framework described in the remainder of this section: generalization to multiple prototypes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 385, + 325, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 325, + 398 + ], + "score": 1.0, + "content": "(Section 3.1) and a new rewriting model (Section 3.2).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 320, + 506, + 398 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 410, + 229, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 230, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 130, + 423 + ], + "score": 1.0, + "content": "3.1", + "type": "text" + }, + { + "bbox": [ + 131, + 412, + 138, + 420 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 410, + 230, + 423 + ], + "score": 1.0, + "content": "-PROTOTYPE MODELS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "To improve compositionality in prototype-based models, we equip them with the ability to condition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 442, + 504, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 497, + 454 + ], + "score": 1.0, + "content": "on multiple examples simultaneously. We extend the basic prototype-based language model to", + "type": "text" + }, + { + "bbox": [ + 497, + 445, + 504, + 451 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 452, + 387, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 354, + 466 + ], + "score": 1.0, + "content": "prototypes, which we now refer to as a recombination model", + "type": "text" + }, + { + "bbox": [ + 354, + 454, + 382, + 464 + ], + "score": 0.75, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 452, + 387, + 466 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 430, + 505, + 466 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 468, + 440, + 484 + ], + "lines": [ + { + "bbox": [ + 170, + 468, + 440, + 484 + ], + "spans": [ + { + "bbox": [ + 170, + 468, + 440, + 484 + ], + "score": 0.88, + "content": "d \\sim p _ { \\mathrm { r e c o m b } } ( \\cdot \\mid d _ { 1 : n } ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d _ { 1 : n } ^ { \\prime } \\stackrel { \\scriptscriptstyle \\mathrm { d e f } } { = } ( d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } , \\ldots , d _ { n } ^ { \\prime } ) \\sim p _ { \\Omega } ( \\cdot )", + "type": "interline_equation", + "image_path": "c430672e7e4264a2bae1563dab96acc996feae244f8b3a1d384ca4da7ef221cf.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 170, + 468, + 440, + 484 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 506, + 505 + ], + "score": 1.0, + "content": "A multi-protype model may be viewed as a meta-learner (Thrun & Pratt, 1998; Santoro et al., 2016):", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "it maps from a small number of examples (the prototypes) to a distribution over new datapoints consis-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 421, + 528 + ], + "score": 1.0, + "content": "tent with those examples. By choosing the neighborhood and implementation of", + "type": "text" + }, + { + "bbox": [ + 421, + 516, + 449, + 527 + ], + "score": 0.88, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "appropriately,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 525, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 507, + 539 + ], + "score": 1.0, + "content": "we can train this meta-learner to specialize in one-shot concept learning (by reusing a fragment exhib-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "ited in a single prototype) or compositional generalization (by assembling fragments of prototypes", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 547, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 547, + 469, + 560 + ], + "score": 1.0, + "content": "into a novel configuration). To enable this behavior, we define a set of compatible prototypes", + "type": "text" + }, + { + "bbox": [ + 469, + 548, + 504, + 558 + ], + "score": 0.89, + "content": "\\Omega \\subset { \\mathcal { D } } ^ { n }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 556, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 185, + 577 + ], + "score": 1.0, + "content": "(Section 4) and let", + "type": "text" + }, + { + "bbox": [ + 186, + 559, + 250, + 573 + ], + "score": 0.91, + "content": "p _ { \\Omega } \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\operatorname { U n i f } ( \\Omega )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 556, + 507, + 577 + ], + "score": 1.0, + "content": ". We update Eq. 6 to feature a corresponding multi-prototype", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 571, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 571, + 164, + 586 + ], + "score": 1.0, + "content": "neighborhood", + "type": "text" + }, + { + "bbox": [ + 165, + 573, + 214, + 583 + ], + "score": 0.89, + "content": "\\mathcal { N } : \\mathcal { D } \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 571, + 506, + 586 + ], + "score": 1.0, + "content": ". The only terms that have changed are the conditioning variable and the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 581, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 581, + 299, + 601 + ], + "score": 1.0, + "content": "constant term, and it is again sufficient to choose", + "type": "text" + }, + { + "bbox": [ + 299, + 584, + 306, + 593 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 581, + 353, + 601 + ], + "score": 1.0, + "content": "to optimize", + "type": "text" + }, + { + "bbox": [ + 354, + 583, + 484, + 598 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\sum _ { d _ { 1 : n } ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 581, + 507, + 601 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 596, + 280, + 609 + ], + "spans": [ + { + "bbox": [ + 107, + 596, + 115, + 606 + ], + "score": 0.75, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 596, + 177, + 609 + ], + "score": 1.0, + "content": ", implementing", + "type": "text" + }, + { + "bbox": [ + 177, + 597, + 205, + 608 + ], + "score": 0.84, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 596, + 280, + 609 + ], + "score": 1.0, + "content": "as described next.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 493, + 507, + 609 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 621, + 256, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 621, + 257, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 257, + 633 + ], + "score": 1.0, + "content": "3.2 RECOMBINATION NETWORKS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 641, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "Past work has found that latent-variable neural sequence models often ignore the latent variable and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 653, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 506, + 664 + ], + "score": 1.0, + "content": "attempt to directly model sequence marginals (Bowman et al., 2016). When an ordinary sequence-to-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 664, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 310, + 676 + ], + "score": 1.0, + "content": "sequence model with attention is used to implement", + "type": "text" + }, + { + "bbox": [ + 310, + 665, + 338, + 675 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 664, + 506, + 676 + ], + "score": 1.0, + "content": ", even in the one-prototype case, generated", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 641, + 506, + 676 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 695, + 388, + 709 + ], + "lines": [ + { + "bbox": [ + 223, + 695, + 388, + 709 + ], + "spans": [ + { + "bbox": [ + 223, + 695, + 388, + 709 + ], + "score": 0.92, + "content": "p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ) = \\mathbb { E } _ { z \\sim p ( z ) } [ p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } , z ; \\theta ) ]", + "type": "interline_equation", + "image_path": "29a86739ecfb868dbaf60a0ad333443a8cc5fb0698034bc6535601f93bf28546.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 223, + 695, + 388, + 709 + ], + "spans": [], + "index": 42 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 68, + 463, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 68, + 463, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 68, + 463, + 178 + ], + "spans": [ + { + "bbox": [ + 146, + 68, + 463, + 178 + ], + "score": 0.97, + "type": "image", + "image_path": "afec9d43b3c01eaf8327afb034dc715c70356cb08a599c76be0d10c0fb326089.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 68, + 463, + 104.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 104.66666666666666, + 463, + 141.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 141.33333333333331, + 463, + 177.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 186, + 504, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "score": 1.0, + "content": "Figure 2: (a) RNN encoders produce contextual embeddings for prototype tokens. (b) In the decoder, a gated", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 196, + 492, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 492, + 208 + ], + "score": 1.0, + "content": "copy mechanism reuses prototypes and generated output tokens via an attention mechanism (dashed lines).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 505, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "sentences often have little overlap with their prototypes (Weston et al., 2018). We describe a specific", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 198, + 241 + ], + "score": 1.0, + "content": "model architecture for", + "type": "text" + }, + { + "bbox": [ + 198, + 230, + 225, + 240 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "that does not function as a generic noise model, and in which outputs", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "score": 1.0, + "content": "are primarily generated via explicit reuse of fragments of multiple prototypes, by facilitating copying", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 249, + 457, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 457, + 263 + ], + "score": 1.0, + "content": "from independent streams containing prototypes and previously generated input tokens.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 506, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 507, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 140, + 281 + ], + "score": 1.0, + "content": "We take", + "type": "text" + }, + { + "bbox": [ + 141, + 266, + 216, + 279 + ], + "score": 0.92, + "content": "p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 265, + 507, + 281 + ], + "score": 1.0, + "content": "to be a neural (multi-)sequence-to-sequence model (c.f. Sutskever et al.,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 276, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 325, + 293 + ], + "score": 1.0, + "content": "2014) which decomposes probability autoregressively:", + "type": "text" + }, + { + "bbox": [ + 325, + 277, + 503, + 290 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p _ { \\mathrm { r e c o m b } } ( d \\mid \\mathcal { \\bar { d } } _ { 1 : n } ^ { \\prime } ; \\theta ) = \\prod _ { t } p ( d ^ { t } \\mid d ^ { < t } , d _ { 1 : n } ^ { \\prime } ; \\theta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 276, + 507, + 293 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "As shown in Fig. 2, three LSTM encoders—two for the prototypes and one for the input prefix—", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 286, + 313 + ], + "score": 1.0, + "content": "compute sequences of token representations", + "type": "text" + }, + { + "bbox": [ + 287, + 300, + 309, + 312 + ], + "score": 0.91, + "content": "h _ { \\mathrm { p r o t o } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 300, + 327, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 300, + 344, + 311 + ], + "score": 0.91, + "content": "h _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "respectively. Given the current decoder", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 310, + 418, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 156, + 325 + ], + "score": 1.0, + "content": "hidden state", + "type": "text" + }, + { + "bbox": [ + 157, + 311, + 176, + 323 + ], + "score": 0.91, + "content": "\\setminus h _ { o u t } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 310, + 418, + 325 + ], + "score": 1.0, + "content": ", the model first attends to both prototype and output tokens:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 326, + 399, + 364 + ], + "lines": [ + { + "bbox": [ + 212, + 326, + 399, + 364 + ], + "spans": [ + { + "bbox": [ + 212, + 326, + 399, + 364 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\alpha _ { \\mathrm { o u t } } ^ { i } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { o } h _ { \\mathrm { o u t } } ^ { i } } ) } & { { i < t } } \\\\ { \\alpha _ { \\mathrm { p r o t o } } ^ { k j } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { p } h _ { \\mathrm { p r o t o } } ^ { k j } } ) } & { { k \\le n , j \\le | d _ { k } ^ { \\prime } | } } \\end{array}", + "type": "interline_equation", + "image_path": "cdc57cf2dd1c625bb3a1b2d5b31f9475c3f13ef7b754aac851e8e84ee25d4892.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 326, + 399, + 345.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 212, + 345.0, + 399, + 364.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 104, + 364, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 364, + 382, + 381 + ], + "score": 1.0, + "content": "To enable copying from each sequence, we project attention weights", + "type": "text" + }, + { + "bbox": [ + 383, + 368, + 400, + 378 + ], + "score": 0.87, + "content": "\\alpha _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 364, + 417, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 418, + 366, + 441, + 380 + ], + "score": 0.92, + "content": "\\alpha _ { \\mathrm { p r o t o } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 364, + 505, + 381 + ], + "score": 1.0, + "content": "onto the output", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 377, + 325, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 325, + 389 + ], + "score": 1.0, + "content": "vocabulary to produce a sparse vector of probabilities:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 391, + 410, + 428 + ], + "lines": [ + { + "bbox": [ + 202, + 391, + 410, + 428 + ], + "spans": [ + { + "bbox": [ + 202, + 391, + 410, + 428 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { p _ { \\mathrm { c o p y , o u t } } ^ { t } ( d ^ { t } = w ) = \\sum _ { i < t } \\mathbb { 1 } [ d _ { i } = w ] \\cdot \\alpha _ { \\mathrm { o u t } } ^ { i } } \\\\ & { p _ { \\mathrm { c o p y , p r o t o - k } } ^ { t } ( d ^ { t } = w ) = \\sum _ { j \\le | d _ { k } ^ { \\prime } | } \\mathbb { 1 } [ d _ { k , j } ^ { \\prime } = w ] \\cdot \\alpha _ { \\mathrm { p r o t o } } ^ { k j } } \\end{array}", + "type": "interline_equation", + "image_path": "2f51659d4dd0cfc1bf8185b7cca4d9a33ae23af60f0088d1fe507032ae576e38.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 391, + 410, + 409.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 202, + 409.5, + 410, + 428.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 503, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 347, + 443 + ], + "score": 1.0, + "content": "Unlike rule-based data recombination procedures, however,", + "type": "text" + }, + { + "bbox": [ + 347, + 432, + 375, + 441 + ], + "score": 0.87, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "is not required to copy from the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 441, + 504, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 504, + 454 + ], + "score": 1.0, + "content": "prototypes, and can predict output tokens directly using values retrieved by the attention mechanism:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 456, + 404, + 491 + ], + "lines": [ + { + "bbox": [ + 206, + 456, + 404, + 491 + ], + "spans": [ + { + "bbox": [ + 206, + 456, + 404, + 491 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\begin{array} { r l } { h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , \\quad \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , } & { \\sum _ { k , j } \\alpha _ { \\mathrm { p r o t o } } ^ { k j } h _ { \\mathrm { p r o t o } } ^ { k j } \\right] } \\end{array} } \\\\ & { \\begin{array} { r l } { p _ { \\mathrm { w r i t e } } ^ { t } \\propto \\exp ( W _ { \\mathrm { w r i t e } } h _ { \\mathrm { p r e } } ^ { t } ) } & { } \\end{array} } \\end{array}", + "type": "interline_equation", + "image_path": "7e0bcd0cbc227086b9bdb8351c119f1dce20e09a3ae9e530042624784f2db1e5.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 456, + 404, + 473.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 206, + 473.5, + 404, + 491.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 504, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 329, + 505 + ], + "score": 1.0, + "content": "To produce a final distribution over output tokens at time", + "type": "text" + }, + { + "bbox": [ + 330, + 493, + 334, + 502 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 491, + 506, + 505 + ], + "score": 1.0, + "content": ", we combine predictions from each stream:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 117, + 506, + 478, + 540 + ], + "lines": [ + { + "bbox": [ + 117, + 506, + 478, + 540 + ], + "spans": [ + { + "bbox": [ + 117, + 506, + 478, + 540 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\beta _ { \\mathrm { g a t e } } = \\mathrm { s o f t m a x } ( W _ { g a t e } h _ { o u t } ^ { t } ) \\qquad } \\\\ { p ( d ^ { t } = w \\mid d ^ { < t } , d _ { 1 : n } ^ { t } ; \\theta ) = \\beta _ { \\mathrm { g a t e } } \\cdot [ p _ { \\mathrm { w r i t e } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , o u t } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , p r o u o - } 1 } ^ { t } ( w ) , . . . , p _ { \\mathrm { c o p y , p r o u o - n } } ^ { t } ( w ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "85b81ad796a9d2c0f796ffd77939b8bb84d30fdd5e067d94d56600cbc1b925f3.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 117, + 506, + 478, + 517.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 117, + 517.3333333333334, + 478, + 528.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 117, + 528.6666666666667, + 478, + 540.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "This copy mechanism is similar to the one proposed by Merity et al. (2017) and See et al. (2017). We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 557, + 485, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 485, + 570 + ], + "score": 1.0, + "content": "compare 1- and 2-prototype models to an ordinary sequence model and baselines in Section 5.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 585, + 232, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 234, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 234, + 599 + ], + "score": 1.0, + "content": "4 SAMPLING SCHEMES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "The models above provide generic procedures for generating well-formed combinations of training", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "data, but do nothing to ensure that the generated samples are of a kind useful for compositional", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 413, + 644 + ], + "score": 1.0, + "content": "generalization. While the training objective in Eq. 7 encourages the learned", + "type": "text" + }, + { + "bbox": [ + 413, + 631, + 432, + 644 + ], + "score": 0.92, + "content": "p ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "to lie close to the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 643, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 505, + 654 + ], + "score": 1.0, + "content": "training data, an effective data augmentation procedure should intuitively provide novel examples", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "of rare phenomena. To generate augmented training data, we combine the generative models of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 664, + 414, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 414, + 677 + ], + "score": 1.0, + "content": "Section 3 with a simple sampling procedure that upweights useful examples.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 270, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 272, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 272, + 702 + ], + "score": 1.0, + "content": "4.1 RESAMPLING AUGMENTED DATA", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "In classification problems with imbalanced classes, a common strategy for improving accuracy on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "the rare class is to resample so that the rare class is better represented in training data (Japkowicz", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 68, + 463, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 68, + 463, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 68, + 463, + 178 + ], + "spans": [ + { + "bbox": [ + 146, + 68, + 463, + 178 + ], + "score": 0.97, + "type": "image", + "image_path": "afec9d43b3c01eaf8327afb034dc715c70356cb08a599c76be0d10c0fb326089.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 68, + 463, + 104.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 104.66666666666666, + 463, + 141.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 141.33333333333331, + 463, + 177.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 186, + 504, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "score": 1.0, + "content": "Figure 2: (a) RNN encoders produce contextual embeddings for prototype tokens. (b) In the decoder, a gated", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 196, + 492, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 492, + 208 + ], + "score": 1.0, + "content": "copy mechanism reuses prototypes and generated output tokens via an attention mechanism (dashed lines).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 505, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "sentences often have little overlap with their prototypes (Weston et al., 2018). We describe a specific", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 198, + 241 + ], + "score": 1.0, + "content": "model architecture for", + "type": "text" + }, + { + "bbox": [ + 198, + 230, + 225, + 240 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "that does not function as a generic noise model, and in which outputs", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 253 + ], + "score": 1.0, + "content": "are primarily generated via explicit reuse of fragments of multiple prototypes, by facilitating copying", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 249, + 457, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 457, + 263 + ], + "score": 1.0, + "content": "from independent streams containing prototypes and previously generated input tokens.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 217, + 505, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 506, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 507, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 140, + 281 + ], + "score": 1.0, + "content": "We take", + "type": "text" + }, + { + "bbox": [ + 141, + 266, + 216, + 279 + ], + "score": 0.92, + "content": "p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 265, + 507, + 281 + ], + "score": 1.0, + "content": "to be a neural (multi-)sequence-to-sequence model (c.f. Sutskever et al.,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 276, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 325, + 293 + ], + "score": 1.0, + "content": "2014) which decomposes probability autoregressively:", + "type": "text" + }, + { + "bbox": [ + 325, + 277, + 503, + 290 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p _ { \\mathrm { r e c o m b } } ( d \\mid \\mathcal { \\bar { d } } _ { 1 : n } ^ { \\prime } ; \\theta ) = \\prod _ { t } p ( d ^ { t } \\mid d ^ { < t } , d _ { 1 : n } ^ { \\prime } ; \\theta ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 276, + 507, + 293 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "As shown in Fig. 2, three LSTM encoders—two for the prototypes and one for the input prefix—", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 286, + 313 + ], + "score": 1.0, + "content": "compute sequences of token representations", + "type": "text" + }, + { + "bbox": [ + 287, + 300, + 309, + 312 + ], + "score": 0.91, + "content": "h _ { \\mathrm { p r o t o } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 300, + 327, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 300, + 344, + 311 + ], + "score": 0.91, + "content": "h _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "respectively. Given the current decoder", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 310, + 418, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 156, + 325 + ], + "score": 1.0, + "content": "hidden state", + "type": "text" + }, + { + "bbox": [ + 157, + 311, + 176, + 323 + ], + "score": 0.91, + "content": "\\setminus h _ { o u t } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 310, + 418, + 325 + ], + "score": 1.0, + "content": ", the model first attends to both prototype and output tokens:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 265, + 507, + 325 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 326, + 399, + 364 + ], + "lines": [ + { + "bbox": [ + 212, + 326, + 399, + 364 + ], + "spans": [ + { + "bbox": [ + 212, + 326, + 399, + 364 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\alpha _ { \\mathrm { o u t } } ^ { i } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { o } h _ { \\mathrm { o u t } } ^ { i } } ) } & { { i < t } } \\\\ { \\alpha _ { \\mathrm { p r o t o } } ^ { k j } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { p } h _ { \\mathrm { p r o t o } } ^ { k j } } ) } & { { k \\le n , j \\le | d _ { k } ^ { \\prime } | } } \\end{array}", + "type": "interline_equation", + "image_path": "cdc57cf2dd1c625bb3a1b2d5b31f9475c3f13ef7b754aac851e8e84ee25d4892.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 326, + 399, + 345.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 212, + 345.0, + 399, + 364.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 104, + 364, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 364, + 382, + 381 + ], + "score": 1.0, + "content": "To enable copying from each sequence, we project attention weights", + "type": "text" + }, + { + "bbox": [ + 383, + 368, + 400, + 378 + ], + "score": 0.87, + "content": "\\alpha _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 364, + 417, + 381 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 418, + 366, + 441, + 380 + ], + "score": 0.92, + "content": "\\alpha _ { \\mathrm { p r o t o } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 364, + 505, + 381 + ], + "score": 1.0, + "content": "onto the output", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 377, + 325, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 325, + 389 + ], + "score": 1.0, + "content": "vocabulary to produce a sparse vector of probabilities:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 364, + 505, + 389 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 391, + 410, + 428 + ], + "lines": [ + { + "bbox": [ + 202, + 391, + 410, + 428 + ], + "spans": [ + { + "bbox": [ + 202, + 391, + 410, + 428 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { p _ { \\mathrm { c o p y , o u t } } ^ { t } ( d ^ { t } = w ) = \\sum _ { i < t } \\mathbb { 1 } [ d _ { i } = w ] \\cdot \\alpha _ { \\mathrm { o u t } } ^ { i } } \\\\ & { p _ { \\mathrm { c o p y , p r o t o - k } } ^ { t } ( d ^ { t } = w ) = \\sum _ { j \\le | d _ { k } ^ { \\prime } | } \\mathbb { 1 } [ d _ { k , j } ^ { \\prime } = w ] \\cdot \\alpha _ { \\mathrm { p r o t o } } ^ { k j } } \\end{array}", + "type": "interline_equation", + "image_path": "2f51659d4dd0cfc1bf8185b7cca4d9a33ae23af60f0088d1fe507032ae576e38.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 391, + 410, + 409.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 202, + 409.5, + 410, + 428.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 503, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 347, + 443 + ], + "score": 1.0, + "content": "Unlike rule-based data recombination procedures, however,", + "type": "text" + }, + { + "bbox": [ + 347, + 432, + 375, + 441 + ], + "score": 0.87, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "is not required to copy from the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 441, + 504, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 504, + 454 + ], + "score": 1.0, + "content": "prototypes, and can predict output tokens directly using values retrieved by the attention mechanism:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 429, + 505, + 454 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 456, + 404, + 491 + ], + "lines": [ + { + "bbox": [ + 206, + 456, + 404, + 491 + ], + "spans": [ + { + "bbox": [ + 206, + 456, + 404, + 491 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\begin{array} { r l } { h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , \\quad \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , } & { \\sum _ { k , j } \\alpha _ { \\mathrm { p r o t o } } ^ { k j } h _ { \\mathrm { p r o t o } } ^ { k j } \\right] } \\end{array} } \\\\ & { \\begin{array} { r l } { p _ { \\mathrm { w r i t e } } ^ { t } \\propto \\exp ( W _ { \\mathrm { w r i t e } } h _ { \\mathrm { p r e } } ^ { t } ) } & { } \\end{array} } \\end{array}", + "type": "interline_equation", + "image_path": "7e0bcd0cbc227086b9bdb8351c119f1dce20e09a3ae9e530042624784f2db1e5.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 456, + 404, + 473.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 206, + 473.5, + 404, + 491.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 504, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 329, + 505 + ], + "score": 1.0, + "content": "To produce a final distribution over output tokens at time", + "type": "text" + }, + { + "bbox": [ + 330, + 493, + 334, + 502 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 491, + 506, + 505 + ], + "score": 1.0, + "content": ", we combine predictions from each stream:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 491, + 506, + 505 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 117, + 506, + 478, + 540 + ], + "lines": [ + { + "bbox": [ + 117, + 506, + 478, + 540 + ], + "spans": [ + { + "bbox": [ + 117, + 506, + 478, + 540 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\beta _ { \\mathrm { g a t e } } = \\mathrm { s o f t m a x } ( W _ { g a t e } h _ { o u t } ^ { t } ) \\qquad } \\\\ { p ( d ^ { t } = w \\mid d ^ { < t } , d _ { 1 : n } ^ { t } ; \\theta ) = \\beta _ { \\mathrm { g a t e } } \\cdot [ p _ { \\mathrm { w r i t e } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , o u t } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , p r o u o - } 1 } ^ { t } ( w ) , . . . , p _ { \\mathrm { c o p y , p r o u o - n } } ^ { t } ( w ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "85b81ad796a9d2c0f796ffd77939b8bb84d30fdd5e067d94d56600cbc1b925f3.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 117, + 506, + 478, + 517.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 117, + 517.3333333333334, + 478, + 528.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 117, + 528.6666666666667, + 478, + 540.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "This copy mechanism is similar to the one proposed by Merity et al. (2017) and See et al. (2017). We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 557, + 485, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 485, + 570 + ], + "score": 1.0, + "content": "compare 1- and 2-prototype models to an ordinary sequence model and baselines in Section 5.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 546, + 505, + 570 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 585, + 232, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 234, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 234, + 599 + ], + "score": 1.0, + "content": "4 SAMPLING SCHEMES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 623 + ], + "score": 1.0, + "content": "The models above provide generic procedures for generating well-formed combinations of training", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "data, but do nothing to ensure that the generated samples are of a kind useful for compositional", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 413, + 644 + ], + "score": 1.0, + "content": "generalization. While the training objective in Eq. 7 encourages the learned", + "type": "text" + }, + { + "bbox": [ + 413, + 631, + 432, + 644 + ], + "score": 0.92, + "content": "p ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "to lie close to the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 643, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 505, + 654 + ], + "score": 1.0, + "content": "training data, an effective data augmentation procedure should intuitively provide novel examples", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "of rare phenomena. To generate augmented training data, we combine the generative models of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 664, + 414, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 414, + 677 + ], + "score": 1.0, + "content": "Section 3 with a simple sampling procedure that upweights useful examples.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 608, + 506, + 677 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 270, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 272, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 272, + 702 + ], + "score": 1.0, + "content": "4.1 RESAMPLING AUGMENTED DATA", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "In classification problems with imbalanced classes, a common strategy for improving accuracy on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "the rare class is to resample so that the rare class is better represented in training data (Japkowicz", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 709, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "et al., 2000). When constructing an augmented dataset using the models described above, we apply a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 315, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 315, + 106 + ], + "score": 1.0, + "content": "simple rejection sampling scheme. In Eq. 1, we set:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 109, + 360, + 127 + ], + "lines": [ + { + "bbox": [ + 252, + 109, + 360, + 127 + ], + "spans": [ + { + "bbox": [ + 252, + 109, + 360, + 127 + ], + "score": 0.94, + "content": "u ( d ) = \\mathbb { 1 } [ \\operatorname* { m i n } _ { t } p ( d ^ { t } ) < \\epsilon ] .", + "type": "interline_equation", + "image_path": "958a8df5af88fc54204e7f733ac11126d6b3d19ff1e80798251cd7fdd910bf59.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 252, + 109, + 360, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 128, + 146 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 133, + 151, + 146 + ], + "score": 0.92, + "content": "p ( d ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 133, + 319, + 146 + ], + "score": 1.0, + "content": "is the marginal probability that the token", + "type": "text" + }, + { + "bbox": [ + 320, + 133, + 329, + 144 + ], + "score": 0.87, + "content": "d ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 133, + 445, + 146 + ], + "score": 1.0, + "content": "appears in any example and", + "type": "text" + }, + { + "bbox": [ + 446, + 136, + 451, + 144 + ], + "score": 0.75, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 133, + 506, + 146 + ], + "score": 1.0, + "content": "is a hyperpa-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "score": 1.0, + "content": "rameter. The final model is then trained using Eq. 1, retaining those augmented samples for which", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 154, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 107, + 156, + 145, + 168 + ], + "score": 0.91, + "content": "u ( d ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 154, + 506, + 170 + ], + "score": 1.0, + "content": ". For extremely imbalanced problems, like the ones considered in Section 5, this weighting", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "score": 1.0, + "content": "scheme effectively functions as a rare tag constraint: only examples containing rare words or tags", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 292, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 292, + 191 + ], + "score": 1.0, + "content": "are used to augment the original training data.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 109, + 202, + 314, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 316, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 316, + 215 + ], + "score": 1.0, + "content": "4.2 NEIGHBORHOODS AND PROTOTYPE PRIORS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "How can we ensure that the data augmentation procedure generates any samples with positive weight", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "in Eq. 18? The prototype-based models described in Section 3 offer an additional means of control", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 347, + 258 + ], + "score": 1.0, + "content": "over the generated data. Aside from the implementation of", + "type": "text" + }, + { + "bbox": [ + 347, + 246, + 374, + 256 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 245, + 505, + 258 + ], + "score": 1.0, + "content": ", the main factors governing the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 357, + 269 + ], + "score": 1.0, + "content": "behavior of the model are the choice of neighborhood function", + "type": "text" + }, + { + "bbox": [ + 357, + 256, + 381, + 268 + ], + "score": 0.92, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 255, + 415, + 269 + ], + "score": 1.0, + "content": "and, for", + "type": "text" + }, + { + "bbox": [ + 416, + 256, + 441, + 267 + ], + "score": 0.92, + "content": "n \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 255, + 506, + 269 + ], + "score": 1.0, + "content": ", the set of prior", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 200, + 280 + ], + "score": 1.0, + "content": "compatible prototypes", + "type": "text" + }, + { + "bbox": [ + 200, + 267, + 208, + 277 + ], + "score": 0.67, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 266, + 506, + 280 + ], + "score": 1.0, + "content": ". Defining these so that rare tags also preferentially appear in prototypes", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 392, + 291 + ], + "score": 1.0, + "content": "helps ensure that the generated samples contribute to generalization. Let", + "type": "text" + }, + { + "bbox": [ + 392, + 279, + 403, + 289 + ], + "score": 0.88, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 278, + 421, + 291 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 421, + 279, + 432, + 289 + ], + "score": 0.88, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "be prototypes. As", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 288, + 507, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 299, + 302 + ], + "score": 1.0, + "content": "a notational convenience, given two sequences", + "type": "text" + }, + { + "bbox": [ + 299, + 289, + 309, + 300 + ], + "score": 0.77, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 288, + 313, + 302 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 314, + 289, + 324, + 300 + ], + "score": 0.76, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 288, + 341, + 302 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 342, + 289, + 367, + 300 + ], + "score": 0.92, + "content": "d _ { 1 } \\backslash d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 288, + 448, + 302 + ], + "score": 1.0, + "content": "the set of tokens in", + "type": "text" + }, + { + "bbox": [ + 448, + 289, + 459, + 300 + ], + "score": 0.89, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 288, + 492, + 302 + ], + "score": 1.0, + "content": "but not", + "type": "text" + }, + { + "bbox": [ + 492, + 289, + 502, + 300 + ], + "score": 0.88, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 288, + 507, + 302 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 299, + 357, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 123, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 300, + 152, + 311 + ], + "score": 0.91, + "content": "d _ { 1 } \\Delta d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 299, + 312, + 313 + ], + "score": 1.0, + "content": "denote the set of tokens not common to", + "type": "text" + }, + { + "bbox": [ + 313, + 301, + 324, + 311 + ], + "score": 0.88, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 299, + 342, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 301, + 352, + 311 + ], + "score": 0.87, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 299, + 357, + 313 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 384, + 330 + ], + "score": 1.0, + "content": "1-prototype neighborhoods Guu et al. (2018) define a one-prototype", + "type": "text" + }, + { + "bbox": [ + 384, + 317, + 395, + 327 + ], + "score": 0.82, + "content": "\\mathcal { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "based on a Jaccard distance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "score": 1.0, + "content": "threshold (Jaccard, 1901). For experiments with one-prototype models we employ a similar strategy,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 338, + 335, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 335, + 351 + ], + "score": 1.0, + "content": "choosing an initial neighborhood of candidates such that", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 355, + 417, + 372 + ], + "lines": [ + { + "bbox": [ + 194, + 355, + 417, + 372 + ], + "spans": [ + { + "bbox": [ + 194, + 355, + 417, + 372 + ], + "score": 0.9, + "content": "{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\scriptscriptstyle { \\mathrm { d e f } } } { = } } \\ \\left\\{ d _ { 1 } \\in { \\mathcal { D } } : ( { \\boldsymbol { \\alpha } } \\cdot | d \\Delta d _ { 1 } | + { \\boldsymbol { \\beta } } \\cdot \\operatorname { l e v } ( d , d _ { 1 } ) ) < \\delta \\right\\}", + "type": "interline_equation", + "image_path": "626e30a50efc6b441df4beb1037310e57545588dda8080e31e52c6be22d4f8fb.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 194, + 355, + 417, + 372 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 376, + 506, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 333, + 390 + ], + "score": 1.0, + "content": "where lev is string edit distance (Levenshtein, 1966) and", + "type": "text" + }, + { + "bbox": [ + 333, + 378, + 353, + 388 + ], + "score": 0.42, + "content": "\\alpha , \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 375, + 370, + 390 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 371, + 378, + 377, + 387 + ], + "score": 0.83, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 375, + 506, + 390 + ], + "score": 1.0, + "content": "are hyperparameters (discussed", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 387, + 174, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 174, + 401 + ], + "score": 1.0, + "content": "in Appendix B).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 247, + 417 + ], + "score": 1.0, + "content": "2-prototype neighborhoods The", + "type": "text" + }, + { + "bbox": [ + 248, + 405, + 276, + 416 + ], + "score": 0.9, + "content": "n \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "prototype case requires a more complex neighborhood", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 245, + 429 + ], + "score": 1.0, + "content": "function—intuitively, for an input", + "type": "text" + }, + { + "bbox": [ + 245, + 416, + 252, + 426 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 415, + 313, + 429 + ], + "score": 1.0, + "content": ", we want each", + "type": "text" + }, + { + "bbox": [ + 313, + 416, + 361, + 428 + ], + "score": 0.93, + "content": "( d _ { 1 } , d _ { 2 } , \\ldots )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "in the neighborhood to collectively", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 281, + 440 + ], + "score": 1.0, + "content": "contain enough information to reconstruct", + "type": "text" + }, + { + "bbox": [ + 282, + 427, + 288, + 437 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 426, + 505, + 440 + ], + "score": 1.0, + "content": ". Future work might treat the neighborhood function", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 414, + 450 + ], + "score": 1.0, + "content": "itself as latent, allowing the model to identify groups of prototypes that make", + "type": "text" + }, + { + "bbox": [ + 415, + 438, + 421, + 447 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "probable; here, as in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 448, + 463, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 414, + 462 + ], + "score": 1.0, + "content": "existing one-prototype models, we provide heuristic implementations for the", + "type": "text" + }, + { + "bbox": [ + 414, + 449, + 439, + 459 + ], + "score": 0.89, + "content": "n = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 448, + 463, + 462 + ], + "score": 1.0, + "content": "case.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 261, + 478 + ], + "score": 1.0, + "content": "Long–short recombination: For each", + "type": "text" + }, + { + "bbox": [ + 261, + 465, + 330, + 477 + ], + "score": 0.9, + "content": "( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { N } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 465, + 334, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 335, + 466, + 345, + 477 + ], + "score": 0.75, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 465, + 454, + 478 + ], + "score": 1.0, + "content": "is chosen to be similar to", + "type": "text" + }, + { + "bbox": [ + 455, + 466, + 461, + 476 + ], + "score": 0.77, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 465, + 483, + 478 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 483, + 466, + 494, + 477 + ], + "score": 0.87, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 288, + 488 + ], + "score": 1.0, + "content": "chosen to be similar to the difference between", + "type": "text" + }, + { + "bbox": [ + 289, + 478, + 295, + 486 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 476, + 313, + 488 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 477, + 324, + 487 + ], + "score": 0.88, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 476, + 505, + 488 + ], + "score": 1.0, + "content": ". (The neighborhood is so named because one", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 389, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 389, + 500 + ], + "score": 1.0, + "content": "of the prototypes will generally have fewer tokens than the other one.)", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 506, + 481, + 521 + ], + "lines": [ + { + "bbox": [ + 112, + 506, + 481, + 521 + ], + "spans": [ + { + "bbox": [ + 112, + 506, + 481, + 521 + ], + "score": 0.85, + "content": "{ \\mathcal { N } } ( d ) ~ { \\stackrel { \\mathrm { d e f } } { = } } ~ \\left\\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : { \\mathrm { ~ l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( [ d \\backslash d _ { 1 } ] , d _ { 2 } \\right) < \\delta , | d \\backslash d _ { 1 } | > 0 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\right\\}", + "type": "interline_equation", + "image_path": "68b380206b57e3dd8f6ef32c29aeb4a19419a811eecf430abaa404a361ddb255.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 112, + 506, + 481, + 521 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 127, + 540 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 128, + 526, + 155, + 538 + ], + "score": 0.91, + "content": "[ d \\backslash d _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 525, + 352, + 540 + ], + "score": 1.0, + "content": "is the sequence obtained by removing all tokens in", + "type": "text" + }, + { + "bbox": [ + 353, + 527, + 363, + 537 + ], + "score": 0.87, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 525, + 385, + 540 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 386, + 527, + 392, + 536 + ], + "score": 0.74, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 525, + 506, + 540 + ], + "score": 1.0, + "content": ". Recall that we have defined", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 537, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 196, + 552 + ], + "score": 0.9, + "content": "p _ { \\Omega } ( d _ { 1 : n } ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\mathrm { U n i f } ( \\Omega )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 537, + 234, + 555 + ], + "score": 1.0, + "content": "for a set", + "type": "text" + }, + { + "bbox": [ + 235, + 541, + 243, + 550 + ], + "score": 0.82, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 537, + 506, + 555 + ], + "score": 1.0, + "content": "of “compatible” prototypes. For experiments using long–short", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 551, + 406, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 352, + 564 + ], + "score": 1.0, + "content": "combination, all prototypes are treated as compatible; that is,", + "type": "text" + }, + { + "bbox": [ + 352, + 552, + 402, + 562 + ], + "score": 0.9, + "content": "\\Omega = \\mathcal { D } \\times \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 551, + 406, + 564 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 105, + 568, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 216, + 581 + ], + "score": 1.0, + "content": "Long–long recombination:", + "type": "text" + }, + { + "bbox": [ + 217, + 568, + 240, + 580 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 568, + 480, + 581 + ], + "score": 1.0, + "content": "contains pairs of prototypes that are individually similar to", + "type": "text" + }, + { + "bbox": [ + 480, + 569, + 487, + 578 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 341, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 330, + 591 + ], + "score": 1.0, + "content": "collectively contain all the tokens needed to reconstruct", + "type": "text" + }, + { + "bbox": [ + 330, + 580, + 336, + 589 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 579, + 341, + 591 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 597, + 473, + 613 + ], + "lines": [ + { + "bbox": [ + 120, + 597, + 473, + 613 + ], + "spans": [ + { + "bbox": [ + 120, + 597, + 473, + 613 + ], + "score": 0.87, + "content": "{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : \\ { \\mathrm { l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( d , d _ { 2 } \\right) < \\delta , | d \\Delta d _ { 1 } | = 1 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\}", + "type": "interline_equation", + "image_path": "66ab4b1ffcd80ff7d9593390dfe6135171e04306e5f09a3a5faa8f42c94fc1b3.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 120, + 597, + 473, + 613 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 623, + 502, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 500, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 336, + 640 + ], + "score": 1.0, + "content": "For experiments using long–long recombination, we take", + "type": "text" + }, + { + "bbox": [ + 336, + 624, + 500, + 636 + ], + "score": 0.91, + "content": "\\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { D } \\times \\mathcal { D } : | d _ { 1 } \\Delta d _ { 2 } | = 1 \\}", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 269, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 270, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 270, + 666 + ], + "score": 1.0, + "content": "5 DATASETS & EXPERIMENTS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "We evaluate R&R on two tests of compositional generalization: the SCAN instruction following task", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "(Lake & Baroni, 2018) and a few-shot morphology learning task derived from the SIGMORPHON", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "2018 dataset (Kirov et al., 2018; Cotterell et al., 2018). Our experiments are designed to explore", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the effectiveness of learned data recombination procedures in controlled and natural settings. Both", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "tasks involve conditional sequence prediction: while preceding sections have discussed augmentation", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "et al., 2000). When constructing an augmented dataset using the models described above, we apply a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 315, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 315, + 106 + ], + "score": 1.0, + "content": "simple rejection sampling scheme. In Eq. 1, we set:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 109, + 360, + 127 + ], + "lines": [ + { + "bbox": [ + 252, + 109, + 360, + 127 + ], + "spans": [ + { + "bbox": [ + 252, + 109, + 360, + 127 + ], + "score": 0.94, + "content": "u ( d ) = \\mathbb { 1 } [ \\operatorname* { m i n } _ { t } p ( d ^ { t } ) < \\epsilon ] .", + "type": "interline_equation", + "image_path": "958a8df5af88fc54204e7f733ac11126d6b3d19ff1e80798251cd7fdd910bf59.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 252, + 109, + 360, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 128, + 146 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 133, + 151, + 146 + ], + "score": 0.92, + "content": "p ( d ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 133, + 319, + 146 + ], + "score": 1.0, + "content": "is the marginal probability that the token", + "type": "text" + }, + { + "bbox": [ + 320, + 133, + 329, + 144 + ], + "score": 0.87, + "content": "d ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 133, + 445, + 146 + ], + "score": 1.0, + "content": "appears in any example and", + "type": "text" + }, + { + "bbox": [ + 446, + 136, + 451, + 144 + ], + "score": 0.75, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 133, + 506, + 146 + ], + "score": 1.0, + "content": "is a hyperpa-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 157 + ], + "score": 1.0, + "content": "rameter. The final model is then trained using Eq. 1, retaining those augmented samples for which", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 154, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 107, + 156, + 145, + 168 + ], + "score": 0.91, + "content": "u ( d ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 154, + 506, + 170 + ], + "score": 1.0, + "content": ". For extremely imbalanced problems, like the ones considered in Section 5, this weighting", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "score": 1.0, + "content": "scheme effectively functions as a rare tag constraint: only examples containing rare words or tags", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 292, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 292, + 191 + ], + "score": 1.0, + "content": "are used to augment the original training data.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 133, + 506, + 191 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 202, + 314, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 316, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 316, + 215 + ], + "score": 1.0, + "content": "4.2 NEIGHBORHOODS AND PROTOTYPE PRIORS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "How can we ensure that the data augmentation procedure generates any samples with positive weight", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "in Eq. 18? The prototype-based models described in Section 3 offer an additional means of control", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 347, + 258 + ], + "score": 1.0, + "content": "over the generated data. Aside from the implementation of", + "type": "text" + }, + { + "bbox": [ + 347, + 246, + 374, + 256 + ], + "score": 0.86, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 245, + 505, + 258 + ], + "score": 1.0, + "content": ", the main factors governing the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 357, + 269 + ], + "score": 1.0, + "content": "behavior of the model are the choice of neighborhood function", + "type": "text" + }, + { + "bbox": [ + 357, + 256, + 381, + 268 + ], + "score": 0.92, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 255, + 415, + 269 + ], + "score": 1.0, + "content": "and, for", + "type": "text" + }, + { + "bbox": [ + 416, + 256, + 441, + 267 + ], + "score": 0.92, + "content": "n \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 255, + 506, + 269 + ], + "score": 1.0, + "content": ", the set of prior", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 200, + 280 + ], + "score": 1.0, + "content": "compatible prototypes", + "type": "text" + }, + { + "bbox": [ + 200, + 267, + 208, + 277 + ], + "score": 0.67, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 266, + 506, + 280 + ], + "score": 1.0, + "content": ". Defining these so that rare tags also preferentially appear in prototypes", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 392, + 291 + ], + "score": 1.0, + "content": "helps ensure that the generated samples contribute to generalization. Let", + "type": "text" + }, + { + "bbox": [ + 392, + 279, + 403, + 289 + ], + "score": 0.88, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 278, + 421, + 291 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 421, + 279, + 432, + 289 + ], + "score": 0.88, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "be prototypes. As", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 288, + 507, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 299, + 302 + ], + "score": 1.0, + "content": "a notational convenience, given two sequences", + "type": "text" + }, + { + "bbox": [ + 299, + 289, + 309, + 300 + ], + "score": 0.77, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 288, + 313, + 302 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 314, + 289, + 324, + 300 + ], + "score": 0.76, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 288, + 341, + 302 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 342, + 289, + 367, + 300 + ], + "score": 0.92, + "content": "d _ { 1 } \\backslash d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 288, + 448, + 302 + ], + "score": 1.0, + "content": "the set of tokens in", + "type": "text" + }, + { + "bbox": [ + 448, + 289, + 459, + 300 + ], + "score": 0.89, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 288, + 492, + 302 + ], + "score": 1.0, + "content": "but not", + "type": "text" + }, + { + "bbox": [ + 492, + 289, + 502, + 300 + ], + "score": 0.88, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 288, + 507, + 302 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 299, + 357, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 123, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 300, + 152, + 311 + ], + "score": 0.91, + "content": "d _ { 1 } \\Delta d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 299, + 312, + 313 + ], + "score": 1.0, + "content": "denote the set of tokens not common to", + "type": "text" + }, + { + "bbox": [ + 313, + 301, + 324, + 311 + ], + "score": 0.88, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 299, + 342, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 301, + 352, + 311 + ], + "score": 0.87, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 299, + 357, + 313 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 222, + 507, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 384, + 330 + ], + "score": 1.0, + "content": "1-prototype neighborhoods Guu et al. (2018) define a one-prototype", + "type": "text" + }, + { + "bbox": [ + 384, + 317, + 395, + 327 + ], + "score": 0.82, + "content": "\\mathcal { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "based on a Jaccard distance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "score": 1.0, + "content": "threshold (Jaccard, 1901). For experiments with one-prototype models we employ a similar strategy,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 338, + 335, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 335, + 351 + ], + "score": 1.0, + "content": "choosing an initial neighborhood of candidates such that", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 316, + 506, + 351 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 355, + 417, + 372 + ], + "lines": [ + { + "bbox": [ + 194, + 355, + 417, + 372 + ], + "spans": [ + { + "bbox": [ + 194, + 355, + 417, + 372 + ], + "score": 0.9, + "content": "{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\scriptscriptstyle { \\mathrm { d e f } } } { = } } \\ \\left\\{ d _ { 1 } \\in { \\mathcal { D } } : ( { \\boldsymbol { \\alpha } } \\cdot | d \\Delta d _ { 1 } | + { \\boldsymbol { \\beta } } \\cdot \\operatorname { l e v } ( d , d _ { 1 } ) ) < \\delta \\right\\}", + "type": "interline_equation", + "image_path": "626e30a50efc6b441df4beb1037310e57545588dda8080e31e52c6be22d4f8fb.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 194, + 355, + 417, + 372 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 376, + 506, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 333, + 390 + ], + "score": 1.0, + "content": "where lev is string edit distance (Levenshtein, 1966) and", + "type": "text" + }, + { + "bbox": [ + 333, + 378, + 353, + 388 + ], + "score": 0.42, + "content": "\\alpha , \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 375, + 370, + 390 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 371, + 378, + 377, + 387 + ], + "score": 0.83, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 375, + 506, + 390 + ], + "score": 1.0, + "content": "are hyperparameters (discussed", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 387, + 174, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 174, + 401 + ], + "score": 1.0, + "content": "in Appendix B).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 375, + 506, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 247, + 417 + ], + "score": 1.0, + "content": "2-prototype neighborhoods The", + "type": "text" + }, + { + "bbox": [ + 248, + 405, + 276, + 416 + ], + "score": 0.9, + "content": "n \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "prototype case requires a more complex neighborhood", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 245, + 429 + ], + "score": 1.0, + "content": "function—intuitively, for an input", + "type": "text" + }, + { + "bbox": [ + 245, + 416, + 252, + 426 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 415, + 313, + 429 + ], + "score": 1.0, + "content": ", we want each", + "type": "text" + }, + { + "bbox": [ + 313, + 416, + 361, + 428 + ], + "score": 0.93, + "content": "( d _ { 1 } , d _ { 2 } , \\ldots )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "in the neighborhood to collectively", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 281, + 440 + ], + "score": 1.0, + "content": "contain enough information to reconstruct", + "type": "text" + }, + { + "bbox": [ + 282, + 427, + 288, + 437 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 426, + 505, + 440 + ], + "score": 1.0, + "content": ". Future work might treat the neighborhood function", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 414, + 450 + ], + "score": 1.0, + "content": "itself as latent, allowing the model to identify groups of prototypes that make", + "type": "text" + }, + { + "bbox": [ + 415, + 438, + 421, + 447 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "probable; here, as in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 448, + 463, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 414, + 462 + ], + "score": 1.0, + "content": "existing one-prototype models, we provide heuristic implementations for the", + "type": "text" + }, + { + "bbox": [ + 414, + 449, + 439, + 459 + ], + "score": 0.89, + "content": "n = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 448, + 463, + 462 + ], + "score": 1.0, + "content": "case.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 404, + 505, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 261, + 478 + ], + "score": 1.0, + "content": "Long–short recombination: For each", + "type": "text" + }, + { + "bbox": [ + 261, + 465, + 330, + 477 + ], + "score": 0.9, + "content": "( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { N } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 465, + 334, + 478 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 335, + 466, + 345, + 477 + ], + "score": 0.75, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 465, + 454, + 478 + ], + "score": 1.0, + "content": "is chosen to be similar to", + "type": "text" + }, + { + "bbox": [ + 455, + 466, + 461, + 476 + ], + "score": 0.77, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 465, + 483, + 478 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 483, + 466, + 494, + 477 + ], + "score": 0.87, + "content": "d _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 288, + 488 + ], + "score": 1.0, + "content": "chosen to be similar to the difference between", + "type": "text" + }, + { + "bbox": [ + 289, + 478, + 295, + 486 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 476, + 313, + 488 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 477, + 324, + 487 + ], + "score": 0.88, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 476, + 505, + 488 + ], + "score": 1.0, + "content": ". (The neighborhood is so named because one", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 389, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 389, + 500 + ], + "score": 1.0, + "content": "of the prototypes will generally have fewer tokens than the other one.)", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 465, + 506, + 500 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 506, + 481, + 521 + ], + "lines": [ + { + "bbox": [ + 112, + 506, + 481, + 521 + ], + "spans": [ + { + "bbox": [ + 112, + 506, + 481, + 521 + ], + "score": 0.85, + "content": "{ \\mathcal { N } } ( d ) ~ { \\stackrel { \\mathrm { d e f } } { = } } ~ \\left\\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : { \\mathrm { ~ l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( [ d \\backslash d _ { 1 } ] , d _ { 2 } \\right) < \\delta , | d \\backslash d _ { 1 } | > 0 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\right\\}", + "type": "interline_equation", + "image_path": "68b380206b57e3dd8f6ef32c29aeb4a19419a811eecf430abaa404a361ddb255.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 112, + 506, + 481, + 521 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 127, + 540 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 128, + 526, + 155, + 538 + ], + "score": 0.91, + "content": "[ d \\backslash d _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 525, + 352, + 540 + ], + "score": 1.0, + "content": "is the sequence obtained by removing all tokens in", + "type": "text" + }, + { + "bbox": [ + 353, + 527, + 363, + 537 + ], + "score": 0.87, + "content": "d _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 525, + 385, + 540 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 386, + 527, + 392, + 536 + ], + "score": 0.74, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 525, + 506, + 540 + ], + "score": 1.0, + "content": ". Recall that we have defined", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 537, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 196, + 552 + ], + "score": 0.9, + "content": "p _ { \\Omega } ( d _ { 1 : n } ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\mathrm { U n i f } ( \\Omega )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 537, + 234, + 555 + ], + "score": 1.0, + "content": "for a set", + "type": "text" + }, + { + "bbox": [ + 235, + 541, + 243, + 550 + ], + "score": 0.82, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 537, + 506, + 555 + ], + "score": 1.0, + "content": "of “compatible” prototypes. For experiments using long–short", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 551, + 406, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 352, + 564 + ], + "score": 1.0, + "content": "combination, all prototypes are treated as compatible; that is,", + "type": "text" + }, + { + "bbox": [ + 352, + 552, + 402, + 562 + ], + "score": 0.9, + "content": "\\Omega = \\mathcal { D } \\times \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 551, + 406, + 564 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 525, + 506, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 568, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 216, + 581 + ], + "score": 1.0, + "content": "Long–long recombination:", + "type": "text" + }, + { + "bbox": [ + 217, + 568, + 240, + 580 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 568, + 480, + 581 + ], + "score": 1.0, + "content": "contains pairs of prototypes that are individually similar to", + "type": "text" + }, + { + "bbox": [ + 480, + 569, + 487, + 578 + ], + "score": 0.82, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 341, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 330, + 591 + ], + "score": 1.0, + "content": "collectively contain all the tokens needed to reconstruct", + "type": "text" + }, + { + "bbox": [ + 330, + 580, + 336, + 589 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 579, + 341, + 591 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 568, + 505, + 591 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 597, + 473, + 613 + ], + "lines": [ + { + "bbox": [ + 120, + 597, + 473, + 613 + ], + "spans": [ + { + "bbox": [ + 120, + 597, + 473, + 613 + ], + "score": 0.87, + "content": "{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : \\ { \\mathrm { l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( d , d _ { 2 } \\right) < \\delta , | d \\Delta d _ { 1 } | = 1 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\}", + "type": "interline_equation", + "image_path": "66ab4b1ffcd80ff7d9593390dfe6135171e04306e5f09a3a5faa8f42c94fc1b3.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 120, + 597, + 473, + 613 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 623, + 502, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 500, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 336, + 640 + ], + "score": 1.0, + "content": "For experiments using long–long recombination, we take", + "type": "text" + }, + { + "bbox": [ + 336, + 624, + 500, + 636 + ], + "score": 0.91, + "content": "\\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { D } \\times \\mathcal { D } : | d _ { 1 } \\Delta d _ { 2 } | = 1 \\}", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 621, + 500, + 640 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 269, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 270, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 270, + 666 + ], + "score": 1.0, + "content": "5 DATASETS & EXPERIMENTS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "We evaluate R&R on two tests of compositional generalization: the SCAN instruction following task", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "(Lake & Baroni, 2018) and a few-shot morphology learning task derived from the SIGMORPHON", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "2018 dataset (Kirov et al., 2018; Cotterell et al., 2018). Our experiments are designed to explore", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "the effectiveness of learned data recombination procedures in controlled and natural settings. Both", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "tasks involve conditional sequence prediction: while preceding sections have discussed augmentation", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 676, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 75, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 74, + 506, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 74, + 506, + 88 + ], + "score": 1.0, + "content": "Table 1: Results on the SCAN dataset. (a) Comparison of R&R with previous work. Connecting lines indicate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 85, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 85, + 506, + 97 + ], + "score": 1.0, + "content": "that model components are inherited from the parent (e.g. the row labeled recomb-2 also includes resampling).", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 221, + 107 + ], + "score": 1.0, + "content": "Data augmentation with recomb-", + "type": "text" + }, + { + "bbox": [ + 222, + 96, + 235, + 105 + ], + "score": 0.8, + "content": "^ { 2 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 95, + 505, + 107 + ], + "score": 1.0, + "content": "resampling performs slightly worse than GECA on the jump and around right", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 244, + 118 + ], + "score": 1.0, + "content": "splits; data augmentation with recomb-", + "type": "text" + }, + { + "bbox": [ + 244, + 106, + 258, + 115 + ], + "score": 0.82, + "content": "l +", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "resampling or an ordinary RNN does not generalize robustly to either", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 115, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 313, + 128 + ], + "score": 1.0, + "content": "split. All differences except between GECA and recomb-", + "type": "text" + }, + { + "bbox": [ + 313, + 116, + 327, + 125 + ], + "score": 0.8, + "content": "^ { 2 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 115, + 482, + 128 + ], + "score": 1.0, + "content": "resampling in jump are significant (paired", + "type": "text" + }, + { + "bbox": [ + 483, + 117, + 487, + 124 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 115, + 507, + 128 + ], + "score": 1.0, + "content": "-test,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 124, + 507, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 148, + 135 + ], + "score": 0.88, + "content": "p \\ll 0 . 0 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 124, + 507, + 138 + ], + "score": 1.0, + "content": "). (Dashes indicate that all samples were rejected by resampling when decoding with temperature", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 134, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 134, + 145 + ], + "score": 0.84, + "content": "T = 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 134, + 506, + 148 + ], + "score": 1.0, + "content": ") (b) Ablation experiments on the jump split. Introducing the latent variable used in previous work", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "(Guu et al., 2018) does not change performance; removing the copy mechanism results in a complete failure of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 154, + 364, + 167 + ], + "score": 1.0, + "content": "generalization. While it is possible to perform conditional inference of", + "type": "text" + }, + { + "bbox": [ + 364, + 155, + 394, + 166 + ], + "score": 0.94, + "content": "p ( y \\mid x )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "given the generative model in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 165, + 464, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 464, + 177 + ], + "score": 1.0, + "content": "Eq. 3 (direct inference), this gives significantly worse results than data augmentation (see Sec. 5.3).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "table", + "bbox": [ + 120, + 180, + 328, + 296 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 120, + 180, + 328, + 296 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 180, + 328, + 296 + ], + "spans": [ + { + "bbox": [ + 120, + 180, + 328, + 296 + ], + "score": 0.952, + "html": "
(a)
around right jump
baseline0.00 ±0.000.00 ±0.00
GECA (published)0.82 ±0.110.87 ±0.05
GECA (ours)0.98 ±0.021.00 ±0.001
learned aug. (basic)0.00 ±0.000.00 ±0.00
L resampling--
├ recomb-10.17 ±0.07-
Lrecomb-20.75 ±0.140.87 ±0.08
recomb-2 (no resampling)0.82 ±0.080.88 ±0.07
", + "type": "table", + "image_path": "82923d66569b93052b9e83149baffab4e1327615cf6521cc2be96d79c0ddead4.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 120, + 180, + 328, + 192.88888888888889 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 120, + 192.88888888888889, + 328, + 205.77777777777777 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 120, + 205.77777777777777, + 328, + 218.66666666666666 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 120, + 218.66666666666666, + 328, + 231.55555555555554 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 120, + 231.55555555555554, + 328, + 244.44444444444443 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 120, + 244.44444444444443, + 328, + 257.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 120, + 257.3333333333333, + 328, + 270.22222222222223 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 120, + 270.22222222222223, + 328, + 283.11111111111114 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 120, + 283.11111111111114, + 328, + 296.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 14 + }, + { + "type": "table", + "bbox": [ + 342, + 192, + 488, + 271 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 342, + 192, + 488, + 271 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 342, + 192, + 488, + 271 + ], + "spans": [ + { + "bbox": [ + 342, + 192, + 488, + 271 + ], + "score": 0.865, + "html": "
jump
recomb-2 (no resampling)0.88 ±0.07
+ VAE0.88 ±0.07
+resampling0.87 ±0.08
- copying direct inference0.00 ±0.00
0.57 ±0.05
", + "type": "table", + "image_path": "bd8e83d50057daa52a6aeb460c6675ba869851fd2cadfa2577e40dcecab57f2c.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 342, + 192, + 488, + 231.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 342, + 231.5, + 488, + 271.0 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 108, + 312, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 253, + 325 + ], + "score": 1.0, + "content": "procedures that produce data points", + "type": "text" + }, + { + "bbox": [ + 253, + 312, + 295, + 324 + ], + "score": 0.94, + "content": "d = ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 311, + 505, + 325 + ], + "score": 1.0, + "content": ", learners are evaluated on their ability to predict an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 323, + 503, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 134, + 335 + ], + "score": 1.0, + "content": "output", + "type": "text" + }, + { + "bbox": [ + 134, + 325, + 141, + 334 + ], + "score": 0.75, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 323, + 198, + 335 + ], + "score": 1.0, + "content": "from an input", + "type": "text" + }, + { + "bbox": [ + 198, + 325, + 205, + 333 + ], + "score": 0.53, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 323, + 240, + 335 + ], + "score": 1.0, + "content": ": actions", + "type": "text" + }, + { + "bbox": [ + 240, + 325, + 247, + 335 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 323, + 320, + 335 + ], + "score": 1.0, + "content": "given instructions", + "type": "text" + }, + { + "bbox": [ + 321, + 325, + 327, + 333 + ], + "score": 0.64, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 323, + 437, + 335 + ], + "score": 1.0, + "content": ", or morphological analyses", + "type": "text" + }, + { + "bbox": [ + 438, + 325, + 445, + 335 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 323, + 496, + 335 + ], + "score": 1.0, + "content": "given words", + "type": "text" + }, + { + "bbox": [ + 496, + 325, + 503, + 333 + ], + "score": 0.65, + "content": "x", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 507, + 353 + ], + "score": 1.0, + "content": "For each task, we compare a baseline with no data augmentation, the rule-based GECA data aug-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "mentation procedure (Andreas, 2020), and a sequence of ablated versions of R&R that measure", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "the importance of resampling and recombination. The basic Learned Aug model trains an RNN", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 154, + 385 + ], + "score": 1.0, + "content": "to generate", + "type": "text" + }, + { + "bbox": [ + 155, + 373, + 178, + 385 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "pairs, then trains a conditional model on the original data and samples from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "generative model. Resampling filters these samples as described in Section 4. Recomb-n models", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "replace the RNN with a prototype-based model as described in Section 3. Additional experiments", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 330, + 419 + ], + "score": 1.0, + "content": "(Table 1b) compare data augmentation to prediction of", + "type": "text" + }, + { + "bbox": [ + 330, + 407, + 337, + 417 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "via direct inference (Appendix E) in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 417, + 334, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 334, + 429 + ], + "score": 1.0, + "content": "prototype-based model and several other model variants.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 107, + 441, + 160, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 162, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 162, + 455 + ], + "score": 1.0, + "content": "5.1 SCAN", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "SCAN (Lake & Baroni, 2018) is a synthetic dataset featuring simple English commands paired with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "sequences of actions. Our experiments aim to show that R&R performs well at one-shot concept", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "learning and zero-shot generalization on controlled tasks where rule-based models succeed. We", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "experiment with two splits of the dataset, jump and around right. In the jump split, which tests", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "one-shot learning, the word jump appears in a single command in the training set but in more complex", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "commands in the test set (e.g. look and jump twice). The around right split (Loula et al., 2018) tests", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "zero-shot generalization by presenting learners with constructions like walk around left and walk", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 539, + 370, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 370, + 551 + ], + "score": 1.0, + "content": "right in the training set, but walk around right only in the test set.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "Despite the apparent simplicity of the task, ordinary neural sequence-to-sequence models completely", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "fail to make correct predictions on SCAN test set (Table 1). As such it has been a major focus of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "research on compositional generalization in sequence-to-sequence models, and a number of heuristic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "procedures and specialized model architectures and training procedures have been developed to solve", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "it (Russin et al., 2019; Gordon et al., 2020; Lake, 2019; Andreas, 2020). Here we show that the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "generic prototype recombination procedure described above does so as well. We use long–short", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "recombination for the jump split and long–long recombination for the around right split. We use a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 303, + 645 + ], + "score": 1.0, + "content": "recombination network to generate 400 samples", + "type": "text" + }, + { + "bbox": [ + 304, + 633, + 346, + 644 + ], + "score": 0.93, + "content": "d = ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "and then train an ordinary LSTM with", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 642, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 427, + 658 + ], + "score": 1.0, + "content": "attention (Bahdanau et al., 2019b) on the original and augmented data to predict", + "type": "text" + }, + { + "bbox": [ + 428, + 645, + 434, + 655 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 642, + 457, + 658 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 457, + 646, + 464, + 653 + ], + "score": 0.64, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 642, + 506, + 658 + ], + "score": 1.0, + "content": ". Training", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 654, + 292, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 292, + 666 + ], + "score": 1.0, + "content": "hyperparameters are provided in Appendix D.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 108, + 671, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "Table 1 shows the results of training these models on the SCAN dataset.4 2-prototype recombination", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "is essential for successful generalization on both splits. Additional ablations (Table 1b) show that the", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "4We provide results from GECA for comparison. Our final RNN predictor is more accurate than the one used", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "score": 1.0, + "content": "by Andreas (2020), and training it on the same augmented dataset gives higher accuracies than reported in the", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 161, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 161, + 734 + ], + "score": 1.0, + "content": "original paper.", + "type": "text" + } + ] + } + ] + }, + { + "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": "text", + "bbox": [ + 106, + 75, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 74, + 506, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 74, + 506, + 88 + ], + "score": 1.0, + "content": "Table 1: Results on the SCAN dataset. (a) Comparison of R&R with previous work. Connecting lines indicate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 85, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 85, + 506, + 97 + ], + "score": 1.0, + "content": "that model components are inherited from the parent (e.g. the row labeled recomb-2 also includes resampling).", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 221, + 107 + ], + "score": 1.0, + "content": "Data augmentation with recomb-", + "type": "text" + }, + { + "bbox": [ + 222, + 96, + 235, + 105 + ], + "score": 0.8, + "content": "^ { 2 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 95, + 505, + 107 + ], + "score": 1.0, + "content": "resampling performs slightly worse than GECA on the jump and around right", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 244, + 118 + ], + "score": 1.0, + "content": "splits; data augmentation with recomb-", + "type": "text" + }, + { + "bbox": [ + 244, + 106, + 258, + 115 + ], + "score": 0.82, + "content": "l +", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "resampling or an ordinary RNN does not generalize robustly to either", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 115, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 313, + 128 + ], + "score": 1.0, + "content": "split. All differences except between GECA and recomb-", + "type": "text" + }, + { + "bbox": [ + 313, + 116, + 327, + 125 + ], + "score": 0.8, + "content": "^ { 2 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 115, + 482, + 128 + ], + "score": 1.0, + "content": "resampling in jump are significant (paired", + "type": "text" + }, + { + "bbox": [ + 483, + 117, + 487, + 124 + ], + "score": 0.77, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 115, + 507, + 128 + ], + "score": 1.0, + "content": "-test,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 124, + 507, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 148, + 135 + ], + "score": 0.88, + "content": "p \\ll 0 . 0 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 124, + 507, + 138 + ], + "score": 1.0, + "content": "). (Dashes indicate that all samples were rejected by resampling when decoding with temperature", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 134, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 134, + 145 + ], + "score": 0.84, + "content": "T = 1 .", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 134, + 506, + 148 + ], + "score": 1.0, + "content": ") (b) Ablation experiments on the jump split. Introducing the latent variable used in previous work", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "(Guu et al., 2018) does not change performance; removing the copy mechanism results in a complete failure of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 154, + 364, + 167 + ], + "score": 1.0, + "content": "generalization. While it is possible to perform conditional inference of", + "type": "text" + }, + { + "bbox": [ + 364, + 155, + 394, + 166 + ], + "score": 0.94, + "content": "p ( y \\mid x )", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "given the generative model in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 165, + 464, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 464, + 177 + ], + "score": 1.0, + "content": "Eq. 3 (direct inference), this gives significantly worse results than data augmentation (see Sec. 5.3).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 74, + 507, + 177 + ] + }, + { + "type": "table", + "bbox": [ + 120, + 180, + 328, + 296 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 120, + 180, + 328, + 296 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 180, + 328, + 296 + ], + "spans": [ + { + "bbox": [ + 120, + 180, + 328, + 296 + ], + "score": 0.952, + "html": "
(a)
around right jump
baseline0.00 ±0.000.00 ±0.00
GECA (published)0.82 ±0.110.87 ±0.05
GECA (ours)0.98 ±0.021.00 ±0.001
learned aug. (basic)0.00 ±0.000.00 ±0.00
L resampling--
├ recomb-10.17 ±0.07-
Lrecomb-20.75 ±0.140.87 ±0.08
recomb-2 (no resampling)0.82 ±0.080.88 ±0.07
", + "type": "table", + "image_path": "82923d66569b93052b9e83149baffab4e1327615cf6521cc2be96d79c0ddead4.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 120, + 180, + 328, + 192.88888888888889 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 120, + 192.88888888888889, + 328, + 205.77777777777777 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 120, + 205.77777777777777, + 328, + 218.66666666666666 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 120, + 218.66666666666666, + 328, + 231.55555555555554 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 120, + 231.55555555555554, + 328, + 244.44444444444443 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 120, + 244.44444444444443, + 328, + 257.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 120, + 257.3333333333333, + 328, + 270.22222222222223 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 120, + 270.22222222222223, + 328, + 283.11111111111114 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 120, + 283.11111111111114, + 328, + 296.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 14 + }, + { + "type": "table", + "bbox": [ + 342, + 192, + 488, + 271 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 342, + 192, + 488, + 271 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 342, + 192, + 488, + 271 + ], + "spans": [ + { + "bbox": [ + 342, + 192, + 488, + 271 + ], + "score": 0.865, + "html": "
jump
recomb-2 (no resampling)0.88 ±0.07
+ VAE0.88 ±0.07
+resampling0.87 ±0.08
- copying direct inference0.00 ±0.00
0.57 ±0.05
", + "type": "table", + "image_path": "bd8e83d50057daa52a6aeb460c6675ba869851fd2cadfa2577e40dcecab57f2c.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 342, + 192, + 488, + 231.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 342, + 231.5, + 488, + 271.0 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 108, + 312, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 253, + 325 + ], + "score": 1.0, + "content": "procedures that produce data points", + "type": "text" + }, + { + "bbox": [ + 253, + 312, + 295, + 324 + ], + "score": 0.94, + "content": "d = ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 311, + 505, + 325 + ], + "score": 1.0, + "content": ", learners are evaluated on their ability to predict an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 323, + 503, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 134, + 335 + ], + "score": 1.0, + "content": "output", + "type": "text" + }, + { + "bbox": [ + 134, + 325, + 141, + 334 + ], + "score": 0.75, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 323, + 198, + 335 + ], + "score": 1.0, + "content": "from an input", + "type": "text" + }, + { + "bbox": [ + 198, + 325, + 205, + 333 + ], + "score": 0.53, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 323, + 240, + 335 + ], + "score": 1.0, + "content": ": actions", + "type": "text" + }, + { + "bbox": [ + 240, + 325, + 247, + 335 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 323, + 320, + 335 + ], + "score": 1.0, + "content": "given instructions", + "type": "text" + }, + { + "bbox": [ + 321, + 325, + 327, + 333 + ], + "score": 0.64, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 323, + 437, + 335 + ], + "score": 1.0, + "content": ", or morphological analyses", + "type": "text" + }, + { + "bbox": [ + 438, + 325, + 445, + 335 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 323, + 496, + 335 + ], + "score": 1.0, + "content": "given words", + "type": "text" + }, + { + "bbox": [ + 496, + 325, + 503, + 333 + ], + "score": 0.65, + "content": "x", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 311, + 505, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 507, + 353 + ], + "score": 1.0, + "content": "For each task, we compare a baseline with no data augmentation, the rule-based GECA data aug-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "mentation procedure (Andreas, 2020), and a sequence of ablated versions of R&R that measure", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "the importance of resampling and recombination. The basic Learned Aug model trains an RNN", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 154, + 385 + ], + "score": 1.0, + "content": "to generate", + "type": "text" + }, + { + "bbox": [ + 155, + 373, + 178, + 385 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "pairs, then trains a conditional model on the original data and samples from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "generative model. Resampling filters these samples as described in Section 4. Recomb-n models", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "replace the RNN with a prototype-based model as described in Section 3. Additional experiments", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 330, + 419 + ], + "score": 1.0, + "content": "(Table 1b) compare data augmentation to prediction of", + "type": "text" + }, + { + "bbox": [ + 330, + 407, + 337, + 417 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "via direct inference (Appendix E) in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 417, + 334, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 334, + 429 + ], + "score": 1.0, + "content": "prototype-based model and several other model variants.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 339, + 507, + 429 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 441, + 160, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 162, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 162, + 455 + ], + "score": 1.0, + "content": "5.1 SCAN", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "SCAN (Lake & Baroni, 2018) is a synthetic dataset featuring simple English commands paired with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "sequences of actions. Our experiments aim to show that R&R performs well at one-shot concept", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "learning and zero-shot generalization on controlled tasks where rule-based models succeed. We", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "experiment with two splits of the dataset, jump and around right. In the jump split, which tests", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "one-shot learning, the word jump appears in a single command in the training set but in more complex", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "commands in the test set (e.g. look and jump twice). The around right split (Loula et al., 2018) tests", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "zero-shot generalization by presenting learners with constructions like walk around left and walk", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 539, + 370, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 370, + 551 + ], + "score": 1.0, + "content": "right in the training set, but walk around right only in the test set.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 461, + 505, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "Despite the apparent simplicity of the task, ordinary neural sequence-to-sequence models completely", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "fail to make correct predictions on SCAN test set (Table 1). As such it has been a major focus of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "research on compositional generalization in sequence-to-sequence models, and a number of heuristic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "procedures and specialized model architectures and training procedures have been developed to solve", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "it (Russin et al., 2019; Gordon et al., 2020; Lake, 2019; Andreas, 2020). Here we show that the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "generic prototype recombination procedure described above does so as well. We use long–short", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "recombination for the jump split and long–long recombination for the around right split. We use a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 303, + 645 + ], + "score": 1.0, + "content": "recombination network to generate 400 samples", + "type": "text" + }, + { + "bbox": [ + 304, + 633, + 346, + 644 + ], + "score": 0.93, + "content": "d = ( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "and then train an ordinary LSTM with", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 642, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 427, + 658 + ], + "score": 1.0, + "content": "attention (Bahdanau et al., 2019b) on the original and augmented data to predict", + "type": "text" + }, + { + "bbox": [ + 428, + 645, + 434, + 655 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 642, + 457, + 658 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 457, + 646, + 464, + 653 + ], + "score": 0.64, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 642, + 506, + 658 + ], + "score": 1.0, + "content": ". Training", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 654, + 292, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 292, + 666 + ], + "score": 1.0, + "content": "hyperparameters are provided in Appendix D.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 555, + 506, + 666 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 671, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "Table 1 shows the results of training these models on the SCAN dataset.4 2-prototype recombination", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "is essential for successful generalization on both splits. Additional ablations (Table 1b) show that the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 344, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 361 + ], + "score": 1.0, + "content": "continuous latent variable used by Guu et al. (2018) does not affect performance, but that the copy", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "mechanism described in Section 3.2 and the use of the recomb-2 model for data augmentation rather", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 368, + 342, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 342, + 381 + ], + "score": 1.0, + "content": "than direct inference are necessary for accurate prediction.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + } + ], + "index": 50.5, + "bbox_fs": [ + 106, + 669, + 505, + 695 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 165, + 506, + 321 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 161 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 139, + 92 + ], + "score": 1.0, + "content": "Table 2:", + "type": "text" + }, + { + "bbox": [ + 140, + 81, + 151, + 90 + ], + "score": 0.83, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 79, + 306, + 92 + ], + "score": 1.0, + "content": "score for morphological analysis on rare", + "type": "text" + }, + { + "bbox": [ + 306, + 81, + 345, + 90 + ], + "score": 0.64, + "content": "\\mathrm { ( F U T + P S T ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 79, + 506, + 92 + ], + "score": 1.0, + "content": ") and frequent (OTHER) word forms. R&R", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 90, + 506, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 506, + 101 + ], + "score": 1.0, + "content": "variants with 1- and 2-prototype recombination (shaded in grey) consistently match or outperform both a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 271, + 113 + ], + "score": 1.0, + "content": "no-augmentation baseline and GECA; recomb-", + "type": "text" + }, + { + "bbox": [ + 271, + 101, + 284, + 110 + ], + "score": 0.79, + "content": "^ { l + }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "resampling is best overall. Bold numbers are not significantly", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 340, + 122 + ], + "score": 1.0, + "content": "different from the best result in each column under a paired t-test", + "type": "text" + }, + { + "bbox": [ + 340, + 110, + 375, + 120 + ], + "score": 0.89, + "content": "\\mathit { p } < 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 109, + 505, + 122 + ], + "score": 1.0, + "content": "after Bonferroni correction; nothing", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 120, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 131 + ], + "score": 1.0, + "content": "is bold if all differences are insignificant). The NOVEL portion of the table shows model accuracy on examples", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 130, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 505, + 141 + ], + "score": 1.0, + "content": "whose exact tag set never appeared in the training data. (There were no such words in the test set for the Spanish", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 140, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 369, + 152 + ], + "score": 1.0, + "content": "OTHER.) Differences between GECA and the best R&R variant (recomb-", + "type": "text" + }, + { + "bbox": [ + 369, + 141, + 383, + 150 + ], + "score": 0.8, + "content": "^ { l + }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 140, + 505, + 152 + ], + "score": 1.0, + "content": "resampling) are larger than in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 150, + 378, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 378, + 162 + ], + "score": 1.0, + "content": "full evaluation set. ∗The Spanish past tense was used as a development set.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 105, + 165, + 506, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 165, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 321 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline Lresampling0.66 ±0.010.88 ±0.010.75 ±0.020.90 ±0.010.69 ±0.040.85 ±0.03
0.65 ±0.010.88 ±0.010.77 ±0.010.90 ±0.020.69 ±0.040.84 ±0.04
GECA0.66 ±0.010.88 ±0.010.76 ±0.020.90±0.020.69 ±0.020.87 ±0.01
Lresampling A0.72 ±0.020.88 ±0.010.81 ±0.020.89 ±0.010.75 ±0.030.85 ±0.02
learned aug. (basic)0.66 ±0.020.88 ±0.010.77 ±0.020.90 ±0.010.70 ±0.020.87 ±0.01
L resampling0.70 ±0.020.86 ±0.010.84 ±0.010.90 ±0.010.73 ±0.040.85 ±0.03
├recomb-10.72 ±0.020.87 ±0.010.85 ±0.010.90 ±0.020.77 ±0.020.87 ±0.02
recomb-20.71 ±0.010.87 ±0.020.82 ±0.020.90 ±0.010.75 ±0.030.86 ±0.03
GECA + recomb-1 + resamp.0.74 ±0.020.86 ±0.010.85 ±0.020.89 ±0.010.79 ±0.020.84 ±0.01
THAONbaseline0.63 ±0.030.72 ±0.020.42 ±0.120.68 ±0.040.66 ±0.15
GECA + resampling0.67 ±0.030.79 ±0.020.26 ±0.200.73 ±0.040.71 ±0.10
recomb-1 + resampling0.69 ±0.020.83 ±0.020.42 ±0.120.75 ±0.030.82 ±0.04
GECA + recomb-1 + resamp.0.69 ±0.020.83 ±0.020.35 ±0.110.77 ±0.030.71 ±0.07
", + "type": "table", + "image_path": "662b57c7af50cd3e5b506c123f6802f95eda0db40c7caee885e186eb17cc26e1.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 105, + 165, + 506, + 217.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 105, + 217.0, + 506, + 269.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 105, + 269.0, + 506, + 321.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 361 + ], + "score": 1.0, + "content": "continuous latent variable used by Guu et al. (2018) does not affect performance, but that the copy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "mechanism described in Section 3.2 and the use of the recomb-2 model for data augmentation rather", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 368, + 342, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 342, + 381 + ], + "score": 1.0, + "content": "than direct inference are necessary for accurate prediction.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 396, + 227, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 228, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 228, + 410 + ], + "score": 1.0, + "content": "5.2 SIGMORPHON 2018", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 431 + ], + "score": 1.0, + "content": "The SIGMORPHON 2018 dataset consists of words paired with morphological analyses (lemmas, or", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 430, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 504, + 441 + ], + "score": 1.0, + "content": "base forms, and tags for linguistic features like tense and case, as depicted in Fig. 1). We use the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "data to construct a morphological analysis task (Akyürek et al., 2019) (predicting analyses from", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "surface forms) to test models’ few-shot learning of new morphological paradigms. In three languages", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "of varying morphological complexity (Spanish, Swahili, and Turkish) we construct splits of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "data featuring a training set of 1000 examples and three test sets of 100 examples. One test set", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 497 + ], + "score": 1.0, + "content": "consists exclusively of words in the past tense, one in the future tense and one with other word forms", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "score": 1.0, + "content": "(present tense verbs, nouns and adjectives). The training set contains exactly eight past-tense and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "eight future-tense examples; all the rest are other word forms. Experiments evaluate R&R’s ability to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "efficiently learn noisy morphological rules, long viewed a key challenge for connectionist approaches", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "to language learning (Rumelhart & McClelland, 1986). As approaches may be sensitive to the choice", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "score": 1.0, + "content": "of the eight examples from which the model must generalize, we construct five different splits per", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "language and use the Spanish past-tense data as a development set. As above, we use long–long", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 307, + 574 + ], + "score": 1.0, + "content": "recombination with similarity criteria applied to", + "type": "text" + }, + { + "bbox": [ + 307, + 563, + 315, + 573 + ], + "score": 0.75, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "only. We augment the training data with 180", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 163, + 585 + ], + "score": 1.0, + "content": "samples from", + "type": "text" + }, + { + "bbox": [ + 163, + 574, + 191, + 583 + ], + "score": 0.75, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "and again train an ordinary LSTM with attention for final predictions. Details", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 583, + 222, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 222, + 596 + ], + "score": 1.0, + "content": "are provided in Appendix B.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 408, + 613 + ], + "score": 1.0, + "content": "Table 2 shows aggregate results across languages. We report the model’s", + "type": "text" + }, + { + "bbox": [ + 408, + 601, + 420, + 611 + ], + "score": 0.88, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "score for predicting", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "morphological analyses of words in the few-shot training condition (past and future) and the standard", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "training condition (other word forms). Here, learned data augmentation with both one- and two-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "prototype models consistently matches or outperforms GECA. The improvement is sometimes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "dramatic: for few-shot prediction in Swahili, recomb-1 augmentation reduces the error rate by", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 126, + 666 + ], + "score": 0.84, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 654, + 245, + 668 + ], + "score": 1.0, + "content": "relative to the baseline and", + "type": "text" + }, + { + "bbox": [ + 245, + 655, + 266, + 666 + ], + "score": 0.86, + "content": "21 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 654, + 444, + 668 + ], + "score": 1.0, + "content": "relative to GECA. An additional baseline", + "type": "text" + }, + { + "bbox": [ + 444, + 656, + 454, + 666 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "resampling", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "experiment upweights the existing rare samples rather than synthesizing new ones; results demonstrate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "that recombination, and not simply reweighting, is important for generalization. Table 2 also", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "score": 1.0, + "content": "includes a finer-grained analysis of novel word forms: words in the evaluation set whose exact", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "morphological analysis never appeared in the training set. R&R again significantly outperforms both", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "the baseline and GECA-based data augmentation in the few-shot FUT+PAST condition and the ordinary", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "OTHER condition, underscoring the effectiveness of this approach for “in-distribution” compositional", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 36.5 + } + ], + "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, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 165, + 506, + 321 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 161 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 139, + 92 + ], + "score": 1.0, + "content": "Table 2:", + "type": "text" + }, + { + "bbox": [ + 140, + 81, + 151, + 90 + ], + "score": 0.83, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 79, + 306, + 92 + ], + "score": 1.0, + "content": "score for morphological analysis on rare", + "type": "text" + }, + { + "bbox": [ + 306, + 81, + 345, + 90 + ], + "score": 0.64, + "content": "\\mathrm { ( F U T + P S T ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 79, + 506, + 92 + ], + "score": 1.0, + "content": ") and frequent (OTHER) word forms. R&R", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 90, + 506, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 506, + 101 + ], + "score": 1.0, + "content": "variants with 1- and 2-prototype recombination (shaded in grey) consistently match or outperform both a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 271, + 113 + ], + "score": 1.0, + "content": "no-augmentation baseline and GECA; recomb-", + "type": "text" + }, + { + "bbox": [ + 271, + 101, + 284, + 110 + ], + "score": 0.79, + "content": "^ { l + }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "resampling is best overall. Bold numbers are not significantly", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 340, + 122 + ], + "score": 1.0, + "content": "different from the best result in each column under a paired t-test", + "type": "text" + }, + { + "bbox": [ + 340, + 110, + 375, + 120 + ], + "score": 0.89, + "content": "\\mathit { p } < 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 109, + 505, + 122 + ], + "score": 1.0, + "content": "after Bonferroni correction; nothing", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 120, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 131 + ], + "score": 1.0, + "content": "is bold if all differences are insignificant). The NOVEL portion of the table shows model accuracy on examples", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 130, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 505, + 141 + ], + "score": 1.0, + "content": "whose exact tag set never appeared in the training data. (There were no such words in the test set for the Spanish", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 140, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 369, + 152 + ], + "score": 1.0, + "content": "OTHER.) Differences between GECA and the best R&R variant (recomb-", + "type": "text" + }, + { + "bbox": [ + 369, + 141, + 383, + 150 + ], + "score": 0.8, + "content": "^ { l + }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 140, + 505, + 152 + ], + "score": 1.0, + "content": "resampling) are larger than in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 150, + 378, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 378, + 162 + ], + "score": 1.0, + "content": "full evaluation set. ∗The Spanish past tense was used as a development set.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 105, + 165, + 506, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 165, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 321 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline Lresampling0.66 ±0.010.88 ±0.010.75 ±0.020.90 ±0.010.69 ±0.040.85 ±0.03
0.65 ±0.010.88 ±0.010.77 ±0.010.90 ±0.020.69 ±0.040.84 ±0.04
GECA0.66 ±0.010.88 ±0.010.76 ±0.020.90±0.020.69 ±0.020.87 ±0.01
Lresampling A0.72 ±0.020.88 ±0.010.81 ±0.020.89 ±0.010.75 ±0.030.85 ±0.02
learned aug. (basic)0.66 ±0.020.88 ±0.010.77 ±0.020.90 ±0.010.70 ±0.020.87 ±0.01
L resampling0.70 ±0.020.86 ±0.010.84 ±0.010.90 ±0.010.73 ±0.040.85 ±0.03
├recomb-10.72 ±0.020.87 ±0.010.85 ±0.010.90 ±0.020.77 ±0.020.87 ±0.02
recomb-20.71 ±0.010.87 ±0.020.82 ±0.020.90 ±0.010.75 ±0.030.86 ±0.03
GECA + recomb-1 + resamp.0.74 ±0.020.86 ±0.010.85 ±0.020.89 ±0.010.79 ±0.020.84 ±0.01
THAONbaseline0.63 ±0.030.72 ±0.020.42 ±0.120.68 ±0.040.66 ±0.15
GECA + resampling0.67 ±0.030.79 ±0.020.26 ±0.200.73 ±0.040.71 ±0.10
recomb-1 + resampling0.69 ±0.020.83 ±0.020.42 ±0.120.75 ±0.030.82 ±0.04
GECA + recomb-1 + resamp.0.69 ±0.020.83 ±0.020.35 ±0.110.77 ±0.030.71 ±0.07
", + "type": "table", + "image_path": "662b57c7af50cd3e5b506c123f6802f95eda0db40c7caee885e186eb17cc26e1.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 105, + 165, + 506, + 217.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 105, + 217.0, + 506, + 269.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 105, + 269.0, + 506, + 321.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 505, + 380 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 105, + 344, + 506, + 381 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 396, + 227, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 228, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 228, + 410 + ], + "score": 1.0, + "content": "5.2 SIGMORPHON 2018", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 431 + ], + "score": 1.0, + "content": "The SIGMORPHON 2018 dataset consists of words paired with morphological analyses (lemmas, or", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 430, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 504, + 441 + ], + "score": 1.0, + "content": "base forms, and tags for linguistic features like tense and case, as depicted in Fig. 1). We use the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "data to construct a morphological analysis task (Akyürek et al., 2019) (predicting analyses from", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "surface forms) to test models’ few-shot learning of new morphological paradigms. In three languages", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "of varying morphological complexity (Spanish, Swahili, and Turkish) we construct splits of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "data featuring a training set of 1000 examples and three test sets of 100 examples. One test set", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 497 + ], + "score": 1.0, + "content": "consists exclusively of words in the past tense, one in the future tense and one with other word forms", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 508 + ], + "score": 1.0, + "content": "(present tense verbs, nouns and adjectives). The training set contains exactly eight past-tense and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "eight future-tense examples; all the rest are other word forms. Experiments evaluate R&R’s ability to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "efficiently learn noisy morphological rules, long viewed a key challenge for connectionist approaches", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "to language learning (Rumelhart & McClelland, 1986). As approaches may be sensitive to the choice", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "score": 1.0, + "content": "of the eight examples from which the model must generalize, we construct five different splits per", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "language and use the Spanish past-tense data as a development set. As above, we use long–long", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 307, + 574 + ], + "score": 1.0, + "content": "recombination with similarity criteria applied to", + "type": "text" + }, + { + "bbox": [ + 307, + 563, + 315, + 573 + ], + "score": 0.75, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "only. We augment the training data with 180", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 163, + 585 + ], + "score": 1.0, + "content": "samples from", + "type": "text" + }, + { + "bbox": [ + 163, + 574, + 191, + 583 + ], + "score": 0.75, + "content": "p _ { \\mathrm { r e c o m b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "and again train an ordinary LSTM with attention for final predictions. Details", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 583, + 222, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 222, + 596 + ], + "score": 1.0, + "content": "are provided in Appendix B.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 418, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 408, + 613 + ], + "score": 1.0, + "content": "Table 2 shows aggregate results across languages. We report the model’s", + "type": "text" + }, + { + "bbox": [ + 408, + 601, + 420, + 611 + ], + "score": 0.88, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "score for predicting", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "morphological analyses of words in the few-shot training condition (past and future) and the standard", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "training condition (other word forms). Here, learned data augmentation with both one- and two-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "prototype models consistently matches or outperforms GECA. The improvement is sometimes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "dramatic: for few-shot prediction in Swahili, recomb-1 augmentation reduces the error rate by", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 126, + 666 + ], + "score": 0.84, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 654, + 245, + 668 + ], + "score": 1.0, + "content": "relative to the baseline and", + "type": "text" + }, + { + "bbox": [ + 245, + 655, + 266, + 666 + ], + "score": 0.86, + "content": "21 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 654, + 444, + 668 + ], + "score": 1.0, + "content": "relative to GECA. An additional baseline", + "type": "text" + }, + { + "bbox": [ + 444, + 656, + 454, + 666 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "resampling", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "experiment upweights the existing rare samples rather than synthesizing new ones; results demonstrate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "that recombination, and not simply reweighting, is important for generalization. Table 2 also", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "score": 1.0, + "content": "includes a finer-grained analysis of novel word forms: words in the evaluation set whose exact", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "morphological analysis never appeared in the training set. R&R again significantly outperforms both", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "the baseline and GECA-based data augmentation in the few-shot FUT+PAST condition and the ordinary", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "OTHER condition, underscoring the effectiveness of this approach for “in-distribution” compositional", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "generalization. Finally, the gains provided by learned augmentation and GECA appear to be at least", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 279, + 106 + ], + "score": 1.0, + "content": "partially orthogonal: combining the GECA", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 279, + 95, + 288, + 104 + ], + "score": 0.72, + "content": "^ +", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 288, + 94, + 386, + 106 + ], + "score": 1.0, + "content": "resampling and recomb-", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 387, + 94, + 402, + 104 + ], + "score": 0.82, + "content": "\\cdot l +", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 402, + 94, + 504, + 106 + ], + "score": 1.0, + "content": "resampling models gives", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 292, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 292, + 117 + ], + "score": 1.0, + "content": "further improvements in Spanish and Turkish.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 600, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "generalization. Finally, the gains provided by learned augmentation and GECA appear to be at least", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 504, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 279, + 106 + ], + "score": 1.0, + "content": "partially orthogonal: combining the GECA", + "type": "text" + }, + { + "bbox": [ + 279, + 95, + 288, + 104 + ], + "score": 0.72, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 94, + 386, + 106 + ], + "score": 1.0, + "content": "resampling and recomb-", + "type": "text" + }, + { + "bbox": [ + 387, + 94, + 402, + 104 + ], + "score": 0.82, + "content": "\\cdot l +", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 94, + 504, + 106 + ], + "score": 1.0, + "content": "resampling models gives", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 292, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 292, + 117 + ], + "score": 1.0, + "content": "further improvements in Spanish and Turkish.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 130, + 175, + 141 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 177, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 177, + 143 + ], + "score": 1.0, + "content": "5.3 ANALYSIS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 505, + 283 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "Why is R&R effective? Samples from the best learned data augmentation models for SCAN and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "score": 1.0, + "content": "SIGMORPHON may be found in the Appendix G.3 . We programaticaly analyzed 400 samples from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 173, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 277, + 185 + ], + "score": 1.0, + "content": "recomb-2 models in SCAN and found that", + "type": "text" + }, + { + "bbox": [ + 278, + 173, + 298, + 183 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 173, + 506, + 185 + ], + "score": 1.0, + "content": "of novel samples are exactly correct in the around", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 165, + 197 + ], + "score": 1.0, + "content": "right split and", + "type": "text" + }, + { + "bbox": [ + 166, + 184, + 186, + 195 + ], + "score": 0.88, + "content": "74 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "in the jump split. A manual analysis of 50 Turkish samples indicated that only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 126, + 205 + ], + "score": 0.84, + "content": "14 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "of the novel samples were exactly correct. The augmentation procedure has a high error rate!", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 434, + 218 + ], + "score": 1.0, + "content": "However, our analysis found that malformed samples either (1) feature malformed", + "type": "text" + }, + { + "bbox": [ + 434, + 207, + 445, + 216 + ], + "score": 0.5, + "content": "x s", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 206, + 506, + 218 + ], + "score": 1.0, + "content": "that will never", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "appear in a test set (a phenomenon also observed by Andreas (2020) for outputs of GECA), or (2) are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 366, + 240 + ], + "score": 1.0, + "content": "mostly correct at the token level (inducing predictions with a high", + "type": "text" + }, + { + "bbox": [ + 367, + 228, + 379, + 239 + ], + "score": 0.88, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "score). Data augmentation thus", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 237, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 253 + ], + "score": 1.0, + "content": "contributes a mixture of irrelevant examples, label noise—which may exert a positive regularizing", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "effect (Bishop, 1995)—and well-formed examples, a small number of which are sufficient to induce", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "generalization (Bastings et al., 2018). Without resampling, SIGMORPHON models generate almost no", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 197, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 197, + 285 + ], + "score": 1.0, + "content": "examples of rare tags.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 302 + ], + "score": 1.0, + "content": "Why does R&R outperform direct inference? A partial explanation is provided by the preceding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "analysis, which notes that the accuracy of the data augmentation procedure as a generative model is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "comparatively low. Additionally, the data augmentation procedure selects only the highest-confidence", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 430, + 334 + ], + "score": 1.0, + "content": "samples from the model, so the quality of predicted ys conditioned on random", + "type": "text" + }, + { + "bbox": [ + 430, + 323, + 442, + 331 + ], + "score": 0.3, + "content": "x \\mathbf { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "will in general", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "be even lower. A conditional model trained on augmented data is able to compensate for errors in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 351, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 351, + 356 + ], + "score": 1.0, + "content": "augmentation or direct inference (Table 12 in the Appendix).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 371 + ], + "score": 1.0, + "content": "Why is Resampling without Recombination effective? One surprising feature of Table 2 is perfor-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 240, + 383 + ], + "score": 1.0, + "content": "mance of the learned aug (basic)", + "type": "text" + }, + { + "bbox": [ + 241, + 372, + 249, + 381 + ], + "score": 0.69, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "resampling model. While less effective than the recombination-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 381, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 417, + 396 + ], + "score": 1.0, + "content": "based models, augmentation with samples from an ordinary RNN trained on", + "type": "text" + }, + { + "bbox": [ + 418, + 382, + 442, + 394 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 381, + 506, + 396 + ], + "score": 1.0, + "content": "pairs improves", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "performance for some test splits. One possible explanation is that resampling effectively acts as a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "score": 1.0, + "content": "posterior constraint on the final model’s predictive distribution, guiding it toward solutions in which", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "rare tags are more probable than observed in the original training data. Future work might model this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 426, + 416, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 416, + 439 + ], + "score": 1.0, + "content": "constraint explicitly, e.g. via posterior regularization (as in Li & Rush, 2020).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 449, + 201, + 461 + ], + "lines": [ + { + "bbox": [ + 104, + 447, + 203, + 465 + ], + "spans": [ + { + "bbox": [ + 104, + 447, + 203, + 465 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "We have described a method for improving compositional generalization in sequence-to-sequence", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "models via data augmentation with learned prototype recombination models. These are the first", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "results we are aware of demonstrating that generative models of data are effective as data augmen-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "tation schemes in sequence-to-sequence learning problems, even when the generative models are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "themselves unreliable as base predictors. Our experiments demonstrate that it is possible to achieve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 530, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 541 + ], + "score": 1.0, + "content": "compositional generalization on-par with complex symbolic models in clean, highly structured do-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "mains, and outperform them in natural ones, with basic neural modeling tools and without symbolic", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 552, + 172, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 172, + 563 + ], + "score": 1.0, + "content": "representations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 578, + 200, + 588 + ], + "lines": [ + { + "bbox": [ + 107, + 578, + 200, + 589 + ], + "spans": [ + { + "bbox": [ + 107, + 578, + 200, + 589 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "score": 1.0, + "content": "We thank Eric Chu for feedback on early drafts of this paper. This work was supported by a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "hardware donation from NVIDIA under the NVAIL grant program. The authors acknowledge the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "MIT SuperCloud and Lincoln Laboratory Supercomputing Center (Reuther et al., 2018) for providing", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 630, + 451, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 451, + 644 + ], + "score": 1.0, + "content": "HPC resources that have contributed to the research results reported within this paper.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 108, + 659, + 175, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 176, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 176, + 672 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "Ekin Akyürek, Erenay Dayanık, and Deniz Yuret. Morphological analysis using a sequence decoder.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 689, + 441, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 441, + 702 + ], + "score": 1.0, + "content": "Transactions of the Association for Computational Linguistics, 7:567–579, 2019.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Jacob Andreas. Good-enough compositional data augmentation. In Procedings of the Annual Meeting", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 721, + 340, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 340, + 732 + ], + "score": 1.0, + "content": "of the Association for Computational Linguistics, 2020.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 115 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 130, + 175, + 141 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 177, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 177, + 143 + ], + "score": 1.0, + "content": "5.3 ANALYSIS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 505, + 283 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "Why is R&R effective? Samples from the best learned data augmentation models for SCAN and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 175 + ], + "score": 1.0, + "content": "SIGMORPHON may be found in the Appendix G.3 . We programaticaly analyzed 400 samples from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 173, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 277, + 185 + ], + "score": 1.0, + "content": "recomb-2 models in SCAN and found that", + "type": "text" + }, + { + "bbox": [ + 278, + 173, + 298, + 183 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 173, + 506, + 185 + ], + "score": 1.0, + "content": "of novel samples are exactly correct in the around", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 165, + 197 + ], + "score": 1.0, + "content": "right split and", + "type": "text" + }, + { + "bbox": [ + 166, + 184, + 186, + 195 + ], + "score": 0.88, + "content": "74 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "in the jump split. A manual analysis of 50 Turkish samples indicated that only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 126, + 205 + ], + "score": 0.84, + "content": "14 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "of the novel samples were exactly correct. The augmentation procedure has a high error rate!", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 434, + 218 + ], + "score": 1.0, + "content": "However, our analysis found that malformed samples either (1) feature malformed", + "type": "text" + }, + { + "bbox": [ + 434, + 207, + 445, + 216 + ], + "score": 0.5, + "content": "x s", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 206, + 506, + 218 + ], + "score": 1.0, + "content": "that will never", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "appear in a test set (a phenomenon also observed by Andreas (2020) for outputs of GECA), or (2) are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 366, + 240 + ], + "score": 1.0, + "content": "mostly correct at the token level (inducing predictions with a high", + "type": "text" + }, + { + "bbox": [ + 367, + 228, + 379, + 239 + ], + "score": 0.88, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "score). Data augmentation thus", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 237, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 253 + ], + "score": 1.0, + "content": "contributes a mixture of irrelevant examples, label noise—which may exert a positive regularizing", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "effect (Bishop, 1995)—and well-formed examples, a small number of which are sufficient to induce", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "generalization (Bastings et al., 2018). Without resampling, SIGMORPHON models generate almost no", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 197, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 197, + 285 + ], + "score": 1.0, + "content": "examples of rare tags.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 150, + 506, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 302 + ], + "score": 1.0, + "content": "Why does R&R outperform direct inference? A partial explanation is provided by the preceding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "analysis, which notes that the accuracy of the data augmentation procedure as a generative model is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "comparatively low. Additionally, the data augmentation procedure selects only the highest-confidence", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 430, + 334 + ], + "score": 1.0, + "content": "samples from the model, so the quality of predicted ys conditioned on random", + "type": "text" + }, + { + "bbox": [ + 430, + 323, + 442, + 331 + ], + "score": 0.3, + "content": "x \\mathbf { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "will in general", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "be even lower. A conditional model trained on augmented data is able to compensate for errors in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 351, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 351, + 356 + ], + "score": 1.0, + "content": "augmentation or direct inference (Table 12 in the Appendix).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 286, + 505, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 371 + ], + "score": 1.0, + "content": "Why is Resampling without Recombination effective? One surprising feature of Table 2 is perfor-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 240, + 383 + ], + "score": 1.0, + "content": "mance of the learned aug (basic)", + "type": "text" + }, + { + "bbox": [ + 241, + 372, + 249, + 381 + ], + "score": 0.69, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "resampling model. While less effective than the recombination-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 381, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 417, + 396 + ], + "score": 1.0, + "content": "based models, augmentation with samples from an ordinary RNN trained on", + "type": "text" + }, + { + "bbox": [ + 418, + 382, + 442, + 394 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 381, + 506, + 396 + ], + "score": 1.0, + "content": "pairs improves", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "performance for some test splits. One possible explanation is that resampling effectively acts as a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 416 + ], + "score": 1.0, + "content": "posterior constraint on the final model’s predictive distribution, guiding it toward solutions in which", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "rare tags are more probable than observed in the original training data. Future work might model this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 426, + 416, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 416, + 439 + ], + "score": 1.0, + "content": "constraint explicitly, e.g. via posterior regularization (as in Li & Rush, 2020).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 361, + 506, + 439 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 449, + 201, + 461 + ], + "lines": [ + { + "bbox": [ + 104, + 447, + 203, + 465 + ], + "spans": [ + { + "bbox": [ + 104, + 447, + 203, + 465 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "We have described a method for improving compositional generalization in sequence-to-sequence", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "models via data augmentation with learned prototype recombination models. These are the first", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "results we are aware of demonstrating that generative models of data are effective as data augmen-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "tation schemes in sequence-to-sequence learning problems, even when the generative models are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "themselves unreliable as base predictors. Our experiments demonstrate that it is possible to achieve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 530, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 541 + ], + "score": 1.0, + "content": "compositional generalization on-par with complex symbolic models in clean, highly structured do-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "mains, and outperform them in natural ones, with basic neural modeling tools and without symbolic", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 552, + 172, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 172, + 563 + ], + "score": 1.0, + "content": "representations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 474, + 506, + 563 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 578, + 200, + 588 + ], + "lines": [ + { + "bbox": [ + 107, + 578, + 200, + 589 + ], + "spans": [ + { + "bbox": [ + 107, + 578, + 200, + 589 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "score": 1.0, + "content": "We thank Eric Chu for feedback on early drafts of this paper. This work was supported by a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "hardware donation from NVIDIA under the NVAIL grant program. The authors acknowledge the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "MIT SuperCloud and Lincoln Laboratory Supercomputing Center (Reuther et al., 2018) for providing", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 630, + 451, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 451, + 644 + ], + "score": 1.0, + "content": "HPC resources that have contributed to the research results reported within this paper.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 597, + 506, + 644 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 659, + 175, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 176, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 176, + 672 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "Ekin Akyürek, Erenay Dayanık, and Deniz Yuret. Morphological analysis using a sequence decoder.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 689, + 441, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 441, + 702 + ], + "score": 1.0, + "content": "Transactions of the Association for Computational Linguistics, 7:567–579, 2019.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 677, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Jacob Andreas. Good-enough compositional data augmentation. In Procedings of the Annual Meeting", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 721, + 340, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 340, + 732 + ], + "score": 1.0, + "content": "of the Association for Computational Linguistics, 2020.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 500, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 500, + 147 + ], + "score": 1.0, + "content": "learning to align and translate. In International Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 506, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Harm de Vries, Timothy J O’Donnell, Shikhar Murty, Philippe Beaudoin, Yoshua", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "Bengio, and Aaron Courville. Closure: Assessing systematic generalization of clevr models. arXiv", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 177, + 258, + 188 + ], + "spans": [ + { + "bbox": [ + 114, + 177, + 258, + 188 + ], + "score": 1.0, + "content": "preprint arXiv:1912.05783, 2019a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 209 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Shikhar Murty, Michael Noukhovitch, Thien Huu Nguyen, Harm de Vries,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "and Aaron Courville. Systematic generalization: What is required and can it be learned? In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 218, + 369, + 230 + ], + "spans": [ + { + "bbox": [ + 117, + 218, + 369, + 230 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2019b.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 506, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 506, + 250 + ], + "score": 1.0, + "content": "Jasmijn Bastings, Marco Baroni, Jason Weston, Kyunghyun Cho, and Douwe Kiela. Jump to better", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 507, + 262 + ], + "score": 1.0, + "content": "conclusions: SCAN both left and right. In Proceedings of the EMNLP BlackboxNLP Workshop,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 259, + 265, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 259, + 265, + 271 + ], + "score": 1.0, + "content": "pp. 47–55, Brussels, Belgium, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 457, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 459, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 459, + 292 + ], + "score": 1.0, + "content": "Jean Berko. The child’s learning of english morphology. Word, 14(2-3):150–177, 1958.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 104, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "Jeff Bezanson, Alan Edelman, Stefan Karpinski, and Viral B Shah. Julia: A fresh approach to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "numerical computing. SIAM review, 59(1):65–98, 2017. URL https://doi.org/10.1137/", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 320, + 167, + 331 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 167, + 331 + ], + "score": 1.0, + "content": "141000671.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 339, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "Chris M Bishop. Training with noise is equivalent to tikhonov regularization. Neural computation, 7", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 349, + 195, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 195, + 362 + ], + "score": 1.0, + "content": "(1):108–116, 1995.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 108, + 369, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "score": 1.0, + "content": "Samuel Bowman, Luke Vilnis, Oriol Vinyals, Andrew Dai, Rafal Jozefowicz, and Samy Bengio.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "Generating sentences from a continuous space. In Proceedings of The 20th SIGNLL Conference", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 392, + 378, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 378, + 404 + ], + "score": 1.0, + "content": "on Computational Natural Language Learning, pp. 10–21, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 104, + 410, + 504, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "Jonathon Cai, Richard Shin, and Dawn Song. Making neural programming architectures generalize", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 422, + 482, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 422, + 482, + 434 + ], + "score": 1.0, + "content": "via recursion. In International Conference on Learning Representations, ICLR 2017, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 504, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 456 + ], + "score": 1.0, + "content": "Susan Carey and Elsa Bartlett. Acquiring a single new word. Papers and Reports on Child Language", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 452, + 209, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 452, + 209, + 465 + ], + "score": 1.0, + "content": "Development, 2, 1978.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 503, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "Nitesh V Chawla, Kevin W Bowyer, Lawrence O Hall, and W Philip Kegelmeyer. Smote: synthetic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 483, + 503, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 503, + 495 + ], + "score": 1.0, + "content": "minority over-sampling technique. Journal of artificial intelligence research, 16:321–357, 2002.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 503, + 525 + ], + "lines": [ + { + "bbox": [ + 107, + 503, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 107, + 503, + 504, + 515 + ], + "score": 1.0, + "content": "Alexander Clark and Rémi Eyraud. Polynomial identification in the limit of substitutable context-free", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 513, + 430, + 526 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 430, + 526 + ], + "score": 1.0, + "content": "languages. Journal of Machine Learning Research, 8(Aug):1725–1745, 2007.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 506, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "Ryan Cotterell, Christo Kirov, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 115, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "Arya D. McCarthy, Katharina Kann, Sabrina J. Mielke, Garrett Nicolai, Miikka Silfverberg, David", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 554, + 507, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 554, + 507, + 567 + ], + "score": 1.0, + "content": "Yarowsky, Jason Eisner, and Mans Hulden. The CoNLL–SIGMORPHON 2018 shared task:", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 566, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 116, + 566, + 506, + 578 + ], + "score": 1.0, + "content": "Universal morphological reinflection. In Proceedings of the CoNLL–SIGMORPHON 2018 Shared", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 576, + 362, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 362, + 589 + ], + "score": 1.0, + "content": "Task: Universal Morphological Reinflection, pp. 1–27, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "Marzieh Fadaee, Arianna Bisazza, and Christof Monz. Data augmentation for low-resource neural ma-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "chine translation. In Proceedings of the 55th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 618, + 244, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 618, + 244, + 631 + ], + "score": 1.0, + "content": "Linguistics, pp. 567–573, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 103, + 637, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 104, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Jerry A Fodor, Zenon W Pylyshyn, et al. Connectionism and cognitive architecture: A critical", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 649, + 282, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 282, + 661 + ], + "score": 1.0, + "content": "analysis. Cognition, 28(1-2):3–71, 1988.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 103, + 668, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Felix A Gers and E Schmidhuber. Lstm recurrent networks learn simple context-free and context-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 679, + 462, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 462, + 691 + ], + "score": 1.0, + "content": "sensitive languages. IEEE Transactions on Neural Networks, 12(6):1333–1340, 2001.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Jonathan Gordon, David Lopez-Paz, Marco Baroni, and Diane Bouchacourt. Permutation equivariant", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "models for compositional generalization in language. In International Conference on Learning", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 720, + 209, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 209, + 733 + ], + "score": 1.0, + "content": "Representations, 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 102, + 143, + 117 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 500, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 500, + 147 + ], + "score": 1.0, + "content": "learning to align and translate. In International Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 123, + 505, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 506, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Harm de Vries, Timothy J O’Donnell, Shikhar Murty, Philippe Beaudoin, Yoshua", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "Bengio, and Aaron Courville. Closure: Assessing systematic generalization of clevr models. arXiv", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 177, + 258, + 188 + ], + "spans": [ + { + "bbox": [ + 114, + 177, + 258, + 188 + ], + "score": 1.0, + "content": "preprint arXiv:1912.05783, 2019a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 154, + 505, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 209 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Shikhar Murty, Michael Noukhovitch, Thien Huu Nguyen, Harm de Vries,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "and Aaron Courville. Systematic generalization: What is required and can it be learned? In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 218, + 369, + 230 + ], + "spans": [ + { + "bbox": [ + 117, + 218, + 369, + 230 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2019b.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 195, + 506, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 506, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 506, + 250 + ], + "score": 1.0, + "content": "Jasmijn Bastings, Marco Baroni, Jason Weston, Kyunghyun Cho, and Douwe Kiela. Jump to better", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 507, + 262 + ], + "score": 1.0, + "content": "conclusions: SCAN both left and right. In Proceedings of the EMNLP BlackboxNLP Workshop,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 259, + 265, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 259, + 265, + 271 + ], + "score": 1.0, + "content": "pp. 47–55, Brussels, Belgium, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 236, + 507, + 271 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 457, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 459, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 459, + 292 + ], + "score": 1.0, + "content": "Jean Berko. The child’s learning of english morphology. Word, 14(2-3):150–177, 1958.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 277, + 459, + 292 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 104, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "Jeff Bezanson, Alan Edelman, Stefan Karpinski, and Viral B Shah. Julia: A fresh approach to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "numerical computing. SIAM review, 59(1):65–98, 2017. URL https://doi.org/10.1137/", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 320, + 167, + 331 + ], + "spans": [ + { + "bbox": [ + 116, + 320, + 167, + 331 + ], + "score": 1.0, + "content": "141000671.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 104, + 297, + 505, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 339, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "Chris M Bishop. Training with noise is equivalent to tikhonov regularization. Neural computation, 7", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 349, + 195, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 195, + 362 + ], + "score": 1.0, + "content": "(1):108–116, 1995.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 338, + 505, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 369, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 383 + ], + "score": 1.0, + "content": "Samuel Bowman, Luke Vilnis, Oriol Vinyals, Andrew Dai, Rafal Jozefowicz, and Samy Bengio.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "Generating sentences from a continuous space. In Proceedings of The 20th SIGNLL Conference", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 392, + 378, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 378, + 404 + ], + "score": 1.0, + "content": "on Computational Natural Language Learning, pp. 10–21, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 368, + 506, + 404 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 410, + 504, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "Jonathon Cai, Richard Shin, and Dawn Song. Making neural programming architectures generalize", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 422, + 482, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 422, + 482, + 434 + ], + "score": 1.0, + "content": "via recursion. In International Conference on Learning Representations, ICLR 2017, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 410, + 505, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 504, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 456 + ], + "score": 1.0, + "content": "Susan Carey and Elsa Bartlett. Acquiring a single new word. Papers and Reports on Child Language", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 452, + 209, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 452, + 209, + 465 + ], + "score": 1.0, + "content": "Development, 2, 1978.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 439, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 503, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "Nitesh V Chawla, Kevin W Bowyer, Lawrence O Hall, and W Philip Kegelmeyer. Smote: synthetic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 483, + 503, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 503, + 495 + ], + "score": 1.0, + "content": "minority over-sampling technique. Journal of artificial intelligence research, 16:321–357, 2002.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 471, + 505, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 503, + 525 + ], + "lines": [ + { + "bbox": [ + 107, + 503, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 107, + 503, + 504, + 515 + ], + "score": 1.0, + "content": "Alexander Clark and Rémi Eyraud. Polynomial identification in the limit of substitutable context-free", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 513, + 430, + 526 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 430, + 526 + ], + "score": 1.0, + "content": "languages. Journal of Machine Learning Research, 8(Aug):1725–1745, 2007.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 107, + 503, + 504, + 526 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 506, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "Ryan Cotterell, Christo Kirov, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 115, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "Arya D. McCarthy, Katharina Kann, Sabrina J. Mielke, Garrett Nicolai, Miikka Silfverberg, David", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 554, + 507, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 554, + 507, + 567 + ], + "score": 1.0, + "content": "Yarowsky, Jason Eisner, and Mans Hulden. The CoNLL–SIGMORPHON 2018 shared task:", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 566, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 116, + 566, + 506, + 578 + ], + "score": 1.0, + "content": "Universal morphological reinflection. In Proceedings of the CoNLL–SIGMORPHON 2018 Shared", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 576, + 362, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 362, + 589 + ], + "score": 1.0, + "content": "Task: Universal Morphological Reinflection, pp. 1–27, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 532, + 507, + 589 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "Marzieh Fadaee, Arianna Bisazza, and Christof Monz. Data augmentation for low-resource neural ma-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "chine translation. In Proceedings of the 55th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 618, + 244, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 618, + 244, + 631 + ], + "score": 1.0, + "content": "Linguistics, pp. 567–573, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 596, + 505, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 637, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 104, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Jerry A Fodor, Zenon W Pylyshyn, et al. Connectionism and cognitive architecture: A critical", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 649, + 282, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 282, + 661 + ], + "score": 1.0, + "content": "analysis. Cognition, 28(1-2):3–71, 1988.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 636, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 668, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Felix A Gers and E Schmidhuber. Lstm recurrent networks learn simple context-free and context-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 679, + 462, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 462, + 691 + ], + "score": 1.0, + "content": "sensitive languages. IEEE Transactions on Neural Networks, 12(6):1333–1340, 2001.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 667, + 506, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Jonathan Gordon, David Lopez-Paz, Marco Baroni, and Diane Bouchacourt. Permutation equivariant", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "models for compositional generalization in language. In International Conference on Learning", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 720, + 209, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 209, + 733 + ], + "score": 1.0, + "content": "Representations, 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Jiatao Gu, Zhengdong Lu, Hang Li, and Victor O.K. Li. Incorporating copying mechanism in", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "sequence-to-sequence learning. In Proceedings of the 54th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 317, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 317, + 118 + ], + "score": 1.0, + "content": "Computational Linguistics, pp. 1631–1640, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 104, + 123, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "Jiatao Gu, Yong Wang, Kyunghyun Cho, and Victor OK Li. Search engine guided neural machine", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 433, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 433, + 147 + ], + "score": 1.0, + "content": "translation. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 506, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 168 + ], + "score": 1.0, + "content": "Kelvin Guu, Tatsunori B. Hashimoto, Yonatan Oren, and Percy Liang. Generating sentences by", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "editing prototypes. Transactions of the Association for Computational Linguistics, 6:437–450,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 144, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 144, + 189 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 503, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. Realm: Retrieval-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 206, + 443, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 443, + 218 + ], + "score": 1.0, + "content": "augmented language model pre-training. arXiv preprint arXiv:2002.08909, 2020.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 506, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 238 + ], + "score": 1.0, + "content": "Tatsunori B Hashimoto, Kelvin Guu, Yonatan Oren, and Percy S Liang. A retrieve-and-edit framework", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 507, + 250 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 507, + 250 + ], + "score": 1.0, + "content": "for predicting structured outputs. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 246, + 200, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 246, + 200, + 259 + ], + "score": 1.0, + "content": "10052–10062, 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "Hiroshi Inoue. Data augmentation by pairing samples for images classification. In International", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 277, + 310, + 290 + ], + "spans": [ + { + "bbox": [ + 116, + 277, + 310, + 290 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "score": 1.0, + "content": "Paul Jaccard. Comparative study of the distribution of flora in a portion of the Alps and Jura. Bull", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 308, + 283, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 283, + 320 + ], + "score": 1.0, + "content": "Soc Vaudoise Sci Nat, 37:547–579, 1901.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 327, + 504, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "Nathalie Japkowicz et al. Learning from imbalanced data sets: a comparison of various strategies. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 338, + 456, + 351 + ], + "spans": [ + { + "bbox": [ + 114, + 338, + 456, + 351 + ], + "score": 1.0, + "content": "AAAI workshop on learning from imbalanced data sets, volume 68, pp. 10–15, 2000.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 504, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Robin Jia and Percy Liang. Data recombination for neural semantic parsing. In Proceedings of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 369, + 471, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 369, + 471, + 381 + ], + "score": 1.0, + "content": "54th Annual Meeting of the Association for Computational Linguistics, pp. 12–22, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 387, + 506, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "Justin Johnson, Bharath Hariharan, Laurens van der Maaten, Li Fei-Fei, C Lawrence Zitnick, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "Ross Girshick. Clevr: A diagnostic dataset for compositional language and elementary visual", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "reasoning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 421, + 207, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 207, + 433 + ], + "score": 1.0, + "content": "pp. 2901–2910, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 452 + ], + "score": 1.0, + "content": "Daniel Keysers, Nathanael Schärli, Nathan Scales, Hylke Buisman, Daniel Furrer, Sergii Kashubin,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 450, + 507, + 465 + ], + "spans": [ + { + "bbox": [ + 114, + 450, + 507, + 465 + ], + "score": 1.0, + "content": "Nikola Momchev, Danila Sinopalnikov, Lukasz Stafiniak, Tibor Tihon, Dmitry Tsarkov, Xiao Wang,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Marc van Zee, and Olivier Bousquet. Measuring compositional generalization: A comprehensive", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 473, + 477, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 473, + 477, + 486 + ], + "score": 1.0, + "content": "method on realistic data. In International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "Urvashi Khandelwal, Omer Levy, Dan Jurafsky, Luke Zettlemoyer, and Mike Lewis. Generalization", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 117, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "through memorization: Nearest neighbor language models. In International Conference on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 514, + 249, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 249, + 527 + ], + "score": 1.0, + "content": "Learning Representations, 2020.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 505, + 589 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "Christo Kirov, Ryan Cotterell, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "Patrick Xia, Manaal Faruqui, Sabrina J. Mielke, Arya McCarthy, Sandra Kübler, David Yarowsky,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 115, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "Jason Eisner, and Mans Hulden. UniMorph 2.0: Universal Morphology. In Proceedings of the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 565, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 114, + 565, + 506, + 581 + ], + "score": 1.0, + "content": "Eleventh International Conference on Language Resources and Evaluation (LREC 2018). European", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 577, + 314, + 590 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 314, + 590 + ], + "score": 1.0, + "content": "Language Resources Association (ELRA), 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 104, + 596, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "score": 1.0, + "content": "B. Lake, Tal Linzen, and M. Baroni. Human few-shot learning of compositional instructions. In", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 607, + 175, + 620 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 175, + 620 + ], + "score": 1.0, + "content": "CogSci, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "Brenden Lake and Marco Baroni. Generalization without systematicity: On the compositional", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 638, + 507, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 638, + 507, + 651 + ], + "score": 1.0, + "content": "skills of sequence-to-sequence recurrent networks. In Jennifer Dy and Andreas Krause (eds.),", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 660, + 335, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 335, + 672 + ], + "score": 1.0, + "content": "of Machine Learning Research, pp. 2873–2882, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 692 + ], + "score": 1.0, + "content": "Brenden M Lake. Compositional generalization through meta sequence-to-sequence learning. In", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 690, + 420, + 702 + ], + "spans": [ + { + "bbox": [ + 114, + 690, + 420, + 702 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 9788–9798, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "Vladimir I Levenshtein. Binary codes capable of correcting deletions, insertions, and reversals. In", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 338, + 733 + ], + "score": 1.0, + "content": "Soviet physics doklady, volume 10, pp. 707–710, 1966.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "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": [ + 107, + 82, + 504, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Jiatao Gu, Zhengdong Lu, Hang Li, and Victor O.K. Li. Incorporating copying mechanism in", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "sequence-to-sequence learning. In Proceedings of the 54th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 317, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 317, + 118 + ], + "score": 1.0, + "content": "Computational Linguistics, pp. 1631–1640, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 123, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "Jiatao Gu, Yong Wang, Kyunghyun Cho, and Victor OK Li. Search engine guided neural machine", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 433, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 433, + 147 + ], + "score": 1.0, + "content": "translation. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 124, + 505, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 506, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 168 + ], + "score": 1.0, + "content": "Kelvin Guu, Tatsunori B. Hashimoto, Yonatan Oren, and Percy Liang. Generating sentences by", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "editing prototypes. Transactions of the Association for Computational Linguistics, 6:437–450,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 144, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 144, + 189 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 152, + 506, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 503, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. Realm: Retrieval-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 206, + 443, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 443, + 218 + ], + "score": 1.0, + "content": "augmented language model pre-training. arXiv preprint arXiv:2002.08909, 2020.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 195, + 505, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 506, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 238 + ], + "score": 1.0, + "content": "Tatsunori B Hashimoto, Kelvin Guu, Yonatan Oren, and Percy S Liang. A retrieve-and-edit framework", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 507, + 250 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 507, + 250 + ], + "score": 1.0, + "content": "for predicting structured outputs. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 246, + 200, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 246, + 200, + 259 + ], + "score": 1.0, + "content": "10052–10062, 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 224, + 507, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "Hiroshi Inoue. Data augmentation by pairing samples for images classification. In International", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 277, + 310, + 290 + ], + "spans": [ + { + "bbox": [ + 116, + 277, + 310, + 290 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 266, + 505, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "score": 1.0, + "content": "Paul Jaccard. Comparative study of the distribution of flora in a portion of the Alps and Jura. Bull", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 308, + 283, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 283, + 320 + ], + "score": 1.0, + "content": "Soc Vaudoise Sci Nat, 37:547–579, 1901.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 297, + 505, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 327, + 504, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "Nathalie Japkowicz et al. Learning from imbalanced data sets: a comparison of various strategies. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 338, + 456, + 351 + ], + "spans": [ + { + "bbox": [ + 114, + 338, + 456, + 351 + ], + "score": 1.0, + "content": "AAAI workshop on learning from imbalanced data sets, volume 68, pp. 10–15, 2000.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 326, + 505, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 504, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Robin Jia and Percy Liang. Data recombination for neural semantic parsing. In Proceedings of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 369, + 471, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 369, + 471, + 381 + ], + "score": 1.0, + "content": "54th Annual Meeting of the Association for Computational Linguistics, pp. 12–22, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 357, + 505, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 387, + 506, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "Justin Johnson, Bharath Hariharan, Laurens van der Maaten, Li Fei-Fei, C Lawrence Zitnick, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "Ross Girshick. Clevr: A diagnostic dataset for compositional language and elementary visual", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "reasoning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 421, + 207, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 421, + 207, + 433 + ], + "score": 1.0, + "content": "pp. 2901–2910, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 388, + 506, + 433 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 452 + ], + "score": 1.0, + "content": "Daniel Keysers, Nathanael Schärli, Nathan Scales, Hylke Buisman, Daniel Furrer, Sergii Kashubin,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 450, + 507, + 465 + ], + "spans": [ + { + "bbox": [ + 114, + 450, + 507, + 465 + ], + "score": 1.0, + "content": "Nikola Momchev, Danila Sinopalnikov, Lukasz Stafiniak, Tibor Tihon, Dmitry Tsarkov, Xiao Wang,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Marc van Zee, and Olivier Bousquet. Measuring compositional generalization: A comprehensive", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 473, + 477, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 473, + 477, + 486 + ], + "score": 1.0, + "content": "method on realistic data. In International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 441, + 507, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "Urvashi Khandelwal, Omer Levy, Dan Jurafsky, Luke Zettlemoyer, and Mike Lewis. Generalization", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 117, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "through memorization: Nearest neighbor language models. In International Conference on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 514, + 249, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 514, + 249, + 527 + ], + "score": 1.0, + "content": "Learning Representations, 2020.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 492, + 505, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 505, + 589 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "Christo Kirov, Ryan Cotterell, John Sylak-Glassman, Géraldine Walther, Ekaterina Vylomova,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "Patrick Xia, Manaal Faruqui, Sabrina J. Mielke, Arya McCarthy, Sandra Kübler, David Yarowsky,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 115, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "Jason Eisner, and Mans Hulden. UniMorph 2.0: Universal Morphology. In Proceedings of the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 565, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 114, + 565, + 506, + 581 + ], + "score": 1.0, + "content": "Eleventh International Conference on Language Resources and Evaluation (LREC 2018). European", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 577, + 314, + 590 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 314, + 590 + ], + "score": 1.0, + "content": "Language Resources Association (ELRA), 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 533, + 506, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 596, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 610 + ], + "score": 1.0, + "content": "B. Lake, Tal Linzen, and M. Baroni. Human few-shot learning of compositional instructions. In", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 607, + 175, + 620 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 175, + 620 + ], + "score": 1.0, + "content": "CogSci, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 595, + 506, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "Brenden Lake and Marco Baroni. Generalization without systematicity: On the compositional", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 638, + 507, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 638, + 507, + 651 + ], + "score": 1.0, + "content": "skills of sequence-to-sequence recurrent networks. In Jennifer Dy and Andreas Krause (eds.),", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 660, + 335, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 335, + 672 + ], + "score": 1.0, + "content": "of Machine Learning Research, pp. 2873–2882, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 627, + 507, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 692 + ], + "score": 1.0, + "content": "Brenden M Lake. Compositional generalization through meta sequence-to-sequence learning. In", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 690, + 420, + 702 + ], + "spans": [ + { + "bbox": [ + 114, + 690, + 420, + 702 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 9788–9798, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 678, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "Vladimir I Levenshtein. Binary codes capable of correcting deletions, insertions, and reversals. In", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 338, + 733 + ], + "score": 1.0, + "content": "Soviet physics doklady, volume 10, pp. 707–710, 1966.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Xiang Lisa Li and Alexander M Rush. Posterior control of blackbox generation. arXiv preprint", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 218, + 104 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 218, + 104 + ], + "score": 1.0, + "content": "arXiv:2005.04560, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "João Loula, Marco Baroni, and Brenden Lake. Rearranging the familiar: Testing compositional", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "generalization in recurrent networks. In Proceedings of the 2018 EMNLP Workshop BlackboxNLP:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 413, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 413, + 147 + ], + "score": 1.0, + "content": "Analyzing and Interpreting Neural Networks for NLP, pp. 108–114, 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 107, + 153, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 505, + 165 + ], + "score": 1.0, + "content": "Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 460, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 460, + 176 + ], + "score": 1.0, + "content": "models. In International Conference on Learning Representations, ICLR 2017, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 108, + 182, + 504, + 217 + ], + "lines": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "Alexander Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "Weston. Key-value memory networks for directly reading documents. In Proceedings of the 2016", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 204, + 480, + 218 + ], + "spans": [ + { + "bbox": [ + 116, + 204, + 480, + 218 + ], + "score": 1.0, + "content": "Conference on Empirical Methods in Natural Language Processing, pp. 1400–1409, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 503, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 236 + ], + "score": 1.0, + "content": "Steven Piantadosi and Richard Aslin. Compositional reasoning in early childhood. PloS one, 11(9),", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 233, + 143, + 247 + ], + "spans": [ + { + "bbox": [ + 114, + 233, + 143, + 247 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "Alexander J Ratner, Henry Ehrenberg, Zeshan Hussain, Jared Dunnmon, and Christopher Ré. Learn-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 264, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 506, + 276 + ], + "score": 1.0, + "content": "ing to compose domain-specific transformations for data augmentation. In Advances in neural", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 275, + 337, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 337, + 288 + ], + "score": 1.0, + "content": "information processing systems, pp. 3236–3246, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "Albert Reuther, Jeremy Kepner, Chansup Byun, Siddharth Samsi, William Arcand, David Bestor, Bill", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 303, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 114, + 303, + 506, + 319 + ], + "score": 1.0, + "content": "Bergeron, Vijay Gadepally, Michael Houle, Matthew Hubbell, et al. Interactive supercomputing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "on 40,000 cores for machine learning and data analysis. In 2018 IEEE High Performance extreme", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 327, + 335, + 339 + ], + "spans": [ + { + "bbox": [ + 116, + 327, + 335, + 339 + ], + "score": 1.0, + "content": "Computing Conference (HPEC), pp. 1–6. IEEE, 2018.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "Eric Sven Ristad and Peter N Yianilos. Learning string-edit distance. IEEE Transactions on Pattern", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 357, + 347, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 347, + 369 + ], + "score": 1.0, + "content": "Analysis and Machine Intelligence, 20(5):522–532, 1998.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "Murray Rosenblatt. Remarks on some nonparametric estimates of a density function. The Annals of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 386, + 294, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 386, + 294, + 398 + ], + "score": 1.0, + "content": "Mathematical Statistics, pp. 832–837, 1956.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 419 + ], + "score": 1.0, + "content": "David E. Rumelhart and James L. McClelland. On learning the past tenses of english verbs. Mecha-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 316, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 316, + 429 + ], + "score": 1.0, + "content": "nisms of language aquisition, pp. 195–248, 1986.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 434, + 505, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "Jake Russin, Jason Jo, Randall C O’Reilly, and Yoshua Bengio. Compositional generalization in a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 446, + 507, + 459 + ], + "spans": [ + { + "bbox": [ + 115, + 446, + 507, + 459 + ], + "score": 1.0, + "content": "deep seq2seq model by separating syntax and semantics. arXiv preprint arXiv:1904.09708, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "Adam Santoro, Sergey Bartunov, Matthew Botvinick, Daan Wierstra, and Timothy Lillicrap. Meta-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 116, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "learning with memory-augmented neural networks. In International conference on machine", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 245, + 499 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 245, + 499 + ], + "score": 1.0, + "content": "learning, pp. 1842–1850, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "Abigail See, Peter J. Liu, and Christopher D. Manning. Get to the point: Summarization with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "pointer-generator networks. In Proceedings of the 55th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 528, + 317, + 540 + ], + "spans": [ + { + "bbox": [ + 116, + 528, + 317, + 540 + ], + "score": 1.0, + "content": "Computational Linguistics, pp. 1073–1083, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 104, + 546, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 556, + 426, + 570 + ], + "spans": [ + { + "bbox": [ + 115, + 556, + 426, + 570 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 507, + 590 + ], + "score": 1.0, + "content": "Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 587, + 220, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 220, + 599 + ], + "score": 1.0, + "content": "pp. 3–17. Springer, 1998.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 506, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Ł ukasz", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention is all you need. In I. Guyon, U. V. Luxburg, S. Bengio,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), Advances in Neural Information", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 639, + 271, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 271, + 651 + ], + "score": 1.0, + "content": "Processing Systems, volume 30, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 504, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 671 + ], + "score": 1.0, + "content": "Jane X. Wang, Zeb Kurth-Nelson, Hubert Soyer, Joel Z. Leibo, Dhruva Tirumala, Rémi Munos,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Charles Blundell, Dharshan Kumaran, and Matt M. Botvinick. Learning to reinforcement learn. In", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 679, + 175, + 693 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 175, + 693 + ], + "score": 1.0, + "content": "CogSci, 2016.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Gail Weiss, Yoav Goldberg, and Eran Yahav. On the practical computational power of finite precision", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "RNNs for language recognition. In Proceedings of the 56th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 117, + 721, + 307, + 733 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 307, + 733 + ], + "score": 1.0, + "content": "Computational Linguistics, pp. 740–745, 2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "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, + 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": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Xiang Lisa Li and Alexander M Rush. Posterior control of blackbox generation. arXiv preprint", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 218, + 104 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 218, + 104 + ], + "score": 1.0, + "content": "arXiv:2005.04560, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 104 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "João Loula, Marco Baroni, and Brenden Lake. Rearranging the familiar: Testing compositional", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "generalization in recurrent networks. In Proceedings of the 2018 EMNLP Workshop BlackboxNLP:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 413, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 413, + 147 + ], + "score": 1.0, + "content": "Analyzing and Interpreting Neural Networks for NLP, pp. 108–114, 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 112, + 506, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 107, + 153, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 505, + 165 + ], + "score": 1.0, + "content": "Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 460, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 460, + 176 + ], + "score": 1.0, + "content": "models. In International Conference on Learning Representations, ICLR 2017, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 107, + 153, + 505, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 182, + 504, + 217 + ], + "lines": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "Alexander Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "Weston. Key-value memory networks for directly reading documents. In Proceedings of the 2016", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 204, + 480, + 218 + ], + "spans": [ + { + "bbox": [ + 116, + 204, + 480, + 218 + ], + "score": 1.0, + "content": "Conference on Empirical Methods in Natural Language Processing, pp. 1400–1409, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 107, + 183, + 506, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 503, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 236 + ], + "score": 1.0, + "content": "Steven Piantadosi and Richard Aslin. Compositional reasoning in early childhood. PloS one, 11(9),", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 233, + 143, + 247 + ], + "spans": [ + { + "bbox": [ + 114, + 233, + 143, + 247 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 221, + 505, + 247 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "Alexander J Ratner, Henry Ehrenberg, Zeshan Hussain, Jared Dunnmon, and Christopher Ré. Learn-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 264, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 506, + 276 + ], + "score": 1.0, + "content": "ing to compose domain-specific transformations for data augmentation. In Advances in neural", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 275, + 337, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 275, + 337, + 288 + ], + "score": 1.0, + "content": "information processing systems, pp. 3236–3246, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 253, + 506, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "Albert Reuther, Jeremy Kepner, Chansup Byun, Siddharth Samsi, William Arcand, David Bestor, Bill", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 303, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 114, + 303, + 506, + 319 + ], + "score": 1.0, + "content": "Bergeron, Vijay Gadepally, Michael Houle, Matthew Hubbell, et al. Interactive supercomputing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "on 40,000 cores for machine learning and data analysis. In 2018 IEEE High Performance extreme", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 327, + 335, + 339 + ], + "spans": [ + { + "bbox": [ + 116, + 327, + 335, + 339 + ], + "score": 1.0, + "content": "Computing Conference (HPEC), pp. 1–6. IEEE, 2018.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 294, + 506, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "Eric Sven Ristad and Peter N Yianilos. Learning string-edit distance. IEEE Transactions on Pattern", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 357, + 347, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 347, + 369 + ], + "score": 1.0, + "content": "Analysis and Machine Intelligence, 20(5):522–532, 1998.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 345, + 506, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "Murray Rosenblatt. Remarks on some nonparametric estimates of a density function. The Annals of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 386, + 294, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 386, + 294, + 398 + ], + "score": 1.0, + "content": "Mathematical Statistics, pp. 832–837, 1956.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 374, + 506, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 504, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 419 + ], + "score": 1.0, + "content": "David E. Rumelhart and James L. McClelland. On learning the past tenses of english verbs. Mecha-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 316, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 316, + 429 + ], + "score": 1.0, + "content": "nisms of language aquisition, pp. 195–248, 1986.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 403, + 506, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 434, + 505, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "Jake Russin, Jason Jo, Randall C O’Reilly, and Yoshua Bengio. Compositional generalization in a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 446, + 507, + 459 + ], + "spans": [ + { + "bbox": [ + 115, + 446, + 507, + 459 + ], + "score": 1.0, + "content": "deep seq2seq model by separating syntax and semantics. arXiv preprint arXiv:1904.09708, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 435, + 507, + 459 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "Adam Santoro, Sergey Bartunov, Matthew Botvinick, Daan Wierstra, and Timothy Lillicrap. Meta-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 116, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "learning with memory-augmented neural networks. In International conference on machine", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 245, + 499 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 245, + 499 + ], + "score": 1.0, + "content": "learning, pp. 1842–1850, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 464, + 506, + 499 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "Abigail See, Peter J. Liu, and Christopher D. Manning. Get to the point: Summarization with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "pointer-generator networks. In Proceedings of the 55th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 528, + 317, + 540 + ], + "spans": [ + { + "bbox": [ + 116, + 528, + 317, + 540 + ], + "score": 1.0, + "content": "Computational Linguistics, pp. 1073–1083, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 505, + 505, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 546, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 556, + 426, + 570 + ], + "spans": [ + { + "bbox": [ + 115, + 556, + 426, + 570 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 546, + 505, + 570 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 507, + 590 + ], + "score": 1.0, + "content": "Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 587, + 220, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 220, + 599 + ], + "score": 1.0, + "content": "pp. 3–17. Springer, 1998.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 574, + 507, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 506, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Ł ukasz", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention is all you need. In I. Guyon, U. V. Luxburg, S. Bengio,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), Advances in Neural Information", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 639, + 271, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 271, + 651 + ], + "score": 1.0, + "content": "Processing Systems, volume 30, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 606, + 506, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 504, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 671 + ], + "score": 1.0, + "content": "Jane X. Wang, Zeb Kurth-Nelson, Hubert Soyer, Joel Z. Leibo, Dhruva Tirumala, Rémi Munos,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Charles Blundell, Dharshan Kumaran, and Matt M. Botvinick. Learning to reinforcement learn. In", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 679, + 175, + 693 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 175, + 693 + ], + "score": 1.0, + "content": "CogSci, 2016.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 656, + 506, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Gail Weiss, Yoav Goldberg, and Eran Yahav. On the practical computational power of finite precision", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "RNNs for language recognition. In Proceedings of the 56th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 117, + 721, + 307, + 733 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 307, + 733 + ], + "score": 1.0, + "content": "Computational Linguistics, pp. 740–745, 2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 106, + 699, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Jason Weston, Emily Dinan, and Alexander Miller. Retrieve and refine: Improved sequence generation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "models for dialogue. In Proceedings of the 2018 EMNLP Workshop SCAI: The 2nd International", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 387, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 387, + 118 + ], + "score": 1.0, + "content": "Workshop on Search-Oriented Conversational AI, pp. 87–92, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 107, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 107, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Chunyang Xiao, Marc Dymetman, and Claire Gardent. Sequence-based structured prediction for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "semantic parsing. In Proceedings of the 54th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 255, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 255, + 158 + ], + "score": 1.0, + "content": "Linguistics, pp. 1341–1350, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 164, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "score": 1.0, + "content": "Deniz Yuret. Knet: beginning deep learning with 100 lines of julia. In Machine Learning Systems", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 174, + 303, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 303, + 187 + ], + "score": 1.0, + "content": "Workshop at NIPS, volume 2016, pp. 5, 2016.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + } + ], + "page_idx": 12, + "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 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, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Jason Weston, Emily Dinan, and Alexander Miller. Retrieve and refine: Improved sequence generation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "models for dialogue. In Proceedings of the 2018 EMNLP Workshop SCAI: The 2nd International", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 387, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 387, + 118 + ], + "score": 1.0, + "content": "Workshop on Search-Oriented Conversational AI, pp. 87–92, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 107, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 107, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Chunyang Xiao, Marc Dymetman, and Claire Gardent. Sequence-based structured prediction for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "semantic parsing. In Proceedings of the 54th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 255, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 255, + 158 + ], + "score": 1.0, + "content": "Linguistics, pp. 1341–1350, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 107, + 123, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 164, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "score": 1.0, + "content": "Deniz Yuret. Knet: beginning deep learning with 100 lines of julia. In Machine Learning Systems", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 174, + 303, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 303, + 187 + ], + "score": 1.0, + "content": "Workshop at NIPS, volume 2016, pp. 5, 2016.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 162, + 505, + 187 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 253, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 255, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 255, + 95 + ], + "score": 1.0, + "content": "A MODEL ARCHITECTURE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 106, + 230, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 230, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 230, + 119 + ], + "score": 1.0, + "content": "A.1 PROTOTYPE ENCODER", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 126, + 376, + 141 + ], + "lines": [ + { + "bbox": [ + 102, + 120, + 376, + 147 + ], + "spans": [ + { + "bbox": [ + 102, + 120, + 307, + 147 + ], + "score": 1.0, + "content": "We use a single layer BiLSTM network to encode", + "type": "text" + }, + { + "bbox": [ + 308, + 126, + 330, + 141 + ], + "score": 0.92, + "content": "h _ { \\mathrm { p r o t o } } ^ { k j }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 120, + 376, + 147 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 147, + 371, + 164 + ], + "lines": [ + { + "bbox": [ + 239, + 147, + 371, + 164 + ], + "spans": [ + { + "bbox": [ + 239, + 147, + 371, + 164 + ], + "score": 0.91, + "content": "h _ { \\mathrm { p r o t o } } ^ { k } = \\mathrm { p r o j } ( \\mathrm { B i L S T M } \\left( W _ { e } d _ { k } ^ { \\prime } \\right) )", + "type": "interline_equation", + "image_path": "54c509cfb3d5eb93829a5ad063905da3888e74e97f4f73b57b638b8a3340d9d7.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 239, + 147, + 371, + 164 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 175, + 506, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "score": 1.0, + "content": "Morphology The hidden and embedding sizes are 1024. No dropout is applied. We project bi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "directional embeddings to the hidden size with a linear projection. We concatenate the backward and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 196, + 212, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 212, + 209 + ], + "score": 1.0, + "content": "the forward hidden states.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 504, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 504, + 227 + ], + "score": 1.0, + "content": "SCAN We choose the hidden size as 512, and embedding size as 64. We apply 0.5 dropout to the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 226, + 352, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 352, + 237 + ], + "score": 1.0, + "content": "input. We project hidden vectors in the attention mechanism.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 107, + 251, + 177, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 178, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 178, + 264 + ], + "score": 1.0, + "content": "A.2 DECODER", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 504, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "score": 1.0, + "content": "The decoder is implemented by a single layer. In addition to the hidden state and memory cell, we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 285, + 272, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 272, + 296 + ], + "score": 1.0, + "content": "also carry out a feed vector through time:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 315, + 464, + 362 + ], + "lines": [ + { + "bbox": [ + 146, + 315, + 464, + 362 + ], + "spans": [ + { + "bbox": [ + 146, + 315, + 464, + 362 + ], + "score": 0.9, + "content": "\\begin{array} { l l l } { { } } & { { \\displaystyle h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , ~ \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , ~ \\sum _ { j \\leq | d _ { 1 } | } \\alpha _ { \\mathrm { p r o t o } } ^ { 1 j } h _ { \\mathrm { p r o t o } } ^ { 1 j } , ~ \\cdots ~ , ~ \\sum _ { j \\leq | d _ { n } | } \\alpha _ { \\mathrm { p r o t o } } ^ { n j } h _ { \\mathrm { p r o t o } } ^ { n j } ~ \\right] } } \\\\ { { } } & { { \\mathrm { f e e d } ^ { t } = \\mathrm { L i n e a r } _ { \\mathrm { f e e d } } ( h _ { \\mathrm { p r e } } ^ { t } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "7112765bc2f05c5477f8f447e14c90e628b482c79c1d9875a9274439805becf7.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 146, + 315, + 464, + 330.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 146, + 330.6666666666667, + 464, + 346.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 146, + 346.33333333333337, + 464, + 362.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 506, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 281, + 385 + ], + "score": 1.0, + "content": "The input to the LSTM decoder at time step", + "type": "text" + }, + { + "bbox": [ + 281, + 374, + 286, + 383 + ], + "score": 0.79, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "is the concatenation of the previous token’s representa-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 384, + 378, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 261, + 396 + ], + "score": 1.0, + "content": "tion, previous feed vector, and a latent", + "type": "text" + }, + { + "bbox": [ + 261, + 387, + 267, + 394 + ], + "score": 0.78, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 384, + 378, + 396 + ], + "score": 1.0, + "content": "vector (in the VAE model).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 412, + 369, + 427 + ], + "lines": [ + { + "bbox": [ + 241, + 412, + 369, + 427 + ], + "spans": [ + { + "bbox": [ + 241, + 412, + 369, + 427 + ], + "score": 0.93, + "content": "\\mathrm { i n p u t } ^ { t } = [ W _ { d } d ^ { t - 1 } , f e e d ^ { t - 1 } , z ]", + "type": "interline_equation", + "image_path": "83f894b6067d421244ee465c4ac93a50877c0ed48aa5bfadb511af893d868b51.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 241, + 412, + 369, + 427 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "Morphology We use a single-layer LSTM network with a hidden size of 1024, and an embedding", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "size of 1024. We initialize the decoder hidden states with the final hidden states of the BiLSTM", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "encoder. feed is the same size as the hidden state. No dropout is applied in the decoder. Output", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 470, + 504, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 504, + 482 + ], + "score": 1.0, + "content": "calculations are provided in the original paper in equation Eq. 16. The query vector for the attentions", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 480, + 228, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 228, + 494 + ], + "score": 1.0, + "content": "is identically the hidden state:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 276, + 492, + 334, + 507 + ], + "lines": [ + { + "bbox": [ + 276, + 492, + 334, + 507 + ], + "spans": [ + { + "bbox": [ + 276, + 492, + 334, + 507 + ], + "score": 0.92, + "content": "{ \\sf q u e r y } ^ { t } = h _ { \\mathrm { o u t } } ^ { t }", + "type": "interline_equation", + "image_path": "12c7b9b8e1b1ed79a2d9eca7f3c3fe761f3e59809e6fd1aa7e573361ec72d8f8.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 276, + 492, + 334, + 507 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 353, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 353, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 353, + 524 + ], + "score": 1.0, + "content": "Further details of the attention are provided in Appendix A.3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "SCAN The decoder is implemented by a single layer LSTM network with hidden size of 512, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "embedding size of 64. The embedding parameters are shared with the encoder. Here the size of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 550, + 279, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 279, + 562 + ], + "score": 1.0, + "content": "feed vector is equal to embedding size, 64.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "We have no self-attention for this decoder in the feed vector. There is an attention projection with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "dimension is 128. The details of the attention mechanism given in Appendix A.3. Finally, we use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 588, + 387, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 387, + 602 + ], + "score": 1.0, + "content": "transpose of the embedding matrix to project feed to the output space.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 606, + 347, + 622 + ], + "lines": [ + { + "bbox": [ + 263, + 606, + 347, + 622 + ], + "spans": [ + { + "bbox": [ + 263, + 606, + 347, + 622 + ], + "score": 0.93, + "content": "\\mathrm { o u t p u t } ^ { t } = W _ { e } ^ { \\top } \\mathrm { f e e d } ^ { t }", + "type": "interline_equation", + "image_path": "94d163da51117ea9445486b736592da4ca481bf14dec3a043d80d293aeb1871b.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 263, + 606, + 347, + 622 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 657 + ], + "lines": [ + { + "bbox": [ + 104, + 629, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 629, + 484, + 651 + ], + "score": 1.0, + "content": "outputt contains unnormalized scores before the final softmax layer. We apply 0.7 dropout to", + "type": "text" + }, + { + "bbox": [ + 485, + 634, + 504, + 646 + ], + "score": 0.89, + "content": "h _ { o u t } ^ { t }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 645, + 484, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 484, + 658 + ], + "score": 1.0, + "content": "during both training and test. The copy mechanism will be further described in Appendix A.3.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 507, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 487, + 675 + ], + "score": 1.0, + "content": "The input to the LSTM decoder is the same as Eq. 25 except the decoder embedding matrix,", + "type": "text" + }, + { + "bbox": [ + 487, + 663, + 502, + 673 + ], + "score": 0.88, + "content": "W _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 661, + 507, + 675 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 312, + 687 + ], + "score": 1.0, + "content": "shares parameters with encoder embedding matrix", + "type": "text" + }, + { + "bbox": [ + 312, + 673, + 327, + 685 + ], + "score": 0.88, + "content": "W _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 672, + 506, + 687 + ], + "score": 1.0, + "content": ". We applied 0.5 dropout to the embeddings", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 683, + 132, + 699 + ], + "spans": [ + { + "bbox": [ + 107, + 685, + 126, + 696 + ], + "score": 0.89, + "content": "d _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 683, + 132, + 699 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 701, + 309, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 700, + 310, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 310, + 715 + ], + "score": 1.0, + "content": "The query vector for the attention is calculated by:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 718, + 352, + 733 + ], + "lines": [ + { + "bbox": [ + 259, + 718, + 352, + 733 + ], + "spans": [ + { + "bbox": [ + 259, + 718, + 352, + 733 + ], + "score": 0.91, + "content": "{ \\displaystyle \\mathrm { q u e r y } ^ { t } } = [ h _ { \\mathrm { o u t } } ^ { t } , \\mathrm { i n p u t } ^ { t } ]", + "type": "interline_equation", + "image_path": "54b175f47d069db5adac0206567c61a1e7135b192849a5b1e87b936efccd862c.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 259, + 718, + 352, + 733 + ], + "spans": [], + "index": 38 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 253, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 255, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 255, + 95 + ], + "score": 1.0, + "content": "A MODEL ARCHITECTURE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 106, + 230, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 230, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 230, + 119 + ], + "score": 1.0, + "content": "A.1 PROTOTYPE ENCODER", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 106, + 230, + 119 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 126, + 376, + 141 + ], + "lines": [ + { + "bbox": [ + 102, + 120, + 376, + 147 + ], + "spans": [ + { + "bbox": [ + 102, + 120, + 307, + 147 + ], + "score": 1.0, + "content": "We use a single layer BiLSTM network to encode", + "type": "text" + }, + { + "bbox": [ + 308, + 126, + 330, + 141 + ], + "score": 0.92, + "content": "h _ { \\mathrm { p r o t o } } ^ { k j }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 120, + 376, + 147 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 102, + 120, + 376, + 147 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 147, + 371, + 164 + ], + "lines": [ + { + "bbox": [ + 239, + 147, + 371, + 164 + ], + "spans": [ + { + "bbox": [ + 239, + 147, + 371, + 164 + ], + "score": 0.91, + "content": "h _ { \\mathrm { p r o t o } } ^ { k } = \\mathrm { p r o j } ( \\mathrm { B i L S T M } \\left( W _ { e } d _ { k } ^ { \\prime } \\right) )", + "type": "interline_equation", + "image_path": "54c509cfb3d5eb93829a5ad063905da3888e74e97f4f73b57b638b8a3340d9d7.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 239, + 147, + 371, + 164 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 175, + 506, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 506, + 187 + ], + "score": 1.0, + "content": "Morphology The hidden and embedding sizes are 1024. No dropout is applied. We project bi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "directional embeddings to the hidden size with a linear projection. We concatenate the backward and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 196, + 212, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 212, + 209 + ], + "score": 1.0, + "content": "the forward hidden states.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 175, + 506, + 209 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 504, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 504, + 227 + ], + "score": 1.0, + "content": "SCAN We choose the hidden size as 512, and embedding size as 64. We apply 0.5 dropout to the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 226, + 352, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 352, + 237 + ], + "score": 1.0, + "content": "input. We project hidden vectors in the attention mechanism.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 213, + 504, + 237 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 251, + 177, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 178, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 178, + 264 + ], + "score": 1.0, + "content": "A.2 DECODER", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 504, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "score": 1.0, + "content": "The decoder is implemented by a single layer. In addition to the hidden state and memory cell, we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 285, + 272, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 272, + 296 + ], + "score": 1.0, + "content": "also carry out a feed vector through time:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 271, + 505, + 296 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 315, + 464, + 362 + ], + "lines": [ + { + "bbox": [ + 146, + 315, + 464, + 362 + ], + "spans": [ + { + "bbox": [ + 146, + 315, + 464, + 362 + ], + "score": 0.9, + "content": "\\begin{array} { l l l } { { } } & { { \\displaystyle h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , ~ \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , ~ \\sum _ { j \\leq | d _ { 1 } | } \\alpha _ { \\mathrm { p r o t o } } ^ { 1 j } h _ { \\mathrm { p r o t o } } ^ { 1 j } , ~ \\cdots ~ , ~ \\sum _ { j \\leq | d _ { n } | } \\alpha _ { \\mathrm { p r o t o } } ^ { n j } h _ { \\mathrm { p r o t o } } ^ { n j } ~ \\right] } } \\\\ { { } } & { { \\mathrm { f e e d } ^ { t } = \\mathrm { L i n e a r } _ { \\mathrm { f e e d } } ( h _ { \\mathrm { p r e } } ^ { t } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "7112765bc2f05c5477f8f447e14c90e628b482c79c1d9875a9274439805becf7.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 146, + 315, + 464, + 330.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 146, + 330.6666666666667, + 464, + 346.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 146, + 346.33333333333337, + 464, + 362.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 506, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 281, + 385 + ], + "score": 1.0, + "content": "The input to the LSTM decoder at time step", + "type": "text" + }, + { + "bbox": [ + 281, + 374, + 286, + 383 + ], + "score": 0.79, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "is the concatenation of the previous token’s representa-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 384, + 378, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 261, + 396 + ], + "score": 1.0, + "content": "tion, previous feed vector, and a latent", + "type": "text" + }, + { + "bbox": [ + 261, + 387, + 267, + 394 + ], + "score": 0.78, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 384, + 378, + 396 + ], + "score": 1.0, + "content": "vector (in the VAE model).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 372, + 506, + 396 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 412, + 369, + 427 + ], + "lines": [ + { + "bbox": [ + 241, + 412, + 369, + 427 + ], + "spans": [ + { + "bbox": [ + 241, + 412, + 369, + 427 + ], + "score": 0.93, + "content": "\\mathrm { i n p u t } ^ { t } = [ W _ { d } d ^ { t - 1 } , f e e d ^ { t - 1 } , z ]", + "type": "interline_equation", + "image_path": "83f894b6067d421244ee465c4ac93a50877c0ed48aa5bfadb511af893d868b51.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 241, + 412, + 369, + 427 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "Morphology We use a single-layer LSTM network with a hidden size of 1024, and an embedding", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "size of 1024. We initialize the decoder hidden states with the final hidden states of the BiLSTM", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "encoder. feed is the same size as the hidden state. No dropout is applied in the decoder. Output", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 470, + 504, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 504, + 482 + ], + "score": 1.0, + "content": "calculations are provided in the original paper in equation Eq. 16. The query vector for the attentions", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 480, + 228, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 228, + 494 + ], + "score": 1.0, + "content": "is identically the hidden state:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 436, + 506, + 494 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 276, + 492, + 334, + 507 + ], + "lines": [ + { + "bbox": [ + 276, + 492, + 334, + 507 + ], + "spans": [ + { + "bbox": [ + 276, + 492, + 334, + 507 + ], + "score": 0.92, + "content": "{ \\sf q u e r y } ^ { t } = h _ { \\mathrm { o u t } } ^ { t }", + "type": "interline_equation", + "image_path": "12c7b9b8e1b1ed79a2d9eca7f3c3fe761f3e59809e6fd1aa7e573361ec72d8f8.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 276, + 492, + 334, + 507 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 353, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 353, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 353, + 524 + ], + "score": 1.0, + "content": "Further details of the attention are provided in Appendix A.3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 509, + 353, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "SCAN The decoder is implemented by a single layer LSTM network with hidden size of 512, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "embedding size of 64. The embedding parameters are shared with the encoder. Here the size of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 550, + 279, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 279, + 562 + ], + "score": 1.0, + "content": "feed vector is equal to embedding size, 64.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 528, + 505, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "We have no self-attention for this decoder in the feed vector. There is an attention projection with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "dimension is 128. The details of the attention mechanism given in Appendix A.3. Finally, we use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 588, + 387, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 387, + 602 + ], + "score": 1.0, + "content": "transpose of the embedding matrix to project feed to the output space.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 567, + 506, + 602 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 606, + 347, + 622 + ], + "lines": [ + { + "bbox": [ + 263, + 606, + 347, + 622 + ], + "spans": [ + { + "bbox": [ + 263, + 606, + 347, + 622 + ], + "score": 0.93, + "content": "\\mathrm { o u t p u t } ^ { t } = W _ { e } ^ { \\top } \\mathrm { f e e d } ^ { t }", + "type": "interline_equation", + "image_path": "94d163da51117ea9445486b736592da4ca481bf14dec3a043d80d293aeb1871b.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 263, + 606, + 347, + 622 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 657 + ], + "lines": [ + { + "bbox": [ + 104, + 629, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 629, + 484, + 651 + ], + "score": 1.0, + "content": "outputt contains unnormalized scores before the final softmax layer. We apply 0.7 dropout to", + "type": "text" + }, + { + "bbox": [ + 485, + 634, + 504, + 646 + ], + "score": 0.89, + "content": "h _ { o u t } ^ { t }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 645, + 484, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 484, + 658 + ], + "score": 1.0, + "content": "during both training and test. The copy mechanism will be further described in Appendix A.3.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 629, + 504, + 658 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 507, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 487, + 675 + ], + "score": 1.0, + "content": "The input to the LSTM decoder is the same as Eq. 25 except the decoder embedding matrix,", + "type": "text" + }, + { + "bbox": [ + 487, + 663, + 502, + 673 + ], + "score": 0.88, + "content": "W _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 661, + 507, + 675 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 312, + 687 + ], + "score": 1.0, + "content": "shares parameters with encoder embedding matrix", + "type": "text" + }, + { + "bbox": [ + 312, + 673, + 327, + 685 + ], + "score": 0.88, + "content": "W _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 672, + 506, + 687 + ], + "score": 1.0, + "content": ". We applied 0.5 dropout to the embeddings", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 683, + 132, + 699 + ], + "spans": [ + { + "bbox": [ + 107, + 685, + 126, + 696 + ], + "score": 0.89, + "content": "d _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 683, + 132, + 699 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 661, + 507, + 699 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 701, + 309, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 700, + 310, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 310, + 715 + ], + "score": 1.0, + "content": "The query vector for the attention is calculated by:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 700, + 310, + 715 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 718, + 352, + 733 + ], + "lines": [ + { + "bbox": [ + 259, + 718, + 352, + 733 + ], + "spans": [ + { + "bbox": [ + 259, + 718, + 352, + 733 + ], + "score": 0.91, + "content": "{ \\displaystyle \\mathrm { q u e r y } ^ { t } } = [ h _ { \\mathrm { o u t } } ^ { t } , \\mathrm { i n p u t } ^ { t } ]", + "type": "interline_equation", + "image_path": "54b175f47d069db5adac0206567c61a1e7135b192849a5b1e87b936efccd862c.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 259, + 718, + 352, + 733 + ], + "spans": [], + "index": 38 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 248, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 249, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 249, + 95 + ], + "score": 1.0, + "content": "A.3 ATTENTION AND COPYING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 479, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 480, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 480, + 117 + ], + "score": 1.0, + "content": "We use the attention mechanism described in Vaswani et al. (2017) with slight modifications.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 133 + ], + "score": 1.0, + "content": "Morphology We use a linear transformation for key while retaining an embedding size of 1024,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "score": 1.0, + "content": "and leave query and value transformations as the identity. We do not normalize by the square root", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "of the attention dimension. The query vector is described in the decoder Appendix A.2. The copy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 390, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 390, + 165 + ], + "score": 1.0, + "content": "mechanism for the morphology task is explained in the paper in detail.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 169, + 503, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "SCAN We use the nonlinear tanh transformation for key, query and value. That the attention scores", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "are calculated separately for each prototype using different parameters as well as the normalization", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 351, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 162, + 206 + ], + "score": 1.0, + "content": "i.e. obtaining", + "type": "text" + }, + { + "bbox": [ + 162, + 193, + 170, + 202 + ], + "score": 0.74, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 191, + 351, + 206 + ], + "score": 1.0, + "content": "’s is performed separately for each prototype.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "The copy mechanism for this task is slightly different and follows Gu et al. (2016) We normalize", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 342, + 232 + ], + "score": 1.0, + "content": "prototype attention scores and output scores jointly. Let", + "type": "text" + }, + { + "bbox": [ + 342, + 221, + 353, + 231 + ], + "score": 0.86, + "content": "\\bar { \\alpha } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "represent attention weights for each", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "prototype sequence before normalization. Then, we concatenate them to the output vector in Eq. 27.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 246, + 363, + 261 + ], + "lines": [ + { + "bbox": [ + 247, + 246, + 363, + 261 + ], + "spans": [ + { + "bbox": [ + 247, + 246, + 363, + 261 + ], + "score": 0.91, + "content": "\\mathrm { f i n a l } ^ { t } = [ \\mathrm { o u t p u t } ^ { t } , \\bar { \\alpha } _ { 1 } , . . . , \\bar { \\alpha } _ { n } ]", + "type": "interline_equation", + "image_path": "474c8db76d93d8262f36055e1d92625372a3048edb47abf1873d302463f1fbf9.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 247, + 246, + 363, + 261 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 330, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 331, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 331, + 281 + ], + "score": 1.0, + "content": "We obtain a probability vector via a final softmax layer:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 283, + 358, + 298 + ], + "lines": [ + { + "bbox": [ + 252, + 283, + 358, + 298 + ], + "spans": [ + { + "bbox": [ + 252, + 283, + 358, + 298 + ], + "score": 0.91, + "content": "{ \\mathrm { p r o b } } ^ { t } = \\operatorname { s o f t m a x } ( f i n a l ^ { t } )", + "type": "interline_equation", + "image_path": "ecd1b3b02c963b3bd88c4d8c468a03ec1470f302eb3aa5516efdb7577a7c4899.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 252, + 283, + 358, + 298 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 303, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 317 + ], + "score": 1.0, + "content": "That size of this probability vector is vocabulary size plus the total length all prototypes. We then", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 315, + 254, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 254, + 327 + ], + "score": 1.0, + "content": "project this into the output space by:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 330, + 365, + 345 + ], + "lines": [ + { + "bbox": [ + 246, + 330, + 365, + 345 + ], + "spans": [ + { + "bbox": [ + 246, + 330, + 365, + 345 + ], + "score": 0.91, + "content": "p ^ { t } ( w ) = \\mathtt { p r o b } ^ { t } ( \\mathtt { i n d i c e s } ( w ) )", + "type": "interline_equation", + "image_path": "0f768d76e2126cd4611f8a7a352d8ed7b0ac2606a51a8a6919774e6bc3b31728.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 246, + 330, + 365, + 345 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 352, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 365, + 363 + ], + "score": 1.0, + "content": "where indices finds all corresponding scores in probt for token", + "type": "text" + }, + { + "bbox": [ + 366, + 354, + 374, + 362 + ], + "score": 0.76, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 352, + 504, + 363 + ], + "score": 1.0, + "content": "where there might be more than", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 203, + 375 + ], + "score": 1.0, + "content": "one element for a given", + "type": "text" + }, + { + "bbox": [ + 203, + 365, + 211, + 373 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 363, + 505, + 375 + ], + "score": 1.0, + "content": ". This is because one score can come from the outputt region, and others", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 230, + 387 + ], + "score": 1.0, + "content": "from the prototype regions of", + "type": "text" + }, + { + "bbox": [ + 231, + 374, + 254, + 385 + ], + "score": 0.41, + "content": "p r o b ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 373, + 505, + 387 + ], + "score": 1.0, + "content": ". During training we applied 0.5 dropout to the indices from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 384, + 326, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 326, + 397 + ], + "score": 1.0, + "content": "outputt. Thus, the model is encouraged to copy more.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 412, + 304, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 305, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 305, + 427 + ], + "score": 1.0, + "content": "B NEIGHBORHOODS AND SAMPLING", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "In the Eq. 20 and Eq. 21 we expressed the generic form of neighborhood sets. Here we provide the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 448, + 203, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 203, + 461 + ], + "score": 1.0, + "content": "implementation details.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 370, + 479 + ], + "score": 1.0, + "content": "SCAN In the jump split, we use long-short recombination with", + "type": "text" + }, + { + "bbox": [ + 370, + 466, + 403, + 476 + ], + "score": 0.89, + "content": "\\delta = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 464, + 505, + 479 + ], + "score": 1.0, + "content": ". In around right we use", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 476, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 231, + 490 + ], + "score": 1.0, + "content": "long-long recombination with", + "type": "text" + }, + { + "bbox": [ + 231, + 477, + 264, + 487 + ], + "score": 0.9, + "content": "\\delta = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 476, + 326, + 490 + ], + "score": 1.0, + "content": ", and construct", + "type": "text" + }, + { + "bbox": [ + 326, + 477, + 335, + 487 + ], + "score": 0.81, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 476, + 506, + 490 + ], + "score": 1.0, + "content": "so that the first and second prototypes to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 279, + 501 + ], + "score": 1.0, + "content": "differ by a single token. We randomly pick", + "type": "text" + }, + { + "bbox": [ + 279, + 488, + 326, + 498 + ], + "score": 0.91, + "content": "k < 1 0 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "(10 different first prototypes, and 3 different", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 498, + 504, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 498, + 511 + ], + "score": 1.0, + "content": "second prototypes for each of them) prototype pairs that satisfy these conditions. For the recomb-", + "type": "text" + }, + { + "bbox": [ + 498, + 499, + 504, + 508 + ], + "score": 0.43, + "content": "^ { l }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 509, + 507, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 412, + 523 + ], + "score": 1.0, + "content": "experiment, we use the same neighborhood setup except but consider only the", + "type": "text" + }, + { + "bbox": [ + 412, + 510, + 442, + 520 + ], + "score": 0.89, + "content": "k < 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 509, + 507, + 523 + ], + "score": 1.0, + "content": "first prototypes.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "Sampling In the jump split, we used beam search with beam size 4 in the decoder. We calculate the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 376, + 550 + ], + "score": 1.0, + "content": "mean and standard deviation over the lengths of both among the first", + "type": "text" + }, + { + "bbox": [ + 377, + 537, + 387, + 549 + ], + "score": 0.89, + "content": "d _ { 1 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 537, + 449, + 550 + ], + "score": 1.0, + "content": "and the second", + "type": "text" + }, + { + "bbox": [ + 449, + 537, + 460, + 549 + ], + "score": 0.88, + "content": "d _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "prototypes", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "in the train set. Then, during the sampling, we expect the first and second prototypes whose length is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "shorter than their respective mean plus standard deviation. This decision is based on the fact that the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 150, + 584 + ], + "score": 1.0, + "content": "part of the", + "type": "text" + }, + { + "bbox": [ + 150, + 572, + 159, + 582 + ], + "score": 0.79, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 571, + 450, + 584 + ], + "score": 1.0, + "content": "that the model is exposed to is determined by the empirical distribution,", + "type": "text" + }, + { + "bbox": [ + 450, + 570, + 459, + 582 + ], + "score": 0.83, + "content": "\\hat { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 571, + 506, + 584 + ], + "score": 1.0, + "content": ", that arises", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "from training neighborhoods. When sampling, we try to pick prototypes from a distribution that are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "close to properties of that empirical distribution. In around right, we use temperature sampling with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 107, + 605, + 141, + 615 + ], + "score": 0.88, + "content": "T = 0 . 4", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 604, + 506, + 618 + ], + "score": 1.0, + "content": ". If a model cannot sample the expected number of both novel and unique samples within a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 616, + 285, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 273, + 628 + ], + "score": 1.0, + "content": "reasonable time, we increase temperature", + "type": "text" + }, + { + "bbox": [ + 274, + 617, + 282, + 626 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 616, + 285, + 628 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 504, + 655 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "Morphology We use long-long recombination, as explained in the paper, with slight modifications", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 643, + 320, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 297, + 656 + ], + "score": 1.0, + "content": "which leverage the structure of the task. We set", + "type": "text" + }, + { + "bbox": [ + 297, + 644, + 306, + 653 + ], + "score": 0.82, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 643, + 320, + 656 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 660, + 420, + 676 + ], + "lines": [ + { + "bbox": [ + 190, + 660, + 420, + 676 + ], + "spans": [ + { + "bbox": [ + 190, + 660, + 420, + 676 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\neq d _ { 2 t a g s } ^ { \\prime } , ( d _ { \\mathrm { t a g s } } \\backslash d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\backslash d _ { \\mathrm { 2 t a g s } } ^ { \\prime } ) = 0 \\} } \\end{array}", + "type": "interline_equation", + "image_path": "6691ccb2f6b51ca608c9ef5f4e59bd85c280588c2f6818bdc7d38544557dec0d.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 190, + 660, + 420, + 676 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 681, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 208, + 695 + ], + "score": 1.0, + "content": "For the recomb-1 model", + "type": "text" + }, + { + "bbox": [ + 208, + 681, + 232, + 694 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 680, + 506, + 695 + ], + "score": 1.0, + "content": "utilizes tag similarity, lemma similarity and is constructed using a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 169, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 169, + 704 + ], + "score": 1.0, + "content": "score function:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 719, + 418, + 734 + ], + "lines": [ + { + "bbox": [ + 192, + 719, + 418, + 734 + ], + "spans": [ + { + "bbox": [ + 192, + 719, + 418, + 734 + ], + "score": 0.89, + "content": "\\mathrm { s c o r e } _ { 1 } ( d , d _ { 1 } ^ { \\prime } ) = \\left( | d _ { \\mathrm { t a g s } } \\Delta d _ { \\mathrm { 1 t a g s } } ^ { \\prime } | , \\mathrm { j a c c a r d } ( d _ { \\mathrm { l e m m a } } , d _ { \\mathrm { 1 l e m m a } } ^ { \\prime } ) \\right)", + "type": "interline_equation", + "image_path": "a40678b4b18b53ff2b22c38f02e4e224b1b9132876421e7aa83e8b56e88df4dd.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 192, + 719, + 418, + 734 + ], + "spans": [], + "index": 44 + } + ] + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 248, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 249, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 249, + 95 + ], + "score": 1.0, + "content": "A.3 ATTENTION AND COPYING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 479, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 480, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 480, + 117 + ], + "score": 1.0, + "content": "We use the attention mechanism described in Vaswani et al. (2017) with slight modifications.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 101, + 480, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 133 + ], + "score": 1.0, + "content": "Morphology We use a linear transformation for key while retaining an embedding size of 1024,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 143 + ], + "score": 1.0, + "content": "and leave query and value transformations as the identity. We do not normalize by the square root", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "of the attention dimension. The query vector is described in the decoder Appendix A.2. The copy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 390, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 390, + 165 + ], + "score": 1.0, + "content": "mechanism for the morphology task is explained in the paper in detail.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 120, + 506, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 169, + 503, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "SCAN We use the nonlinear tanh transformation for key, query and value. That the attention scores", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "are calculated separately for each prototype using different parameters as well as the normalization", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 351, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 162, + 206 + ], + "score": 1.0, + "content": "i.e. obtaining", + "type": "text" + }, + { + "bbox": [ + 162, + 193, + 170, + 202 + ], + "score": 0.74, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 191, + 351, + 206 + ], + "score": 1.0, + "content": "’s is performed separately for each prototype.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 170, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "The copy mechanism for this task is slightly different and follows Gu et al. (2016) We normalize", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 342, + 232 + ], + "score": 1.0, + "content": "prototype attention scores and output scores jointly. Let", + "type": "text" + }, + { + "bbox": [ + 342, + 221, + 353, + 231 + ], + "score": 0.86, + "content": "\\bar { \\alpha } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "represent attention weights for each", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "prototype sequence before normalization. Then, we concatenate them to the output vector in Eq. 27.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 208, + 506, + 244 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 246, + 363, + 261 + ], + "lines": [ + { + "bbox": [ + 247, + 246, + 363, + 261 + ], + "spans": [ + { + "bbox": [ + 247, + 246, + 363, + 261 + ], + "score": 0.91, + "content": "\\mathrm { f i n a l } ^ { t } = [ \\mathrm { o u t p u t } ^ { t } , \\bar { \\alpha } _ { 1 } , . . . , \\bar { \\alpha } _ { n } ]", + "type": "interline_equation", + "image_path": "474c8db76d93d8262f36055e1d92625372a3048edb47abf1873d302463f1fbf9.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 247, + 246, + 363, + 261 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 330, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 331, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 331, + 281 + ], + "score": 1.0, + "content": "We obtain a probability vector via a final softmax layer:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 266, + 331, + 281 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 283, + 358, + 298 + ], + "lines": [ + { + "bbox": [ + 252, + 283, + 358, + 298 + ], + "spans": [ + { + "bbox": [ + 252, + 283, + 358, + 298 + ], + "score": 0.91, + "content": "{ \\mathrm { p r o b } } ^ { t } = \\operatorname { s o f t m a x } ( f i n a l ^ { t } )", + "type": "interline_equation", + "image_path": "ecd1b3b02c963b3bd88c4d8c468a03ec1470f302eb3aa5516efdb7577a7c4899.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 252, + 283, + 358, + 298 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 303, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 317 + ], + "score": 1.0, + "content": "That size of this probability vector is vocabulary size plus the total length all prototypes. We then", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 315, + 254, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 254, + 327 + ], + "score": 1.0, + "content": "project this into the output space by:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 301, + 506, + 327 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 330, + 365, + 345 + ], + "lines": [ + { + "bbox": [ + 246, + 330, + 365, + 345 + ], + "spans": [ + { + "bbox": [ + 246, + 330, + 365, + 345 + ], + "score": 0.91, + "content": "p ^ { t } ( w ) = \\mathtt { p r o b } ^ { t } ( \\mathtt { i n d i c e s } ( w ) )", + "type": "interline_equation", + "image_path": "0f768d76e2126cd4611f8a7a352d8ed7b0ac2606a51a8a6919774e6bc3b31728.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 246, + 330, + 365, + 345 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 352, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 365, + 363 + ], + "score": 1.0, + "content": "where indices finds all corresponding scores in probt for token", + "type": "text" + }, + { + "bbox": [ + 366, + 354, + 374, + 362 + ], + "score": 0.76, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 352, + 504, + 363 + ], + "score": 1.0, + "content": "where there might be more than", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 203, + 375 + ], + "score": 1.0, + "content": "one element for a given", + "type": "text" + }, + { + "bbox": [ + 203, + 365, + 211, + 373 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 363, + 505, + 375 + ], + "score": 1.0, + "content": ". This is because one score can come from the outputt region, and others", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 230, + 387 + ], + "score": 1.0, + "content": "from the prototype regions of", + "type": "text" + }, + { + "bbox": [ + 231, + 374, + 254, + 385 + ], + "score": 0.41, + "content": "p r o b ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 373, + 505, + 387 + ], + "score": 1.0, + "content": ". During training we applied 0.5 dropout to the indices from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 384, + 326, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 326, + 397 + ], + "score": 1.0, + "content": "outputt. Thus, the model is encouraged to copy more.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 352, + 505, + 397 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 412, + 304, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 305, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 305, + 427 + ], + "score": 1.0, + "content": "B NEIGHBORHOODS AND SAMPLING", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "In the Eq. 20 and Eq. 21 we expressed the generic form of neighborhood sets. Here we provide the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 448, + 203, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 203, + 461 + ], + "score": 1.0, + "content": "implementation details.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 437, + 505, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 370, + 479 + ], + "score": 1.0, + "content": "SCAN In the jump split, we use long-short recombination with", + "type": "text" + }, + { + "bbox": [ + 370, + 466, + 403, + 476 + ], + "score": 0.89, + "content": "\\delta = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 464, + 505, + 479 + ], + "score": 1.0, + "content": ". In around right we use", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 476, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 231, + 490 + ], + "score": 1.0, + "content": "long-long recombination with", + "type": "text" + }, + { + "bbox": [ + 231, + 477, + 264, + 487 + ], + "score": 0.9, + "content": "\\delta = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 476, + 326, + 490 + ], + "score": 1.0, + "content": ", and construct", + "type": "text" + }, + { + "bbox": [ + 326, + 477, + 335, + 487 + ], + "score": 0.81, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 476, + 506, + 490 + ], + "score": 1.0, + "content": "so that the first and second prototypes to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 279, + 501 + ], + "score": 1.0, + "content": "differ by a single token. We randomly pick", + "type": "text" + }, + { + "bbox": [ + 279, + 488, + 326, + 498 + ], + "score": 0.91, + "content": "k < 1 0 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "(10 different first prototypes, and 3 different", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 498, + 504, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 498, + 511 + ], + "score": 1.0, + "content": "second prototypes for each of them) prototype pairs that satisfy these conditions. For the recomb-", + "type": "text" + }, + { + "bbox": [ + 498, + 499, + 504, + 508 + ], + "score": 0.43, + "content": "^ { l }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 509, + 507, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 412, + 523 + ], + "score": 1.0, + "content": "experiment, we use the same neighborhood setup except but consider only the", + "type": "text" + }, + { + "bbox": [ + 412, + 510, + 442, + 520 + ], + "score": 0.89, + "content": "k < 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 509, + 507, + 523 + ], + "score": 1.0, + "content": "first prototypes.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 464, + 507, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "Sampling In the jump split, we used beam search with beam size 4 in the decoder. We calculate the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 376, + 550 + ], + "score": 1.0, + "content": "mean and standard deviation over the lengths of both among the first", + "type": "text" + }, + { + "bbox": [ + 377, + 537, + 387, + 549 + ], + "score": 0.89, + "content": "d _ { 1 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 537, + 449, + 550 + ], + "score": 1.0, + "content": "and the second", + "type": "text" + }, + { + "bbox": [ + 449, + 537, + 460, + 549 + ], + "score": 0.88, + "content": "d _ { 2 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "prototypes", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "in the train set. Then, during the sampling, we expect the first and second prototypes whose length is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "shorter than their respective mean plus standard deviation. This decision is based on the fact that the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 150, + 584 + ], + "score": 1.0, + "content": "part of the", + "type": "text" + }, + { + "bbox": [ + 150, + 572, + 159, + 582 + ], + "score": 0.79, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 571, + 450, + 584 + ], + "score": 1.0, + "content": "that the model is exposed to is determined by the empirical distribution,", + "type": "text" + }, + { + "bbox": [ + 450, + 570, + 459, + 582 + ], + "score": 0.83, + "content": "\\hat { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 571, + 506, + 584 + ], + "score": 1.0, + "content": ", that arises", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "from training neighborhoods. When sampling, we try to pick prototypes from a distribution that are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "close to properties of that empirical distribution. In around right, we use temperature sampling with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 107, + 605, + 141, + 615 + ], + "score": 0.88, + "content": "T = 0 . 4", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 604, + 506, + 618 + ], + "score": 1.0, + "content": ". If a model cannot sample the expected number of both novel and unique samples within a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 616, + 285, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 273, + 628 + ], + "score": 1.0, + "content": "reasonable time, we increase temperature", + "type": "text" + }, + { + "bbox": [ + 274, + 617, + 282, + 626 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 616, + 285, + 628 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 527, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 504, + 655 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "Morphology We use long-long recombination, as explained in the paper, with slight modifications", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 643, + 320, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 297, + 656 + ], + "score": 1.0, + "content": "which leverage the structure of the task. We set", + "type": "text" + }, + { + "bbox": [ + 297, + 644, + 306, + 653 + ], + "score": 0.82, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 643, + 320, + 656 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 631, + 505, + 656 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 660, + 420, + 676 + ], + "lines": [ + { + "bbox": [ + 190, + 660, + 420, + 676 + ], + "spans": [ + { + "bbox": [ + 190, + 660, + 420, + 676 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\neq d _ { 2 t a g s } ^ { \\prime } , ( d _ { \\mathrm { t a g s } } \\backslash d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\backslash d _ { \\mathrm { 2 t a g s } } ^ { \\prime } ) = 0 \\} } \\end{array}", + "type": "interline_equation", + "image_path": "6691ccb2f6b51ca608c9ef5f4e59bd85c280588c2f6818bdc7d38544557dec0d.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 190, + 660, + 420, + 676 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 681, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 208, + 695 + ], + "score": 1.0, + "content": "For the recomb-1 model", + "type": "text" + }, + { + "bbox": [ + 208, + 681, + 232, + 694 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 680, + 506, + 695 + ], + "score": 1.0, + "content": "utilizes tag similarity, lemma similarity and is constructed using a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 693, + 169, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 169, + 704 + ], + "score": 1.0, + "content": "score function:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 680, + 506, + 704 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 719, + 418, + 734 + ], + "lines": [ + { + "bbox": [ + 192, + 719, + 418, + 734 + ], + "spans": [ + { + "bbox": [ + 192, + 719, + 418, + 734 + ], + "score": 0.89, + "content": "\\mathrm { s c o r e } _ { 1 } ( d , d _ { 1 } ^ { \\prime } ) = \\left( | d _ { \\mathrm { t a g s } } \\Delta d _ { \\mathrm { 1 t a g s } } ^ { \\prime } | , \\mathrm { j a c c a r d } ( d _ { \\mathrm { l e m m a } } , d _ { \\mathrm { 1 l e m m a } } ^ { \\prime } ) \\right)", + "type": "interline_equation", + "image_path": "a40678b4b18b53ff2b22c38f02e4e224b1b9132876421e7aa83e8b56e88df4dd.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 192, + 719, + 418, + 734 + ], + "spans": [], + "index": 44 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 132, + 95 + ], + "score": 1.0, + "content": "Given", + "type": "text" + }, + { + "bbox": [ + 133, + 83, + 139, + 92 + ], + "score": 0.68, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 82, + 281, + 95 + ], + "score": 1.0, + "content": ", we sort training examples by using", + "type": "text" + }, + { + "bbox": [ + 282, + 84, + 311, + 93 + ], + "score": 0.74, + "content": "s c o r e _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "as the comparison key and pick the four smallest", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 320, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 292, + 106 + ], + "score": 1.0, + "content": "neighbors (using a lexicographic sort) to form", + "type": "text" + }, + { + "bbox": [ + 292, + 94, + 316, + 106 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 93, + 320, + 106 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 205, + 123 + ], + "score": 1.0, + "content": "For the recomb-2 model,", + "type": "text" + }, + { + "bbox": [ + 206, + 110, + 229, + 123 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "uses the same score function for the first prototype as in the recomb-1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 288, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 288, + 135 + ], + "score": 1.0, + "content": "case. The second prototype is selected using:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 154, + 405, + 170 + ], + "lines": [ + { + "bbox": [ + 205, + 154, + 405, + 170 + ], + "spans": [ + { + "bbox": [ + 205, + 154, + 405, + 170 + ], + "score": 0.9, + "content": "\\mathrm { s c o r e } _ { 2 } ( d , d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } ) = \\left( d _ { \\mathrm { t a g s } } \\neq d _ { \\mathrm { 2 t a g s } } ^ { \\prime } , | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\Delta d _ { \\mathrm { 2 t a g s } } ^ { \\prime } | \\right)", + "type": "interline_equation", + "image_path": "ad74dbbe710eff2c9778c1ae7ae1efb6309c81c4b5cf526e3242d9ca0e36c198.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 205, + 154, + 405, + 170 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 180, + 504, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 132, + 192 + ], + "score": 1.0, + "content": "Given", + "type": "text" + }, + { + "bbox": [ + 133, + 182, + 139, + 189 + ], + "score": 0.7, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 178, + 466, + 192 + ], + "score": 1.0, + "content": ", and a scored first prototype, we do one more sort over training examples by using", + "type": "text" + }, + { + "bbox": [ + 467, + 181, + 493, + 190 + ], + "score": 0.6, + "content": "{ \\mathrm { s c o r e } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 178, + 505, + 192 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 189, + 367, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 339, + 203 + ], + "score": 1.0, + "content": "the comparison key. Then we pick first four neighbors for", + "type": "text" + }, + { + "bbox": [ + 339, + 190, + 362, + 202 + ], + "score": 0.92, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 189, + 367, + 203 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 207, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 376, + 221 + ], + "score": 1.0, + "content": "Sampling We use a mix strategy of temperature sampling with", + "type": "text" + }, + { + "bbox": [ + 376, + 207, + 414, + 218 + ], + "score": 0.89, + "content": "T = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 205, + 505, + 221 + ], + "score": 1.0, + "content": "and greedy sampling", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 217, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 238, + 232 + ], + "score": 1.0, + "content": "in which we use the former for", + "type": "text" + }, + { + "bbox": [ + 239, + 218, + 260, + 230 + ], + "score": 0.9, + "content": "d _ { \\mathrm { i n p u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 217, + 334, + 232 + ], + "score": 1.0, + "content": "and the latter for", + "type": "text" + }, + { + "bbox": [ + 334, + 218, + 358, + 230 + ], + "score": 0.92, + "content": "d _ { \\mathrm { o u t p u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 217, + 506, + 232 + ], + "score": 1.0, + "content": ". We sample 180 unique and novel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 149, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 149, + 242 + ], + "score": 1.0, + "content": "examples.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 108, + 256, + 293, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 294, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 294, + 271 + ], + "score": 1.0, + "content": "C GENERATIVE MODEL TRAINING", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "Morphology All of the hyper parameters mentioned here are optimized by a grid search on the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "Spanish validation set. We train our models for 25 epochs5. We use Adam optimizer with learning rate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 302, + 504, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 414, + 317 + ], + "score": 1.0, + "content": "0.0001. The generative model is trained on morphological reinflection order", + "type": "text" + }, + { + "bbox": [ + 415, + 303, + 504, + 316 + ], + "score": 0.9, + "content": "( d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } \\triangleright d _ { \\mathrm { i n f l e c t i o n } } )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "from left to right, then the samples from the model are reordered for morphological analysis task", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 325, + 200, + 340 + ], + "spans": [ + { + "bbox": [ + 107, + 326, + 196, + 338 + ], + "score": 0.88, + "content": "( d _ { \\mathrm { i n f l e c t i o n } } \\triangleright d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 325, + 200, + 340 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "score": 1.0, + "content": "SCAN We use different number of epochs for jump and around right splits where all models are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 352, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 367 + ], + "score": 1.0, + "content": "trained for 8 epochs in the former and 3 epochs in the latter. We use Adam optimizer with learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 281, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 281, + 376 + ], + "score": 1.0, + "content": "rate 0.002, and gradient norm clip with 1.0.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 391, + 274, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 277, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 277, + 407 + ], + "score": 1.0, + "content": "D SEQ2SEQ BASELINE MODEL", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "After generating novel samples, we either concatenate them to the training data (in morphology), or", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 440 + ], + "score": 1.0, + "content": "sample training batches from a mixture of the original training data and the augmented data. Our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "conditional model is the same as the generative model used in morphology experiments, described in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 449, + 353, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 244, + 462 + ], + "score": 1.0, + "content": "detail in the paper body, replacing", + "type": "text" + }, + { + "bbox": [ + 245, + 450, + 266, + 462 + ], + "score": 0.92, + "content": "d _ { \\mathrm { p r o t o } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 449, + 287, + 462 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 288, + 451, + 294, + 459 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 449, + 315, + 462 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 315, + 450, + 322, + 459 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 449, + 343, + 462 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 343, + 452, + 349, + 461 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 449, + 353, + 462 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "Every conditional model’s size is the same as the corresponding generative model which was used for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "augmentation. This is to ensure that the conditional model and the generative model have the same", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "capacity. We train conditional models for 150 epochs for SCAN and we used augmentation ratios", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 117, + 514 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 500, + 165, + 511 + ], + "score": 0.91, + "content": "p _ { \\mathrm { a u g } } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 499, + 183, + 514 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 183, + 500, + 226, + 511 + ], + "score": 0.91, + "content": "p _ { \\mathrm { a u g } } = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "in jump and around right, respectively. For morphology, we train the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 509, + 463, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 463, + 523 + ], + "score": 1.0, + "content": "conditional models for 100 epochs, and we use all generated examples for augmentation.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 537, + 230, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 230, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 230, + 552 + ], + "score": 1.0, + "content": "E DIRECT INFERENCE", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 505, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "To adapt the prototype-based model for conditional prediction, we condition the neighborhood", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 192, + 586 + ], + "score": 1.0, + "content": "function on the input", + "type": "text" + }, + { + "bbox": [ + 192, + 576, + 199, + 583 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 573, + 304, + 586 + ], + "score": 1.0, + "content": "rather than the full datum", + "type": "text" + }, + { + "bbox": [ + 304, + 574, + 311, + 584 + ], + "score": 0.72, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 573, + 478, + 586 + ], + "score": 1.0, + "content": ", as in Hashimoto et al. (2018). Candidate", + "type": "text" + }, + { + "bbox": [ + 479, + 575, + 489, + 585 + ], + "score": 0.4, + "content": "y \\mathrm { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 353, + 598 + ], + "score": 1.0, + "content": "then sampled from the generative model given the observed", + "type": "text" + }, + { + "bbox": [ + 353, + 587, + 361, + 595 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "while marginalizing over retrieved", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "prototypes. Finally, we re-rank these candidates via Eq. 7 and output the highest-scoring candidate.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 107, + 622, + 193, + 635 + ], + "lines": [ + { + "bbox": [ + 104, + 621, + 195, + 638 + ], + "spans": [ + { + "bbox": [ + 104, + 621, + 195, + 638 + ], + "score": 1.0, + "content": "F VAE MODEL", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 131, + 661 + ], + "score": 1.0, + "content": "Prior", + "type": "text" + }, + { + "bbox": [ + 132, + 648, + 150, + 660 + ], + "score": 0.9, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 646, + 455, + 661 + ], + "score": 1.0, + "content": ": We use the same prior as Guu et al. (2018) given in Eq. 31. In this prior,", + "type": "text" + }, + { + "bbox": [ + 455, + 650, + 462, + 658 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "is defined", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "by a norm and direction vector. The norm is sampled from the uniform distribution between zero", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 240, + 684 + ], + "score": 1.0, + "content": "and a maximum possible norm", + "type": "text" + }, + { + "bbox": [ + 240, + 670, + 295, + 682 + ], + "score": 0.9, + "content": "\\mu _ { \\mathrm { m a x } } ~ = ~ 1 0 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 669, + 506, + 684 + ], + "score": 1.0, + "content": ", and the direction is sampled uniformly from the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "unit hypersphere. This sampling procedure corresponds to a von Mises–Fisher distribution with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 693, + 227, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 227, + 704 + ], + "score": 1.0, + "content": "concentration parameter zero.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 712, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "5When training 2-proto and 1-proto models, we increment epoch counter when the entire neighborhood for", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 432, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 128, + 732 + ], + "score": 1.0, + "content": "every", + "type": "text" + }, + { + "bbox": [ + 128, + 722, + 135, + 730 + ], + "score": 0.73, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 721, + 432, + 732 + ], + "score": 1.0, + "content": "is processed. For 0-proto, one epoch is defined canonically i.e. the entire train set.", + "type": "text" + } + ] + } + ] + }, + { + "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, + 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": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 132, + 95 + ], + "score": 1.0, + "content": "Given", + "type": "text" + }, + { + "bbox": [ + 133, + 83, + 139, + 92 + ], + "score": 0.68, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 82, + 281, + 95 + ], + "score": 1.0, + "content": ", we sort training examples by using", + "type": "text" + }, + { + "bbox": [ + 282, + 84, + 311, + 93 + ], + "score": 0.74, + "content": "s c o r e _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "as the comparison key and pick the four smallest", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 320, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 292, + 106 + ], + "score": 1.0, + "content": "neighbors (using a lexicographic sort) to form", + "type": "text" + }, + { + "bbox": [ + 292, + 94, + 316, + 106 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 93, + 320, + 106 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 205, + 123 + ], + "score": 1.0, + "content": "For the recomb-2 model,", + "type": "text" + }, + { + "bbox": [ + 206, + 110, + 229, + 123 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "uses the same score function for the first prototype as in the recomb-1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 288, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 288, + 135 + ], + "score": 1.0, + "content": "case. The second prototype is selected using:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 505, + 135 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 154, + 405, + 170 + ], + "lines": [ + { + "bbox": [ + 205, + 154, + 405, + 170 + ], + "spans": [ + { + "bbox": [ + 205, + 154, + 405, + 170 + ], + "score": 0.9, + "content": "\\mathrm { s c o r e } _ { 2 } ( d , d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } ) = \\left( d _ { \\mathrm { t a g s } } \\neq d _ { \\mathrm { 2 t a g s } } ^ { \\prime } , | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\Delta d _ { \\mathrm { 2 t a g s } } ^ { \\prime } | \\right)", + "type": "interline_equation", + "image_path": "ad74dbbe710eff2c9778c1ae7ae1efb6309c81c4b5cf526e3242d9ca0e36c198.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 205, + 154, + 405, + 170 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 180, + 504, + 202 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 132, + 192 + ], + "score": 1.0, + "content": "Given", + "type": "text" + }, + { + "bbox": [ + 133, + 182, + 139, + 189 + ], + "score": 0.7, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 178, + 466, + 192 + ], + "score": 1.0, + "content": ", and a scored first prototype, we do one more sort over training examples by using", + "type": "text" + }, + { + "bbox": [ + 467, + 181, + 493, + 190 + ], + "score": 0.6, + "content": "{ \\mathrm { s c o r e } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 178, + 505, + 192 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 189, + 367, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 339, + 203 + ], + "score": 1.0, + "content": "the comparison key. Then we pick first four neighbors for", + "type": "text" + }, + { + "bbox": [ + 339, + 190, + 362, + 202 + ], + "score": 0.92, + "content": "{ \\mathcal { N } } ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 189, + 367, + 203 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 178, + 505, + 203 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 207, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 376, + 221 + ], + "score": 1.0, + "content": "Sampling We use a mix strategy of temperature sampling with", + "type": "text" + }, + { + "bbox": [ + 376, + 207, + 414, + 218 + ], + "score": 0.89, + "content": "T = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 205, + 505, + 221 + ], + "score": 1.0, + "content": "and greedy sampling", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 217, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 238, + 232 + ], + "score": 1.0, + "content": "in which we use the former for", + "type": "text" + }, + { + "bbox": [ + 239, + 218, + 260, + 230 + ], + "score": 0.9, + "content": "d _ { \\mathrm { i n p u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 217, + 334, + 232 + ], + "score": 1.0, + "content": "and the latter for", + "type": "text" + }, + { + "bbox": [ + 334, + 218, + 358, + 230 + ], + "score": 0.92, + "content": "d _ { \\mathrm { o u t p u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 217, + 506, + 232 + ], + "score": 1.0, + "content": ". We sample 180 unique and novel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 149, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 149, + 242 + ], + "score": 1.0, + "content": "examples.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 205, + 506, + 242 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 256, + 293, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 294, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 294, + 271 + ], + "score": 1.0, + "content": "C GENERATIVE MODEL TRAINING", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "Morphology All of the hyper parameters mentioned here are optimized by a grid search on the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "Spanish validation set. We train our models for 25 epochs5. We use Adam optimizer with learning rate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 302, + 504, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 414, + 317 + ], + "score": 1.0, + "content": "0.0001. The generative model is trained on morphological reinflection order", + "type": "text" + }, + { + "bbox": [ + 415, + 303, + 504, + 316 + ], + "score": 0.9, + "content": "( d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } \\triangleright d _ { \\mathrm { i n f l e c t i o n } } )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "from left to right, then the samples from the model are reordered for morphological analysis task", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 325, + 200, + 340 + ], + "spans": [ + { + "bbox": [ + 107, + 326, + 196, + 338 + ], + "score": 0.88, + "content": "( d _ { \\mathrm { i n f l e c t i o n } } \\triangleright d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 325, + 200, + 340 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 281, + 506, + 340 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "score": 1.0, + "content": "SCAN We use different number of epochs for jump and around right splits where all models are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 352, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 367 + ], + "score": 1.0, + "content": "trained for 8 epochs in the former and 3 epochs in the latter. We use Adam optimizer with learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 281, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 281, + 376 + ], + "score": 1.0, + "content": "rate 0.002, and gradient norm clip with 1.0.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 341, + 505, + 376 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 391, + 274, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 277, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 277, + 407 + ], + "score": 1.0, + "content": "D SEQ2SEQ BASELINE MODEL", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "After generating novel samples, we either concatenate them to the training data (in morphology), or", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 440 + ], + "score": 1.0, + "content": "sample training batches from a mixture of the original training data and the augmented data. Our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "conditional model is the same as the generative model used in morphology experiments, described in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 449, + 353, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 244, + 462 + ], + "score": 1.0, + "content": "detail in the paper body, replacing", + "type": "text" + }, + { + "bbox": [ + 245, + 450, + 266, + 462 + ], + "score": 0.92, + "content": "d _ { \\mathrm { p r o t o } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 449, + 287, + 462 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 288, + 451, + 294, + 459 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 449, + 315, + 462 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 315, + 450, + 322, + 459 + ], + "score": 0.78, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 449, + 343, + 462 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 343, + 452, + 349, + 461 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 449, + 353, + 462 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 416, + 506, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "Every conditional model’s size is the same as the corresponding generative model which was used for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "augmentation. This is to ensure that the conditional model and the generative model have the same", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "capacity. We train conditional models for 150 epochs for SCAN and we used augmentation ratios", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 117, + 514 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 500, + 165, + 511 + ], + "score": 0.91, + "content": "p _ { \\mathrm { a u g } } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 499, + 183, + 514 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 183, + 500, + 226, + 511 + ], + "score": 0.91, + "content": "p _ { \\mathrm { a u g } } = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "in jump and around right, respectively. For morphology, we train the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 509, + 463, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 463, + 523 + ], + "score": 1.0, + "content": "conditional models for 100 epochs, and we use all generated examples for augmentation.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 466, + 506, + 523 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 537, + 230, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 230, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 230, + 552 + ], + "score": 1.0, + "content": "E DIRECT INFERENCE", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 505, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "To adapt the prototype-based model for conditional prediction, we condition the neighborhood", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 192, + 586 + ], + "score": 1.0, + "content": "function on the input", + "type": "text" + }, + { + "bbox": [ + 192, + 576, + 199, + 583 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 573, + 304, + 586 + ], + "score": 1.0, + "content": "rather than the full datum", + "type": "text" + }, + { + "bbox": [ + 304, + 574, + 311, + 584 + ], + "score": 0.72, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 573, + 478, + 586 + ], + "score": 1.0, + "content": ", as in Hashimoto et al. (2018). Candidate", + "type": "text" + }, + { + "bbox": [ + 479, + 575, + 489, + 585 + ], + "score": 0.4, + "content": "y \\mathrm { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 353, + 598 + ], + "score": 1.0, + "content": "then sampled from the generative model given the observed", + "type": "text" + }, + { + "bbox": [ + 353, + 587, + 361, + 595 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "while marginalizing over retrieved", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "prototypes. Finally, we re-rank these candidates via Eq. 7 and output the highest-scoring candidate.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 562, + 506, + 608 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 622, + 193, + 635 + ], + "lines": [ + { + "bbox": [ + 104, + 621, + 195, + 638 + ], + "spans": [ + { + "bbox": [ + 104, + 621, + 195, + 638 + ], + "score": 1.0, + "content": "F VAE MODEL", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 131, + 661 + ], + "score": 1.0, + "content": "Prior", + "type": "text" + }, + { + "bbox": [ + 132, + 648, + 150, + 660 + ], + "score": 0.9, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 646, + 455, + 661 + ], + "score": 1.0, + "content": ": We use the same prior as Guu et al. (2018) given in Eq. 31. In this prior,", + "type": "text" + }, + { + "bbox": [ + 455, + 650, + 462, + 658 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "is defined", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "by a norm and direction vector. The norm is sampled from the uniform distribution between zero", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 240, + 684 + ], + "score": 1.0, + "content": "and a maximum possible norm", + "type": "text" + }, + { + "bbox": [ + 240, + 670, + 295, + 682 + ], + "score": 0.9, + "content": "\\mu _ { \\mathrm { m a x } } ~ = ~ 1 0 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 669, + 506, + 684 + ], + "score": 1.0, + "content": ", and the direction is sampled uniformly from the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "unit hypersphere. This sampling procedure corresponds to a von Mises–Fisher distribution with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 693, + 227, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 227, + 704 + ], + "score": 1.0, + "content": "concentration parameter zero.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 646, + 506, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 173, + 96, + 438, + 110 + ], + "lines": [ + { + "bbox": [ + 173, + 96, + 438, + 110 + ], + "spans": [ + { + "bbox": [ + 173, + 96, + 438, + 110 + ], + "score": 0.83, + "content": "z = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } \\quad w h e r e \\quad z _ { \\mathrm { n o r m } } \\sim U ( 0 , \\mu _ { \\mathrm { m a x } } ) , \\quad z _ { \\mathrm { d i r } } \\sim \\mathrm { v m F } ( \\vec { u } , 0 )", + "type": "interline_equation", + "image_path": "146c7bea2310a1887cf4f82018aa78c620bd682bb4aba6629bc8c9bf22269d34.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 173, + 96, + 438, + 110 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 122, + 380, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 381, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 198, + 135 + ], + "score": 1.0, + "content": "For SCAN, the size of", + "type": "text" + }, + { + "bbox": [ + 198, + 125, + 204, + 133 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 122, + 355, + 135 + ], + "score": 1.0, + "content": "is 32, and for morphology the size of", + "type": "text" + }, + { + "bbox": [ + 355, + 125, + 361, + 133 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 122, + 381, + 135 + ], + "score": 1.0, + "content": "is 2.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 139, + 506, + 184 + ], + "lines": [ + { + "bbox": [ + 104, + 138, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 138, + 186, + 153 + ], + "score": 1.0, + "content": "Proposal Network", + "type": "text" + }, + { + "bbox": [ + 186, + 139, + 234, + 152 + ], + "score": 0.93, + "content": "\\boldsymbol { q } ( \\boldsymbol { z } | \\boldsymbol { d } , d _ { 1 : n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 138, + 468, + 153 + ], + "score": 1.0, + "content": ": Similarly to the prior, the posterior network decomposes", + "type": "text" + }, + { + "bbox": [ + 468, + 143, + 474, + 149 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 138, + 506, + 153 + ], + "score": 1.0, + "content": "into its", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 150, + 507, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 445, + 163 + ], + "score": 1.0, + "content": "norm and direction vectors. The norm vector is sampled from a uniform distribution at", + "type": "text" + }, + { + "bbox": [ + 446, + 151, + 507, + 163 + ], + "score": 0.86, + "content": "( | \\mu | , \\operatorname* { m i n } ( | \\mu | +", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 107, + 162, + 138, + 173 + ], + "score": 0.84, + "content": "\\epsilon , \\mu _ { \\mathrm { m a x } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 162, + 432, + 175 + ], + "score": 1.0, + "content": "), and the direction is sampled from the von Mises–Fisher distribution", + "type": "text" + }, + { + "bbox": [ + 433, + 163, + 475, + 174 + ], + "score": 0.91, + "content": "\\operatorname { v m F } ( \\mu , \\kappa )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 173, + 175, + 185 + ], + "spans": [ + { + "bbox": [ + 107, + 173, + 172, + 184 + ], + "score": 0.87, + "content": "\\kappa = 2 5 , \\epsilon = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 173, + 175, + 185 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 207, + 378, + 281 + ], + "lines": [ + { + "bbox": [ + 233, + 207, + 378, + 281 + ], + "spans": [ + { + "bbox": [ + 233, + 207, + 378, + 281 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { h _ { \\mathrm { f i n a l } } = \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { \\mathrm { s t a r t } } + \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { e n d } } \\\\ & { \\qquad \\mu = \\mathrm { t a n h } \\bigl ( W _ { z } \\left[ h _ { d \\mathrm { f i n a l } } , h _ { q \\mathrm { f i n a l } } \\right] \\bigr ) } \\\\ & { z _ { \\mathrm { n o r m } } \\sim U ( | \\mu | , m i n ( | \\mu | + \\epsilon , \\mu _ { \\mathrm { m a x } } ) \\bigr ) } \\\\ & { \\qquad z _ { \\mathrm { d i r } } \\sim v m F ( \\mu , \\kappa ) } \\\\ & { \\qquad z = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } } \\end{array}", + "type": "interline_equation", + "image_path": "f74a6d8544bc93ebb3be6b84b48c7083a92cb42a8377e61247c6217c55800b43.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 233, + 207, + 378, + 244.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 233, + 244.0, + 378, + 281.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 298, + 245, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 247, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 247, + 313 + ], + "score": 1.0, + "content": "G ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 325, + 239, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 239, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 239, + 338 + ], + "score": 1.0, + "content": "G.1 MORPHOLOGY RESULTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "In the paper, Table 2 shows morphology results for (non-VAE) models with 8 hints (past- and future-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "tense examples in the training set). Here, we provide additional results for different hint set sizes and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 369, + 170, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 170, + 380 + ], + "score": 1.0, + "content": "model variants.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 107, + 396, + 180, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 395, + 182, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 182, + 408 + ], + "score": 1.0, + "content": "G.1.1 HINTS=4", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "table", + "bbox": [ + 148, + 443, + 462, + 531 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 248, + 423, + 362, + 434 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 247, + 421, + 363, + 436 + ], + "spans": [ + { + "bbox": [ + 247, + 421, + 363, + 436 + ], + "score": 1.0, + "content": "Table 3: Exact Match Accuracy", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 148, + 443, + 462, + 531 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 148, + 443, + 462, + 531 + ], + "spans": [ + { + "bbox": [ + 148, + 443, + 462, + 531 + ], + "score": 0.984, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.078 ±0.0290.63 ±0.090.107 ±0.0340.532 ±0.0290.067 ±0.0200.57 ±0.04
geca0.072 ±0.0190.63 ±0.050.039 ±0.0110.496 ±0.0270.052 ±0.0140.54 ±0.08
geca + resampling0.16 ±0.040.65 ±0.050.27 ±0.080.52 ±0.040.12 ±0.040.554 ±0.029
learned aug0.063 ±0.0120.65 ±0.040.066 ±0.0340.52 ±0.040.074 ±0.0210.57 ±0.04
learned aug + resampling0.098 ±0.0210.65 ±0.050.29 ±0.060.480 ±0.0350.092 ±0.0290.54 ±0.06
recomb-10.063 ±0.0170.674 ±0.0210.061 ±0.0170.520 ±0.0280.055 ±0.0210.554 ±0.030
recomb-1 + resampling0.13 ±0.040.64 ±0.040.29 ±0.040.48 ±0.040.15 ±0.040.52 ±0.06
recomb-20.061 ±0.0100.656 ±0.0300.08 ±0.060.524 ±0.0260.073 ±0.0190.58 ±0.05
recomb-2+resampling0.108 ±0.0210.64 ±0.050.18 ±0.040.542 ±0.0350.067 ±0.0260.55 ±0.06
", + "type": "table", + "image_path": "a62a53ed1a042ae191e2bb11f194aff3be73c3a693ae2eb264979f3cf1442b17.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 148, + 443, + 462, + 472.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 148, + 472.3333333333333, + 462, + 501.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 148, + 501.66666666666663, + 462, + 531.0 + ], + "spans": [], + "index": 17 + } + ] + } + ], + "index": 15.0 + }, + { + "type": "table", + "bbox": [ + 148, + 579, + 463, + 667 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 266, + 560, + 344, + 570 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 265, + 558, + 345, + 572 + ], + "spans": [ + { + "bbox": [ + 265, + 558, + 345, + 572 + ], + "score": 1.0, + "content": "Table 4: F1 Accuracy", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "table_body", + "bbox": [ + 148, + 579, + 463, + 667 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 148, + 579, + 463, + 667 + ], + "spans": [ + { + "bbox": [ + 148, + 579, + 463, + 667 + ], + "score": 0.984, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.609 ±0.0250.873 ±0.0340.746 ±0.0130.897 ±0.0050.561 ±0.0320.867 ±0.015
geca0.606 ±0.0190.871 ±0.0170.722 ±0.0180.884 ±0.0070.565 ±0.0340.856 ±0.028
geca + resampling0.675 ±0.0170.870 ±0.0220.802 ±0.0230.892 ±0.0100.65 ±0.050.850 ±0.019
learned aug0.597 ±0.0210.871 ±0.0240.737 ±0.0100.897 ±0.0110.58 ±0.040.853 ±0.026
learned aug +resampling0.646 ±0.0070.872 ±0.0280.826 ±0.0130.887 ±0.0100.637 ±0.0320.835 ±0.034
recomb-10.596 ±0.0200.884 ±0.0100.727 ±0.0120.893 ±0.0100.557 ±0.0320.868 ±0.010
recomb-1 + resampling0.663 ±0.0290.874 ±0.0140.812 ±0.0170.886 ±0.0110.67 ±0.040.84 ±0.04
recomb-20.598 ±0.0190.874 ±0.0070.730 ±0.0230.894 ±0.0080.581 ±0.0350.865 ±0.024
recomb-2 + resampling0.658 ±0.0120.872 ±0.0150.778 ±0.0110.897 ±0.0070.609 ±0.0320.850 ±0.029
", + "type": "table", + "image_path": "95fcb92747c5b18d2262db980ea02934e8a4d62660ffe5d2065b7d1af227721a.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 148, + 579, + 463, + 608.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 148, + 608.3333333333334, + 463, + 637.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 148, + 637.6666666666667, + 463, + 667.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 19.0 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 180, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 181, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 181, + 702 + ], + "score": 1.0, + "content": "G.1.2 HINTS=8", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 181, + 722 + ], + "score": 1.0, + "content": "Main 8-prototype", + "type": "text" + }, + { + "bbox": [ + 181, + 710, + 193, + 721 + ], + "score": 0.87, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "results are provided in the body of the paper. Here we provide exact match", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 721, + 339, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 339, + 732 + ], + "score": 1.0, + "content": "results and an extra set of comparisons to the VAE model.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": "interline_equation", + "bbox": [ + 173, + 96, + 438, + 110 + ], + "lines": [ + { + "bbox": [ + 173, + 96, + 438, + 110 + ], + "spans": [ + { + "bbox": [ + 173, + 96, + 438, + 110 + ], + "score": 0.83, + "content": "z = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } \\quad w h e r e \\quad z _ { \\mathrm { n o r m } } \\sim U ( 0 , \\mu _ { \\mathrm { m a x } } ) , \\quad z _ { \\mathrm { d i r } } \\sim \\mathrm { v m F } ( \\vec { u } , 0 )", + "type": "interline_equation", + "image_path": "146c7bea2310a1887cf4f82018aa78c620bd682bb4aba6629bc8c9bf22269d34.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 173, + 96, + 438, + 110 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 122, + 380, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 381, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 198, + 135 + ], + "score": 1.0, + "content": "For SCAN, the size of", + "type": "text" + }, + { + "bbox": [ + 198, + 125, + 204, + 133 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 122, + 355, + 135 + ], + "score": 1.0, + "content": "is 32, and for morphology the size of", + "type": "text" + }, + { + "bbox": [ + 355, + 125, + 361, + 133 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 122, + 381, + 135 + ], + "score": 1.0, + "content": "is 2.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 122, + 381, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 139, + 506, + 184 + ], + "lines": [ + { + "bbox": [ + 104, + 138, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 138, + 186, + 153 + ], + "score": 1.0, + "content": "Proposal Network", + "type": "text" + }, + { + "bbox": [ + 186, + 139, + 234, + 152 + ], + "score": 0.93, + "content": "\\boldsymbol { q } ( \\boldsymbol { z } | \\boldsymbol { d } , d _ { 1 : n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 138, + 468, + 153 + ], + "score": 1.0, + "content": ": Similarly to the prior, the posterior network decomposes", + "type": "text" + }, + { + "bbox": [ + 468, + 143, + 474, + 149 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 138, + 506, + 153 + ], + "score": 1.0, + "content": "into its", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 150, + 507, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 445, + 163 + ], + "score": 1.0, + "content": "norm and direction vectors. The norm vector is sampled from a uniform distribution at", + "type": "text" + }, + { + "bbox": [ + 446, + 151, + 507, + 163 + ], + "score": 0.86, + "content": "( | \\mu | , \\operatorname* { m i n } ( | \\mu | +", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 107, + 162, + 138, + 173 + ], + "score": 0.84, + "content": "\\epsilon , \\mu _ { \\mathrm { m a x } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 162, + 432, + 175 + ], + "score": 1.0, + "content": "), and the direction is sampled from the von Mises–Fisher distribution", + "type": "text" + }, + { + "bbox": [ + 433, + 163, + 475, + 174 + ], + "score": 0.91, + "content": "\\operatorname { v m F } ( \\mu , \\kappa )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 173, + 175, + 185 + ], + "spans": [ + { + "bbox": [ + 107, + 173, + 172, + 184 + ], + "score": 0.87, + "content": "\\kappa = 2 5 , \\epsilon = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 173, + 175, + 185 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 138, + 507, + 185 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 207, + 378, + 281 + ], + "lines": [ + { + "bbox": [ + 233, + 207, + 378, + 281 + ], + "spans": [ + { + "bbox": [ + 233, + 207, + 378, + 281 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { h _ { \\mathrm { f i n a l } } = \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { \\mathrm { s t a r t } } + \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { e n d } } \\\\ & { \\qquad \\mu = \\mathrm { t a n h } \\bigl ( W _ { z } \\left[ h _ { d \\mathrm { f i n a l } } , h _ { q \\mathrm { f i n a l } } \\right] \\bigr ) } \\\\ & { z _ { \\mathrm { n o r m } } \\sim U ( | \\mu | , m i n ( | \\mu | + \\epsilon , \\mu _ { \\mathrm { m a x } } ) \\bigr ) } \\\\ & { \\qquad z _ { \\mathrm { d i r } } \\sim v m F ( \\mu , \\kappa ) } \\\\ & { \\qquad z = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } } \\end{array}", + "type": "interline_equation", + "image_path": "f74a6d8544bc93ebb3be6b84b48c7083a92cb42a8377e61247c6217c55800b43.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 233, + 207, + 378, + 244.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 233, + 244.0, + 378, + 281.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 298, + 245, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 247, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 247, + 313 + ], + "score": 1.0, + "content": "G ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 325, + 239, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 239, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 239, + 338 + ], + "score": 1.0, + "content": "G.1 MORPHOLOGY RESULTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "In the paper, Table 2 shows morphology results for (non-VAE) models with 8 hints (past- and future-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "tense examples in the training set). Here, we provide additional results for different hint set sizes and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 369, + 170, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 170, + 380 + ], + "score": 1.0, + "content": "model variants.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 347, + 506, + 380 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 396, + 180, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 395, + 182, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 182, + 408 + ], + "score": 1.0, + "content": "G.1.1 HINTS=4", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "table", + "bbox": [ + 148, + 443, + 462, + 531 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 248, + 423, + 362, + 434 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 247, + 421, + 363, + 436 + ], + "spans": [ + { + "bbox": [ + 247, + 421, + 363, + 436 + ], + "score": 1.0, + "content": "Table 3: Exact Match Accuracy", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 148, + 443, + 462, + 531 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 148, + 443, + 462, + 531 + ], + "spans": [ + { + "bbox": [ + 148, + 443, + 462, + 531 + ], + "score": 0.984, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.078 ±0.0290.63 ±0.090.107 ±0.0340.532 ±0.0290.067 ±0.0200.57 ±0.04
geca0.072 ±0.0190.63 ±0.050.039 ±0.0110.496 ±0.0270.052 ±0.0140.54 ±0.08
geca + resampling0.16 ±0.040.65 ±0.050.27 ±0.080.52 ±0.040.12 ±0.040.554 ±0.029
learned aug0.063 ±0.0120.65 ±0.040.066 ±0.0340.52 ±0.040.074 ±0.0210.57 ±0.04
learned aug + resampling0.098 ±0.0210.65 ±0.050.29 ±0.060.480 ±0.0350.092 ±0.0290.54 ±0.06
recomb-10.063 ±0.0170.674 ±0.0210.061 ±0.0170.520 ±0.0280.055 ±0.0210.554 ±0.030
recomb-1 + resampling0.13 ±0.040.64 ±0.040.29 ±0.040.48 ±0.040.15 ±0.040.52 ±0.06
recomb-20.061 ±0.0100.656 ±0.0300.08 ±0.060.524 ±0.0260.073 ±0.0190.58 ±0.05
recomb-2+resampling0.108 ±0.0210.64 ±0.050.18 ±0.040.542 ±0.0350.067 ±0.0260.55 ±0.06
", + "type": "table", + "image_path": "a62a53ed1a042ae191e2bb11f194aff3be73c3a693ae2eb264979f3cf1442b17.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 148, + 443, + 462, + 472.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 148, + 472.3333333333333, + 462, + 501.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 148, + 501.66666666666663, + 462, + 531.0 + ], + "spans": [], + "index": 17 + } + ] + } + ], + "index": 15.0 + }, + { + "type": "table", + "bbox": [ + 148, + 579, + 463, + 667 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 266, + 560, + 344, + 570 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 265, + 558, + 345, + 572 + ], + "spans": [ + { + "bbox": [ + 265, + 558, + 345, + 572 + ], + "score": 1.0, + "content": "Table 4: F1 Accuracy", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "table_body", + "bbox": [ + 148, + 579, + 463, + 667 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 148, + 579, + 463, + 667 + ], + "spans": [ + { + "bbox": [ + 148, + 579, + 463, + 667 + ], + "score": 0.984, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.609 ±0.0250.873 ±0.0340.746 ±0.0130.897 ±0.0050.561 ±0.0320.867 ±0.015
geca0.606 ±0.0190.871 ±0.0170.722 ±0.0180.884 ±0.0070.565 ±0.0340.856 ±0.028
geca + resampling0.675 ±0.0170.870 ±0.0220.802 ±0.0230.892 ±0.0100.65 ±0.050.850 ±0.019
learned aug0.597 ±0.0210.871 ±0.0240.737 ±0.0100.897 ±0.0110.58 ±0.040.853 ±0.026
learned aug +resampling0.646 ±0.0070.872 ±0.0280.826 ±0.0130.887 ±0.0100.637 ±0.0320.835 ±0.034
recomb-10.596 ±0.0200.884 ±0.0100.727 ±0.0120.893 ±0.0100.557 ±0.0320.868 ±0.010
recomb-1 + resampling0.663 ±0.0290.874 ±0.0140.812 ±0.0170.886 ±0.0110.67 ±0.040.84 ±0.04
recomb-20.598 ±0.0190.874 ±0.0070.730 ±0.0230.894 ±0.0080.581 ±0.0350.865 ±0.024
recomb-2 + resampling0.658 ±0.0120.872 ±0.0150.778 ±0.0110.897 ±0.0070.609 ±0.0320.850 ±0.029
", + "type": "table", + "image_path": "95fcb92747c5b18d2262db980ea02934e8a4d62660ffe5d2065b7d1af227721a.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 148, + 579, + 463, + 608.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 148, + 608.3333333333334, + 463, + 637.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 148, + 637.6666666666667, + 463, + 667.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 19.0 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 180, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 181, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 181, + 702 + ], + "score": 1.0, + "content": "G.1.2 HINTS=8", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 181, + 722 + ], + "score": 1.0, + "content": "Main 8-prototype", + "type": "text" + }, + { + "bbox": [ + 181, + 710, + 193, + 721 + ], + "score": 0.87, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "results are provided in the body of the paper. Here we provide exact match", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 721, + 339, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 339, + 732 + ], + "score": 1.0, + "content": "results and an extra set of comparisons to the VAE model.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 148, + 100, + 463, + 189 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 248, + 81, + 362, + 91 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 247, + 78, + 363, + 93 + ], + "spans": [ + { + "bbox": [ + 247, + 78, + 363, + 93 + ], + "score": 1.0, + "content": "Table 5: Exact Match Accuracy", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 148, + 100, + 463, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 148, + 100, + 463, + 189 + ], + "spans": [ + { + "bbox": [ + 148, + 100, + 463, + 189 + ], + "score": 0.982, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.151 ±0.0170.65 ±0.040.15 ±0.040.554 ±0.0340.23 ±0.060.55 ±0.04
geca0.136 ±0.0300.638 ±0.0260.15 ±0.050.55 ±0.060.21 ±0.050.550 ±0.032
geca +resampling0.249 ±0.0340.64 ±0.040.25 ±0.050.532 ±0.0330.27 ±0.070.524 ±0.026
learned aug0.163 ±0.0300.652 ±0.0330.18 ±0.050.560 ±0.0260.23 ±0.040.548 ±0.019
learned aug + resampling0.181 ±0.0260.590 ±0.0320.34 ±0.060.552 ±0.0290.24 ±0.040.53 ±0.05
recomb-10.155 ±0.0180.628 ±0.0200.161 ±0.0170.560 ±0.0250.22 ±0.040.538 ±0.025
recomb-1 +resampling0.218 ±0.0320.616 ±0.0340.35 ±0.040.53 ±0.040.30 ±0.040.52 ±0.04
recomb-20.131 ±0.0280.634 ±0.0270.19 ±0.110.56 ±0.040.24 ±0.050.528 ±0.032
recomb-2 +resampling0.203 ±0.0350.63 ±0.050.27 ±0.070.552 ±0.0310.25 ±0.050.54 ±0.06
", + "type": "table", + "image_path": "69faebc7cdfbc3bcc0527c2fa58e58071182957a8b79c6d37cc24f2019aaafd2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 148, + 100, + 463, + 129.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 148, + 129.66666666666666, + 463, + 159.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 148, + 159.33333333333331, + 463, + 188.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 147, + 234, + 463, + 278 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 240, + 215, + 371, + 226 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 239, + 214, + 371, + 227 + ], + "spans": [ + { + "bbox": [ + 239, + 214, + 271, + 227 + ], + "score": 1.0, + "content": "Table 6:", + "type": "text" + }, + { + "bbox": [ + 272, + 215, + 283, + 225 + ], + "score": 0.53, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 214, + 371, + 227 + ], + "score": 1.0, + "content": "Accuracy (VAE model)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 147, + 234, + 463, + 278 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 147, + 234, + 463, + 278 + ], + "spans": [ + { + "bbox": [ + 147, + 234, + 463, + 278 + ], + "score": 0.974, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
learned aug + resampling +vae0.689 ±0.0180.859 ±0.0100.845 ±0.0140.896 ±0.0110.730 ±0.0320.850 ±0.015
recomb-1 + resampling +vae0.717 ±0.0140.870 ±0.0070.843 ±0.0140.898 ±0.0100.736 ±0.0300.859 ±0.031
recomb-2 + resampling +vae0.710 ±0.0080.865 ±0.0120.824 ±0.0150.896 ±0.0110.751 ±0.0270.848 ±0.027
", + "type": "table", + "image_path": "3ece8a8229f1da33042bdb3d39cbf512e18542f1afc7b1f790a3ff7617dd6b74.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 147, + 234, + 463, + 248.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 147, + 248.66666666666666, + 463, + 263.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 147, + 263.3333333333333, + 463, + 278.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "title", + "bbox": [ + 107, + 298, + 185, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 187, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 187, + 311 + ], + "score": 1.0, + "content": "G.1.3 HINTS=16", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "table", + "bbox": [ + 148, + 343, + 462, + 434 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 248, + 323, + 362, + 334 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 247, + 321, + 363, + 335 + ], + "spans": [ + { + "bbox": [ + 247, + 321, + 363, + 335 + ], + "score": 1.0, + "content": "Table 7: Exact Match Accuracy", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "table_body", + "bbox": [ + 148, + 343, + 462, + 434 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 148, + 343, + 462, + 434 + ], + "spans": [ + { + "bbox": [ + 148, + 343, + 462, + 434 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.27 ±0.050.65 ±0.040.28 ±0.060.544 ±0.0290.40 ±0.040.614 ±0.032
geca0.26 ±0.060.65 ±0.060.26 ±0.050.530 ±0.0280.37 ±0.050.570 ±0.035
geca +resampling0.34 ±0.050.63 ±0.040.32 ±0.070.506 ±0.0340.42 ±0.050.590 ±0.035
learned aug0.25 ±0.040.65 ±0.040.32 ±0.060.538 ±0.0280.39 ±0.040.58 ±0.05
learned aug +resampling0.230 ±0.0350.61 ±0.040.42 ±0.060.54 ±0.040.42 ±0.050.578 ±0.027
recomb-10.27 ±0.050.63 ±0.060.32 ±0.050.55 ±0.040.35 ±0.060.60 ±0.05
recomb-1 +resampling0.28 ±0.040.61 ±0.070.418 ±0.0350.548 ±0.0230.35 ±0.060.56 ±0.04
recomb-20.22 ±0.060.62 ±0.070.28 ±0.040.56 ±0.040.40 ±0.060.596 ±0.024
recomb-2 +resampling0.262 ±0.0250.61 ±0.070.405 ±0.0280.53 ±0.040.43 ±0.060.61 ±0.04
", + "type": "table", + "image_path": "e8779c4bfa9aa087e00f348d785e14fe5f63941b703cb1121e013569aa9f0615.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 148, + 343, + 462, + 373.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 148, + 373.3333333333333, + 462, + 403.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 148, + 403.66666666666663, + 462, + 433.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 10.0 + }, + { + "type": "table", + "bbox": [ + 148, + 479, + 463, + 567 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 266, + 459, + 344, + 470 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 265, + 458, + 345, + 471 + ], + "spans": [ + { + "bbox": [ + 265, + 458, + 345, + 471 + ], + "score": 1.0, + "content": "Table 8: F1 Accuracy", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "table_body", + "bbox": [ + 148, + 479, + 463, + 567 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 148, + 479, + 463, + 567 + ], + "spans": [ + { + "bbox": [ + 148, + 479, + 463, + 567 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.733 ±0.0140.881 ±0.0120.811 ±0.0180.893 ±0.0110.750 ±0.0260.875 ±0.021
geca0.736 ±0.0190.884 ±0.0180.800 ±0.0240.889 ±0.0120.74 ±0.040.863 ±0.019
geca + resampling0.782 ±0.0240.867 ±0.0120.830 ±0.0210.885 ±0.0130.794 ±0.0320.865 ±0.018
learned aug0.738 ±0.0200.877 ±0.0080.816 ±0.0240.893 ±0.0120.752 ±0.0240.868 ±0.020
learned aug + resampling0.745 ±0.0190.870 ±0.0120.866 ±0.0160.894 ±0.0130.787 ±0.0310.863 ±0.021
recomb-10.738 ±0.0210.877 ±0.0190.820 ±0.0180.896 ±0.0140.735 ±0.0330.874 ±0.026
recomb-1 + resampling0.770 ±0.0200.867 ±0.0230.872 ±0.0050.892 ±0.0100.778 ±0.0240.861 ±0.022
recomb-20.716 ±0.0190.876 ±0.0220.815 ±0.0170.897 ±0.0160.752 ±0.0340.873 ±0.017
recomb-2+resampling0.765 ±0.0230.868 ±0.0210.856 ±0.0150.888 ±0.0160.808 ±0.0180.868 ±0.027
", + "type": "table", + "image_path": "c450bd975d7b10ccbfa66a55ac7cca904456a57831df63e362fd15e92225b9f4.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 148, + 479, + 463, + 508.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 148, + 508.3333333333333, + 463, + 537.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 148, + 537.6666666666666, + 463, + 567.0 + ], + "spans": [], + "index": 16 + } + ] + } + ], + "index": 14.0 + }, + { + "type": "title", + "bbox": [ + 107, + 587, + 226, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 227, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 227, + 600 + ], + "score": 1.0, + "content": "G.2 SIGNIFICANCE TESTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 212, + 621 + ], + "score": 1.0, + "content": "Tables 9, 10 and 11 sho the", + "type": "text" + }, + { + "bbox": [ + 212, + 610, + 218, + 620 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 607, + 505, + 621 + ], + "score": 1.0, + "content": "-values for pairwise differences between the baseline and prototype-based", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 618, + 139, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 139, + 631 + ], + "score": 1.0, + "content": "models", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 105, + 641, + 503, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 201, + 653 + ], + "score": 1.0, + "content": "Table 9: Turkish language", + "type": "text" + }, + { + "bbox": [ + 202, + 643, + 208, + 652 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 640, + 271, + 653 + ], + "score": 1.0, + "content": "-values for paired", + "type": "text" + }, + { + "bbox": [ + 272, + 642, + 276, + 650 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 640, + 302, + 653 + ], + "score": 1.0, + "content": "-test in", + "type": "text" + }, + { + "bbox": [ + 302, + 641, + 341, + 651 + ], + "score": 0.37, + "content": "\\mathrm { P S T + F U T }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 640, + 421, + 653 + ], + "score": 1.0, + "content": "tenses for the average", + "type": "text" + }, + { + "bbox": [ + 421, + 642, + 432, + 651 + ], + "score": 0.85, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 640, + 505, + 653 + ], + "score": 1.0, + "content": "(micro) scores over", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 651, + 268, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 268, + 662 + ], + "score": 1.0, + "content": "several runs without Bonferronni correction.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "table", + "bbox": [ + 108, + 671, + 503, + 730 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 671, + 503, + 730 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 108, + 671, + 503, + 730 + ], + "spans": [ + { + "bbox": [ + 108, + 671, + 503, + 730 + ], + "score": 0.975, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.259314
learned aug0.3525060.802058
recomb-10.7075340.1292440.187597
recomb-20.2335780.02305540.03317940.363375
geca + resampling1.0125e-163.7044e-124.07678e-156.04788e-171.71167e-19
leamed aug + resampling8.00807e-101.37553e-076.51548e-086.35314e-113.76501e-130.0167999
recomb-1 + resampling3.85877e-261.60117e-202.76421e-226.41228e-262.07776e-260.01093651.948e-06
recomb-2 + resampling2.56689e-153.4083e-132.08177e-142.92113e-181.79928e-190.9818860.01904620.0101878
", + "type": "table", + "image_path": "9970f9707fb881457e608de94d36acfe1d09f6938fc2a0386b1a7144bbe2f83c.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 108, + 671, + 503, + 690.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 108, + 690.6666666666666, + 503, + 710.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 710.3333333333333, + 503, + 729.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 23 + } + ], + "page_idx": 17, + "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": "table", + "bbox": [ + 148, + 100, + 463, + 189 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 248, + 81, + 362, + 91 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 247, + 78, + 363, + 93 + ], + "spans": [ + { + "bbox": [ + 247, + 78, + 363, + 93 + ], + "score": 1.0, + "content": "Table 5: Exact Match Accuracy", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 148, + 100, + 463, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 148, + 100, + 463, + 189 + ], + "spans": [ + { + "bbox": [ + 148, + 100, + 463, + 189 + ], + "score": 0.982, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.151 ±0.0170.65 ±0.040.15 ±0.040.554 ±0.0340.23 ±0.060.55 ±0.04
geca0.136 ±0.0300.638 ±0.0260.15 ±0.050.55 ±0.060.21 ±0.050.550 ±0.032
geca +resampling0.249 ±0.0340.64 ±0.040.25 ±0.050.532 ±0.0330.27 ±0.070.524 ±0.026
learned aug0.163 ±0.0300.652 ±0.0330.18 ±0.050.560 ±0.0260.23 ±0.040.548 ±0.019
learned aug + resampling0.181 ±0.0260.590 ±0.0320.34 ±0.060.552 ±0.0290.24 ±0.040.53 ±0.05
recomb-10.155 ±0.0180.628 ±0.0200.161 ±0.0170.560 ±0.0250.22 ±0.040.538 ±0.025
recomb-1 +resampling0.218 ±0.0320.616 ±0.0340.35 ±0.040.53 ±0.040.30 ±0.040.52 ±0.04
recomb-20.131 ±0.0280.634 ±0.0270.19 ±0.110.56 ±0.040.24 ±0.050.528 ±0.032
recomb-2 +resampling0.203 ±0.0350.63 ±0.050.27 ±0.070.552 ±0.0310.25 ±0.050.54 ±0.06
", + "type": "table", + "image_path": "69faebc7cdfbc3bcc0527c2fa58e58071182957a8b79c6d37cc24f2019aaafd2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 148, + 100, + 463, + 129.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 148, + 129.66666666666666, + 463, + 159.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 148, + 159.33333333333331, + 463, + 188.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 147, + 234, + 463, + 278 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 240, + 215, + 371, + 226 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 239, + 214, + 371, + 227 + ], + "spans": [ + { + "bbox": [ + 239, + 214, + 271, + 227 + ], + "score": 1.0, + "content": "Table 6:", + "type": "text" + }, + { + "bbox": [ + 272, + 215, + 283, + 225 + ], + "score": 0.53, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 214, + 371, + 227 + ], + "score": 1.0, + "content": "Accuracy (VAE model)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 147, + 234, + 463, + 278 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 147, + 234, + 463, + 278 + ], + "spans": [ + { + "bbox": [ + 147, + 234, + 463, + 278 + ], + "score": 0.974, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
learned aug + resampling +vae0.689 ±0.0180.859 ±0.0100.845 ±0.0140.896 ±0.0110.730 ±0.0320.850 ±0.015
recomb-1 + resampling +vae0.717 ±0.0140.870 ±0.0070.843 ±0.0140.898 ±0.0100.736 ±0.0300.859 ±0.031
recomb-2 + resampling +vae0.710 ±0.0080.865 ±0.0120.824 ±0.0150.896 ±0.0110.751 ±0.0270.848 ±0.027
", + "type": "table", + "image_path": "3ece8a8229f1da33042bdb3d39cbf512e18542f1afc7b1f790a3ff7617dd6b74.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 147, + 234, + 463, + 248.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 147, + 248.66666666666666, + 463, + 263.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 147, + 263.3333333333333, + 463, + 278.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "title", + "bbox": [ + 107, + 298, + 185, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 187, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 187, + 311 + ], + "score": 1.0, + "content": "G.1.3 HINTS=16", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "table", + "bbox": [ + 148, + 343, + 462, + 434 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 248, + 323, + 362, + 334 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 247, + 321, + 363, + 335 + ], + "spans": [ + { + "bbox": [ + 247, + 321, + 363, + 335 + ], + "score": 1.0, + "content": "Table 7: Exact Match Accuracy", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "table_body", + "bbox": [ + 148, + 343, + 462, + 434 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 148, + 343, + 462, + 434 + ], + "spans": [ + { + "bbox": [ + 148, + 343, + 462, + 434 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.27 ±0.050.65 ±0.040.28 ±0.060.544 ±0.0290.40 ±0.040.614 ±0.032
geca0.26 ±0.060.65 ±0.060.26 ±0.050.530 ±0.0280.37 ±0.050.570 ±0.035
geca +resampling0.34 ±0.050.63 ±0.040.32 ±0.070.506 ±0.0340.42 ±0.050.590 ±0.035
learned aug0.25 ±0.040.65 ±0.040.32 ±0.060.538 ±0.0280.39 ±0.040.58 ±0.05
learned aug +resampling0.230 ±0.0350.61 ±0.040.42 ±0.060.54 ±0.040.42 ±0.050.578 ±0.027
recomb-10.27 ±0.050.63 ±0.060.32 ±0.050.55 ±0.040.35 ±0.060.60 ±0.05
recomb-1 +resampling0.28 ±0.040.61 ±0.070.418 ±0.0350.548 ±0.0230.35 ±0.060.56 ±0.04
recomb-20.22 ±0.060.62 ±0.070.28 ±0.040.56 ±0.040.40 ±0.060.596 ±0.024
recomb-2 +resampling0.262 ±0.0250.61 ±0.070.405 ±0.0280.53 ±0.040.43 ±0.060.61 ±0.04
", + "type": "table", + "image_path": "e8779c4bfa9aa087e00f348d785e14fe5f63941b703cb1121e013569aa9f0615.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 148, + 343, + 462, + 373.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 148, + 373.3333333333333, + 462, + 403.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 148, + 403.66666666666663, + 462, + 433.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 10.0 + }, + { + "type": "table", + "bbox": [ + 148, + 479, + 463, + 567 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 266, + 459, + 344, + 470 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 265, + 458, + 345, + 471 + ], + "spans": [ + { + "bbox": [ + 265, + 458, + 345, + 471 + ], + "score": 1.0, + "content": "Table 8: F1 Accuracy", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "table_body", + "bbox": [ + 148, + 479, + 463, + 567 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 148, + 479, + 463, + 567 + ], + "spans": [ + { + "bbox": [ + 148, + 479, + 463, + 567 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.733 ±0.0140.881 ±0.0120.811 ±0.0180.893 ±0.0110.750 ±0.0260.875 ±0.021
geca0.736 ±0.0190.884 ±0.0180.800 ±0.0240.889 ±0.0120.74 ±0.040.863 ±0.019
geca + resampling0.782 ±0.0240.867 ±0.0120.830 ±0.0210.885 ±0.0130.794 ±0.0320.865 ±0.018
learned aug0.738 ±0.0200.877 ±0.0080.816 ±0.0240.893 ±0.0120.752 ±0.0240.868 ±0.020
learned aug + resampling0.745 ±0.0190.870 ±0.0120.866 ±0.0160.894 ±0.0130.787 ±0.0310.863 ±0.021
recomb-10.738 ±0.0210.877 ±0.0190.820 ±0.0180.896 ±0.0140.735 ±0.0330.874 ±0.026
recomb-1 + resampling0.770 ±0.0200.867 ±0.0230.872 ±0.0050.892 ±0.0100.778 ±0.0240.861 ±0.022
recomb-20.716 ±0.0190.876 ±0.0220.815 ±0.0170.897 ±0.0160.752 ±0.0340.873 ±0.017
recomb-2+resampling0.765 ±0.0230.868 ±0.0210.856 ±0.0150.888 ±0.0160.808 ±0.0180.868 ±0.027
", + "type": "table", + "image_path": "c450bd975d7b10ccbfa66a55ac7cca904456a57831df63e362fd15e92225b9f4.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 148, + 479, + 463, + 508.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 148, + 508.3333333333333, + 463, + 537.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 148, + 537.6666666666666, + 463, + 567.0 + ], + "spans": [], + "index": 16 + } + ] + } + ], + "index": 14.0 + }, + { + "type": "title", + "bbox": [ + 107, + 587, + 226, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 227, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 227, + 600 + ], + "score": 1.0, + "content": "G.2 SIGNIFICANCE TESTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 212, + 621 + ], + "score": 1.0, + "content": "Tables 9, 10 and 11 sho the", + "type": "text" + }, + { + "bbox": [ + 212, + 610, + 218, + 620 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 607, + 505, + 621 + ], + "score": 1.0, + "content": "-values for pairwise differences between the baseline and prototype-based", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 618, + 139, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 139, + 631 + ], + "score": 1.0, + "content": "models", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 607, + 505, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 641, + 503, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 201, + 653 + ], + "score": 1.0, + "content": "Table 9: Turkish language", + "type": "text" + }, + { + "bbox": [ + 202, + 643, + 208, + 652 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 640, + 271, + 653 + ], + "score": 1.0, + "content": "-values for paired", + "type": "text" + }, + { + "bbox": [ + 272, + 642, + 276, + 650 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 640, + 302, + 653 + ], + "score": 1.0, + "content": "-test in", + "type": "text" + }, + { + "bbox": [ + 302, + 641, + 341, + 651 + ], + "score": 0.37, + "content": "\\mathrm { P S T + F U T }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 640, + 421, + 653 + ], + "score": 1.0, + "content": "tenses for the average", + "type": "text" + }, + { + "bbox": [ + 421, + 642, + 432, + 651 + ], + "score": 0.85, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 640, + 505, + 653 + ], + "score": 1.0, + "content": "(micro) scores over", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 651, + 268, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 268, + 662 + ], + "score": 1.0, + "content": "several runs without Bonferronni correction.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 640, + 505, + 662 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 671, + 503, + 730 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 671, + 503, + 730 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 108, + 671, + 503, + 730 + ], + "spans": [ + { + "bbox": [ + 108, + 671, + 503, + 730 + ], + "score": 0.975, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.259314
learned aug0.3525060.802058
recomb-10.7075340.1292440.187597
recomb-20.2335780.02305540.03317940.363375
geca + resampling1.0125e-163.7044e-124.07678e-156.04788e-171.71167e-19
leamed aug + resampling8.00807e-101.37553e-076.51548e-086.35314e-113.76501e-130.0167999
recomb-1 + resampling3.85877e-261.60117e-202.76421e-226.41228e-262.07776e-260.01093651.948e-06
recomb-2 + resampling2.56689e-153.4083e-132.08177e-142.92113e-181.79928e-190.9818860.01904620.0101878
", + "type": "table", + "image_path": "9970f9707fb881457e608de94d36acfe1d09f6938fc2a0386b1a7144bbe2f83c.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 108, + 671, + 503, + 690.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 108, + 690.6666666666666, + 503, + 710.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 710.3333333333333, + 503, + 729.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 23 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 109, + 504, + 169 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 81, + 504, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 205, + 92 + ], + "score": 1.0, + "content": "Table 10: Spanish language", + "type": "text" + }, + { + "bbox": [ + 206, + 82, + 212, + 91 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 79, + 275, + 92 + ], + "score": 1.0, + "content": "-values for paired", + "type": "text" + }, + { + "bbox": [ + 275, + 81, + 279, + 90 + ], + "score": 0.65, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 79, + 422, + 92 + ], + "score": 1.0, + "content": "-test in PST+FUT tenses for the average", + "type": "text" + }, + { + "bbox": [ + 422, + 81, + 433, + 90 + ], + "score": 0.85, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 79, + 505, + 92 + ], + "score": 1.0, + "content": "(micro) scores over", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 90, + 268, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 268, + 101 + ], + "score": 1.0, + "content": "several runs without Bonferronni correction.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 109, + 504, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 109, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 108, + 109, + 504, + 169 + ], + "score": 0.974, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.394748
learned aug0.7611290.635337
recomb-10.4286060.9748510.620601
recomb-20.1997680.6019980.3174940.625078
geca + resampling2.27478e-256.11513e-293.30904e-241.38242e-242.19894e-27
learned aug + resampling1.09224e-109.34816e-131.40474e-114.70624e-134.78418e-140.000137083
recomb-1 + resampling4.00039e-278.88347e-304.06546e-251.2159e-287.2465e-290.4957341.35727e-05
recomb-2 + resampling1.17709e-171.29429e-214.07864e-181.12332e-191.66638e-210.3131430.009254770.103819
", + "type": "table", + "image_path": "b22dd5dbf133998bb856503ea8171f273e6ba4f6752644efa0ca64d41f584545.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 109, + 504, + 129.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 129.0, + 504, + 149.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 149.0, + 504, + 169.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "table", + "bbox": [ + 108, + 222, + 504, + 282 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 193, + 503, + 213 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 205, + 205 + ], + "score": 1.0, + "content": "Table 11: Swahili language", + "type": "text" + }, + { + "bbox": [ + 205, + 195, + 211, + 204 + ], + "score": 0.7, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 192, + 274, + 205 + ], + "score": 1.0, + "content": "-values for paired", + "type": "text" + }, + { + "bbox": [ + 274, + 194, + 279, + 202 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 192, + 303, + 205 + ], + "score": 1.0, + "content": "-test in", + "type": "text" + }, + { + "bbox": [ + 304, + 193, + 343, + 203 + ], + "score": 0.35, + "content": "\\mathrm { P S T + F U T }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 192, + 422, + 205 + ], + "score": 1.0, + "content": "tenses for the average", + "type": "text" + }, + { + "bbox": [ + 422, + 194, + 433, + 203 + ], + "score": 0.84, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "(micro) scores over", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 203, + 268, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 268, + 214 + ], + "score": 1.0, + "content": "several runs without Bonferronni correction.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 222, + 504, + 282 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 222, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 108, + 222, + 504, + 282 + ], + "score": 0.973, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.606002
learned aug0.0008571310.00384601
recomb-16.27581e-050.001013510.769589
recomb-21.75947e-050.0002075070.2632420.402064
geca + resampling2.58696e-218.85433e-194.57259e-111.33673e-111.87968e-08
learned aug + resampling7.09377e-531.46895e-472.3846e-386.32242e-382.09274e-303.26321e-10
recomb-1 + resampling1.66361e-581.28557e-549.46035e-442.05703e-459.46848e-371.60241e-170.0749463
recomb-2 +resampling2.16531e-313.52334e-257.80047e-201.08762e-191.26218e-150.07566461.52594e-062.51776e-11
", + "type": "table", + "image_path": "08a8f779523e582a10bf277d2ee3960d987e0f7b05be29635adbe1ca40e98be4.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 108, + 222, + 504, + 242.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 242.0, + 504, + 262.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 108, + 262.0, + 504, + 282.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "title", + "bbox": [ + 108, + 301, + 230, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 231, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 231, + 313 + ], + "score": 1.0, + "content": "G.3 GENERATED SAMPLES", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 322, + 354, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 356, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 356, + 335 + ], + "score": 1.0, + "content": "All samples are randomly selected unless otherwise indicated.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 107, + 345, + 171, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 172, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 172, + 359 + ], + "score": 1.0, + "content": "G.3.1 SCAN", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "In Table 12, we present three test samples from the SCAN task along with the predictions by direct", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "inference and the conditional model trained on the augmented data with recomb-2. Note that the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 388, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 391, + 399 + ], + "score": 1.0, + "content": "augmentation procedure was able to create novel samples whose input", + "type": "text" + }, + { + "bbox": [ + 392, + 388, + 405, + 398 + ], + "score": 0.4, + "content": "( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 388, + 505, + 399 + ], + "score": 1.0, + "content": "happens to be in the test", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 399, + 394, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 225, + 410 + ], + "score": 1.0, + "content": "set (Examples 1 and 3) while", + "type": "text" + }, + { + "bbox": [ + 225, + 400, + 232, + 410 + ], + "score": 0.71, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 399, + 394, + 410 + ], + "score": 1.0, + "content": "may or may not be correct (Example 1).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "table", + "bbox": [ + 108, + 421, + 503, + 470 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 421, + 503, + 470 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 108, + 421, + 503, + 470 + ], + "spans": [ + { + "bbox": [ + 108, + 421, + 503, + 470 + ], + "score": 0.974, + "html": "
Example 1 (jump)Example 2 (jump)Example 3 (around right)
Input (𝑥= )walk twice after jump twicerun right after jump twice jump left and jump around right
True label (y) in augmented datasetJUMP JUMP WALK WALK JUMP JUMP JUMP WALKJUMP JUMP RTURN RUN (not generated)TURN LEFT JUMP'TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN LEFT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP
Predicted @
├ direct inference Lrecomb-2JUMP JUMP JUMP WALK JUMP JUMP WALK WALKLOOK LOOK RTURN JUMP JUMP JUMP RTURN RUNTURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP
", + "type": "table", + "image_path": "ad30a87018b066837b8706d2093056cab29a45560ebed7942d7158d508134faf.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 108, + 421, + 503, + 437.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 108, + 437.3333333333333, + 503, + 453.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 108, + 453.66666666666663, + 503, + 469.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 490 + ], + "score": 1.0, + "content": "Table 12: Comparison of generative and unconditional model predictions with and without data augmentation.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "The conditional model trained on augmented data (final row) is able to compensate for errors in data augmentation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "(Example 1) and generalize to examples never generated by the data augmentation procedure (Example 2), and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "often times if a sample is correctly created by the augmentation procedure, the conditional model also gets it", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 519, + 175, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 175, + 532 + ], + "score": 1.0, + "content": "right (Example 3).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "Below are a set of samples from the learned aug (basic) model for SCAN dataset’s jump and around", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 561, + 191, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 191, + 574 + ], + "score": 1.0, + "content": "right splits, in order:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 579, + 506, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 580, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 590 + ], + "score": 1.0, + "content": "IN: run opposite and walk opposite right twice OUT: RUN TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 591, + 149, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 149, + 600 + ], + "score": 1.0, + "content": "RIGHT WALK", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "score": 1.0, + "content": "IN: look around right thrice after run around thrice thrice OUT: TURN RIGHT RUN TURN RIGHT RUN TURN", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 613, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 505, + 622 + ], + "score": 1.0, + "content": "RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 624, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 632 + ], + "score": 1.0, + "content": "TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 635, + 212, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 212, + 643 + ], + "score": 1.0, + "content": "RIGHT LOOK TURN RIGHT LOOK", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "score": 1.0, + "content": "IN: look opposite right twice and walk around twice OUT: TURN RIGHT TURN RIGHT LOOK TURN RIGHT TURN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 656, + 392, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 392, + 666 + ], + "score": 1.0, + "content": "RIGHT LOOK TURN RIGHT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 668, + 324, + 677 + ], + "spans": [ + { + "bbox": [ + 107, + 668, + 324, + 677 + ], + "score": 1.0, + "content": "IN: run opposite and thrice OUT: RUN TURN LEFT RUN RUN", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "score": 1.0, + "content": "IN: walk opposite right thrice turn turn right thrice OUT: TURN RIGHT TURN RIGHT TURN RIGHT", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 432, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 432, + 710 + ], + "score": 1.0, + "content": "TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT WALK", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "IN: jump opposite right twice jump look around left OUT: TURN RIGHT TURN RIGHT JUMP TURN LEFT TURN", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 721, + 344, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 344, + 732 + ], + "score": 1.0, + "content": "LEFT JUMP TURN LEFT TURN LEFT LOOK TURN LEFT TURN LEFT LOOK", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + } + ], + "page_idx": 18, + "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": "table", + "bbox": [ + 108, + 109, + 504, + 169 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 81, + 504, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 205, + 92 + ], + "score": 1.0, + "content": "Table 10: Spanish language", + "type": "text" + }, + { + "bbox": [ + 206, + 82, + 212, + 91 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 79, + 275, + 92 + ], + "score": 1.0, + "content": "-values for paired", + "type": "text" + }, + { + "bbox": [ + 275, + 81, + 279, + 90 + ], + "score": 0.65, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 79, + 422, + 92 + ], + "score": 1.0, + "content": "-test in PST+FUT tenses for the average", + "type": "text" + }, + { + "bbox": [ + 422, + 81, + 433, + 90 + ], + "score": 0.85, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 79, + 505, + 92 + ], + "score": 1.0, + "content": "(micro) scores over", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 90, + 268, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 268, + 101 + ], + "score": 1.0, + "content": "several runs without Bonferronni correction.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 109, + 504, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 109, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 108, + 109, + 504, + 169 + ], + "score": 0.974, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.394748
learned aug0.7611290.635337
recomb-10.4286060.9748510.620601
recomb-20.1997680.6019980.3174940.625078
geca + resampling2.27478e-256.11513e-293.30904e-241.38242e-242.19894e-27
learned aug + resampling1.09224e-109.34816e-131.40474e-114.70624e-134.78418e-140.000137083
recomb-1 + resampling4.00039e-278.88347e-304.06546e-251.2159e-287.2465e-290.4957341.35727e-05
recomb-2 + resampling1.17709e-171.29429e-214.07864e-181.12332e-191.66638e-210.3131430.009254770.103819
", + "type": "table", + "image_path": "b22dd5dbf133998bb856503ea8171f273e6ba4f6752644efa0ca64d41f584545.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 109, + 504, + 129.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 129.0, + 504, + 149.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 149.0, + 504, + 169.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "table", + "bbox": [ + 108, + 222, + 504, + 282 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 193, + 503, + 213 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 205, + 205 + ], + "score": 1.0, + "content": "Table 11: Swahili language", + "type": "text" + }, + { + "bbox": [ + 205, + 195, + 211, + 204 + ], + "score": 0.7, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 192, + 274, + 205 + ], + "score": 1.0, + "content": "-values for paired", + "type": "text" + }, + { + "bbox": [ + 274, + 194, + 279, + 202 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 192, + 303, + 205 + ], + "score": 1.0, + "content": "-test in", + "type": "text" + }, + { + "bbox": [ + 304, + 193, + 343, + 203 + ], + "score": 0.35, + "content": "\\mathrm { P S T + F U T }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 192, + 422, + 205 + ], + "score": 1.0, + "content": "tenses for the average", + "type": "text" + }, + { + "bbox": [ + 422, + 194, + 433, + 203 + ], + "score": 0.84, + "content": "F _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "(micro) scores over", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 203, + 268, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 268, + 214 + ], + "score": 1.0, + "content": "several runs without Bonferronni correction.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 222, + 504, + 282 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 222, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 108, + 222, + 504, + 282 + ], + "score": 0.973, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.606002
learned aug0.0008571310.00384601
recomb-16.27581e-050.001013510.769589
recomb-21.75947e-050.0002075070.2632420.402064
geca + resampling2.58696e-218.85433e-194.57259e-111.33673e-111.87968e-08
learned aug + resampling7.09377e-531.46895e-472.3846e-386.32242e-382.09274e-303.26321e-10
recomb-1 + resampling1.66361e-581.28557e-549.46035e-442.05703e-459.46848e-371.60241e-170.0749463
recomb-2 +resampling2.16531e-313.52334e-257.80047e-201.08762e-191.26218e-150.07566461.52594e-062.51776e-11
", + "type": "table", + "image_path": "08a8f779523e582a10bf277d2ee3960d987e0f7b05be29635adbe1ca40e98be4.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 108, + 222, + 504, + 242.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 242.0, + 504, + 262.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 108, + 262.0, + 504, + 282.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "title", + "bbox": [ + 108, + 301, + 230, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 231, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 231, + 313 + ], + "score": 1.0, + "content": "G.3 GENERATED SAMPLES", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 322, + 354, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 356, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 356, + 335 + ], + "score": 1.0, + "content": "All samples are randomly selected unless otherwise indicated.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 321, + 356, + 335 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 345, + 171, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 172, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 172, + 359 + ], + "score": 1.0, + "content": "G.3.1 SCAN", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "In Table 12, we present three test samples from the SCAN task along with the predictions by direct", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "inference and the conditional model trained on the augmented data with recomb-2. Note that the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 388, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 391, + 399 + ], + "score": 1.0, + "content": "augmentation procedure was able to create novel samples whose input", + "type": "text" + }, + { + "bbox": [ + 392, + 388, + 405, + 398 + ], + "score": 0.4, + "content": "( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 388, + 505, + 399 + ], + "score": 1.0, + "content": "happens to be in the test", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 399, + 394, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 225, + 410 + ], + "score": 1.0, + "content": "set (Examples 1 and 3) while", + "type": "text" + }, + { + "bbox": [ + 225, + 400, + 232, + 410 + ], + "score": 0.71, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 399, + 394, + 410 + ], + "score": 1.0, + "content": "may or may not be correct (Example 1).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 366, + 505, + 410 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 421, + 503, + 470 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 421, + 503, + 470 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 108, + 421, + 503, + 470 + ], + "spans": [ + { + "bbox": [ + 108, + 421, + 503, + 470 + ], + "score": 0.974, + "html": "
Example 1 (jump)Example 2 (jump)Example 3 (around right)
Input (𝑥= )walk twice after jump twicerun right after jump twice jump left and jump around right
True label (y) in augmented datasetJUMP JUMP WALK WALK JUMP JUMP JUMP WALKJUMP JUMP RTURN RUN (not generated)TURN LEFT JUMP'TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN LEFT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP
Predicted @
├ direct inference Lrecomb-2JUMP JUMP JUMP WALK JUMP JUMP WALK WALKLOOK LOOK RTURN JUMP JUMP JUMP RTURN RUNTURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP
", + "type": "table", + "image_path": "ad30a87018b066837b8706d2093056cab29a45560ebed7942d7158d508134faf.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 108, + 421, + 503, + 437.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 108, + 437.3333333333333, + 503, + 453.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 108, + 453.66666666666663, + 503, + 469.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 490 + ], + "score": 1.0, + "content": "Table 12: Comparison of generative and unconditional model predictions with and without data augmentation.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "The conditional model trained on augmented data (final row) is able to compensate for errors in data augmentation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "(Example 1) and generalize to examples never generated by the data augmentation procedure (Example 2), and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "often times if a sample is correctly created by the augmentation procedure, the conditional model also gets it", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 519, + 175, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 175, + 532 + ], + "score": 1.0, + "content": "right (Example 3).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 479, + 506, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "Below are a set of samples from the learned aug (basic) model for SCAN dataset’s jump and around", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 561, + 191, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 191, + 574 + ], + "score": 1.0, + "content": "right splits, in order:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 550, + 505, + 574 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 579, + 506, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 580, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 590 + ], + "score": 1.0, + "content": "IN: run opposite and walk opposite right twice OUT: RUN TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 591, + 149, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 149, + 600 + ], + "score": 1.0, + "content": "RIGHT WALK", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "score": 1.0, + "content": "IN: look around right thrice after run around thrice thrice OUT: TURN RIGHT RUN TURN RIGHT RUN TURN", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 613, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 505, + 622 + ], + "score": 1.0, + "content": "RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 624, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 632 + ], + "score": 1.0, + "content": "TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 635, + 212, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 212, + 643 + ], + "score": 1.0, + "content": "RIGHT LOOK TURN RIGHT LOOK", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "score": 1.0, + "content": "IN: look opposite right twice and walk around twice OUT: TURN RIGHT TURN RIGHT LOOK TURN RIGHT TURN", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 656, + 392, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 392, + 666 + ], + "score": 1.0, + "content": "RIGHT LOOK TURN RIGHT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 668, + 324, + 677 + ], + "spans": [ + { + "bbox": [ + 107, + 668, + 324, + 677 + ], + "score": 1.0, + "content": "IN: run opposite and thrice OUT: RUN TURN LEFT RUN RUN", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 31, + "bbox_fs": [ + 106, + 580, + 505, + 677 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 699 + ], + "score": 1.0, + "content": "IN: walk opposite right thrice turn turn right thrice OUT: TURN RIGHT TURN RIGHT TURN RIGHT", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 432, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 432, + 710 + ], + "score": 1.0, + "content": "TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT TURN RIGHT WALK", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "IN: jump opposite right twice jump look around left OUT: TURN RIGHT TURN RIGHT JUMP TURN LEFT TURN", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 721, + 344, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 344, + 732 + ], + "score": 1.0, + "content": "LEFT JUMP TURN LEFT TURN LEFT LOOK TURN LEFT TURN LEFT LOOK", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 689, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 83, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 84, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 506, + 95 + ], + "score": 1.0, + "content": "IN: walk around left thrice after jump left left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "score": 1.0, + "content": "TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 146, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 146, + 127 + ], + "score": 1.0, + "content": "LEFT WALK", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 503, + 148 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "IN: run opposite right twice walk run left thrice OUT: TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 139, + 341, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 341, + 149 + ], + "score": 1.0, + "content": "RIGHT WALK TURN LEFT TURN LEFT RUN TURN LEFT TURN LEFT RUN", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 502, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 504, + 167 + ], + "score": 1.0, + "content": "Below are a set of samples from the recomb-1 model for SCAN dataset’s around right split. Note", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 164, + 441, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 441, + 177 + ], + "score": 1.0, + "content": "that there were no samples with rare tags generated by the model for the jump split:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 506, + 270 + ], + "lines": [ + { + "bbox": [ + 107, + 183, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 107, + 183, + 505, + 192 + ], + "score": 1.0, + "content": "IN: run around right after walk around left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT RUN TURN", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 380, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 380, + 205 + ], + "score": 1.0, + "content": "LEFT RUN TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 216 + ], + "score": 1.0, + "content": "IN: look around right after jump around left OUT: TURN LEFT LOOK TURN LEFT JUMP TURN LEFT LOOK TURN", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 384, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 384, + 227 + ], + "score": 1.0, + "content": "LEFT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 238 + ], + "score": 1.0, + "content": "IN: look around right and jump around left OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 238, + 384, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 384, + 248 + ], + "score": 1.0, + "content": "LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 249, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 259 + ], + "score": 1.0, + "content": "IN: walk around right and turn right twice OUT: TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT WALK TURN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 261, + 236, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 236, + 270 + ], + "score": 1.0, + "content": "RIGHT WALK TURN RIGHT TURN RIGHT", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 276, + 504, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 289 + ], + "score": 1.0, + "content": "Below are 4 samples from the recomb-2 model for each of SCAN dataset’s jump and around right", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 186, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 186, + 300 + ], + "score": 1.0, + "content": "splits, respectively:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 315 + ], + "score": 1.0, + "content": "IN: jump opposite left thrice after jump opposite left thrice OUT: TURN LEFT TURN LEFT JUMP TURN", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 325 + ], + "score": 1.0, + "content": "LEFT TURN LEFT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT WALK TURN LEFT TURN LEFT WALK TURN", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 327, + 185, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 185, + 336 + ], + "score": 1.0, + "content": "LEFT TURN LEFT WALK", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 338, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 348 + ], + "score": 1.0, + "content": "IN: jump left thrice and jump left thrice OUT: TURN LEFT LOOK TURN LEFT LOOK TURN LEFT LOOK TURN LEFT", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 349, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 359 + ], + "score": 1.0, + "content": "JUMP TURN LEFT JUMP TURN LEFT JUMP IN: jump opposite right and turn around left OUT: TURN RIGHT TURN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 360, + 149, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 149, + 370 + ], + "score": 1.0, + "content": "RIGHT JUMP", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 371, + 264, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 264, + 381 + ], + "score": 1.0, + "content": "TURN LEFT TURN LEFT TURN LEFT TURN LEFT", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 381, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 392 + ], + "score": 1.0, + "content": "IN: turn around left and jump around left OUT: TURN LEFT TURN LEFT TURN LEFT TURN LEFT TURN LEFT", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 393, + 304, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 304, + 402 + ], + "score": 1.0, + "content": "JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 506, + 501 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "IN: look right twice after run around right OUT: TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 425, + 308, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 308, + 434 + ], + "score": 1.0, + "content": "RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 437, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 447 + ], + "score": 1.0, + "content": "IN: turn right twice after look around right OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 448, + 256, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 256, + 457 + ], + "score": 1.0, + "content": "TURN RIGHT LOOK TURN RIGHT TURN RIGHT", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "score": 1.0, + "content": "IN: look twice and run around right OUT: LOOK LOOK TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 469, + 146, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 146, + 479 + ], + "score": 1.0, + "content": "RIGHT RUN", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "score": 1.0, + "content": "IN: walk opposite right twice and jump around right OUT: TURN RIGHT TURN RIGHT WALK TURN RIGHT TURN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 492, + 403, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 403, + 501 + ], + "score": 1.0, + "content": "RIGHT WALK TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 107, + 525, + 205, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 207, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 207, + 539 + ], + "score": 1.0, + "content": "G.3.2 MORPHOLOGY", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 458, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 459, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 459, + 563 + ], + "score": 1.0, + "content": "Below are a set of samples from the learned aug (basic) model in SIGMORPHON format.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 328, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 240, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 240, + 578 + ], + "score": 1.0, + "content": "şahmiçe şahmiçende N;LOC;SG;PSS2S", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 580, + 327, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 327, + 589 + ], + "score": 1.0, + "content": "karadan havaya füze karadan havaya füzel N;DAT;PL;PSS3P", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 591, + 236, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 236, + 600 + ], + "score": 1.0, + "content": "ernek erneklerine N;DAT;PL;PSS3P", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 224, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 224, + 611 + ], + "score": 1.0, + "content": "kiler kilerime N;DAT;SG;PSS1S", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 613, + 240, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 240, + 622 + ], + "score": 1.0, + "content": "mahlep mahlebimizi N;ACC;SG;PSS1P", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 624, + 263, + 632 + ], + "spans": [ + { + "bbox": [ + 107, + 624, + 263, + 632 + ], + "score": 1.0, + "content": "süzmek süzerler V;IND;3;PL;PRS;POS;DECL", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 635, + 228, + 644 + ], + "spans": [ + { + "bbox": [ + 107, + 635, + 228, + 644 + ], + "score": 1.0, + "content": "âlap âlaps N;LGSPEC1;3S;SG;PRS", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 645, + 196, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 196, + 655 + ], + "score": 1.0, + "content": "jöle jöleleri N;ACC;PL", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 263, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 252, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 252, + 677 + ], + "score": 1.0, + "content": "envejecerse envejeciéndose V.CVB;PRS", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 678, + 224, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 224, + 688 + ], + "score": 1.0, + "content": "colaxar colaxa V;IND;PRS;3;SG", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 690, + 264, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 264, + 699 + ], + "score": 1.0, + "content": "pergedrer no pergedremos V;NEG;IMP;1;PL", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 701, + 240, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 240, + 709 + ], + "score": 1.0, + "content": "mantear no mantees V;NEG;IMP;2;SG", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 712, + 248, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 248, + 720 + ], + "score": 1.0, + "content": "flaguear no flagueen V;NEG;IMP;3;PL", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 722, + 248, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 248, + 731 + ], + "score": 1.0, + "content": "malacostar malacostaría V;COND;3;SG", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 83, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 84, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 506, + 95 + ], + "score": 1.0, + "content": "IN: walk around left thrice after jump left left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 505, + 105 + ], + "score": 1.0, + "content": "TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 146, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 146, + 127 + ], + "score": 1.0, + "content": "LEFT WALK", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 84, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 503, + 148 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "IN: run opposite right twice walk run left thrice OUT: TURN RIGHT TURN RIGHT RUN TURN RIGHT TURN", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 139, + 341, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 341, + 149 + ], + "score": 1.0, + "content": "RIGHT WALK TURN LEFT TURN LEFT RUN TURN LEFT TURN LEFT RUN", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 127, + 505, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 502, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 504, + 167 + ], + "score": 1.0, + "content": "Below are a set of samples from the recomb-1 model for SCAN dataset’s around right split. Note", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 164, + 441, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 441, + 177 + ], + "score": 1.0, + "content": "that there were no samples with rare tags generated by the model for the jump split:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 153, + 504, + 177 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 183, + 506, + 270 + ], + "lines": [ + { + "bbox": [ + 107, + 183, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 107, + 183, + 505, + 192 + ], + "score": 1.0, + "content": "IN: run around right after walk around left OUT: TURN LEFT WALK TURN LEFT WALK TURN LEFT RUN TURN", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 380, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 380, + 205 + ], + "score": 1.0, + "content": "LEFT RUN TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK TURN LEFT WALK", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 205, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 216 + ], + "score": 1.0, + "content": "IN: look around right after jump around left OUT: TURN LEFT LOOK TURN LEFT JUMP TURN LEFT LOOK TURN", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 216, + 384, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 384, + 227 + ], + "score": 1.0, + "content": "LEFT LOOK TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 227, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 238 + ], + "score": 1.0, + "content": "IN: look around right and jump around left OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK TURN", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 238, + 384, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 384, + 248 + ], + "score": 1.0, + "content": "LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 249, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 259 + ], + "score": 1.0, + "content": "IN: walk around right and turn right twice OUT: TURN RIGHT WALK TURN RIGHT WALK TURN RIGHT WALK TURN", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 261, + 236, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 236, + 270 + ], + "score": 1.0, + "content": "RIGHT WALK TURN RIGHT TURN RIGHT", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 183, + 505, + 270 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 276, + 504, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 289 + ], + "score": 1.0, + "content": "Below are 4 samples from the recomb-2 model for each of SCAN dataset’s jump and around right", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 186, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 186, + 300 + ], + "score": 1.0, + "content": "splits, respectively:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 274, + 505, + 300 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 304, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 315 + ], + "score": 1.0, + "content": "IN: jump opposite left thrice after jump opposite left thrice OUT: TURN LEFT TURN LEFT JUMP TURN", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 325 + ], + "score": 1.0, + "content": "LEFT TURN LEFT JUMP TURN LEFT TURN LEFT JUMP TURN LEFT TURN LEFT WALK TURN LEFT TURN LEFT WALK TURN", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 327, + 185, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 185, + 336 + ], + "score": 1.0, + "content": "LEFT TURN LEFT WALK", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 338, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 348 + ], + "score": 1.0, + "content": "IN: jump left thrice and jump left thrice OUT: TURN LEFT LOOK TURN LEFT LOOK TURN LEFT LOOK TURN LEFT", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 349, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 359 + ], + "score": 1.0, + "content": "JUMP TURN LEFT JUMP TURN LEFT JUMP IN: jump opposite right and turn around left OUT: TURN RIGHT TURN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 360, + 149, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 149, + 370 + ], + "score": 1.0, + "content": "RIGHT JUMP", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 371, + 264, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 264, + 381 + ], + "score": 1.0, + "content": "TURN LEFT TURN LEFT TURN LEFT TURN LEFT", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 381, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 392 + ], + "score": 1.0, + "content": "IN: turn around left and jump around left OUT: TURN LEFT TURN LEFT TURN LEFT TURN LEFT TURN LEFT", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 393, + 304, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 304, + 402 + ], + "score": 1.0, + "content": "JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "IN: look right twice after run around right OUT: TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 425, + 308, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 308, + 434 + ], + "score": 1.0, + "content": "RUN TURN RIGHT RUN TURN RIGHT LOOK TURN RIGHT LOOK", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 437, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 447 + ], + "score": 1.0, + "content": "IN: turn right twice after look around right OUT: TURN RIGHT LOOK TURN RIGHT LOOK TURN RIGHT LOOK", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 448, + 256, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 256, + 457 + ], + "score": 1.0, + "content": "TURN RIGHT LOOK TURN RIGHT TURN RIGHT", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "score": 1.0, + "content": "IN: look twice and run around right OUT: LOOK LOOK TURN RIGHT RUN TURN RIGHT RUN TURN RIGHT RUN TURN", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 469, + 146, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 146, + 479 + ], + "score": 1.0, + "content": "RIGHT RUN", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "score": 1.0, + "content": "IN: walk opposite right twice and jump around right OUT: TURN RIGHT TURN RIGHT WALK TURN RIGHT TURN", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 492, + 403, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 403, + 501 + ], + "score": 1.0, + "content": "RIGHT WALK TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + } + ], + "index": 22, + "bbox_fs": [ + 105, + 305, + 506, + 402 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 415, + 506, + 501 + ], + "lines": [], + "index": 30.5, + "bbox_fs": [ + 105, + 414, + 506, + 501 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 525, + 205, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 207, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 207, + 539 + ], + "score": 1.0, + "content": "G.3.2 MORPHOLOGY", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 458, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 459, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 459, + 563 + ], + "score": 1.0, + "content": "Below are a set of samples from the learned aug (basic) model in SIGMORPHON format.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 550, + 459, + 563 + ] + }, + { + "type": "list", + "bbox": [ + 107, + 568, + 328, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 240, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 240, + 578 + ], + "score": 1.0, + "content": "şahmiçe şahmiçende N;LOC;SG;PSS2S", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 580, + 327, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 327, + 589 + ], + "score": 1.0, + "content": "karadan havaya füze karadan havaya füzel N;DAT;PL;PSS3P", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 591, + 236, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 236, + 600 + ], + "score": 1.0, + "content": "ernek erneklerine N;DAT;PL;PSS3P", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 601, + 224, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 224, + 611 + ], + "score": 1.0, + "content": "kiler kilerime N;DAT;SG;PSS1S", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 613, + 240, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 240, + 622 + ], + "score": 1.0, + "content": "mahlep mahlebimizi N;ACC;SG;PSS1P", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 624, + 263, + 632 + ], + "spans": [ + { + "bbox": [ + 107, + 624, + 263, + 632 + ], + "score": 1.0, + "content": "süzmek süzerler V;IND;3;PL;PRS;POS;DECL", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 635, + 228, + 644 + ], + "spans": [ + { + "bbox": [ + 107, + 635, + 228, + 644 + ], + "score": 1.0, + "content": "âlap âlaps N;LGSPEC1;3S;SG;PRS", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 645, + 196, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 196, + 655 + ], + "score": 1.0, + "content": "jöle jöleleri N;ACC;PL", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 569, + 327, + 655 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 263, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 252, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 252, + 677 + ], + "score": 1.0, + "content": "envejecerse envejeciéndose V.CVB;PRS", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 678, + 224, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 224, + 688 + ], + "score": 1.0, + "content": "colaxar colaxa V;IND;PRS;3;SG", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 690, + 264, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 264, + 699 + ], + "score": 1.0, + "content": "pergedrer no pergedremos V;NEG;IMP;1;PL", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 701, + 240, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 240, + 709 + ], + "score": 1.0, + "content": "mantear no mantees V;NEG;IMP;2;SG", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 712, + 248, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 248, + 720 + ], + "score": 1.0, + "content": "flaguear no flagueen V;NEG;IMP;3;PL", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 722, + 248, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 248, + 731 + ], + "score": 1.0, + "content": "malacostar malacostaría V;COND;3;SG", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 667, + 264, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 84, + 272, + 105 + ], + "lines": [ + { + "bbox": [ + 107, + 84, + 236, + 93 + ], + "spans": [ + { + "bbox": [ + 107, + 84, + 236, + 93 + ], + "score": 1.0, + "content": "desinstar desinse V;POS;IMP;3;SG", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 96, + 272, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 272, + 104 + ], + "score": 1.0, + "content": "concretizar no concretices V;NEG;IMP;2;SG", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 413, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 414, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 329, + 124 + ], + "score": 1.0, + "content": "Below are a set of samples from the learned aug (basic)", + "type": "text" + }, + { + "bbox": [ + 330, + 112, + 338, + 120 + ], + "score": 0.75, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 109, + 414, + 124 + ], + "score": 1.0, + "content": "resampling model.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 129, + 327, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 328, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 328, + 138 + ], + "score": 1.0, + "content": "şaşırmak şaşırmıyor musun? V;IND;2;PL;PST;PROG;POS;INTR", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 140, + 251, + 150 + ], + "spans": [ + { + "bbox": [ + 107, + 140, + 251, + 150 + ], + "score": 1.0, + "content": "ayılmak ayılmaya V;IND;1;SG;PST;DECL", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 151, + 320, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 320, + 160 + ], + "score": 1.0, + "content": "pleşmek pleşmiyor muyuz? V;IND;1;PL;PST;PROG;NEG;INTR", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 162, + 307, + 171 + ], + "spans": [ + { + "bbox": [ + 107, + 162, + 307, + 171 + ], + "score": 1.0, + "content": "imciyetmek imciyetmezdeğiz V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 295, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 295, + 183 + ], + "score": 1.0, + "content": "kuvaşmak kuvaşmayacağız V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 280, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 280, + 193 + ], + "score": 1.0, + "content": "yermek yermeyeceğiz V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 195, + 295, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 295, + 204 + ], + "score": 1.0, + "content": "yarıtmak yarıtmayacağız V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 206, + 287, + 215 + ], + "spans": [ + { + "bbox": [ + 107, + 206, + 287, + 215 + ], + "score": 1.0, + "content": "kelimek kelimeyeceğiz V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 288, + 314 + ], + "lines": [ + { + "bbox": [ + 107, + 228, + 268, + 236 + ], + "spans": [ + { + "bbox": [ + 107, + 228, + 268, + 236 + ], + "score": 1.0, + "content": "trasescar trasescáis V;IND;PST;2;PL;IPFV", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 239, + 219, + 247 + ], + "spans": [ + { + "bbox": [ + 107, + 239, + 219, + 247 + ], + "score": 1.0, + "content": "tronar tronar V;IND;FUT;1;SG", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 250, + 288, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 288, + 258 + ], + "score": 1.0, + "content": "terzcalminar terzcalminan V;IND;PST;3;PL;IPFV", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 261, + 288, + 270 + ], + "spans": [ + { + "bbox": [ + 107, + 261, + 288, + 270 + ], + "score": 1.0, + "content": "esubronizar esubronizamos V;IND;PST;1;PL;IPFV", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 272, + 227, + 281 + ], + "spans": [ + { + "bbox": [ + 107, + 272, + 227, + 281 + ], + "score": 1.0, + "content": "urdir urdiremos V;IND;FUT;1;PL", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 283, + 235, + 292 + ], + "spans": [ + { + "bbox": [ + 107, + 283, + 235, + 292 + ], + "score": 1.0, + "content": "conder conderemos V;IND;FUT;1;PL", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 293, + 284, + 303 + ], + "spans": [ + { + "bbox": [ + 107, + 293, + 284, + 303 + ], + "score": 1.0, + "content": "florear florearían V;IND;PST;3;PL;LGSPEC1;SG", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 305, + 271, + 313 + ], + "spans": [ + { + "bbox": [ + 107, + 305, + 271, + 313 + ], + "score": 1.0, + "content": "sabrordar sabrordamos V;IND;PST;1;PL;IPFV", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 104, + 320, + 504, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 289, + 333 + ], + "score": 1.0, + "content": "Below are a set of samples from the recomb-", + "type": "text" + }, + { + "bbox": [ + 289, + 320, + 305, + 330 + ], + "score": 0.8, + "content": "l +", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 318, + 505, + 333 + ], + "score": 1.0, + "content": "resampling model (the best performing model in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 389, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 389, + 343 + ], + "score": 1.0, + "content": "Table 2). Here we additionally annotate samples with error categories.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 348, + 491, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 443, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 443, + 360 + ], + "score": 1.0, + "content": "kovulmak kovulmaz mısınız V;IND;2;PL;FUT;NEG;INTR (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 364, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 364, + 371 + ], + "score": 1.0, + "content": "düşünmek düşündüler V;IND;3;PL;PST;POS;DECL (Correct and novel.)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 371, + 423, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 423, + 381 + ], + "score": 1.0, + "content": "sütmek sütmez miyiz? V;IND;2;SG;FUT;NEG;INTR (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 383, + 434, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 434, + 392 + ], + "score": 1.0, + "content": "bakmak bakmayacak mıyım? V;IND;1;PL;FUT;NEG;INTR (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 392, + 404, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 404, + 403 + ], + "score": 1.0, + "content": "döndürmek döndürecek misiniz? V;IND;2;PL;FUT;POS;INTR (Correct and novel.)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 403, + 491, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 491, + 415 + ], + "score": 1.0, + "content": "türkçeleştirtmek türkçeleştirtiyor m V;IND;2;PL;PST;PROG;NEG;INTR (Wrong inflection, novel tag.)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 415, + 404, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 404, + 425 + ], + "score": 1.0, + "content": "çalmak çalmayız V;IND;2;PL;FUT;POS;DECL (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 425, + 415, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 415, + 437 + ], + "score": 1.0, + "content": "üsürmek üsürmezsin V;IND;2;SG;PST;NEG;DECL (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 427, + 534 + ], + "lines": [ + { + "bbox": [ + 107, + 448, + 327, + 457 + ], + "spans": [ + { + "bbox": [ + 107, + 448, + 327, + 457 + ], + "score": 1.0, + "content": "duplicar duplicaráis V;IND;FUT;2;PL (Correct and novel)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 459, + 367, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 367, + 469 + ], + "score": 1.0, + "content": "efundar efundan V;SBJV;FUT;3;PL (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 470, + 375, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 375, + 479 + ], + "score": 1.0, + "content": "deshumanizar deshumanicas V;SBJV;PST;2;SG (Inplausible inflection.)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 481, + 363, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 363, + 490 + ], + "score": 1.0, + "content": "emular emulares V;SBJV;FUT;2;SG (Correct and also in train set.)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 492, + 426, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 426, + 502 + ], + "score": 1.0, + "content": "languidecer languidecíamos V;IND;PST;1;SG;IPFV (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 502, + 384, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 384, + 513 + ], + "score": 1.0, + "content": "nominar nominamos V;SBJV;FUT;1;PL (Novel tags, incorrect inflection.)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 514, + 319, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 319, + 524 + ], + "score": 1.0, + "content": "finciar finciare V;SBJV;FUT;1;SG (Correct and novel.)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 525, + 358, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 358, + 534 + ], + "score": 1.0, + "content": "abastar abasto V;IND;PST;1;SG (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5 + } + ], + "page_idx": 20, + "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": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 84, + 272, + 105 + ], + "lines": [ + { + "bbox": [ + 107, + 84, + 236, + 93 + ], + "spans": [ + { + "bbox": [ + 107, + 84, + 236, + 93 + ], + "score": 1.0, + "content": "desinstar desinse V;POS;IMP;3;SG", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 96, + 272, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 272, + 104 + ], + "score": 1.0, + "content": "concretizar no concretices V;NEG;IMP;2;SG", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 84, + 272, + 104 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 413, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 414, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 329, + 124 + ], + "score": 1.0, + "content": "Below are a set of samples from the learned aug (basic)", + "type": "text" + }, + { + "bbox": [ + 330, + 112, + 338, + 120 + ], + "score": 0.75, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 109, + 414, + 124 + ], + "score": 1.0, + "content": "resampling model.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 109, + 414, + 124 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 129, + 327, + 216 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 328, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 328, + 138 + ], + "score": 1.0, + "content": "şaşırmak şaşırmıyor musun? V;IND;2;PL;PST;PROG;POS;INTR", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 140, + 251, + 150 + ], + "spans": [ + { + "bbox": [ + 107, + 140, + 251, + 150 + ], + "score": 1.0, + "content": "ayılmak ayılmaya V;IND;1;SG;PST;DECL", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 151, + 320, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 320, + 160 + ], + "score": 1.0, + "content": "pleşmek pleşmiyor muyuz? V;IND;1;PL;PST;PROG;NEG;INTR", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 162, + 307, + 171 + ], + "spans": [ + { + "bbox": [ + 107, + 162, + 307, + 171 + ], + "score": 1.0, + "content": "imciyetmek imciyetmezdeğiz V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 295, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 295, + 183 + ], + "score": 1.0, + "content": "kuvaşmak kuvaşmayacağız V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 280, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 280, + 193 + ], + "score": 1.0, + "content": "yermek yermeyeceğiz V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 195, + 295, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 295, + 204 + ], + "score": 1.0, + "content": "yarıtmak yarıtmayacağız V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 206, + 287, + 215 + ], + "spans": [ + { + "bbox": [ + 107, + 206, + 287, + 215 + ], + "score": 1.0, + "content": "kelimek kelimeyeceğiz V;IND;1;PL;FUT;NEG;DECL", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 129, + 328, + 215 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 288, + 314 + ], + "lines": [ + { + "bbox": [ + 107, + 228, + 268, + 236 + ], + "spans": [ + { + "bbox": [ + 107, + 228, + 268, + 236 + ], + "score": 1.0, + "content": "trasescar trasescáis V;IND;PST;2;PL;IPFV", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 239, + 219, + 247 + ], + "spans": [ + { + "bbox": [ + 107, + 239, + 219, + 247 + ], + "score": 1.0, + "content": "tronar tronar V;IND;FUT;1;SG", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 250, + 288, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 250, + 288, + 258 + ], + "score": 1.0, + "content": "terzcalminar terzcalminan V;IND;PST;3;PL;IPFV", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 261, + 288, + 270 + ], + "spans": [ + { + "bbox": [ + 107, + 261, + 288, + 270 + ], + "score": 1.0, + "content": "esubronizar esubronizamos V;IND;PST;1;PL;IPFV", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 272, + 227, + 281 + ], + "spans": [ + { + "bbox": [ + 107, + 272, + 227, + 281 + ], + "score": 1.0, + "content": "urdir urdiremos V;IND;FUT;1;PL", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 283, + 235, + 292 + ], + "spans": [ + { + "bbox": [ + 107, + 283, + 235, + 292 + ], + "score": 1.0, + "content": "conder conderemos V;IND;FUT;1;PL", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 293, + 284, + 303 + ], + "spans": [ + { + "bbox": [ + 107, + 293, + 284, + 303 + ], + "score": 1.0, + "content": "florear florearían V;IND;PST;3;PL;LGSPEC1;SG", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 305, + 271, + 313 + ], + "spans": [ + { + "bbox": [ + 107, + 305, + 271, + 313 + ], + "score": 1.0, + "content": "sabrordar sabrordamos V;IND;PST;1;PL;IPFV", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5, + "bbox_fs": [ + 107, + 228, + 288, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 320, + 504, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 289, + 333 + ], + "score": 1.0, + "content": "Below are a set of samples from the recomb-", + "type": "text" + }, + { + "bbox": [ + 289, + 320, + 305, + 330 + ], + "score": 0.8, + "content": "l +", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 318, + 505, + 333 + ], + "score": 1.0, + "content": "resampling model (the best performing model in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 389, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 389, + 343 + ], + "score": 1.0, + "content": "Table 2). Here we additionally annotate samples with error categories.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 318, + 505, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 348, + 491, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 443, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 443, + 360 + ], + "score": 1.0, + "content": "kovulmak kovulmaz mısınız V;IND;2;PL;FUT;NEG;INTR (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 364, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 364, + 371 + ], + "score": 1.0, + "content": "düşünmek düşündüler V;IND;3;PL;PST;POS;DECL (Correct and novel.)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 371, + 423, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 423, + 381 + ], + "score": 1.0, + "content": "sütmek sütmez miyiz? V;IND;2;SG;FUT;NEG;INTR (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 383, + 434, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 434, + 392 + ], + "score": 1.0, + "content": "bakmak bakmayacak mıyım? V;IND;1;PL;FUT;NEG;INTR (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 392, + 404, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 404, + 403 + ], + "score": 1.0, + "content": "döndürmek döndürecek misiniz? V;IND;2;PL;FUT;POS;INTR (Correct and novel.)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 403, + 491, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 491, + 415 + ], + "score": 1.0, + "content": "türkçeleştirtmek türkçeleştirtiyor m V;IND;2;PL;PST;PROG;NEG;INTR (Wrong inflection, novel tag.)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 415, + 404, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 404, + 425 + ], + "score": 1.0, + "content": "çalmak çalmayız V;IND;2;PL;FUT;POS;DECL (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 425, + 415, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 415, + 437 + ], + "score": 1.0, + "content": "üsürmek üsürmezsin V;IND;2;SG;PST;NEG;DECL (Inflection and tags don’t match.)", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 349, + 491, + 437 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 447, + 427, + 534 + ], + "lines": [ + { + "bbox": [ + 107, + 448, + 327, + 457 + ], + "spans": [ + { + "bbox": [ + 107, + 448, + 327, + 457 + ], + "score": 1.0, + "content": "duplicar duplicaráis V;IND;FUT;2;PL (Correct and novel)", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 459, + 367, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 367, + 469 + ], + "score": 1.0, + "content": "efundar efundan V;SBJV;FUT;3;PL (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 470, + 375, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 375, + 479 + ], + "score": 1.0, + "content": "deshumanizar deshumanicas V;SBJV;PST;2;SG (Inplausible inflection.)", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 481, + 363, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 363, + 490 + ], + "score": 1.0, + "content": "emular emulares V;SBJV;FUT;2;SG (Correct and also in train set.)", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 492, + 426, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 426, + 502 + ], + "score": 1.0, + "content": "languidecer languidecíamos V;IND;PST;1;SG;IPFV (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 502, + 384, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 384, + 513 + ], + "score": 1.0, + "content": "nominar nominamos V;SBJV;FUT;1;PL (Novel tags, incorrect inflection.)", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 514, + 319, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 319, + 524 + ], + "score": 1.0, + "content": "finciar finciare V;SBJV;FUT;1;SG (Correct and novel.)", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 525, + 358, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 358, + 534 + ], + "score": 1.0, + "content": "abastar abasto V;IND;PST;1;SG (Inflection and tags don’t match)", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 448, + 426, + 534 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 229, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 230, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 230, + 95 + ], + "score": 1.0, + "content": "G.4 ATTENTION HEATMAP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 103, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "Here we provide a visualization copy and attention mechanism in recomb-2 model for SCAN", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 161, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 161, + 127 + ], + "score": 1.0, + "content": "experiments.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "image", + "bbox": [ + 106, + 137, + 505, + 534 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 137, + 505, + 534 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 534 + ], + "score": 0.979, + "type": "image", + "image_path": "010da7139c478be872214ea2c500b70f5256aa5879a8b45e8f401cb24f16a4cc.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 106, + 137, + 505, + 269.33333333333337 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 269.33333333333337, + 505, + 401.66666666666674 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 401.66666666666674, + 505, + 534.0000000000001 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 543, + 505, + 574 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "Figure 3: Generation of a sample. We plot normalized output scores on the left, and attention weights to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "different prototypes on the right. The prototypes are on the y axes. The model is recomb-2 model trained on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 563, + 173, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 173, + 574 + ], + "score": 1.0, + "content": "SCAN jump split.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 107, + 595, + 180, + 608 + ], + "lines": [ + { + "bbox": [ + 104, + 594, + 182, + 610 + ], + "spans": [ + { + "bbox": [ + 104, + 594, + 182, + 610 + ], + "score": 1.0, + "content": "H COMPUTE", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "We use a single 32GB NVIDIA V100 Volta GPU for each experiment. For every experiment, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "whole pipeline which consists of training of the generative model, sampling and training of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 643, + 275, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 275, + 654 + ], + "score": 1.0, + "content": "conditional model takes less than an hour.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "page_idx": 21, + "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": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 229, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 230, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 230, + 95 + ], + "score": 1.0, + "content": "G.4 ATTENTION HEATMAP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 103, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "Here we provide a visualization copy and attention mechanism in recomb-2 model for SCAN", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 161, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 161, + 127 + ], + "score": 1.0, + "content": "experiments.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 102, + 505, + 127 + ] + }, + { + "type": "image", + "bbox": [ + 106, + 137, + 505, + 534 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 137, + 505, + 534 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 534 + ], + "score": 0.979, + "type": "image", + "image_path": "010da7139c478be872214ea2c500b70f5256aa5879a8b45e8f401cb24f16a4cc.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 106, + 137, + 505, + 269.33333333333337 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 269.33333333333337, + 505, + 401.66666666666674 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 401.66666666666674, + 505, + 534.0000000000001 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 543, + 505, + 574 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "Figure 3: Generation of a sample. We plot normalized output scores on the left, and attention weights to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "different prototypes on the right. The prototypes are on the y axes. The model is recomb-2 model trained on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 563, + 173, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 173, + 574 + ], + "score": 1.0, + "content": "SCAN jump split.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 107, + 595, + 180, + 608 + ], + "lines": [ + { + "bbox": [ + 104, + 594, + 182, + 610 + ], + "spans": [ + { + "bbox": [ + 104, + 594, + 182, + 610 + ], + "score": 1.0, + "content": "H COMPUTE", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "We use a single 32GB NVIDIA V100 Volta GPU for each experiment. For every experiment, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "whole pipeline which consists of training of the generative model, sampling and training of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 643, + 275, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 275, + 654 + ], + "score": 1.0, + "content": "conditional model takes less than an hour.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 619, + 505, + 654 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/PS3IMnScugk/PS3IMnScugk_model.json b/parse/train/PS3IMnScugk/PS3IMnScugk_model.json new file mode 100644 index 0000000000000000000000000000000000000000..c6f7f9680a3e774e5e0ec8047c59d467dc88028f --- /dev/null +++ b/parse/train/PS3IMnScugk/PS3IMnScugk_model.json @@ -0,0 +1,28763 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 620, + 1305, + 620, + 1305, + 1046, + 398, + 1046 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 299, + 1164, + 936, + 1164, + 936, + 1591, + 299, + 1591 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1608, + 935, + 1608, + 935, + 2034, + 299, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 3, + "poly": [ + 965, + 1178, + 1396, + 1178, + 1396, + 1675, + 965, + 1675 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 957, + 1703, + 1403, + 1703, + 1403, + 2010, + 957, + 2010 + ], + "score": 0.964 + }, + { + "category_id": 0, + "poly": [ + 299, + 219, + 1400, + 219, + 1400, + 324, + 299, + 324 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 314, + 375, + 526, + 375, + 526, + 468, + 314, + 468 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 1080, + 376, + 1260, + 376, + 1260, + 469, + 1080, + 469 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 682, + 375, + 925, + 375, + 925, + 468, + 682, + 468 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 302, + 1094, + 573, + 1094, + 573, + 1128, + 302, + 1128 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 772, + 550, + 927, + 550, + 927, + 583, + 772, + 583 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.738 + }, + { + "category_id": 13, + "poly": [ + 1206, + 1733, + 1271, + 1733, + 1271, + 1763, + 1206, + 1763 + ], + "score": 0.88, + "latex": "( x \\triangleright y )" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1958, + 1056, + 1958, + 1056, + 1982, + 1038, + 1982 + ], + "score": 0.79, + "latex": "_ y" + }, + { + "category_id": 13, + "poly": [ + 1230, + 1959, + 1248, + 1959, + 1248, + 1979, + 1230, + 1979 + ], + "score": 0.77, + "latex": "_ x" + }, + { + "category_id": 13, + "poly": [ + 1143, + 1847, + 1161, + 1847, + 1161, + 1872, + 1143, + 1872 + ], + "score": 0.72, + "latex": "_ y" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1185.0, + 1243.0, + 1185.0, + 1243.0, + 1213.0, + 1117.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1227.0, + 1349.0, + 1227.0, + 1349.0, + 1261.0, + 1014.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1268.0, + 1189.0, + 1268.0, + 1189.0, + 1290.0, + 1171.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1301.0, + 1350.0, + 1301.0, + 1350.0, + 1334.0, + 1010.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1343.0, + 1189.0, + 1343.0, + 1189.0, + 1365.0, + 1171.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1369.0, + 1361.0, + 1369.0, + 1361.0, + 1400.0, + 1000.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1390.0, + 1365.0, + 1390.0, + 1365.0, + 1420.0, + 1281.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1461.0, + 1254.0, + 1461.0, + 1254.0, + 1487.0, + 1109.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1511.0, + 1064.0, + 1511.0, + 1064.0, + 1541.0, + 1002.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1508.0, + 1359.0, + 1508.0, + 1359.0, + 1541.0, + 1067.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1585.0, + 1299.0, + 1585.0, + 1299.0, + 1612.0, + 1068.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1631.0, + 1358.0, + 1631.0, + 1358.0, + 1658.0, + 1003.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1705.0, + 1405.0, + 1705.0, + 1405.0, + 1735.0, + 956.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1733.0, + 1205.0, + 1733.0, + 1205.0, + 1764.0, + 955.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1733.0, + 1407.0, + 1733.0, + 1407.0, + 1764.0, + 1272.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1790.0, + 954.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1786.0, + 1404.0, + 1786.0, + 1404.0, + 1820.0, + 954.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1812.0, + 1405.0, + 1812.0, + 1405.0, + 1849.0, + 954.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1845.0, + 1142.0, + 1845.0, + 1142.0, + 1872.0, + 956.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1845.0, + 1405.0, + 1845.0, + 1405.0, + 1872.0, + 1162.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1871.0, + 1407.0, + 1871.0, + 1407.0, + 1901.0, + 955.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1898.0, + 1404.0, + 1898.0, + 1404.0, + 1928.0, + 956.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1927.0, + 1405.0, + 1927.0, + 1405.0, + 1957.0, + 955.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1954.0, + 1037.0, + 1954.0, + 1037.0, + 1987.0, + 954.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1954.0, + 1229.0, + 1954.0, + 1229.0, + 1987.0, + 1057.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1954.0, + 1408.0, + 1954.0, + 1408.0, + 1987.0, + 1249.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1983.0, + 1249.0, + 1983.0, + 1249.0, + 2013.0, + 955.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 219.0, + 1404.0, + 219.0, + 1404.0, + 273.0, + 292.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 270.0, + 1037.0, + 270.0, + 1037.0, + 331.0, + 293.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1090.0, + 579.0, + 1090.0, + 579.0, + 1136.0, + 294.0, + 1136.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": [ + 769.0, + 549.0, + 932.0, + 549.0, + 932.0, + 586.0, + 769.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 619.0, + 1309.0, + 619.0, + 1309.0, + 654.0, + 394.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 650.0, + 1306.0, + 650.0, + 1306.0, + 688.0, + 393.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 682.0, + 1305.0, + 682.0, + 1305.0, + 716.0, + 393.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 709.0, + 1309.0, + 709.0, + 1309.0, + 750.0, + 391.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 744.0, + 1308.0, + 744.0, + 1308.0, + 774.0, + 392.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 772.0, + 1310.0, + 772.0, + 1310.0, + 807.0, + 392.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 804.0, + 1309.0, + 804.0, + 1309.0, + 836.0, + 394.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 836.0, + 1305.0, + 836.0, + 1305.0, + 868.0, + 395.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 866.0, + 1308.0, + 866.0, + 1308.0, + 898.0, + 395.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 894.0, + 1307.0, + 894.0, + 1307.0, + 929.0, + 392.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 922.0, + 1305.0, + 922.0, + 1305.0, + 961.0, + 393.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 955.0, + 1305.0, + 955.0, + 1305.0, + 989.0, + 392.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 985.0, + 1306.0, + 985.0, + 1306.0, + 1020.0, + 393.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1014.0, + 891.0, + 1014.0, + 891.0, + 1052.0, + 392.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1164.0, + 939.0, + 1164.0, + 939.0, + 1196.0, + 296.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1193.0, + 941.0, + 1193.0, + 941.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1226.0, + 937.0, + 1226.0, + 937.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 941.0, + 1256.0, + 941.0, + 1288.0, + 294.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 937.0, + 1288.0, + 937.0, + 1320.0, + 295.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 938.0, + 1317.0, + 938.0, + 1352.0, + 295.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1348.0, + 936.0, + 1348.0, + 936.0, + 1383.0, + 295.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1377.0, + 937.0, + 1377.0, + 937.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1406.0, + 939.0, + 1406.0, + 939.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1437.0, + 939.0, + 1437.0, + 939.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1468.0, + 940.0, + 1468.0, + 940.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 937.0, + 1501.0, + 937.0, + 1532.0, + 294.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 937.0, + 1529.0, + 937.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1559.0, + 831.0, + 1559.0, + 831.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1605.0, + 936.0, + 1605.0, + 936.0, + 1643.0, + 296.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1638.0, + 938.0, + 1638.0, + 938.0, + 1670.0, + 297.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 938.0, + 1668.0, + 938.0, + 1703.0, + 295.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 936.0, + 1698.0, + 936.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1726.0, + 941.0, + 1726.0, + 941.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1760.0, + 937.0, + 1760.0, + 937.0, + 1792.0, + 295.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1789.0, + 937.0, + 1789.0, + 937.0, + 1823.0, + 295.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 937.0, + 1822.0, + 937.0, + 1853.0, + 294.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1852.0, + 937.0, + 1852.0, + 937.0, + 1884.0, + 296.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 937.0, + 1882.0, + 937.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 937.0, + 1910.0, + 937.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 937.0, + 1943.0, + 937.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 940.0, + 1973.0, + 940.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 937.0, + 2004.0, + 937.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 375.0, + 487.0, + 375.0, + 487.0, + 407.0, + 311.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 404.0, + 460.0, + 404.0, + 460.0, + 440.0, + 310.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 437.0, + 529.0, + 437.0, + 529.0, + 470.0, + 311.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 372.0, + 1264.0, + 372.0, + 1264.0, + 410.0, + 1076.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 404.0, + 1226.0, + 404.0, + 1226.0, + 440.0, + 1076.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 437.0, + 1241.0, + 437.0, + 1241.0, + 472.0, + 1078.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 375.0, + 928.0, + 375.0, + 928.0, + 410.0, + 679.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 402.0, + 889.0, + 402.0, + 889.0, + 443.0, + 677.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 437.0, + 882.0, + 437.0, + 882.0, + 472.0, + 679.0, + 472.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 367, + 1404, + 367, + 1404, + 735, + 298, + 735 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1046, + 1405, + 1046, + 1405, + 1384, + 298, + 1384 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 750, + 1403, + 750, + 1403, + 934, + 298, + 934 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1402, + 229, + 1402, + 352, + 299, + 352 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1769, + 1404, + 1769, + 1404, + 1957, + 297, + 1957 + ], + "score": 0.97 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1407, + 1977, + 1407, + 2035, + 296, + 2035 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 478, + 1654, + 1218, + 1654, + 1218, + 1744, + 478, + 1744 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 299, + 980, + 862, + 980, + 862, + 1013, + 299, + 1013 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 297, + 1398, + 1406, + 1398, + 1406, + 1644, + 297, + 1644 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1660, + 1400, + 1660, + 1400, + 1690, + 1366, + 1690 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.748 + }, + { + "category_id": 13, + "poly": [ + 397, + 1612, + 479, + 1612, + 479, + 1646, + 397, + 1646 + ], + "score": 0.94, + "latex": "u ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1581, + 1138, + 1581, + 1138, + 1615, + 1003, + 1615 + ], + "score": 0.93, + "latex": "\\tilde { p ( \\boldsymbol { x } , \\boldsymbol { y } \\mid \\boldsymbol { D } ) }" + }, + { + "category_id": 14, + "poly": [ + 477, + 1651, + 1220, + 1651, + 1220, + 1747, + 477, + 1747 + ], + "score": 0.82, + "latex": "\\begin{array} { r } { \\mathcal { L } ( \\theta ) = \\underbrace { \\frac { 1 } { | \\mathcal { D } | } \\sum _ { x \\in \\mathcal { D } } \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { O r i g i n a l t r a i n i n g d a t a } } + \\underbrace { { \\mathbb { E } } _ { ( x , y ) \\sim \\tilde { p } } u ( x , y ) \\log p _ { \\theta } ( y \\mid x ) } _ { \\mathrm { A u g m e n t e d d a t a } } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 894, + 1553, + 920, + 1553, + 920, + 1579, + 894, + 1579 + ], + "score": 0.76, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 550, + 1262, + 634, + 1262, + 634, + 1292, + 550, + 1292 + ], + "score": 0.57, + "latex": "{ \\sf r } ( { \\sf b } , \\sf a )" + }, + { + "category_id": 13, + "poly": [ + 431, + 1262, + 515, + 1262, + 515, + 1292, + 431, + 1292 + ], + "score": 0.5, + "latex": "\\boldsymbol { \\Gamma } ( \\mathsf { a } , \\mathsf { b } )" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2011.0, + 332.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2005.0, + 1176.0, + 2005.0, + 1176.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 977.0, + 866.0, + 977.0, + 866.0, + 1018.0, + 292.0, + 1018.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, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 366.0, + 1406.0, + 366.0, + 1406.0, + 405.0, + 292.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 397.0, + 1405.0, + 397.0, + 1405.0, + 438.0, + 292.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 464.0, + 294.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 460.0, + 1406.0, + 460.0, + 1406.0, + 497.0, + 292.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 528.0, + 292.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 523.0, + 1405.0, + 523.0, + 1405.0, + 557.0, + 294.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 553.0, + 1405.0, + 553.0, + 1405.0, + 588.0, + 294.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 620.0, + 292.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 613.0, + 1405.0, + 613.0, + 1405.0, + 647.0, + 294.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 641.0, + 1407.0, + 641.0, + 1407.0, + 678.0, + 292.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 674.0, + 1407.0, + 674.0, + 1407.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 705.0, + 1357.0, + 705.0, + 1357.0, + 739.0, + 296.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1046.0, + 1406.0, + 1046.0, + 1406.0, + 1084.0, + 296.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1079.0, + 1406.0, + 1079.0, + 1406.0, + 1112.0, + 293.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1107.0, + 1406.0, + 1107.0, + 1406.0, + 1144.0, + 293.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1175.0, + 295.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1168.0, + 1405.0, + 1168.0, + 1405.0, + 1205.0, + 293.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1199.0, + 1406.0, + 1199.0, + 1406.0, + 1236.0, + 293.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1232.0, + 1403.0, + 1232.0, + 1403.0, + 1264.0, + 295.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1254.0, + 430.0, + 1254.0, + 430.0, + 1301.0, + 291.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1254.0, + 549.0, + 1254.0, + 549.0, + 1301.0, + 516.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1254.0, + 1411.0, + 1254.0, + 1411.0, + 1301.0, + 635.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1291.0, + 1407.0, + 1291.0, + 1407.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 1408.0, + 1322.0, + 1408.0, + 1357.0, + 295.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1354.0, + 779.0, + 1354.0, + 779.0, + 1385.0, + 296.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 751.0, + 1405.0, + 751.0, + 1405.0, + 786.0, + 294.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 780.0, + 1407.0, + 780.0, + 1407.0, + 819.0, + 293.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 812.0, + 1405.0, + 812.0, + 1405.0, + 846.0, + 293.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 842.0, + 1406.0, + 842.0, + 1406.0, + 877.0, + 292.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 872.0, + 1405.0, + 872.0, + 1405.0, + 907.0, + 293.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 903.0, + 653.0, + 903.0, + 653.0, + 937.0, + 293.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 263.0, + 1406.0, + 263.0, + 1406.0, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 1406.0, + 293.0, + 1406.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1342.0, + 320.0, + 1342.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1804.0, + 296.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1868.0, + 295.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1863.0, + 1405.0, + 1863.0, + 1405.0, + 1899.0, + 295.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1893.0, + 1409.0, + 1893.0, + 1409.0, + 1930.0, + 292.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1923.0, + 1406.0, + 1923.0, + 1406.0, + 1959.0, + 295.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 1407.0, + 1398.0, + 1407.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1429.0, + 1408.0, + 1429.0, + 1408.0, + 1463.0, + 292.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1457.0, + 1407.0, + 1457.0, + 1407.0, + 1497.0, + 292.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1491.0, + 1404.0, + 1491.0, + 1404.0, + 1525.0, + 295.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1521.0, + 1404.0, + 1521.0, + 1404.0, + 1555.0, + 295.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1552.0, + 893.0, + 1552.0, + 893.0, + 1586.0, + 294.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1586.0, + 921.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1580.0, + 1002.0, + 1580.0, + 1002.0, + 1620.0, + 292.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1580.0, + 1406.0, + 1580.0, + 1406.0, + 1620.0, + 1139.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1610.0, + 396.0, + 1610.0, + 396.0, + 1648.0, + 292.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1610.0, + 1028.0, + 1610.0, + 1028.0, + 1648.0, + 480.0, + 1648.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1074, + 1404, + 1074, + 1404, + 1291, + 298, + 1291 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 845, + 1404, + 845, + 1404, + 1060, + 298, + 1060 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 614, + 1404, + 614, + 1404, + 831, + 297, + 831 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1401, + 1404, + 1401, + 1404, + 1558, + 297, + 1558 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 367, + 1405, + 367, + 1405, + 554, + 296, + 554 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 353, + 298, + 353 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1664, + 1403, + 1664, + 1403, + 1789, + 297, + 1789 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 661, + 1571, + 1037, + 1571, + 1037, + 1652, + 661, + 1652 + ], + "score": 0.959 + }, + { + "category_id": 2, + "poly": [ + 296, + 1809, + 1404, + 1809, + 1404, + 2035, + 296, + 2035 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 593, + 566, + 1105, + 566, + 1105, + 603, + 593, + 603 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 295, + 1336, + 1309, + 1336, + 1309, + 1370, + 295, + 1370 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1589, + 1399, + 1589, + 1399, + 1619, + 1366, + 1619 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 570, + 1399, + 570, + 1399, + 599, + 1366, + 599 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.656 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.378 + }, + { + "category_id": 14, + "poly": [ + 661, + 1568, + 1038, + 1568, + 1038, + 1653, + 661, + 1653 + ], + "score": 0.95, + "latex": "p ( d ) = { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { D } } } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 837, + 1756, + 1059, + 1756, + 1059, + 1790, + 837, + 1790 + ], + "score": 0.92, + "latex": "p _ { \\theta } ( d \\mid d ^ { \\prime } = d ) = 1" + }, + { + "category_id": 13, + "poly": [ + 719, + 678, + 784, + 678, + 784, + 711, + 719, + 711 + ], + "score": 0.92, + "latex": "( x , y )" + }, + { + "category_id": 14, + "poly": [ + 593, + 564, + 1106, + 564, + 1106, + 603, + 593, + 603 + ], + "score": 0.92, + "latex": "d \\sim p _ { \\mathrm { r e w r i t e } } ( \\cdot \\mid d ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d ^ { \\prime } \\sim \\mathrm { U n i f } ( \\mathcal { D } ) ;" + }, + { + "category_id": 13, + "poly": [ + 897, + 615, + 1076, + 615, + 1076, + 650, + 897, + 650 + ], + "score": 0.91, + "latex": "p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 846, + 1840, + 901, + 1840, + 901, + 1864, + 846, + 1864 + ], + "score": 0.88, + "latex": "a ^ { n } b ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1949, + 353, + 1949, + 353, + 1976, + 298, + 1976 + ], + "score": 0.86, + "latex": "a ^ { n } b ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 845, + 1868, + 900, + 1868, + 900, + 1892, + 845, + 1892 + ], + "score": 0.86, + "latex": "a ^ { n } b ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 674, + 713, + 747, + 713, + 747, + 740, + 674, + 740 + ], + "score": 0.85, + "latex": "p _ { \\mathrm { r e w r i t e } }" + }, + { + "category_id": 13, + "poly": [ + 1254, + 1169, + 1279, + 1169, + 1279, + 1195, + 1254, + 1195 + ], + "score": 0.84, + "latex": "d ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 435, + 618, + 461, + 618, + 461, + 644, + 435, + 644 + ], + "score": 0.83, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 472, + 1761, + 502, + 1761, + 502, + 1789, + 472, + 1789 + ], + "score": 0.83, + "latex": "p _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1231, + 771, + 1248, + 771, + 1248, + 796, + 1231, + 796 + ], + "score": 0.81, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 387, + 1199, + 405, + 1199, + 405, + 1225, + 387, + 1225 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 469, + 649, + 487, + 649, + 487, + 675, + 469, + 675 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1667, + 1036, + 1667, + 1036, + 1693, + 1018, + 1693 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 632, + 679, + 651, + 679, + 651, + 705, + 632, + 705 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1672, + 1294, + 1672, + 1294, + 1698, + 1220, + 1698 + ], + "score": 0.78, + "latex": "p _ { \\mathrm { r e w r i t e } }" + }, + { + "category_id": 13, + "poly": [ + 1313, + 1871, + 1330, + 1871, + 1330, + 1892, + 1313, + 1892 + ], + "score": 0.7, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 561, + 1927, + 578, + 1927, + 578, + 1947, + 561, + 1947 + ], + "score": 0.67, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 306, + 431, + 324, + 431, + 324, + 461, + 306, + 461 + ], + "score": 0.65, + "latex": "\\tilde { p }" + }, + { + "category_id": 13, + "poly": [ + 845, + 1895, + 998, + 1895, + 998, + 1924, + 845, + 1924 + ], + "score": 0.35, + "latex": "( a \\underline { { a } } b b , a \\underline { { a } } a b b b )" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1806.0, + 1406.0, + 1806.0, + 1406.0, + 1847.0, + 328.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1838.0, + 845.0, + 1838.0, + 845.0, + 1870.0, + 293.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1838.0, + 1405.0, + 1838.0, + 1405.0, + 1870.0, + 902.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1866.0, + 844.0, + 1866.0, + 844.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1866.0, + 1312.0, + 1866.0, + 1312.0, + 1897.0, + 901.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1866.0, + 1405.0, + 1866.0, + 1405.0, + 1897.0, + 1331.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1893.0, + 844.0, + 1893.0, + 844.0, + 1927.0, + 293.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1893.0, + 1406.0, + 1893.0, + 1406.0, + 1927.0, + 999.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1922.0, + 560.0, + 1922.0, + 560.0, + 1954.0, + 294.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1922.0, + 1405.0, + 1922.0, + 1405.0, + 1954.0, + 579.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1945.0, + 297.0, + 1945.0, + 297.0, + 1986.0, + 291.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1986.0, + 354.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1978.0, + 1405.0, + 1978.0, + 1405.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 1083.0, + 2004.0, + 1083.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1332.0, + 1316.0, + 1332.0, + 1316.0, + 1378.0, + 289.0, + 1378.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": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1071.0, + 1405.0, + 1071.0, + 1405.0, + 1114.0, + 292.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1108.0, + 1405.0, + 1108.0, + 1405.0, + 1139.0, + 296.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1134.0, + 1406.0, + 1134.0, + 1406.0, + 1176.0, + 289.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1168.0, + 1253.0, + 1168.0, + 1253.0, + 1201.0, + 292.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1168.0, + 1404.0, + 1168.0, + 1404.0, + 1201.0, + 1280.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1196.0, + 386.0, + 1196.0, + 386.0, + 1233.0, + 292.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1196.0, + 1405.0, + 1196.0, + 1405.0, + 1233.0, + 406.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1230.0, + 1406.0, + 1230.0, + 1406.0, + 1264.0, + 294.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1259.0, + 1185.0, + 1259.0, + 1185.0, + 1294.0, + 296.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 1404.0, + 847.0, + 1404.0, + 881.0, + 294.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 875.0, + 1405.0, + 875.0, + 1405.0, + 912.0, + 293.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 907.0, + 1404.0, + 907.0, + 1404.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 935.0, + 1406.0, + 935.0, + 1406.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 968.0, + 1404.0, + 968.0, + 1404.0, + 1003.0, + 294.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 997.0, + 1404.0, + 997.0, + 1404.0, + 1035.0, + 293.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1029.0, + 694.0, + 1029.0, + 694.0, + 1062.0, + 295.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 615.0, + 434.0, + 615.0, + 434.0, + 653.0, + 294.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 615.0, + 896.0, + 615.0, + 896.0, + 653.0, + 462.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 615.0, + 1406.0, + 615.0, + 1406.0, + 653.0, + 1077.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 647.0, + 468.0, + 647.0, + 468.0, + 682.0, + 295.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 647.0, + 1404.0, + 647.0, + 1404.0, + 682.0, + 488.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 678.0, + 631.0, + 678.0, + 631.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 678.0, + 718.0, + 678.0, + 718.0, + 713.0, + 652.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 678.0, + 1406.0, + 678.0, + 1406.0, + 713.0, + 785.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 703.0, + 673.0, + 703.0, + 673.0, + 747.0, + 291.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 703.0, + 1409.0, + 703.0, + 1409.0, + 747.0, + 748.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 740.0, + 1402.0, + 740.0, + 1402.0, + 771.0, + 296.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 767.0, + 1230.0, + 767.0, + 1230.0, + 804.0, + 292.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 767.0, + 1404.0, + 767.0, + 1404.0, + 804.0, + 1249.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 799.0, + 405.0, + 799.0, + 405.0, + 836.0, + 294.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1402.0, + 1404.0, + 1402.0, + 1404.0, + 1439.0, + 295.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1431.0, + 1406.0, + 1431.0, + 1406.0, + 1471.0, + 292.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1462.0, + 1407.0, + 1462.0, + 1407.0, + 1501.0, + 292.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1490.0, + 1406.0, + 1490.0, + 1406.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1521.0, + 961.0, + 1521.0, + 961.0, + 1565.0, + 292.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 367.0, + 1406.0, + 367.0, + 1406.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, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 426.0, + 305.0, + 426.0, + 305.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 426.0, + 1408.0, + 426.0, + 1408.0, + 466.0, + 325.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 457.0, + 1407.0, + 457.0, + 1407.0, + 498.0, + 293.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 490.0, + 1408.0, + 490.0, + 1408.0, + 525.0, + 293.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 519.0, + 1408.0, + 519.0, + 1408.0, + 557.0, + 294.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 230.0, + 1408.0, + 230.0, + 1408.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1409.0, + 292.0, + 1409.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 322.0, + 1262.0, + 322.0, + 1262.0, + 356.0, + 292.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1663.0, + 1017.0, + 1663.0, + 1017.0, + 1702.0, + 292.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1663.0, + 1219.0, + 1663.0, + 1219.0, + 1702.0, + 1037.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1663.0, + 1407.0, + 1663.0, + 1407.0, + 1702.0, + 1295.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1694.0, + 1404.0, + 1694.0, + 1404.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1725.0, + 1405.0, + 1725.0, + 1405.0, + 1762.0, + 295.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1756.0, + 471.0, + 1756.0, + 471.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1756.0, + 836.0, + 1756.0, + 836.0, + 1792.0, + 503.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1756.0, + 1405.0, + 1756.0, + 1405.0, + 1792.0, + 1060.0, + 1792.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 889, + 1405, + 889, + 1405, + 1105, + 297, + 1105 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1196, + 1403, + 1196, + 1403, + 1291, + 298, + 1291 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1782, + 1405, + 1782, + 1405, + 1877, + 299, + 1877 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1399, + 228, + 1399, + 324, + 296, + 324 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 296, + 1368, + 1406, + 1368, + 1406, + 1690, + 296, + 1690 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 696, + 728, + 1007, + 728, + 1007, + 802, + 696, + 802 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 812, + 1405, + 812, + 1405, + 875, + 299, + 875 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 636, + 334, + 1059, + 334, + 1059, + 416, + 636, + 416 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 653, + 1399, + 653, + 1399, + 717, + 297, + 717 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 473, + 1303, + 1224, + 1303, + 1224, + 1349, + 473, + 1349 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 299, + 1140, + 638, + 1140, + 638, + 1171, + 299, + 1171 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 468, + 466, + 1232, + 466, + 1232, + 547, + 468, + 547 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 294, + 427, + 1145, + 427, + 1145, + 459, + 294, + 459 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 301, + 1726, + 712, + 1726, + 712, + 1758, + 301, + 1758 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1365, + 352, + 1400, + 352, + 1400, + 381, + 1365, + 381 + ], + "score": 0.881 + }, + { + "category_id": 8, + "poly": [ + 620, + 1934, + 1077, + 1934, + 1077, + 1970, + 620, + 1970 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1366, + 736, + 1400, + 736, + 1400, + 766, + 1366, + 766 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1366, + 578, + 1400, + 578, + 1400, + 607, + 1366, + 607 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1365, + 484, + 1401, + 484, + 1401, + 515, + 1365, + 515 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1312, + 1400, + 1312, + 1400, + 1341, + 1366, + 1341 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1938, + 1400, + 1938, + 1400, + 1964, + 1369, + 1964 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2111, + 840, + 2111 + ], + "score": 0.799 + }, + { + "category_id": 2, + "poly": [ + 331, + 1896, + 983, + 1896, + 983, + 1926, + 331, + 1926 + ], + "score": 0.781 + }, + { + "category_id": 2, + "poly": [ + 296, + 1978, + 1411, + 1978, + 1411, + 2034, + 296, + 2034 + ], + "score": 0.762 + }, + { + "category_id": 8, + "poly": [ + 567, + 556, + 1196, + 556, + 1196, + 642, + 567, + 642 + ], + "score": 0.732 + }, + { + "category_id": 8, + "poly": [ + 470, + 465, + 1223, + 465, + 1223, + 643, + 470, + 643 + ], + "score": 0.256 + }, + { + "category_id": 1, + "poly": [ + 296, + 1978, + 1411, + 1978, + 1411, + 2034, + 296, + 2034 + ], + "score": 0.132 + }, + { + "category_id": 14, + "poly": [ + 637, + 330, + 1062, + 330, + 1062, + 419, + 637, + 419 + ], + "score": 0.95, + "latex": "p ( d ) \\geq { \\frac { 1 } { | { \\mathcal { D } } | } } \\sum _ { d ^ { \\prime } \\in { \\mathcal { N } } ( d ) } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) ~ ." + }, + { + "category_id": 14, + "poly": [ + 695, + 725, + 1010, + 725, + 1010, + 805, + 695, + 805 + ], + "score": 0.94, + "latex": "\\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta )" + }, + { + "category_id": 14, + "poly": [ + 467, + 461, + 1233, + 461, + 1233, + 646, + 467, + 646 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { \\displaystyle \\log p ( { d } ) \\geq \\log \\left( | \\mathcal { N } ( d ) | \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\frac { 1 } { | \\mathcal { N } ( d ) | } p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) \\right) - \\log | \\mathcal { D } | } \\\\ { \\geq \\displaystyle \\frac { 1 } { | \\mathcal { N } ( d ) | } \\sum _ { d ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ; \\theta ) + \\log \\left( \\frac { | \\mathcal { N } ( d ) | } { | \\mathcal { D } | } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 489, + 291, + 613, + 291, + 613, + 325, + 489, + 325 + ], + "score": 0.93, + "latex": "\\bar { \\mathcal { N } } ( d ) \\subset \\mathcal { D }" + }, + { + "category_id": 14, + "poly": [ + 622, + 1932, + 1079, + 1932, + 1079, + 1970, + 622, + 1970 + ], + "score": 0.92, + "latex": "p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } ) = \\mathbb { E } _ { z \\sim p ( z ) } [ p _ { \\mathrm { r e w r i t e } } ( d \\mid d ^ { \\prime } , z ; \\theta ) ]" + }, + { + "category_id": 13, + "poly": [ + 1084, + 842, + 1231, + 842, + 1231, + 876, + 1084, + 876 + ], + "score": 0.92, + "latex": "d , d ^ { \\prime } \\in \\mathcal { N } ( d )" + }, + { + "category_id": 13, + "poly": [ + 873, + 654, + 954, + 654, + 954, + 688, + 873, + 688 + ], + "score": 0.92, + "latex": "| \\mathcal { N } ( d ) |" + }, + { + "category_id": 13, + "poly": [ + 517, + 1555, + 695, + 1555, + 695, + 1593, + 517, + 1593 + ], + "score": 0.91, + "latex": "p _ { \\Omega } \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\operatorname { U n i f } ( \\Omega )" + }, + { + "category_id": 13, + "poly": [ + 459, + 1593, + 597, + 1593, + 597, + 1620, + 459, + 1620 + ], + "score": 0.89, + "latex": "\\mathcal { N } : \\mathcal { D } \\Omega" + }, + { + "category_id": 13, + "poly": [ + 984, + 1621, + 1346, + 1621, + 1346, + 1663, + 984, + 1663 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\sum _ { d _ { 1 : n } ^ { \\prime } \\in \\mathcal { N } ( d ) } \\log p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1523, + 1400, + 1523, + 1400, + 1552, + 1304, + 1552 + ], + "score": 0.89, + "latex": "\\Omega \\subset { \\mathcal { D } } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1435, + 1248, + 1435, + 1248, + 1464, + 1171, + 1464 + ], + "score": 0.88, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 14, + "poly": [ + 474, + 1300, + 1224, + 1300, + 1224, + 1347, + 474, + 1347 + ], + "score": 0.88, + "latex": "d \\sim p _ { \\mathrm { r e c o m b } } ( \\cdot \\mid d _ { 1 : n } ^ { \\prime } ; \\theta ) \\quad \\mathrm { w h e r e } \\quad d _ { 1 : n } ^ { \\prime } \\stackrel { \\scriptscriptstyle \\mathrm { d e f } } { = } ( d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } , \\ldots , d _ { n } ^ { \\prime } ) \\sim p _ { \\Omega } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 953, + 894, + 1026, + 894, + 1026, + 922, + 953, + 922 + ], + "score": 0.86, + "latex": "p _ { \\mathrm { r e w r i t e } }" + }, + { + "category_id": 13, + "poly": [ + 863, + 1848, + 939, + 1848, + 939, + 1876, + 863, + 1876 + ], + "score": 0.86, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 13, + "poly": [ + 919, + 954, + 992, + 954, + 992, + 983, + 919, + 983 + ], + "score": 0.85, + "latex": "p _ { \\mathrm { r e w r i t e } }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1661, + 571, + 1661, + 571, + 1690, + 494, + 1690 + ], + "score": 0.84, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 13, + "poly": [ + 457, + 428, + 486, + 428, + 486, + 454, + 457, + 454 + ], + "score": 0.84, + "latex": "\\mathcal { N }" + }, + { + "category_id": 13, + "poly": [ + 451, + 235, + 480, + 235, + 480, + 263, + 451, + 263 + ], + "score": 0.81, + "latex": "p _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 579, + 232, + 605, + 232, + 605, + 258, + 579, + 258 + ], + "score": 0.8, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 833, + 1623, + 851, + 1623, + 851, + 1649, + 833, + 1649 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 992, + 293, + 1010, + 293, + 1010, + 319, + 992, + 319 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 353, + 814, + 377, + 814, + 377, + 840, + 353, + 840 + ], + "score": 0.76, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 863, + 1905, + 878, + 1905, + 878, + 1921, + 863, + 1921 + ], + "score": 0.75, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 298, + 1658, + 322, + 1658, + 322, + 1685, + 298, + 1685 + ], + "score": 0.75, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 986, + 1262, + 1063, + 1262, + 1063, + 1291, + 986, + 1291 + ], + "score": 0.75, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1237, + 1401, + 1237, + 1401, + 1255, + 1382, + 1255 + ], + "score": 0.71, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 364, + 1147, + 384, + 1147, + 384, + 1168, + 364, + 1168 + ], + "score": 0.69, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1139.0, + 363.0, + 1139.0, + 363.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 1139.0, + 641.0, + 1139.0, + 641.0, + 1175.0, + 385.0, + 1175.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, + 1727.0, + 714.0, + 1727.0, + 714.0, + 1760.0, + 295.0, + 1760.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": [ + 331.0, + 1891.0, + 862.0, + 1891.0, + 862.0, + 1930.0, + 331.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1891.0, + 982.0, + 1891.0, + 982.0, + 1930.0, + 879.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1976.0, + 1404.0, + 1976.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 890.0, + 952.0, + 890.0, + 952.0, + 928.0, + 294.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 928.0, + 1027.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 918.0, + 1405.0, + 918.0, + 1405.0, + 958.0, + 292.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 948.0, + 918.0, + 948.0, + 918.0, + 990.0, + 292.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 948.0, + 1406.0, + 948.0, + 1406.0, + 990.0, + 993.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 982.0, + 1406.0, + 982.0, + 1406.0, + 1017.0, + 295.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1011.0, + 1406.0, + 1011.0, + 1406.0, + 1049.0, + 294.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1039.0, + 1405.0, + 1039.0, + 1405.0, + 1081.0, + 292.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1072.0, + 904.0, + 1072.0, + 904.0, + 1107.0, + 295.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1196.0, + 1404.0, + 1196.0, + 1404.0, + 1234.0, + 293.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1229.0, + 1381.0, + 1229.0, + 1381.0, + 1263.0, + 294.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1229.0, + 1405.0, + 1229.0, + 1405.0, + 1263.0, + 1402.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1257.0, + 985.0, + 1257.0, + 985.0, + 1297.0, + 293.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1257.0, + 1076.0, + 1257.0, + 1076.0, + 1297.0, + 1064.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1783.0, + 1405.0, + 1783.0, + 1405.0, + 1817.0, + 295.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1816.0, + 1406.0, + 1816.0, + 1406.0, + 1847.0, + 297.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1845.0, + 862.0, + 1845.0, + 862.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1845.0, + 1406.0, + 1845.0, + 1406.0, + 1879.0, + 940.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 450.0, + 231.0, + 450.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 231.0, + 578.0, + 231.0, + 578.0, + 265.0, + 481.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 231.0, + 1403.0, + 231.0, + 1403.0, + 265.0, + 606.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 292.0, + 488.0, + 292.0, + 488.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 292.0, + 991.0, + 292.0, + 991.0, + 326.0, + 614.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 292.0, + 1022.0, + 292.0, + 1022.0, + 326.0, + 1011.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1371.0, + 1408.0, + 1371.0, + 1408.0, + 1404.0, + 295.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 1408.0, + 1401.0, + 1408.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1429.0, + 1170.0, + 1429.0, + 1170.0, + 1468.0, + 293.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1429.0, + 1408.0, + 1429.0, + 1408.0, + 1468.0, + 1249.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1459.0, + 1409.0, + 1459.0, + 1409.0, + 1499.0, + 290.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 1406.0, + 1489.0, + 1406.0, + 1529.0, + 293.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1520.0, + 1303.0, + 1520.0, + 1303.0, + 1558.0, + 291.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1520.0, + 1406.0, + 1520.0, + 1406.0, + 1558.0, + 1401.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1546.0, + 516.0, + 1546.0, + 516.0, + 1604.0, + 289.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1546.0, + 1411.0, + 1546.0, + 1411.0, + 1604.0, + 696.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1587.0, + 458.0, + 1587.0, + 458.0, + 1629.0, + 291.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1587.0, + 1406.0, + 1587.0, + 1406.0, + 1629.0, + 598.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1616.0, + 832.0, + 1616.0, + 832.0, + 1670.0, + 289.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1616.0, + 983.0, + 1616.0, + 983.0, + 1670.0, + 852.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1616.0, + 1411.0, + 1616.0, + 1411.0, + 1670.0, + 1347.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1657.0, + 493.0, + 1657.0, + 493.0, + 1694.0, + 323.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1657.0, + 778.0, + 1657.0, + 778.0, + 1694.0, + 572.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 813.0, + 352.0, + 813.0, + 352.0, + 845.0, + 297.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 813.0, + 1405.0, + 813.0, + 1405.0, + 845.0, + 378.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 841.0, + 1083.0, + 841.0, + 1083.0, + 877.0, + 293.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 841.0, + 1254.0, + 841.0, + 1254.0, + 877.0, + 1232.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 649.0, + 872.0, + 649.0, + 872.0, + 691.0, + 293.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 649.0, + 1405.0, + 649.0, + 1405.0, + 691.0, + 955.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 682.0, + 968.0, + 682.0, + 968.0, + 724.0, + 295.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 424.0, + 456.0, + 424.0, + 456.0, + 462.0, + 295.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 424.0, + 1144.0, + 424.0, + 1144.0, + 462.0, + 487.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1976.0, + 1404.0, + 1976.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1693, + 1405, + 1693, + 1405, + 1879, + 297, + 1879 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 741, + 1406, + 741, + 1406, + 897, + 298, + 897 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 603, + 1404, + 603, + 1404, + 728, + 298, + 728 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 407, + 190, + 1287, + 190, + 1287, + 495, + 407, + 495 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1196, + 1398, + 1196, + 1398, + 1259, + 297, + 1259 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 1518, + 1404, + 1518, + 1404, + 1583, + 295, + 1583 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1402, + 1972, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 1019, + 1404, + 1019, + 1404, + 1081, + 296, + 1081 + ], + "score": 0.939 + }, + { + "category_id": 4, + "poly": [ + 297, + 518, + 1402, + 518, + 1402, + 577, + 297, + 577 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 558, + 1140, + 1137, + 1140, + 1137, + 1186, + 558, + 1186 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 591, + 1091, + 1067, + 1091, + 1067, + 1133, + 591, + 1133 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 608, + 910, + 991, + 910, + 991, + 955, + 608, + 955 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 586, + 1270, + 1118, + 1270, + 1118, + 1316, + 586, + 1316 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 546, + 1411, + 873, + 1411, + 873, + 1450, + 546, + 1450 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 300, + 1626, + 647, + 1626, + 647, + 1660, + 300, + 1660 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 299, + 1368, + 1401, + 1368, + 1401, + 1401, + 299, + 1401 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 300, + 1915, + 752, + 1915, + 752, + 1946, + 300, + 1946 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1352, + 919, + 1399, + 919, + 1399, + 949, + 1352, + 949 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 812, + 76, + 812, + 104, + 298, + 104 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1096, + 1399, + 1096, + 1399, + 1127, + 1352, + 1127 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1277, + 1399, + 1277, + 1399, + 1307, + 1352, + 1307 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1353, + 969, + 1399, + 969, + 1399, + 1000, + 1353, + 1000 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1145, + 1399, + 1145, + 1399, + 1175, + 1352, + 1175 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1416, + 1400, + 1416, + 1400, + 1445, + 1352, + 1445 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1324, + 1400, + 1324, + 1400, + 1354, + 1352, + 1354 + ], + "score": 0.874 + }, + { + "category_id": 8, + "poly": [ + 322, + 1455, + 1317, + 1455, + 1317, + 1497, + 322, + 1497 + ], + "score": 0.864 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1458, + 1400, + 1458, + 1400, + 1489, + 1353, + 1489 + ], + "score": 0.86 + }, + { + "category_id": 8, + "poly": [ + 574, + 1321, + 844, + 1321, + 844, + 1360, + 574, + 1360 + ], + "score": 0.846 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.732 + }, + { + "category_id": 8, + "poly": [ + 590, + 961, + 1110, + 961, + 1110, + 1006, + 590, + 1006 + ], + "score": 0.601 + }, + { + "category_id": 8, + "poly": [ + 592, + 961, + 1109, + 961, + 1109, + 1006, + 592, + 1006 + ], + "score": 0.33 + }, + { + "category_id": 8, + "poly": [ + 569, + 1270, + 1136, + 1270, + 1136, + 1360, + 569, + 1360 + ], + "score": 0.113 + }, + { + "category_id": 13, + "poly": [ + 904, + 772, + 1398, + 772, + 1398, + 808, + 904, + 808 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { p _ { \\mathrm { r e c o m b } } ( d \\mid \\mathcal { \\bar { d } } _ { 1 : n } ^ { \\prime } ; \\theta ) = \\prod _ { t } p ( d ^ { t } \\mid d ^ { < t } , d _ { 1 : n } ^ { \\prime } ; \\theta ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 326, + 1407, + 1328, + 1407, + 1328, + 1500, + 326, + 1500 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\beta _ { \\mathrm { g a t e } } = \\mathrm { s o f t m a x } ( W _ { g a t e } h _ { o u t } ^ { t } ) \\qquad } \\\\ { p ( d ^ { t } = w \\mid d ^ { < t } , d _ { 1 : n } ^ { t } ; \\theta ) = \\beta _ { \\mathrm { g a t e } } \\cdot [ p _ { \\mathrm { w r i t e } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , o u t } } ^ { t } ( w ) , p _ { \\mathrm { c o p y , p r o u o - } 1 } ^ { t } ( w ) , . . . , p _ { \\mathrm { c o p y , p r o u o - n } } ^ { t } ( w ) ] } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 591, + 906, + 1111, + 906, + 1111, + 1012, + 591, + 1012 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { \\alpha _ { \\mathrm { o u t } } ^ { i } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { o } h _ { \\mathrm { o u t } } ^ { i } } ) } & { { i < t } } \\\\ { \\alpha _ { \\mathrm { p r o t o } } ^ { k j } \\propto \\exp ( { h _ { \\mathrm { o u t } } ^ { t } W _ { p } h _ { \\mathrm { p r o t o } } ^ { k j } } ) } & { { k \\le n , j \\le | d _ { k } ^ { \\prime } | } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1017, + 1225, + 1017, + 1225, + 1057, + 1162, + 1057 + ], + "score": 0.92, + "latex": "\\alpha _ { \\mathrm { p r o t o } } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 392, + 741, + 600, + 741, + 600, + 776, + 392, + 776 + ], + "score": 0.92, + "latex": "p _ { \\mathrm { r e c o m b } } ( d \\mid d _ { 1 : n } ^ { \\prime } ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1755, + 1202, + 1755, + 1202, + 1789, + 1149, + 1789 + ], + "score": 0.92, + "latex": "p ( d )" + }, + { + "category_id": 13, + "poly": [ + 437, + 864, + 489, + 864, + 489, + 898, + 437, + 898 + ], + "score": 0.91, + "latex": "\\setminus h _ { o u t } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 798, + 835, + 859, + 835, + 859, + 868, + 798, + 868 + ], + "score": 0.91, + "latex": "h _ { \\mathrm { p r o t o } }" + }, + { + "category_id": 14, + "poly": [ + 573, + 1267, + 1124, + 1267, + 1124, + 1365, + 573, + 1365 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\begin{array} { r l } { h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , \\quad \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , } & { \\sum _ { k , j } \\alpha _ { \\mathrm { p r o t o } } ^ { k j } h _ { \\mathrm { p r o t o } } ^ { k j } \\right] } \\end{array} } \\\\ & { \\begin{array} { r l } { p _ { \\mathrm { w r i t e } } ^ { t } \\propto \\exp ( W _ { \\mathrm { w r i t e } } h _ { \\mathrm { p r e } } ^ { t } ) } & { } \\end{array} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 910, + 836, + 956, + 836, + 956, + 865, + 910, + 865 + ], + "score": 0.91, + "latex": "h _ { \\mathrm { o u t } }" + }, + { + "category_id": 14, + "poly": [ + 562, + 1087, + 1139, + 1087, + 1139, + 1191, + 562, + 1191 + ], + "score": 0.89, + "latex": "\\begin{array} { r l } & { p _ { \\mathrm { c o p y , o u t } } ^ { t } ( d ^ { t } = w ) = \\sum _ { i < t } \\mathbb { 1 } [ d _ { i } = w ] \\cdot \\alpha _ { \\mathrm { o u t } } ^ { i } } \\\\ & { p _ { \\mathrm { c o p y , p r o t o - k } } ^ { t } ( d ^ { t } = w ) = \\sum _ { j \\le | d _ { k } ^ { \\prime } | } \\mathbb { 1 } [ d _ { k , j } ^ { \\prime } = w ] \\cdot \\alpha _ { \\mathrm { p r o t o } } ^ { k j } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1064, + 1024, + 1112, + 1024, + 1112, + 1050, + 1064, + 1050 + ], + "score": 0.87, + "latex": "\\alpha _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 965, + 1201, + 1042, + 1201, + 1042, + 1227, + 965, + 1227 + ], + "score": 0.87, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 13, + "poly": [ + 551, + 639, + 627, + 639, + 627, + 667, + 551, + 667 + ], + "score": 0.86, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 13, + "poly": [ + 917, + 1372, + 930, + 1372, + 930, + 1396, + 917, + 1396 + ], + "score": 0.77, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 198.0, + 446.0, + 198.0, + 446.0, + 225.0, + 412.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 197.0, + 772.0, + 197.0, + 772.0, + 224.0, + 667.0, + 224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 197.0, + 1223.0, + 197.0, + 1223.0, + 223.0, + 1101.0, + 223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 225.0, + 499.0, + 225.0, + 499.0, + 253.0, + 448.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 221.0, + 576.0, + 221.0, + 576.0, + 253.0, + 522.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 225.0, + 646.0, + 225.0, + 646.0, + 252.0, + 605.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 224.0, + 729.0, + 224.0, + 729.0, + 253.0, + 674.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 228.0, + 790.0, + 228.0, + 790.0, + 249.0, + 767.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 225.0, + 885.0, + 225.0, + 885.0, + 250.0, + 826.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 225.0, + 956.0, + 225.0, + 956.0, + 251.0, + 905.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 225.0, + 1110.0, + 225.0, + 1110.0, + 254.0, + 1058.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 228.0, + 1171.0, + 228.0, + 1171.0, + 249.0, + 1149.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 225.0, + 1261.0, + 225.0, + 1261.0, + 251.0, + 1211.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 281.0, + 1088.0, + 281.0, + 1088.0, + 290.0, + 1080.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 292.0, + 1086.0, + 292.0, + 1086.0, + 302.0, + 1079.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 306.0, + 705.0, + 306.0, + 705.0, + 331.0, + 674.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 307.0, + 725.0, + 307.0, + 725.0, + 314.0, + 716.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 307.0, + 1083.0, + 307.0, + 1083.0, + 320.0, + 1072.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 322.0, + 1074.0, + 322.0, + 1074.0, + 332.0, + 1065.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 327.0, + 590.0, + 327.0, + 590.0, + 349.0, + 508.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 334.0, + 1065.0, + 334.0, + 1065.0, + 345.0, + 1056.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 344.0, + 499.0, + 344.0, + 499.0, + 372.0, + 447.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 344.0, + 575.0, + 344.0, + 575.0, + 372.0, + 522.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 344.0, + 646.0, + 344.0, + 646.0, + 371.0, + 605.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 358.0, + 1043.0, + 358.0, + 1043.0, + 367.0, + 1035.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 347.0, + 1053.0, + 347.0, + 1053.0, + 355.0, + 1046.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 349.0, + 1215.0, + 349.0, + 1215.0, + 366.0, + 1198.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 367.0, + 1029.0, + 367.0, + 1029.0, + 376.0, + 1022.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 395.0, + 911.0, + 395.0, + 911.0, + 404.0, + 902.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 373.0, + 1150.0, + 373.0, + 1150.0, + 405.0, + 1086.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.75, + 304.0, + 906.75, + 304.0, + 906.75, + 323.0, + 903.75, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 329.5, + 850.0, + 329.5, + 850.0, + 359.0, + 809.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 347.0, + 731.0, + 347.0, + 731.0, + 374.0, + 706.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 371.0, + 885.0, + 371.0, + 885.0, + 399.5, + 805.0, + 399.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 424.0, + 887.0, + 424.0, + 887.0, + 455.0, + 805.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 464.0, + 870.0, + 464.0, + 870.0, + 496.0, + 805.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 519.0, + 1404.0, + 519.0, + 1404.0, + 550.0, + 296.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 545.0, + 1369.0, + 545.0, + 1369.0, + 580.0, + 293.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 650.0, + 1623.0, + 650.0, + 1665.0, + 293.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 756.0, + 1913.0, + 756.0, + 1950.0, + 294.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": [ + 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, + 1690.0, + 1406.0, + 1690.0, + 1406.0, + 1732.0, + 292.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1725.0, + 1405.0, + 1725.0, + 1405.0, + 1760.0, + 295.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1754.0, + 1148.0, + 1754.0, + 1148.0, + 1791.0, + 292.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1754.0, + 1406.0, + 1754.0, + 1406.0, + 1791.0, + 1203.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1787.0, + 1403.0, + 1787.0, + 1403.0, + 1819.0, + 296.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1814.0, + 1407.0, + 1814.0, + 1407.0, + 1852.0, + 292.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1845.0, + 1151.0, + 1845.0, + 1151.0, + 1882.0, + 294.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 738.0, + 391.0, + 738.0, + 391.0, + 783.0, + 292.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 738.0, + 1411.0, + 738.0, + 1411.0, + 783.0, + 601.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 768.0, + 903.0, + 768.0, + 903.0, + 814.0, + 292.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 768.0, + 1411.0, + 768.0, + 1411.0, + 814.0, + 1399.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 800.0, + 1408.0, + 800.0, + 1408.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 834.0, + 797.0, + 834.0, + 797.0, + 871.0, + 295.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 834.0, + 909.0, + 834.0, + 909.0, + 871.0, + 860.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 834.0, + 1407.0, + 834.0, + 1407.0, + 871.0, + 957.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 862.0, + 436.0, + 862.0, + 436.0, + 903.0, + 293.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 862.0, + 1163.0, + 862.0, + 1163.0, + 903.0, + 490.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 603.0, + 1404.0, + 603.0, + 1404.0, + 640.0, + 293.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 634.0, + 550.0, + 634.0, + 550.0, + 670.0, + 293.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 670.0, + 628.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 665.0, + 1404.0, + 665.0, + 1404.0, + 703.0, + 292.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 694.0, + 1272.0, + 694.0, + 1272.0, + 732.0, + 292.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 964.0, + 1193.0, + 964.0, + 1231.0, + 295.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1193.0, + 1403.0, + 1193.0, + 1403.0, + 1231.0, + 1043.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1225.0, + 1402.0, + 1225.0, + 1402.0, + 1262.0, + 295.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1517.0, + 1404.0, + 1517.0, + 1404.0, + 1553.0, + 295.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1549.0, + 1348.0, + 1549.0, + 1348.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1013.0, + 1063.0, + 1013.0, + 1063.0, + 1059.0, + 290.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1013.0, + 1161.0, + 1013.0, + 1161.0, + 1059.0, + 1113.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1013.0, + 1405.0, + 1013.0, + 1405.0, + 1059.0, + 1226.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 904.0, + 1049.0, + 904.0, + 1083.0, + 294.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1365.0, + 916.0, + 1365.0, + 916.0, + 1404.0, + 295.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1365.0, + 1408.0, + 1365.0, + 1408.0, + 1404.0, + 931.0, + 1404.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 618, + 1405, + 618, + 1405, + 867, + 296, + 867 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 370, + 1405, + 370, + 1405, + 527, + 297, + 527 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1124, + 1404, + 1124, + 1404, + 1281, + 298, + 1281 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1879, + 1403, + 1879, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1462, + 1405, + 1462, + 1405, + 1566, + 298, + 1566 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1292, + 1404, + 1292, + 1404, + 1388, + 298, + 1388 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 880, + 1406, + 880, + 1406, + 973, + 297, + 973 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 292, + 229, + 1402, + 229, + 1402, + 293, + 292, + 293 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 294, + 1579, + 1401, + 1579, + 1401, + 1642, + 294, + 1642 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 701, + 306, + 995, + 306, + 995, + 352, + 701, + 352 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 536, + 993, + 1159, + 993, + 1159, + 1035, + 536, + 1035 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 299, + 1047, + 1406, + 1047, + 1406, + 1111, + 299, + 1111 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 301, + 1732, + 1396, + 1732, + 1396, + 1769, + 301, + 1769 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 1811, + 748, + 1811, + 748, + 1847, + 300, + 1847 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 303, + 563, + 873, + 563, + 873, + 594, + 303, + 594 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1352, + 311, + 1399, + 311, + 1399, + 341, + 1352, + 341 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1000, + 1399, + 1000, + 1399, + 1030, + 1352, + 1030 + ], + "score": 0.904 + }, + { + "category_id": 8, + "poly": [ + 330, + 1664, + 1311, + 1664, + 1311, + 1706, + 330, + 1706 + ], + "score": 0.901 + }, + { + "category_id": 8, + "poly": [ + 310, + 1408, + 1329, + 1408, + 1329, + 1450, + 310, + 1450 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1669, + 1400, + 1669, + 1400, + 1701, + 1352, + 1701 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1414, + 1400, + 1414, + 1400, + 1445, + 1353, + 1445 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.801 + }, + { + "category_id": 14, + "poly": [ + 700, + 304, + 1000, + 304, + 1000, + 355, + 700, + 355 + ], + "score": 0.94, + "latex": "u ( d ) = \\mathbb { 1 } [ \\operatorname* { m i n } _ { t } p ( d ^ { t } ) < \\epsilon ] ." + }, + { + "category_id": 13, + "poly": [ + 871, + 1156, + 1003, + 1156, + 1003, + 1190, + 871, + 1190 + ], + "score": 0.93, + "latex": "( d _ { 1 } , d _ { 2 } , \\ldots )" + }, + { + "category_id": 13, + "poly": [ + 994, + 713, + 1059, + 713, + 1059, + 745, + 994, + 745 + ], + "score": 0.92, + "latex": "{ \\mathcal { N } } ( d )" + }, + { + "category_id": 13, + "poly": [ + 359, + 372, + 421, + 372, + 421, + 406, + 359, + 406 + ], + "score": 0.92, + "latex": "p ( d ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1156, + 713, + 1226, + 713, + 1226, + 743, + 1156, + 743 + ], + "score": 0.92, + "latex": "n \\geq 2" + }, + { + "category_id": 13, + "poly": [ + 950, + 804, + 1020, + 804, + 1020, + 836, + 950, + 836 + ], + "score": 0.92, + "latex": "d _ { 1 } \\backslash d _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 345, + 835, + 424, + 835, + 424, + 866, + 345, + 866 + ], + "score": 0.91, + "latex": "d _ { 1 } \\Delta d _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 603, + 1580, + 669, + 1580, + 669, + 1613, + 603, + 1613 + ], + "score": 0.91, + "latex": "{ \\mathcal { N } } ( d )" + }, + { + "category_id": 13, + "poly": [ + 298, + 434, + 403, + 434, + 403, + 467, + 298, + 467 + ], + "score": 0.91, + "latex": "u ( d ) = 1" + }, + { + "category_id": 13, + "poly": [ + 936, + 1734, + 1390, + 1734, + 1390, + 1769, + 936, + 1769 + ], + "score": 0.91, + "latex": "\\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { D } \\times \\mathcal { D } : | d _ { 1 } \\Delta d _ { 2 } | = 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 356, + 1463, + 433, + 1463, + 433, + 1496, + 356, + 1496 + ], + "score": 0.91, + "latex": "[ d \\backslash d _ { 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 727, + 1293, + 917, + 1293, + 917, + 1327, + 727, + 1327 + ], + "score": 0.9, + "latex": "( d _ { 1 } , d _ { 2 } ) \\in \\mathcal { N } ( d )" + }, + { + "category_id": 13, + "poly": [ + 980, + 1534, + 1117, + 1534, + 1117, + 1562, + 980, + 1562 + ], + "score": 0.9, + "latex": "\\Omega = \\mathcal { D } \\times \\mathcal { D }" + }, + { + "category_id": 14, + "poly": [ + 539, + 988, + 1160, + 988, + 1160, + 1035, + 539, + 1035 + ], + "score": 0.9, + "latex": "{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\scriptscriptstyle { \\mathrm { d e f } } } { = } } \\ \\left\\{ d _ { 1 } \\in { \\mathcal { D } } : ( { \\boldsymbol { \\alpha } } \\cdot | d \\Delta d _ { 1 } | + { \\boldsymbol { \\beta } } \\cdot \\operatorname { l e v } ( d , d _ { 1 } ) ) < \\delta \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1497, + 545, + 1497, + 545, + 1536, + 297, + 1536 + ], + "score": 0.9, + "latex": "p _ { \\Omega } ( d _ { 1 : n } ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\mathrm { U n i f } ( \\Omega )" + }, + { + "category_id": 13, + "poly": [ + 689, + 1127, + 768, + 1127, + 768, + 1156, + 689, + 1156 + ], + "score": 0.9, + "latex": "n \\geq 2" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1249, + 1222, + 1249, + 1222, + 1276, + 1151, + 1276 + ], + "score": 0.89, + "latex": "n = 2" + }, + { + "category_id": 13, + "poly": [ + 1247, + 805, + 1276, + 805, + 1276, + 834, + 1247, + 834 + ], + "score": 0.89, + "latex": "d _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 870, + 837, + 900, + 837, + 900, + 865, + 870, + 865 + ], + "score": 0.88, + "latex": "d _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 775, + 1121, + 775, + 1121, + 804, + 1091, + 804 + ], + "score": 0.88, + "latex": "d _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 871, + 1327, + 900, + 1327, + 900, + 1355, + 871, + 1355 + ], + "score": 0.88, + "latex": "d _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 775, + 1201, + 775, + 1201, + 804, + 1171, + 804 + ], + "score": 0.88, + "latex": "d _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1368, + 805, + 1396, + 805, + 1396, + 834, + 1368, + 834 + ], + "score": 0.88, + "latex": "d _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1343, + 1296, + 1373, + 1296, + 1373, + 1325, + 1343, + 1325 + ], + "score": 0.87, + "latex": "d _ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 336, + 1659, + 1314, + 1659, + 1314, + 1705, + 336, + 1705 + ], + "score": 0.87, + "latex": "{ \\mathcal { N } } ( d ) \\ { \\stackrel { \\mathrm { d e f } } { = } } \\ \\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : \\ { \\mathrm { l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( d , d _ { 2 } \\right) < \\delta , | d \\Delta d _ { 1 } | = 1 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 951, + 837, + 980, + 837, + 980, + 865, + 951, + 865 + ], + "score": 0.87, + "latex": "d _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 981, + 1464, + 1011, + 1464, + 1011, + 1494, + 981, + 1494 + ], + "score": 0.87, + "latex": "d _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 889, + 371, + 916, + 371, + 916, + 400, + 889, + 400 + ], + "score": 0.87, + "latex": "d ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 966, + 685, + 1041, + 685, + 1041, + 713, + 966, + 713 + ], + "score": 0.86, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 14, + "poly": [ + 313, + 1406, + 1338, + 1406, + 1338, + 1449, + 313, + 1449 + ], + "score": 0.85, + "latex": "{ \\mathcal { N } } ( d ) ~ { \\stackrel { \\mathrm { d e f } } { = } } ~ \\left\\{ ( d _ { 1 } , d _ { 2 } ) \\in \\Omega : { \\mathrm { ~ l e v } } \\left( d , d _ { 1 } \\right) < \\delta , { \\mathrm { l e v } } \\left( [ d \\backslash d _ { 1 } ] , d _ { 2 } \\right) < \\delta , | d \\backslash d _ { 1 } | > 0 , | d \\backslash d _ { 1 } \\backslash d _ { 2 } | = 0 \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1050, + 1048, + 1050, + 1048, + 1076, + 1031, + 1076 + ], + "score": 0.83, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1582, + 1354, + 1582, + 1354, + 1608, + 1336, + 1608 + ], + "score": 0.82, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1218, + 1171, + 1218, + 1171, + 1244, + 1153, + 1244 + ], + "score": 0.82, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1068, + 883, + 1098, + 883, + 1098, + 909, + 1068, + 909 + ], + "score": 0.82, + "latex": "\\mathcal { N }" + }, + { + "category_id": 13, + "poly": [ + 653, + 1503, + 677, + 1503, + 677, + 1530, + 653, + 1530 + ], + "score": 0.82, + "latex": "\\Omega" + }, + { + "category_id": 13, + "poly": [ + 803, + 1328, + 822, + 1328, + 822, + 1352, + 803, + 1352 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 919, + 1613, + 936, + 1613, + 936, + 1638, + 919, + 1638 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 682, + 1158, + 700, + 1158, + 700, + 1185, + 682, + 1185 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 784, + 1188, + 802, + 1188, + 802, + 1214, + 784, + 1214 + ], + "score": 0.78, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 832, + 805, + 861, + 805, + 861, + 834, + 832, + 834 + ], + "score": 0.77, + "latex": "d _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1296, + 1282, + 1296, + 1282, + 1323, + 1264, + 1323 + ], + "score": 0.77, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 873, + 805, + 902, + 805, + 902, + 834, + 873, + 834 + ], + "score": 0.76, + "latex": "d _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 931, + 1295, + 961, + 1295, + 961, + 1325, + 931, + 1325 + ], + "score": 0.75, + "latex": "d _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1239, + 378, + 1254, + 378, + 1254, + 400, + 1239, + 400 + ], + "score": 0.75, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1073, + 1465, + 1091, + 1465, + 1091, + 1491, + 1073, + 1491 + ], + "score": 0.74, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 557, + 744, + 580, + 744, + 580, + 770, + 557, + 770 + ], + "score": 0.67, + "latex": "\\Omega" + }, + { + "category_id": 13, + "poly": [ + 960, + 1050, + 981, + 1050, + 981, + 1080, + 960, + 1080 + ], + "score": 0.53, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 929, + 1054, + 948, + 1054, + 948, + 1076, + 929, + 1076 + ], + "score": 0.47, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 927, + 1050, + 981, + 1050, + 981, + 1080, + 927, + 1080 + ], + "score": 0.42, + "latex": "\\alpha , \\beta" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1807.0, + 752.0, + 1807.0, + 752.0, + 1852.0, + 293.0, + 1852.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": [ + 297.0, + 562.0, + 879.0, + 562.0, + 879.0, + 598.0, + 297.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 619.0, + 1405.0, + 619.0, + 1405.0, + 655.0, + 294.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 650.0, + 1405.0, + 650.0, + 1405.0, + 684.0, + 294.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 683.0, + 965.0, + 683.0, + 965.0, + 717.0, + 294.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 683.0, + 1405.0, + 683.0, + 1405.0, + 717.0, + 1042.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 710.0, + 993.0, + 710.0, + 993.0, + 749.0, + 291.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 710.0, + 1155.0, + 710.0, + 1155.0, + 749.0, + 1060.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 710.0, + 1406.0, + 710.0, + 1406.0, + 749.0, + 1227.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 740.0, + 556.0, + 740.0, + 556.0, + 780.0, + 293.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 740.0, + 1406.0, + 740.0, + 1406.0, + 780.0, + 581.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 773.0, + 1090.0, + 773.0, + 1090.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 773.0, + 1170.0, + 773.0, + 1170.0, + 810.0, + 1122.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 773.0, + 1407.0, + 773.0, + 1407.0, + 810.0, + 1202.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 801.0, + 831.0, + 801.0, + 831.0, + 841.0, + 290.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 801.0, + 872.0, + 801.0, + 872.0, + 841.0, + 862.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 801.0, + 949.0, + 801.0, + 949.0, + 841.0, + 903.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 801.0, + 1246.0, + 801.0, + 1246.0, + 841.0, + 1021.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 801.0, + 1367.0, + 801.0, + 1367.0, + 841.0, + 1277.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 801.0, + 1410.0, + 801.0, + 1410.0, + 841.0, + 1397.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 344.0, + 833.0, + 344.0, + 870.0, + 294.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 833.0, + 869.0, + 833.0, + 869.0, + 870.0, + 425.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 833.0, + 950.0, + 833.0, + 950.0, + 870.0, + 901.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 833.0, + 992.0, + 833.0, + 992.0, + 870.0, + 981.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 371.0, + 358.0, + 371.0, + 358.0, + 408.0, + 295.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 371.0, + 888.0, + 371.0, + 888.0, + 408.0, + 422.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 371.0, + 1238.0, + 371.0, + 1238.0, + 408.0, + 917.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 371.0, + 1408.0, + 371.0, + 1408.0, + 408.0, + 1255.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 402.0, + 1406.0, + 402.0, + 1406.0, + 438.0, + 292.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 428.0, + 297.0, + 428.0, + 297.0, + 473.0, + 292.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 428.0, + 1406.0, + 428.0, + 1406.0, + 473.0, + 404.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 505.0, + 292.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 494.0, + 813.0, + 494.0, + 813.0, + 531.0, + 294.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1124.0, + 688.0, + 1124.0, + 688.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1160.0, + 769.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 681.0, + 1153.0, + 681.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1153.0, + 870.0, + 1153.0, + 870.0, + 1193.0, + 701.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1153.0, + 1404.0, + 1153.0, + 1404.0, + 1193.0, + 1004.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1185.0, + 783.0, + 1185.0, + 783.0, + 1223.0, + 293.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1223.0, + 803.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1217.0, + 1152.0, + 1217.0, + 1152.0, + 1251.0, + 296.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1217.0, + 1404.0, + 1217.0, + 1404.0, + 1251.0, + 1172.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 1150.0, + 1247.0, + 1150.0, + 1284.0, + 294.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1247.0, + 1287.0, + 1247.0, + 1287.0, + 1284.0, + 1223.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1878.0, + 1407.0, + 1878.0, + 1407.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1948.0, + 292.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1973.0, + 1404.0, + 1973.0, + 1404.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, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 355.0, + 1460.0, + 355.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1460.0, + 980.0, + 1460.0, + 980.0, + 1500.0, + 434.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1460.0, + 1072.0, + 1460.0, + 1072.0, + 1500.0, + 1012.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1460.0, + 1406.0, + 1460.0, + 1406.0, + 1500.0, + 1092.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1494.0, + 296.0, + 1494.0, + 296.0, + 1542.0, + 291.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1494.0, + 652.0, + 1494.0, + 652.0, + 1542.0, + 546.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1494.0, + 1408.0, + 1494.0, + 1408.0, + 1542.0, + 678.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1532.0, + 979.0, + 1532.0, + 979.0, + 1568.0, + 293.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1532.0, + 1128.0, + 1532.0, + 1128.0, + 1568.0, + 1118.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1292.0, + 726.0, + 1292.0, + 726.0, + 1328.0, + 292.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1292.0, + 930.0, + 1292.0, + 930.0, + 1328.0, + 918.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1292.0, + 1263.0, + 1292.0, + 1263.0, + 1328.0, + 962.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1292.0, + 1342.0, + 1292.0, + 1342.0, + 1328.0, + 1283.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1292.0, + 1406.0, + 1292.0, + 1406.0, + 1328.0, + 1374.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 802.0, + 1323.0, + 802.0, + 1357.0, + 294.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1323.0, + 870.0, + 1323.0, + 870.0, + 1357.0, + 823.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1323.0, + 1404.0, + 1323.0, + 1404.0, + 1357.0, + 901.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1352.0, + 1082.0, + 1352.0, + 1082.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 879.0, + 1067.0, + 879.0, + 1067.0, + 917.0, + 292.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 879.0, + 1406.0, + 879.0, + 1406.0, + 917.0, + 1099.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 907.0, + 1408.0, + 907.0, + 1408.0, + 949.0, + 292.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 941.0, + 931.0, + 941.0, + 931.0, + 975.0, + 296.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 876.0, + 261.0, + 876.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1579.0, + 602.0, + 1579.0, + 602.0, + 1614.0, + 296.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1579.0, + 1335.0, + 1579.0, + 1335.0, + 1614.0, + 670.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1579.0, + 1404.0, + 1579.0, + 1404.0, + 1614.0, + 1355.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1609.0, + 918.0, + 1609.0, + 918.0, + 1644.0, + 294.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1609.0, + 948.0, + 1609.0, + 948.0, + 1644.0, + 937.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1043.0, + 926.0, + 1043.0, + 926.0, + 1084.0, + 293.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1043.0, + 1030.0, + 1043.0, + 1030.0, + 1084.0, + 982.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1043.0, + 1406.0, + 1043.0, + 1406.0, + 1084.0, + 1049.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1076.0, + 485.0, + 1076.0, + 485.0, + 1114.0, + 294.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 935.0, + 1726.0, + 935.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1391.0, + 1726.0, + 1401.0, + 1726.0, + 1401.0, + 1778.0, + 1391.0, + 1778.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1283, + 1403, + 1283, + 1403, + 1529, + 299, + 1529 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 944, + 1404, + 944, + 1404, + 1190, + 298, + 1190 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1543, + 1404, + 1543, + 1404, + 1851, + 298, + 1851 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 335, + 501, + 912, + 501, + 912, + 824, + 335, + 824 + ], + "score": 0.952, + "html": "
(a)
around right jump
baseline0.00 ±0.000.00 ±0.00
GECA (published)0.82 ±0.110.87 ±0.05
GECA (ours)0.98 ±0.021.00 ±0.001
learned aug. (basic)0.00 ±0.000.00 ±0.00
L resampling--
├ recomb-10.17 ±0.07-
Lrecomb-20.75 ±0.140.87 ±0.08
recomb-2 (no resampling)0.82 ±0.080.88 ±0.07
" + }, + { + "category_id": 1, + "poly": [ + 301, + 868, + 1404, + 868, + 1404, + 930, + 301, + 930 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 297, + 1949, + 1403, + 1949, + 1403, + 2034, + 297, + 2034 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 209, + 1404, + 209, + 1404, + 489, + 297, + 489 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 301, + 1864, + 1400, + 1864, + 1400, + 1929, + 301, + 1929 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 299, + 1226, + 446, + 1226, + 446, + 1257, + 299, + 1257 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.884 + }, + { + "category_id": 5, + "poly": [ + 950, + 536, + 1358, + 536, + 1358, + 753, + 950, + 753 + ], + "score": 0.865, + "html": "
jump
recomb-2 (no resampling)0.88 ±0.07
+ VAE0.88 ±0.07
+resampling0.87 ±0.08
- copying direct inference0.00 ±0.00
0.57 ±0.05
" + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.766 + }, + { + "category_id": 13, + "poly": [ + 705, + 868, + 822, + 868, + 822, + 901, + 705, + 901 + ], + "score": 0.94, + "latex": "d = ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1013, + 431, + 1097, + 431, + 1097, + 462, + 1013, + 462 + ], + "score": 0.94, + "latex": "p ( y \\mid x )" + }, + { + "category_id": 13, + "poly": [ + 845, + 1759, + 963, + 1759, + 963, + 1791, + 845, + 1791 + ], + "score": 0.93, + "latex": "d = ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 431, + 1037, + 496, + 1037, + 496, + 1070, + 431, + 1070 + ], + "score": 0.92, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 297, + 350, + 413, + 350, + 413, + 377, + 297, + 377 + ], + "score": 0.88, + "latex": "p \\ll 0 . 0 0 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 378, + 374, + 378, + 374, + 403, + 297, + 403 + ], + "score": 0.84, + "latex": "T = 1 ." + }, + { + "category_id": 13, + "poly": [ + 680, + 295, + 717, + 295, + 717, + 320, + 680, + 320 + ], + "score": 0.82, + "latex": "l +" + }, + { + "category_id": 13, + "poly": [ + 919, + 1133, + 938, + 1133, + 938, + 1161, + 919, + 1161 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 617, + 267, + 654, + 267, + 654, + 292, + 617, + 292 + ], + "score": 0.8, + "latex": "^ { 2 + }" + }, + { + "category_id": 13, + "poly": [ + 871, + 323, + 909, + 323, + 909, + 348, + 871, + 348 + ], + "score": 0.8, + "latex": "^ { 2 + }" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1793, + 1208, + 1793, + 1208, + 1820, + 1189, + 1820 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1342, + 325, + 1354, + 325, + 1354, + 347, + 1342, + 347 + ], + "score": 0.77, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 374, + 904, + 393, + 904, + 393, + 930, + 374, + 930 + ], + "score": 0.75, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 668, + 904, + 688, + 904, + 688, + 931, + 668, + 931 + ], + "score": 0.74, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1217, + 904, + 1237, + 904, + 1237, + 931, + 1217, + 931 + ], + "score": 0.73, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1380, + 904, + 1398, + 904, + 1398, + 926, + 1380, + 926 + ], + "score": 0.65, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 892, + 905, + 910, + 905, + 910, + 926, + 892, + 926 + ], + "score": 0.64, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1272, + 1795, + 1290, + 1795, + 1290, + 1816, + 1272, + 1816 + ], + "score": 0.64, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 552, + 904, + 571, + 904, + 571, + 926, + 552, + 926 + ], + "score": 0.53, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1983.0, + 327.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1978.0, + 1405.0, + 1978.0, + 1405.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2004.0, + 449.0, + 2004.0, + 449.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 452.0, + 1221.0, + 452.0, + 1264.0, + 292.0, + 1264.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, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1283.0, + 1405.0, + 1283.0, + 1405.0, + 1321.0, + 294.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 1405.0, + 1316.0, + 1405.0, + 1350.0, + 295.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1377.0, + 1405.0, + 1377.0, + 1405.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1441.0, + 294.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1471.0, + 295.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1502.0, + 293.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1499.0, + 1028.0, + 1499.0, + 1028.0, + 1532.0, + 295.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 942.0, + 1409.0, + 942.0, + 1409.0, + 983.0, + 292.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1011.0, + 294.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1008.0, + 1404.0, + 1008.0, + 1404.0, + 1039.0, + 293.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1038.0, + 430.0, + 1038.0, + 430.0, + 1071.0, + 293.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1038.0, + 1404.0, + 1038.0, + 1404.0, + 1071.0, + 497.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1067.0, + 1405.0, + 1067.0, + 1405.0, + 1102.0, + 292.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1099.0, + 1404.0, + 1099.0, + 1404.0, + 1133.0, + 294.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1128.0, + 918.0, + 1128.0, + 918.0, + 1166.0, + 293.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1128.0, + 1405.0, + 1128.0, + 1405.0, + 1166.0, + 939.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 930.0, + 1161.0, + 930.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1544.0, + 1406.0, + 1544.0, + 1406.0, + 1580.0, + 294.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1577.0, + 1405.0, + 1577.0, + 1405.0, + 1609.0, + 296.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1605.0, + 1405.0, + 1605.0, + 1405.0, + 1641.0, + 293.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1637.0, + 1405.0, + 1637.0, + 1405.0, + 1671.0, + 292.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 1404.0, + 1668.0, + 1404.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1697.0, + 1407.0, + 1697.0, + 1407.0, + 1734.0, + 292.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 844.0, + 1758.0, + 844.0, + 1794.0, + 293.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1794.0, + 964.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1784.0, + 1188.0, + 1784.0, + 1188.0, + 1828.0, + 292.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1784.0, + 1271.0, + 1784.0, + 1271.0, + 1828.0, + 1209.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1784.0, + 1406.0, + 1784.0, + 1406.0, + 1828.0, + 1291.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 813.0, + 1819.0, + 813.0, + 1852.0, + 293.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 865.0, + 704.0, + 865.0, + 704.0, + 904.0, + 295.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 865.0, + 1404.0, + 865.0, + 1404.0, + 904.0, + 823.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 899.0, + 373.0, + 899.0, + 373.0, + 933.0, + 295.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 899.0, + 551.0, + 899.0, + 551.0, + 933.0, + 394.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 899.0, + 667.0, + 899.0, + 667.0, + 933.0, + 572.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 899.0, + 891.0, + 899.0, + 891.0, + 933.0, + 689.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 899.0, + 1216.0, + 899.0, + 1216.0, + 933.0, + 911.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 899.0, + 1379.0, + 899.0, + 1379.0, + 933.0, + 1238.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 899.0, + 1409.0, + 899.0, + 1409.0, + 933.0, + 1399.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 206.0, + 1406.0, + 206.0, + 1406.0, + 245.0, + 292.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 238.0, + 1406.0, + 238.0, + 1406.0, + 271.0, + 295.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 265.0, + 616.0, + 265.0, + 616.0, + 298.0, + 295.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 265.0, + 1404.0, + 265.0, + 1404.0, + 298.0, + 655.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 679.0, + 292.0, + 679.0, + 329.0, + 294.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 329.0, + 718.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 870.0, + 320.0, + 870.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 320.0, + 1341.0, + 320.0, + 1341.0, + 357.0, + 910.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 320.0, + 1409.0, + 320.0, + 1409.0, + 357.0, + 1355.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 345.0, + 296.0, + 345.0, + 296.0, + 386.0, + 290.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 345.0, + 1409.0, + 345.0, + 1409.0, + 386.0, + 414.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 373.0, + 296.0, + 373.0, + 296.0, + 412.0, + 291.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 373.0, + 1407.0, + 373.0, + 1407.0, + 412.0, + 375.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 403.0, + 1407.0, + 403.0, + 1407.0, + 440.0, + 294.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 428.0, + 1012.0, + 428.0, + 1012.0, + 466.0, + 291.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 428.0, + 1407.0, + 428.0, + 1407.0, + 466.0, + 1098.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 460.0, + 1291.0, + 460.0, + 1291.0, + 493.0, + 296.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1860.0, + 1404.0, + 1860.0, + 1404.0, + 1902.0, + 295.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1895.0, + 1404.0, + 1895.0, + 1404.0, + 1931.0, + 295.0, + 1931.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1165, + 1404, + 1165, + 1404, + 1651, + 298, + 1651 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 293, + 461, + 1406, + 461, + 1406, + 894, + 293, + 894 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline Lresampling0.66 ±0.010.88 ±0.010.75 ±0.020.90 ±0.010.69 ±0.040.85 ±0.03
0.65 ±0.010.88 ±0.010.77 ±0.010.90 ±0.020.69 ±0.040.84 ±0.04
GECA0.66 ±0.010.88 ±0.010.76 ±0.020.90±0.020.69 ±0.020.87 ±0.01
Lresampling A0.72 ±0.020.88 ±0.010.81 ±0.020.89 ±0.010.75 ±0.030.85 ±0.02
learned aug. (basic)0.66 ±0.020.88 ±0.010.77 ±0.020.90 ±0.010.70 ±0.020.87 ±0.01
L resampling0.70 ±0.020.86 ±0.010.84 ±0.010.90 ±0.010.73 ±0.040.85 ±0.03
├recomb-10.72 ±0.020.87 ±0.010.85 ±0.010.90 ±0.020.77 ±0.020.87 ±0.02
recomb-20.71 ±0.010.87 ±0.020.82 ±0.020.90 ±0.010.75 ±0.030.86 ±0.03
GECA + recomb-1 + resamp.0.74 ±0.020.86 ±0.010.85 ±0.020.89 ±0.010.79 ±0.020.84 ±0.01
THAONbaseline0.63 ±0.030.72 ±0.020.42 ±0.120.68 ±0.040.66 ±0.15
GECA + resampling0.67 ±0.030.79 ±0.020.26 ±0.200.73 ±0.040.71 ±0.10
recomb-1 + resampling0.69 ±0.020.83 ±0.020.42 ±0.120.75 ±0.030.82 ±0.04
GECA + recomb-1 + resamp.0.69 ±0.020.83 ±0.020.35 ±0.110.77 ±0.030.71 ±0.07
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1405, + 1668, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 963, + 1403, + 963, + 1403, + 1056, + 299, + 1056 + ], + "score": 0.964 + }, + { + "category_id": 6, + "poly": [ + 295, + 223, + 1403, + 223, + 1403, + 448, + 295, + 448 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 300, + 1102, + 631, + 1102, + 631, + 1134, + 300, + 1134 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.794 + }, + { + "category_id": 13, + "poly": [ + 946, + 308, + 1044, + 308, + 1044, + 336, + 946, + 336 + ], + "score": 0.89, + "latex": "\\mathit { p } < 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1670, + 1169, + 1670, + 1169, + 1699, + 1136, + 1699 + ], + "score": 0.88, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1821, + 740, + 1821, + 740, + 1850, + 683, + 1850 + ], + "score": 0.86, + "latex": "21 \\%" + }, + { + "category_id": 13, + "poly": [ + 296, + 1820, + 352, + 1820, + 352, + 1850, + 296, + 1850 + ], + "score": 0.84, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 389, + 225, + 421, + 225, + 421, + 252, + 389, + 252 + ], + "score": 0.83, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1027, + 392, + 1064, + 392, + 1064, + 417, + 1027, + 417 + ], + "score": 0.8, + "latex": "^ { l + }" + }, + { + "category_id": 13, + "poly": [ + 754, + 281, + 791, + 281, + 791, + 306, + 754, + 306 + ], + "score": 0.79, + "latex": "^ { l + }" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1824, + 1262, + 1824, + 1262, + 1850, + 1236, + 1850 + ], + "score": 0.77, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 855, + 1566, + 875, + 1566, + 875, + 1592, + 855, + 1592 + ], + "score": 0.75, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 455, + 1595, + 532, + 1595, + 532, + 1622, + 455, + 1622 + ], + "score": 0.75, + "latex": "p _ { \\mathrm { r e c o m b } }" + }, + { + "category_id": 13, + "poly": [ + 852, + 227, + 959, + 227, + 959, + 252, + 852, + 252 + ], + "score": 0.64, + "latex": "\\mathrm { ( F U T + P S T ) }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 221.0, + 388.0, + 221.0, + 388.0, + 258.0, + 293.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 221.0, + 851.0, + 221.0, + 851.0, + 258.0, + 422.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 221.0, + 1406.0, + 221.0, + 1406.0, + 258.0, + 960.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 250.0, + 1406.0, + 250.0, + 1406.0, + 283.0, + 294.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 277.0, + 753.0, + 277.0, + 753.0, + 314.0, + 292.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 277.0, + 1405.0, + 277.0, + 1405.0, + 314.0, + 792.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 305.0, + 945.0, + 305.0, + 945.0, + 341.0, + 294.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 305.0, + 1404.0, + 305.0, + 1404.0, + 341.0, + 1045.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 334.0, + 1404.0, + 334.0, + 1404.0, + 366.0, + 294.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 362.0, + 1405.0, + 362.0, + 1405.0, + 394.0, + 293.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 391.0, + 1026.0, + 391.0, + 1026.0, + 423.0, + 295.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 391.0, + 1405.0, + 391.0, + 1405.0, + 423.0, + 1065.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 417.0, + 1050.0, + 417.0, + 1050.0, + 451.0, + 294.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1100.0, + 636.0, + 1100.0, + 636.0, + 1140.0, + 294.0, + 1140.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, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 1406.0, + 1163.0, + 1406.0, + 1199.0, + 293.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1197.0, + 1402.0, + 1197.0, + 1402.0, + 1227.0, + 296.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1226.0, + 1405.0, + 1226.0, + 1405.0, + 1260.0, + 294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1253.0, + 1406.0, + 1253.0, + 1406.0, + 1293.0, + 292.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1285.0, + 1406.0, + 1285.0, + 1406.0, + 1321.0, + 292.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1314.0, + 1408.0, + 1314.0, + 1408.0, + 1353.0, + 292.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1381.0, + 293.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1379.0, + 1406.0, + 1379.0, + 1406.0, + 1412.0, + 293.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1407.0, + 1406.0, + 1407.0, + 1406.0, + 1445.0, + 293.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1436.0, + 1405.0, + 1436.0, + 1405.0, + 1475.0, + 293.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1404.0, + 1468.0, + 1404.0, + 1502.0, + 294.0, + 1502.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, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1568.0, + 291.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1559.0, + 854.0, + 1559.0, + 854.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1559.0, + 1405.0, + 1559.0, + 1405.0, + 1597.0, + 876.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1591.0, + 454.0, + 1591.0, + 454.0, + 1627.0, + 292.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1591.0, + 1406.0, + 1591.0, + 1406.0, + 1627.0, + 533.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1622.0, + 618.0, + 1622.0, + 618.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1668.0, + 1135.0, + 1668.0, + 1135.0, + 1705.0, + 293.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1668.0, + 1405.0, + 1668.0, + 1405.0, + 1705.0, + 1170.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1733.0, + 295.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1730.0, + 1408.0, + 1730.0, + 1408.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1760.0, + 1406.0, + 1760.0, + 1406.0, + 1794.0, + 293.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 295.0, + 1818.0, + 295.0, + 1856.0, + 292.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1818.0, + 682.0, + 1818.0, + 682.0, + 1856.0, + 353.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1818.0, + 1235.0, + 1818.0, + 1235.0, + 1856.0, + 741.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1818.0, + 1405.0, + 1818.0, + 1405.0, + 1856.0, + 1263.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1914.0, + 1405.0, + 1914.0, + 1405.0, + 1944.0, + 296.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1403.0, + 2003.0, + 1403.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 956.0, + 1405.0, + 956.0, + 1405.0, + 1004.0, + 292.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 993.0, + 1407.0, + 993.0, + 1407.0, + 1028.0, + 293.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1023.0, + 950.0, + 1023.0, + 950.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 420, + 1404, + 420, + 1404, + 787, + 299, + 787 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1318, + 1405, + 1318, + 1405, + 1563, + 298, + 1563 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1001, + 1404, + 1001, + 1404, + 1216, + 298, + 1216 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 802, + 1403, + 802, + 1403, + 985, + 298, + 985 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1662, + 1403, + 1662, + 1403, + 1784, + 299, + 1784 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 230, + 1401, + 230, + 1401, + 322, + 300, + 322 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 300, + 1248, + 560, + 1248, + 560, + 1283, + 300, + 1283 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 301, + 1606, + 557, + 1606, + 557, + 1635, + 301, + 1635 + ], + "score": 0.872 + }, + { + "category_id": 0, + "poly": [ + 299, + 362, + 488, + 362, + 488, + 392, + 299, + 392 + ], + "score": 0.854 + }, + { + "category_id": 0, + "poly": [ + 300, + 1832, + 488, + 1832, + 488, + 1866, + 300, + 1866 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 299, + 1885, + 1404, + 1885, + 1404, + 1948, + 299, + 1948 + ], + "score": 0.726 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1398, + 1971, + 1398, + 2034, + 298, + 2034 + ], + "score": 0.707 + }, + { + "category_id": 0, + "poly": [ + 300, + 362, + 488, + 362, + 488, + 392, + 300, + 392 + ], + "score": 0.13 + }, + { + "category_id": 13, + "poly": [ + 1162, + 1063, + 1228, + 1063, + 1228, + 1096, + 1162, + 1096 + ], + "score": 0.91, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1020, + 635, + 1054, + 635, + 1054, + 664, + 1020, + 664 + ], + "score": 0.88, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 462, + 513, + 517, + 513, + 517, + 542, + 462, + 542 + ], + "score": 0.88, + "latex": "74 \\%" + }, + { + "category_id": 13, + "poly": [ + 773, + 482, + 829, + 482, + 829, + 511, + 773, + 511 + ], + "score": 0.87, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 296, + 543, + 351, + 543, + 351, + 572, + 296, + 572 + ], + "score": 0.84, + "latex": "14 \\%" + }, + { + "category_id": 13, + "poly": [ + 1075, + 262, + 1117, + 262, + 1117, + 291, + 1075, + 291 + ], + "score": 0.82, + "latex": "\\cdot l +" + }, + { + "category_id": 13, + "poly": [ + 777, + 266, + 801, + 266, + 801, + 290, + 777, + 290 + ], + "score": 0.72, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 670, + 1036, + 694, + 1036, + 694, + 1061, + 670, + 1061 + ], + "score": 0.69, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1207, + 576, + 1238, + 576, + 1238, + 601, + 1207, + 601 + ], + "score": 0.5, + "latex": "x s" + }, + { + "category_id": 13, + "poly": [ + 1197, + 899, + 1230, + 899, + 1230, + 922, + 1197, + 922 + ], + "score": 0.3, + "latex": "x \\mathbf { s }" + }, + { + "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, + 1242.0, + 566.0, + 1242.0, + 566.0, + 1292.0, + 291.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1607.0, + 558.0, + 1607.0, + 558.0, + 1637.0, + 299.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 358.0, + 493.0, + 358.0, + 493.0, + 398.0, + 292.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1832.0, + 490.0, + 1832.0, + 490.0, + 1869.0, + 296.0, + 1869.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": [ + 292.0, + 358.0, + 492.0, + 358.0, + 492.0, + 398.0, + 292.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 419.0, + 1405.0, + 419.0, + 1405.0, + 455.0, + 294.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 453.0, + 1405.0, + 453.0, + 1405.0, + 487.0, + 294.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 772.0, + 482.0, + 772.0, + 516.0, + 294.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 482.0, + 1406.0, + 482.0, + 1406.0, + 516.0, + 830.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 511.0, + 461.0, + 511.0, + 461.0, + 548.0, + 293.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 511.0, + 1405.0, + 511.0, + 1405.0, + 548.0, + 518.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 541.0, + 1406.0, + 541.0, + 1406.0, + 577.0, + 352.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 573.0, + 1206.0, + 573.0, + 1206.0, + 607.0, + 294.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 573.0, + 1408.0, + 573.0, + 1408.0, + 607.0, + 1239.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 605.0, + 1404.0, + 605.0, + 1404.0, + 639.0, + 294.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 634.0, + 1019.0, + 634.0, + 1019.0, + 668.0, + 295.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 668.0, + 1055.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 661.0, + 1405.0, + 661.0, + 1405.0, + 703.0, + 292.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 692.0, + 1405.0, + 692.0, + 1405.0, + 731.0, + 293.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 724.0, + 1407.0, + 724.0, + 1407.0, + 763.0, + 292.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 754.0, + 548.0, + 754.0, + 548.0, + 792.0, + 294.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1318.0, + 1405.0, + 1318.0, + 1405.0, + 1355.0, + 293.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1351.0, + 1406.0, + 1351.0, + 1406.0, + 1384.0, + 293.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1382.0, + 1407.0, + 1382.0, + 1407.0, + 1415.0, + 295.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1411.0, + 1405.0, + 1411.0, + 1405.0, + 1446.0, + 293.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1442.0, + 1405.0, + 1442.0, + 1405.0, + 1475.0, + 295.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1473.0, + 1407.0, + 1473.0, + 1407.0, + 1505.0, + 293.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1502.0, + 1403.0, + 1502.0, + 1403.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1534.0, + 478.0, + 1534.0, + 478.0, + 1565.0, + 293.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1003.0, + 1406.0, + 1003.0, + 1406.0, + 1033.0, + 297.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1033.0, + 669.0, + 1033.0, + 669.0, + 1064.0, + 296.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1033.0, + 1405.0, + 1033.0, + 1405.0, + 1064.0, + 695.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1060.0, + 1161.0, + 1060.0, + 1161.0, + 1100.0, + 292.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1060.0, + 1406.0, + 1060.0, + 1406.0, + 1100.0, + 1229.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1095.0, + 1406.0, + 1095.0, + 1406.0, + 1128.0, + 293.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1156.0, + 292.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1155.0, + 1405.0, + 1155.0, + 1405.0, + 1190.0, + 293.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1186.0, + 1158.0, + 1186.0, + 1158.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 797.0, + 1404.0, + 797.0, + 1404.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 835.0, + 1404.0, + 835.0, + 1404.0, + 867.0, + 297.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 863.0, + 1404.0, + 863.0, + 1404.0, + 899.0, + 294.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 894.0, + 1196.0, + 894.0, + 1196.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 894.0, + 1405.0, + 894.0, + 1405.0, + 929.0, + 1231.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 925.0, + 1403.0, + 925.0, + 1403.0, + 957.0, + 296.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 954.0, + 977.0, + 954.0, + 977.0, + 990.0, + 294.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 1408.0, + 1659.0, + 1408.0, + 1698.0, + 293.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1692.0, + 1405.0, + 1692.0, + 1405.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1719.0, + 1404.0, + 1719.0, + 1404.0, + 1760.0, + 292.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1751.0, + 1254.0, + 1751.0, + 1254.0, + 1790.0, + 292.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 776.0, + 262.0, + 776.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 262.0, + 1074.0, + 262.0, + 1074.0, + 295.0, + 802.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 262.0, + 1402.0, + 262.0, + 1402.0, + 295.0, + 1118.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 292.0, + 812.0, + 292.0, + 812.0, + 325.0, + 296.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1406.0, + 1883.0, + 1406.0, + 1922.0, + 294.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1915.0, + 1227.0, + 1915.0, + 1227.0, + 1951.0, + 321.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1968.0, + 1404.0, + 1968.0, + 1404.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2003.0, + 945.0, + 2003.0, + 945.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 814, + 75, + 814, + 105, + 300, + 105 + ], + "score": 0.882 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 323, + 298, + 323 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 298, + 1227, + 1400, + 1227, + 1400, + 1291, + 298, + 1291 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 295, + 942, + 1403, + 942, + 1403, + 1007, + 295, + 1007 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 296, + 827, + 1405, + 827, + 1405, + 922, + 296, + 922 + ], + "score": 0.813 + }, + { + "category_id": 1, + "poly": [ + 297, + 773, + 1270, + 773, + 1270, + 809, + 297, + 809 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 296, + 344, + 1401, + 344, + 1401, + 409, + 296, + 409 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 301, + 1026, + 1402, + 1026, + 1402, + 1123, + 301, + 1123 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 296, + 1310, + 1399, + 1310, + 1399, + 1377, + 296, + 1377 + ], + "score": 0.797 + }, + { + "category_id": 1, + "poly": [ + 295, + 1395, + 1398, + 1395, + 1398, + 1461, + 295, + 1461 + ], + "score": 0.795 + }, + { + "category_id": 1, + "poly": [ + 297, + 1655, + 1401, + 1655, + 1401, + 1751, + 297, + 1751 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 287, + 1771, + 1403, + 1771, + 1403, + 1836, + 287, + 1836 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 299, + 428, + 1406, + 428, + 1406, + 523, + 299, + 523 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 298, + 543, + 1406, + 543, + 1406, + 639, + 298, + 639 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 287, + 1856, + 1404, + 1856, + 1404, + 1920, + 287, + 1920 + ], + "score": 0.75 + }, + { + "category_id": 1, + "poly": [ + 297, + 658, + 1407, + 658, + 1407, + 754, + 297, + 754 + ], + "score": 0.748 + }, + { + "category_id": 1, + "poly": [ + 297, + 1480, + 1406, + 1480, + 1406, + 1636, + 297, + 1636 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 298, + 1942, + 1403, + 1942, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 290, + 1141, + 1402, + 1141, + 1402, + 1207, + 290, + 1207 + ], + "score": 0.515 + }, + { + "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, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 258.0, + 1408.0, + 258.0, + 1408.0, + 299.0, + 320.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 285.0, + 398.0, + 285.0, + 398.0, + 326.0, + 320.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1222.0, + 1404.0, + 1222.0, + 1404.0, + 1268.0, + 293.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1258.0, + 581.0, + 1258.0, + 581.0, + 1292.0, + 320.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 941.0, + 1405.0, + 941.0, + 1405.0, + 980.0, + 294.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 972.0, + 544.0, + 972.0, + 544.0, + 1007.0, + 320.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 826.0, + 1405.0, + 826.0, + 1405.0, + 865.0, + 291.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 859.0, + 1403.0, + 859.0, + 1403.0, + 893.0, + 322.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 890.0, + 464.0, + 890.0, + 464.0, + 922.0, + 324.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 1275.0, + 772.0, + 1275.0, + 812.0, + 294.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 342.0, + 1403.0, + 342.0, + 1403.0, + 382.0, + 295.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 377.0, + 1391.0, + 377.0, + 1391.0, + 410.0, + 321.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1024.0, + 1406.0, + 1024.0, + 1406.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1058.0, + 1406.0, + 1058.0, + 1406.0, + 1097.0, + 322.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1089.0, + 1052.0, + 1089.0, + 1052.0, + 1124.0, + 322.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1311.0, + 1404.0, + 1311.0, + 1404.0, + 1347.0, + 295.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1344.0, + 1399.0, + 1344.0, + 1399.0, + 1377.0, + 322.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1398.0, + 1402.0, + 1398.0, + 1402.0, + 1431.0, + 298.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1427.0, + 1196.0, + 1427.0, + 1196.0, + 1462.0, + 321.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1656.0, + 1405.0, + 1656.0, + 1405.0, + 1691.0, + 296.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1687.0, + 1403.0, + 1687.0, + 1403.0, + 1721.0, + 324.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1719.0, + 680.0, + 1719.0, + 680.0, + 1753.0, + 324.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1769.0, + 1405.0, + 1769.0, + 1405.0, + 1807.0, + 291.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1804.0, + 784.0, + 1804.0, + 784.0, + 1837.0, + 322.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 428.0, + 1404.0, + 428.0, + 1404.0, + 466.0, + 294.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 461.0, + 1404.0, + 461.0, + 1404.0, + 495.0, + 322.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 493.0, + 718.0, + 493.0, + 718.0, + 524.0, + 319.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 543.0, + 1407.0, + 543.0, + 1407.0, + 581.0, + 295.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 575.0, + 1404.0, + 575.0, + 1404.0, + 609.0, + 322.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 607.0, + 1027.0, + 607.0, + 1027.0, + 641.0, + 325.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1855.0, + 1408.0, + 1855.0, + 1408.0, + 1892.0, + 294.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1888.0, + 1284.0, + 1888.0, + 1284.0, + 1920.0, + 322.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 658.0, + 1407.0, + 658.0, + 1407.0, + 696.0, + 294.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 686.0, + 1410.0, + 686.0, + 1410.0, + 728.0, + 320.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 721.0, + 737.0, + 721.0, + 737.0, + 755.0, + 320.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1478.0, + 1408.0, + 1478.0, + 1408.0, + 1518.0, + 294.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1511.0, + 1407.0, + 1511.0, + 1407.0, + 1547.0, + 320.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1541.0, + 1409.0, + 1541.0, + 1409.0, + 1577.0, + 321.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1574.0, + 1406.0, + 1574.0, + 1406.0, + 1607.0, + 324.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1602.0, + 1006.0, + 1602.0, + 1006.0, + 1638.0, + 320.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2011.0, + 321.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2002.0, + 583.0, + 2002.0, + 583.0, + 2037.0, + 323.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1140.0, + 1405.0, + 1140.0, + 1405.0, + 1178.0, + 293.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1173.0, + 1340.0, + 1173.0, + 1340.0, + 1208.0, + 321.0, + 1208.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1481, + 1405, + 1481, + 1405, + 1638, + 297, + 1638 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 300, + 825, + 1401, + 825, + 1401, + 890, + 300, + 890 + ], + "score": 0.898 + }, + { + "category_id": 1, + "poly": [ + 298, + 1367, + 1405, + 1367, + 1405, + 1462, + 298, + 1462 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 299, + 1222, + 1405, + 1222, + 1405, + 1348, + 299, + 1348 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 297, + 1742, + 1406, + 1742, + 1406, + 1867, + 297, + 1867 + ], + "score": 0.892 + }, + { + "category_id": 1, + "poly": [ + 296, + 909, + 1402, + 909, + 1402, + 974, + 296, + 974 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 290, + 1658, + 1403, + 1658, + 1403, + 1723, + 290, + 1723 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 298, + 741, + 1401, + 741, + 1401, + 806, + 298, + 806 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 297, + 541, + 1399, + 541, + 1399, + 607, + 297, + 607 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 296, + 993, + 1402, + 993, + 1402, + 1059, + 296, + 1059 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 298, + 625, + 1407, + 625, + 1407, + 720, + 298, + 720 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 299, + 228, + 1400, + 228, + 1400, + 325, + 299, + 325 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.822 + }, + { + "category_id": 1, + "poly": [ + 300, + 1972, + 1399, + 1972, + 1399, + 2035, + 300, + 2035 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 297, + 1887, + 1400, + 1887, + 1400, + 1951, + 297, + 1951 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 291, + 343, + 1402, + 343, + 1402, + 408, + 291, + 408 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 298, + 427, + 1406, + 427, + 1406, + 521, + 298, + 521 + ], + "score": 0.795 + }, + { + "category_id": 1, + "poly": [ + 298, + 1077, + 1406, + 1077, + 1406, + 1201, + 298, + 1201 + ], + "score": 0.597 + }, + { + "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": [ + 295.0, + 1481.0, + 1408.0, + 1481.0, + 1408.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1511.0, + 1407.0, + 1511.0, + 1407.0, + 1552.0, + 320.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1581.0, + 320.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1570.0, + 1406.0, + 1570.0, + 1406.0, + 1614.0, + 319.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1604.0, + 874.0, + 1604.0, + 874.0, + 1641.0, + 321.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 825.0, + 1405.0, + 825.0, + 1405.0, + 861.0, + 295.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 856.0, + 788.0, + 856.0, + 788.0, + 891.0, + 320.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1368.0, + 1403.0, + 1368.0, + 1403.0, + 1402.0, + 296.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1400.0, + 1403.0, + 1400.0, + 1403.0, + 1434.0, + 325.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1430.0, + 692.0, + 1430.0, + 692.0, + 1464.0, + 323.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1258.0, + 295.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1250.0, + 1410.0, + 1250.0, + 1410.0, + 1292.0, + 319.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1285.0, + 1405.0, + 1285.0, + 1405.0, + 1320.0, + 321.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1314.0, + 1326.0, + 1314.0, + 1326.0, + 1350.0, + 321.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1742.0, + 1406.0, + 1742.0, + 1406.0, + 1779.0, + 295.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1773.0, + 1409.0, + 1773.0, + 1409.0, + 1809.0, + 321.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1840.0, + 321.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1835.0, + 931.0, + 1835.0, + 931.0, + 1869.0, + 321.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 908.0, + 1404.0, + 908.0, + 1404.0, + 945.0, + 294.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 940.0, + 1269.0, + 940.0, + 1269.0, + 975.0, + 319.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1654.0, + 1406.0, + 1654.0, + 1406.0, + 1696.0, + 292.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1687.0, + 487.0, + 1687.0, + 487.0, + 1724.0, + 321.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 772.0, + 862.0, + 772.0, + 862.0, + 807.0, + 323.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 542.0, + 1404.0, + 542.0, + 1404.0, + 578.0, + 296.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 574.0, + 1232.0, + 574.0, + 1232.0, + 608.0, + 322.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 992.0, + 1403.0, + 992.0, + 1403.0, + 1029.0, + 295.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1025.0, + 1310.0, + 1025.0, + 1310.0, + 1061.0, + 323.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 624.0, + 1407.0, + 624.0, + 1407.0, + 663.0, + 293.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 654.0, + 1410.0, + 654.0, + 1410.0, + 697.0, + 320.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 686.0, + 558.0, + 686.0, + 558.0, + 720.0, + 323.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 299.0, + 322.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 290.0, + 882.0, + 290.0, + 882.0, + 328.0, + 324.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2001.0, + 939.0, + 2001.0, + 939.0, + 2037.0, + 321.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1886.0, + 1404.0, + 1886.0, + 1404.0, + 1924.0, + 295.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1918.0, + 1167.0, + 1918.0, + 1167.0, + 1952.0, + 318.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 345.0, + 1404.0, + 345.0, + 1404.0, + 381.0, + 294.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 374.0, + 1205.0, + 374.0, + 1205.0, + 409.0, + 322.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 424.0, + 1404.0, + 424.0, + 1404.0, + 467.0, + 293.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 458.0, + 1408.0, + 458.0, + 1408.0, + 496.0, + 321.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 486.0, + 400.0, + 486.0, + 400.0, + 525.0, + 320.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1079.0, + 1404.0, + 1079.0, + 1404.0, + 1112.0, + 295.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1109.0, + 1407.0, + 1109.0, + 1407.0, + 1145.0, + 321.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1141.0, + 1408.0, + 1141.0, + 1408.0, + 1174.0, + 321.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1171.0, + 576.0, + 1171.0, + 576.0, + 1204.0, + 320.0, + 1204.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": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 293, + 1600, + 1403, + 1600, + 1403, + 1665, + 293, + 1665 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 290, + 1517, + 1403, + 1517, + 1403, + 1585, + 290, + 1585 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 297, + 1043, + 1402, + 1043, + 1402, + 1108, + 297, + 1108 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 296, + 1125, + 1402, + 1125, + 1402, + 1192, + 296, + 1192 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 296, + 1208, + 1404, + 1208, + 1404, + 1274, + 296, + 1274 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 296, + 961, + 1401, + 961, + 1401, + 1025, + 296, + 1025 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1405, + 1941, + 1405, + 2035, + 299, + 2035 + ], + "score": 0.738 + }, + { + "category_id": 1, + "poly": [ + 297, + 1404, + 1404, + 1404, + 1404, + 1500, + 297, + 1500 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 297, + 1292, + 1405, + 1292, + 1405, + 1387, + 297, + 1387 + ], + "score": 0.709 + }, + { + "category_id": 1, + "poly": [ + 296, + 1827, + 1402, + 1827, + 1402, + 1921, + 296, + 1921 + ], + "score": 0.69 + }, + { + "category_id": 1, + "poly": [ + 297, + 620, + 1399, + 620, + 1399, + 684, + 297, + 684 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 293, + 228, + 1402, + 228, + 1402, + 293, + 293, + 293 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 302, + 507, + 1402, + 507, + 1402, + 604, + 302, + 604 + ], + "score": 0.612 + }, + { + "category_id": 1, + "poly": [ + 298, + 704, + 1402, + 704, + 1402, + 800, + 298, + 800 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 295, + 424, + 1402, + 424, + 1402, + 490, + 295, + 490 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 298, + 311, + 1400, + 311, + 1400, + 408, + 298, + 408 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 297, + 816, + 1404, + 816, + 1404, + 942, + 297, + 942 + ], + "score": 0.559 + }, + { + "category_id": 1, + "poly": [ + 298, + 1684, + 1406, + 1684, + 1406, + 1807, + 298, + 1807 + ], + "score": 0.51 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1596.0, + 1409.0, + 1596.0, + 1409.0, + 1640.0, + 293.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1633.0, + 613.0, + 1633.0, + 613.0, + 1666.0, + 321.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1517.0, + 1405.0, + 1517.0, + 1405.0, + 1554.0, + 296.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1547.0, + 1185.0, + 1547.0, + 1185.0, + 1586.0, + 321.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1039.0, + 1407.0, + 1039.0, + 1407.0, + 1082.0, + 292.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1073.0, + 818.0, + 1073.0, + 818.0, + 1108.0, + 320.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1122.0, + 1407.0, + 1122.0, + 1407.0, + 1165.0, + 293.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1159.0, + 878.0, + 1159.0, + 878.0, + 1192.0, + 321.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1209.0, + 1406.0, + 1209.0, + 1406.0, + 1246.0, + 294.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1240.0, + 1409.0, + 1240.0, + 1409.0, + 1275.0, + 321.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 961.0, + 1406.0, + 961.0, + 1406.0, + 997.0, + 295.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 993.0, + 965.0, + 993.0, + 965.0, + 1025.0, + 320.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1942.0, + 1403.0, + 1942.0, + 1403.0, + 1976.0, + 297.0, + 1976.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": [ + 326.0, + 2003.0, + 855.0, + 2003.0, + 855.0, + 2037.0, + 326.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1405.0, + 1404.0, + 1405.0, + 1404.0, + 1440.0, + 297.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1436.0, + 1405.0, + 1436.0, + 1405.0, + 1473.0, + 321.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1467.0, + 882.0, + 1467.0, + 882.0, + 1501.0, + 324.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1408.0, + 1290.0, + 1408.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1322.0, + 1403.0, + 1322.0, + 1403.0, + 1359.0, + 323.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1354.0, + 681.0, + 1354.0, + 681.0, + 1388.0, + 322.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1824.0, + 1408.0, + 1824.0, + 1408.0, + 1864.0, + 293.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1857.0, + 1404.0, + 1857.0, + 1404.0, + 1892.0, + 323.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1887.0, + 488.0, + 1887.0, + 488.0, + 1926.0, + 323.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 616.0, + 1404.0, + 616.0, + 1404.0, + 658.0, + 292.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 648.0, + 399.0, + 648.0, + 399.0, + 687.0, + 318.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 261.0, + 608.0, + 261.0, + 608.0, + 291.0, + 322.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 509.0, + 1404.0, + 509.0, + 1404.0, + 543.0, + 298.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 537.0, + 1407.0, + 537.0, + 1407.0, + 574.0, + 321.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 569.0, + 1336.0, + 569.0, + 1336.0, + 607.0, + 323.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 705.0, + 1406.0, + 705.0, + 1406.0, + 740.0, + 297.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 736.0, + 1406.0, + 736.0, + 1406.0, + 769.0, + 322.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 766.0, + 938.0, + 766.0, + 938.0, + 802.0, + 322.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 427.0, + 1404.0, + 427.0, + 1404.0, + 460.0, + 298.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 456.0, + 1278.0, + 456.0, + 1278.0, + 491.0, + 322.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 313.0, + 1404.0, + 313.0, + 1404.0, + 347.0, + 294.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 342.0, + 1407.0, + 342.0, + 1407.0, + 379.0, + 321.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 374.0, + 1148.0, + 374.0, + 1148.0, + 409.0, + 321.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 819.0, + 1404.0, + 819.0, + 1404.0, + 852.0, + 296.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 844.0, + 1406.0, + 844.0, + 1406.0, + 888.0, + 319.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 878.0, + 1405.0, + 878.0, + 1405.0, + 917.0, + 321.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 911.0, + 932.0, + 911.0, + 932.0, + 944.0, + 324.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1685.0, + 1404.0, + 1685.0, + 1404.0, + 1718.0, + 295.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1713.0, + 1407.0, + 1713.0, + 1407.0, + 1751.0, + 321.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1745.0, + 1404.0, + 1745.0, + 1404.0, + 1780.0, + 321.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1777.0, + 755.0, + 1777.0, + 755.0, + 1809.0, + 321.0, + 1809.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 814, + 75, + 814, + 105, + 300, + 105 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 300, + 456, + 1398, + 456, + 1398, + 520, + 300, + 520 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1401, + 229, + 1401, + 324, + 300, + 324 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 301, + 342, + 1400, + 342, + 1400, + 436, + 301, + 436 + ], + "score": 0.654 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 1403.0, + 452.0, + 1403.0, + 494.0, + 295.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 485.0, + 843.0, + 485.0, + 843.0, + 521.0, + 324.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 297.0, + 320.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 289.0, + 1076.0, + 289.0, + 1076.0, + 328.0, + 321.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 344.0, + 1404.0, + 344.0, + 1404.0, + 378.0, + 298.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 372.0, + 1404.0, + 372.0, + 1404.0, + 410.0, + 322.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 404.0, + 711.0, + 404.0, + 711.0, + 441.0, + 322.0, + 441.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1213, + 1404, + 1213, + 1404, + 1367, + 296, + 1367 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 487, + 1406, + 487, + 1406, + 581, + 297, + 581 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1839, + 1405, + 1839, + 1405, + 1935, + 298, + 1935 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1574, + 1402, + 1574, + 1402, + 1669, + 298, + 1669 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 1466, + 1403, + 1466, + 1403, + 1561, + 299, + 1561 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 595, + 1400, + 595, + 1400, + 660, + 298, + 660 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 758, + 1402, + 758, + 1402, + 823, + 299, + 823 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 1762, + 1405, + 1762, + 1405, + 1827, + 299, + 1827 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 1036, + 1407, + 1036, + 1407, + 1101, + 296, + 1101 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 769, + 1370, + 928, + 1370, + 928, + 1409, + 769, + 1409 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 667, + 413, + 1033, + 413, + 1033, + 457, + 667, + 457 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 723, + 1998, + 976, + 1998, + 976, + 2039, + 723, + 2039 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 674, + 1146, + 1027, + 1146, + 1027, + 1188, + 674, + 1188 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 734, + 1687, + 962, + 1687, + 962, + 1728, + 734, + 1728 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 296, + 1419, + 981, + 1419, + 981, + 1453, + 296, + 1453 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 298, + 1948, + 861, + 1948, + 861, + 1982, + 298, + 1982 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 295, + 352, + 1045, + 352, + 1045, + 392, + 295, + 392 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 699, + 492, + 699, + 492, + 731, + 299, + 731 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1151, + 1400, + 1151, + 1400, + 1182, + 1352, + 1182 + ], + "score": 0.913 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1374, + 1400, + 1374, + 1400, + 1404, + 1352, + 1404 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 814, + 74, + 814, + 106, + 298, + 106 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1352, + 418, + 1400, + 418, + 1400, + 450, + 1352, + 450 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1693, + 1399, + 1693, + 1399, + 1724, + 1352, + 1724 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1352, + 2003, + 1400, + 2003, + 1400, + 2033, + 1352, + 2033 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 968, + 1400, + 968, + 1400, + 998, + 1352, + 998 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1352, + 890, + 1400, + 890, + 1400, + 922, + 1352, + 922 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.872 + }, + { + "category_id": 0, + "poly": [ + 301, + 225, + 705, + 225, + 705, + 263, + 301, + 263 + ], + "score": 0.83 + }, + { + "category_id": 8, + "poly": [ + 416, + 877, + 1284, + 877, + 1284, + 960, + 416, + 960 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 300, + 296, + 641, + 296, + 641, + 330, + 300, + 330 + ], + "score": 0.504 + }, + { + "category_id": 0, + "poly": [ + 300, + 296, + 641, + 296, + 641, + 330, + 300, + 330 + ], + "score": 0.493 + }, + { + "category_id": 8, + "poly": [ + 409, + 876, + 1291, + 876, + 1291, + 1006, + 409, + 1006 + ], + "score": 0.251 + }, + { + "category_id": 1, + "poly": [ + 409, + 964, + 678, + 964, + 678, + 1004, + 409, + 1004 + ], + "score": 0.126 + }, + { + "category_id": 14, + "poly": [ + 672, + 1145, + 1025, + 1145, + 1025, + 1187, + 672, + 1187 + ], + "score": 0.93, + "latex": "\\mathrm { i n p u t } ^ { t } = [ W _ { d } d ^ { t - 1 } , f e e d ^ { t - 1 } , z ]" + }, + { + "category_id": 14, + "poly": [ + 733, + 1686, + 964, + 1686, + 964, + 1728, + 733, + 1728 + ], + "score": 0.93, + "latex": "\\mathrm { o u t p u t } ^ { t } = W _ { e } ^ { \\top } \\mathrm { f e e d } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 856, + 352, + 917, + 352, + 917, + 394, + 856, + 394 + ], + "score": 0.92, + "latex": "h _ { \\mathrm { p r o t o } } ^ { k j }" + }, + { + "category_id": 14, + "poly": [ + 768, + 1369, + 930, + 1369, + 930, + 1409, + 768, + 1409 + ], + "score": 0.92, + "latex": "{ \\sf q u e r y } ^ { t } = h _ { \\mathrm { o u t } } ^ { t }" + }, + { + "category_id": 14, + "poly": [ + 666, + 411, + 1033, + 411, + 1033, + 457, + 666, + 457 + ], + "score": 0.91, + "latex": "h _ { \\mathrm { p r o t o } } ^ { k } = \\mathrm { p r o j } ( \\mathrm { B i L S T M } \\left( W _ { e } d _ { k } ^ { \\prime } \\right) )" + }, + { + "category_id": 14, + "poly": [ + 721, + 1997, + 978, + 1997, + 978, + 2038, + 721, + 2038 + ], + "score": 0.91, + "latex": "{ \\displaystyle \\mathrm { q u e r y } ^ { t } } = [ h _ { \\mathrm { o u t } } ^ { t } , \\mathrm { i n p u t } ^ { t } ]" + }, + { + "category_id": 14, + "poly": [ + 406, + 877, + 1291, + 877, + 1291, + 1008, + 406, + 1008 + ], + "score": 0.9, + "latex": "\\begin{array} { l l l } { { } } & { { \\displaystyle h _ { \\mathrm { p r e } } ^ { t } = \\left[ h _ { \\mathrm { o u t } } ^ { t } , ~ \\sum _ { i } \\alpha _ { \\mathrm { o u t } } ^ { i } h _ { \\mathrm { o u t } } ^ { i } , ~ \\sum _ { j \\leq | d _ { 1 } | } \\alpha _ { \\mathrm { p r o t o } } ^ { 1 j } h _ { \\mathrm { p r o t o } } ^ { 1 j } , ~ \\cdots ~ , ~ \\sum _ { j \\leq | d _ { n } | } \\alpha _ { \\mathrm { p r o t o } } ^ { n j } h _ { \\mathrm { p r o t o } } ^ { n j } ~ \\right] } } \\\\ { { } } & { { \\mathrm { f e e d } ^ { t } = \\mathrm { L i n e a r } _ { \\mathrm { f e e d } } ( h _ { \\mathrm { p r e } } ^ { t } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1762, + 1400, + 1762, + 1400, + 1797, + 1348, + 1797 + ], + "score": 0.89, + "latex": "h _ { o u t } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1903, + 352, + 1903, + 352, + 1935, + 298, + 1935 + ], + "score": 0.89, + "latex": "d _ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1355, + 1842, + 1396, + 1842, + 1396, + 1872, + 1355, + 1872 + ], + "score": 0.88, + "latex": "W _ { d }" + }, + { + "category_id": 13, + "poly": [ + 869, + 1872, + 909, + 1872, + 909, + 1903, + 869, + 1903 + ], + "score": 0.88, + "latex": "W _ { e }" + }, + { + "category_id": 13, + "poly": [ + 783, + 1041, + 797, + 1041, + 797, + 1065, + 783, + 1065 + ], + "score": 0.79, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 726, + 1075, + 744, + 1075, + 744, + 1096, + 726, + 1096 + ], + "score": 0.78, + "latex": "z" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 699.0, + 495.0, + 699.0, + 495.0, + 735.0, + 295.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 709.0, + 224.0, + 709.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 296.0, + 641.0, + 296.0, + 641.0, + 333.0, + 296.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1252.0, + 293.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1246.0, + 1404.0, + 1246.0, + 1404.0, + 1279.0, + 295.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1275.0, + 1406.0, + 1275.0, + 1406.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1307.0, + 1401.0, + 1307.0, + 1401.0, + 1340.0, + 296.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1335.0, + 635.0, + 1335.0, + 635.0, + 1373.0, + 293.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 522.0, + 295.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 519.0, + 1404.0, + 519.0, + 1404.0, + 553.0, + 296.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 591.0, + 547.0, + 591.0, + 581.0, + 295.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1837.0, + 1354.0, + 1837.0, + 1354.0, + 1877.0, + 292.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1837.0, + 1409.0, + 1837.0, + 1409.0, + 1877.0, + 1397.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1867.0, + 868.0, + 1867.0, + 868.0, + 1909.0, + 292.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1867.0, + 1406.0, + 1867.0, + 1406.0, + 1909.0, + 910.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1898.0, + 297.0, + 1898.0, + 297.0, + 1943.0, + 293.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1898.0, + 368.0, + 1898.0, + 368.0, + 1943.0, + 353.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1575.0, + 1403.0, + 1575.0, + 1403.0, + 1609.0, + 296.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 1406.0, + 1604.0, + 1406.0, + 1641.0, + 294.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1636.0, + 1077.0, + 1636.0, + 1077.0, + 1673.0, + 294.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1405.0, + 1467.0, + 1405.0, + 1501.0, + 295.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1499.0, + 1404.0, + 1499.0, + 1404.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 777.0, + 1529.0, + 777.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 1402.0, + 593.0, + 1402.0, + 631.0, + 294.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 628.0, + 978.0, + 628.0, + 978.0, + 661.0, + 294.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 754.0, + 1404.0, + 754.0, + 1404.0, + 797.0, + 294.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 792.0, + 758.0, + 792.0, + 758.0, + 824.0, + 297.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1749.0, + 1347.0, + 1749.0, + 1347.0, + 1810.0, + 289.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1749.0, + 1410.0, + 1749.0, + 1410.0, + 1810.0, + 1401.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1793.0, + 1347.0, + 1793.0, + 1347.0, + 1829.0, + 295.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1034.0, + 782.0, + 1034.0, + 782.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1034.0, + 1407.0, + 1034.0, + 1407.0, + 1072.0, + 798.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1069.0, + 725.0, + 1069.0, + 725.0, + 1101.0, + 295.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1069.0, + 1051.0, + 1069.0, + 1051.0, + 1101.0, + 745.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1415.0, + 983.0, + 1415.0, + 983.0, + 1457.0, + 294.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1946.0, + 863.0, + 1946.0, + 863.0, + 1987.0, + 293.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 335.0, + 855.0, + 335.0, + 855.0, + 410.0, + 285.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 335.0, + 1047.0, + 335.0, + 1047.0, + 410.0, + 918.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 296.0, + 641.0, + 296.0, + 641.0, + 333.0, + 296.0, + 333.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1462, + 1405, + 1462, + 1405, + 1744, + 296, + 1744 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1293, + 1404, + 1293, + 1404, + 1448, + 298, + 1448 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 977, + 1404, + 977, + 1404, + 1102, + 298, + 1102 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 333, + 1405, + 333, + 1405, + 459, + 297, + 459 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 580, + 1405, + 580, + 1405, + 674, + 298, + 674 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 472, + 1399, + 472, + 1399, + 567, + 298, + 567 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 842, + 1402, + 842, + 1402, + 907, + 297, + 907 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1757, + 1402, + 1757, + 1402, + 1820, + 298, + 1820 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 1216, + 1401, + 1216, + 1401, + 1278, + 296, + 1278 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 1893, + 1403, + 1893, + 1403, + 1956, + 296, + 1956 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 684, + 921, + 1013, + 921, + 1013, + 960, + 684, + 960 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 527, + 1835, + 1167, + 1835, + 1167, + 1879, + 527, + 1879 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 689, + 689, + 1009, + 689, + 1009, + 728, + 689, + 728 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 742, + 918, + 742, + 918, + 775, + 297, + 775 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 702, + 789, + 994, + 789, + 994, + 828, + 702, + 828 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 533, + 1999, + 1164, + 1999, + 1164, + 2040, + 533, + 2040 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 300, + 74, + 813, + 74, + 813, + 105, + 300, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 301, + 229, + 690, + 229, + 690, + 262, + 301, + 262 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 296, + 285, + 1333, + 285, + 1333, + 320, + 296, + 320 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 2003, + 1400, + 2003, + 1400, + 2033, + 1352, + 2033 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.869 + }, + { + "category_id": 0, + "poly": [ + 298, + 1147, + 846, + 1147, + 846, + 1182, + 298, + 1182 + ], + "score": 0.493 + }, + { + "category_id": 0, + "poly": [ + 298, + 1147, + 846, + 1147, + 846, + 1182, + 298, + 1182 + ], + "score": 0.423 + }, + { + "category_id": 14, + "poly": [ + 684, + 918, + 1015, + 918, + 1015, + 960, + 684, + 960 + ], + "score": 0.91, + "latex": "p ^ { t } ( w ) = \\mathtt { p r o b } ^ { t } ( \\mathtt { i n d i c e s } ( w ) )" + }, + { + "category_id": 13, + "poly": [ + 579, + 1893, + 645, + 1893, + 645, + 1928, + 579, + 1928 + ], + "score": 0.91, + "latex": "{ \\mathcal { N } } ( d )" + }, + { + "category_id": 14, + "poly": [ + 702, + 787, + 995, + 787, + 995, + 828, + 702, + 828 + ], + "score": 0.91, + "latex": "{ \\mathrm { p r o b } } ^ { t } = \\operatorname { s o f t m a x } ( f i n a l ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 777, + 1356, + 908, + 1356, + 908, + 1385, + 777, + 1385 + ], + "score": 0.91, + "latex": "k < 1 0 \\times 3" + }, + { + "category_id": 14, + "poly": [ + 687, + 686, + 1011, + 686, + 1011, + 727, + 687, + 727 + ], + "score": 0.91, + "latex": "\\mathrm { f i n a l } ^ { t } = [ \\mathrm { o u t p u t } ^ { t } , \\bar { \\alpha } _ { 1 } , . . . , \\bar { \\alpha } _ { n } ]" + }, + { + "category_id": 14, + "poly": [ + 530, + 1835, + 1168, + 1835, + 1168, + 1878, + 530, + 1878 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\Omega = \\{ ( d _ { 1 } , d _ { 2 } ) | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\neq d _ { 2 t a g s } ^ { \\prime } , ( d _ { \\mathrm { t a g s } } \\backslash d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\backslash d _ { \\mathrm { 2 t a g s } } ^ { \\prime } ) = 0 \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 643, + 1326, + 736, + 1326, + 736, + 1354, + 643, + 1354 + ], + "score": 0.9, + "latex": "\\delta = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1417, + 1230, + 1417, + 1230, + 1446, + 1146, + 1446 + ], + "score": 0.89, + "latex": "k < 1 0" + }, + { + "category_id": 14, + "poly": [ + 534, + 1998, + 1162, + 1998, + 1162, + 2041, + 534, + 2041 + ], + "score": 0.89, + "latex": "\\mathrm { s c o r e } _ { 1 } ( d , d _ { 1 } ^ { \\prime } ) = \\left( | d _ { \\mathrm { t a g s } } \\Delta d _ { \\mathrm { 1 t a g s } } ^ { \\prime } | , \\mathrm { j a c c a r d } ( d _ { \\mathrm { l e m m a } } , d _ { \\mathrm { 1 l e m m a } } ^ { \\prime } ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1295, + 1121, + 1295, + 1121, + 1324, + 1029, + 1324 + ], + "score": 0.89, + "latex": "\\delta = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1048, + 1494, + 1077, + 1494, + 1077, + 1527, + 1048, + 1527 + ], + "score": 0.89, + "latex": "d _ { 1 } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1494, + 1279, + 1494, + 1279, + 1527, + 1249, + 1527 + ], + "score": 0.88, + "latex": "d _ { 2 } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1682, + 393, + 1682, + 393, + 1710, + 298, + 1710 + ], + "score": 0.88, + "latex": "T = 0 . 4" + }, + { + "category_id": 13, + "poly": [ + 951, + 615, + 982, + 615, + 982, + 642, + 951, + 642 + ], + "score": 0.86, + "latex": "\\bar { \\alpha } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1585, + 1275, + 1585, + 1275, + 1617, + 1251, + 1617 + ], + "score": 0.83, + "latex": "\\hat { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1714, + 784, + 1714, + 784, + 1739, + 762, + 1739 + ], + "score": 0.82, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 827, + 1790, + 850, + 1790, + 850, + 1816, + 827, + 1816 + ], + "score": 0.82, + "latex": "\\Omega" + }, + { + "category_id": 13, + "poly": [ + 908, + 1326, + 932, + 1326, + 932, + 1353, + 908, + 1353 + ], + "score": 0.81, + "latex": "\\Omega" + }, + { + "category_id": 13, + "poly": [ + 419, + 1590, + 443, + 1590, + 443, + 1617, + 419, + 1617 + ], + "score": 0.79, + "latex": "\\Omega" + }, + { + "category_id": 13, + "poly": [ + 1017, + 985, + 1041, + 985, + 1041, + 1006, + 1017, + 1006 + ], + "score": 0.76, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 565, + 1015, + 588, + 1015, + 588, + 1037, + 565, + 1037 + ], + "score": 0.75, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 451, + 538, + 473, + 538, + 473, + 562, + 451, + 562 + ], + "score": 0.74, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1386, + 1387, + 1402, + 1387, + 1402, + 1413, + 1386, + 1413 + ], + "score": 0.43, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1039, + 707, + 1039, + 707, + 1071, + 642, + 1071 + ], + "score": 0.41, + "latex": "p r o b ^ { t }" + }, + { + "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": [ + 296.0, + 228.0, + 693.0, + 228.0, + 693.0, + 264.0, + 296.0, + 264.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": [ + 292.0, + 1142.0, + 848.0, + 1142.0, + 848.0, + 1188.0, + 292.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1142.0, + 848.0, + 1142.0, + 848.0, + 1188.0, + 292.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1464.0, + 1405.0, + 1464.0, + 1405.0, + 1497.0, + 296.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1492.0, + 1047.0, + 1492.0, + 1047.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1492.0, + 1248.0, + 1492.0, + 1248.0, + 1530.0, + 1078.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1492.0, + 1405.0, + 1492.0, + 1405.0, + 1530.0, + 1280.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1522.0, + 1406.0, + 1522.0, + 1406.0, + 1561.0, + 293.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1555.0, + 1405.0, + 1555.0, + 1405.0, + 1588.0, + 295.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 418.0, + 1588.0, + 418.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1588.0, + 1250.0, + 1588.0, + 1250.0, + 1624.0, + 444.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1588.0, + 1406.0, + 1588.0, + 1406.0, + 1624.0, + 1276.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1619.0, + 1403.0, + 1619.0, + 1403.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1648.0, + 1403.0, + 1648.0, + 1403.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1679.0, + 297.0, + 1679.0, + 297.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1679.0, + 1407.0, + 1679.0, + 1407.0, + 1717.0, + 394.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 761.0, + 1712.0, + 761.0, + 1745.0, + 294.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1712.0, + 793.0, + 1712.0, + 793.0, + 1745.0, + 785.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1291.0, + 1028.0, + 1291.0, + 1028.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1291.0, + 1405.0, + 1291.0, + 1405.0, + 1331.0, + 1122.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1323.0, + 642.0, + 1323.0, + 642.0, + 1363.0, + 293.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1323.0, + 907.0, + 1323.0, + 907.0, + 1363.0, + 737.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1323.0, + 1406.0, + 1323.0, + 1406.0, + 1363.0, + 933.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1355.0, + 776.0, + 1355.0, + 776.0, + 1392.0, + 294.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1355.0, + 1406.0, + 1355.0, + 1406.0, + 1392.0, + 909.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1385.0, + 1385.0, + 1385.0, + 1385.0, + 1422.0, + 294.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 1145.0, + 1414.0, + 1145.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1414.0, + 1409.0, + 1414.0, + 1409.0, + 1455.0, + 1231.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 979.0, + 1016.0, + 979.0, + 1016.0, + 1011.0, + 296.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 979.0, + 1401.0, + 979.0, + 1401.0, + 1011.0, + 1042.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1010.0, + 564.0, + 1010.0, + 564.0, + 1043.0, + 294.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1010.0, + 1404.0, + 1010.0, + 1404.0, + 1043.0, + 589.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1037.0, + 641.0, + 1037.0, + 641.0, + 1075.0, + 292.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1037.0, + 1404.0, + 1037.0, + 1404.0, + 1075.0, + 708.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1069.0, + 908.0, + 1069.0, + 908.0, + 1105.0, + 294.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 334.0, + 1408.0, + 334.0, + 1408.0, + 370.0, + 294.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 365.0, + 1405.0, + 365.0, + 1405.0, + 398.0, + 295.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 392.0, + 1405.0, + 392.0, + 1405.0, + 434.0, + 292.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 428.0, + 1084.0, + 428.0, + 1084.0, + 461.0, + 295.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 580.0, + 1405.0, + 580.0, + 1405.0, + 617.0, + 293.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 614.0, + 950.0, + 614.0, + 950.0, + 645.0, + 293.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 614.0, + 1403.0, + 614.0, + 1403.0, + 645.0, + 983.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1408.0, + 643.0, + 1408.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 473.0, + 1404.0, + 473.0, + 1404.0, + 507.0, + 296.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 504.0, + 1405.0, + 504.0, + 1405.0, + 538.0, + 292.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 533.0, + 450.0, + 533.0, + 450.0, + 573.0, + 292.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 533.0, + 977.0, + 533.0, + 977.0, + 573.0, + 474.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 838.0, + 1406.0, + 838.0, + 1406.0, + 881.0, + 292.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 875.0, + 706.0, + 875.0, + 706.0, + 911.0, + 293.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1755.0, + 1404.0, + 1755.0, + 1404.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1787.0, + 826.0, + 1787.0, + 826.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1787.0, + 891.0, + 1787.0, + 891.0, + 1823.0, + 851.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1214.0, + 1403.0, + 1214.0, + 1403.0, + 1252.0, + 292.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 565.0, + 1247.0, + 565.0, + 1282.0, + 294.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1889.0, + 578.0, + 1889.0, + 578.0, + 1932.0, + 293.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1889.0, + 1408.0, + 1889.0, + 1408.0, + 1932.0, + 646.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1925.0, + 470.0, + 1925.0, + 470.0, + 1958.0, + 295.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 921.0, + 739.0, + 921.0, + 782.0, + 294.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 281.0, + 1334.0, + 281.0, + 1334.0, + 325.0, + 292.0, + 325.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1295, + 1404, + 1295, + 1404, + 1450, + 298, + 1450 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1563, + 1403, + 1563, + 1403, + 1687, + 299, + 1687 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 782, + 1404, + 782, + 1404, + 939, + 298, + 939 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1157, + 1404, + 1157, + 1404, + 1282, + 298, + 1282 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 951, + 1403, + 951, + 1403, + 1045, + 299, + 1045 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1800, + 1404, + 1800, + 1404, + 1953, + 298, + 1953 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 575, + 1404, + 575, + 1404, + 669, + 298, + 669 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1403, + 229, + 1403, + 294, + 293, + 294 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 307, + 1401, + 307, + 1401, + 371, + 295, + 371 + ], + "score": 0.948 + }, + { + "category_id": 2, + "poly": [ + 296, + 1978, + 1407, + 1978, + 1407, + 2034, + 296, + 2034 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 571, + 429, + 1126, + 429, + 1126, + 474, + 571, + 474 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 300, + 1494, + 639, + 1494, + 639, + 1529, + 300, + 1529 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1353, + 434, + 1399, + 434, + 1399, + 465, + 1353, + 465 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 301, + 713, + 814, + 713, + 814, + 748, + 301, + 748 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 1730, + 537, + 1730, + 537, + 1766, + 299, + 1766 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 300, + 1088, + 763, + 1088, + 763, + 1125, + 300, + 1125 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2113, + 836, + 2113 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 293, + 500, + 1400, + 500, + 1400, + 562, + 293, + 562 + ], + "score": 0.649 + }, + { + "category_id": 13, + "poly": [ + 681, + 1251, + 741, + 1251, + 741, + 1285, + 681, + 1285 + ], + "score": 0.92, + "latex": "d _ { \\mathrm { p r o t o } }" + }, + { + "category_id": 13, + "poly": [ + 943, + 529, + 1008, + 529, + 1008, + 563, + 943, + 563 + ], + "score": 0.92, + "latex": "{ \\mathcal { N } } ( d )" + }, + { + "category_id": 13, + "poly": [ + 929, + 608, + 997, + 608, + 997, + 641, + 929, + 641 + ], + "score": 0.92, + "latex": "d _ { \\mathrm { o u t p u t } }" + }, + { + "category_id": 13, + "poly": [ + 327, + 1389, + 460, + 1389, + 460, + 1422, + 327, + 1422 + ], + "score": 0.91, + "latex": "p _ { \\mathrm { a u g } } = 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 813, + 262, + 878, + 262, + 878, + 295, + 813, + 295 + ], + "score": 0.91, + "latex": "{ \\mathcal { N } } ( d )" + }, + { + "category_id": 13, + "poly": [ + 573, + 308, + 638, + 308, + 638, + 342, + 573, + 342 + ], + "score": 0.91, + "latex": "{ \\mathcal { N } } ( d )" + }, + { + "category_id": 13, + "poly": [ + 510, + 1389, + 630, + 1389, + 630, + 1421, + 510, + 1421 + ], + "score": 0.91, + "latex": "p _ { \\mathrm { a u g } } = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 367, + 1801, + 419, + 1801, + 419, + 1835, + 367, + 1835 + ], + "score": 0.9, + "latex": "p ( z )" + }, + { + "category_id": 13, + "poly": [ + 664, + 608, + 723, + 608, + 723, + 641, + 664, + 641 + ], + "score": 0.9, + "latex": "d _ { \\mathrm { i n p u t } }" + }, + { + "category_id": 13, + "poly": [ + 1153, + 844, + 1402, + 844, + 1402, + 878, + 1153, + 878 + ], + "score": 0.9, + "latex": "( d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } \\triangleright d _ { \\mathrm { i n f l e c t i o n } } )" + }, + { + "category_id": 14, + "poly": [ + 571, + 428, + 1127, + 428, + 1127, + 473, + 571, + 473 + ], + "score": 0.9, + "latex": "\\mathrm { s c o r e } _ { 2 } ( d , d _ { 1 } ^ { \\prime } , d _ { 2 } ^ { \\prime } ) = \\left( d _ { \\mathrm { t a g s } } \\neq d _ { \\mathrm { 2 t a g s } } ^ { \\prime } , | d _ { \\mathrm { 1 t a g s } } ^ { \\prime } \\Delta d _ { \\mathrm { 2 t a g s } } ^ { \\prime } | \\right)" + }, + { + "category_id": 13, + "poly": [ + 668, + 1863, + 821, + 1863, + 821, + 1895, + 668, + 1895 + ], + "score": 0.9, + "latex": "\\mu _ { \\mathrm { m a x } } ~ = ~ 1 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1046, + 577, + 1151, + 577, + 1151, + 606, + 1046, + 606 + ], + "score": 0.89, + "latex": "T = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 299, + 906, + 546, + 906, + 546, + 939, + 299, + 939 + ], + "score": 0.88, + "latex": "( d _ { \\mathrm { i n f l e c t i o n } } \\triangleright d _ { \\mathrm { l e m m a } } d _ { \\mathrm { t a g s } } )" + }, + { + "category_id": 13, + "poly": [ + 877, + 1251, + 895, + 1251, + 895, + 1277, + 877, + 1277 + ], + "score": 0.78, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 800, + 1255, + 819, + 1255, + 819, + 1277, + 800, + 1277 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 954, + 1256, + 972, + 1256, + 972, + 1282, + 954, + 1282 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1808, + 1285, + 1808, + 1285, + 1829, + 1266, + 1829 + ], + "score": 0.74, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 535, + 1600, + 555, + 1600, + 555, + 1622, + 535, + 1622 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 784, + 236, + 864, + 236, + 864, + 261, + 784, + 261 + ], + "score": 0.74, + "latex": "s c o r e _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 983, + 1631, + 1003, + 1631, + 1003, + 1653, + 983, + 1653 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 358, + 2006, + 375, + 2006, + 375, + 2030, + 358, + 2030 + ], + "score": 0.73, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 847, + 1596, + 865, + 1596, + 865, + 1623, + 847, + 1623 + ], + "score": 0.72, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 370, + 507, + 388, + 507, + 388, + 527, + 370, + 527 + ], + "score": 0.7, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 370, + 232, + 387, + 232, + 387, + 258, + 370, + 258 + ], + "score": 0.68, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1298, + 505, + 1371, + 505, + 1371, + 530, + 1298, + 530 + ], + "score": 0.6, + "latex": "{ \\mathrm { s c o r e } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1599, + 1361, + 1599, + 1361, + 1627, + 1331, + 1627 + ], + "score": 0.4, + "latex": "y \\mathrm { s }" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2013.0, + 327.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 357.0, + 2004.0, + 357.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 2004.0, + 1201.0, + 2004.0, + 1201.0, + 2036.0, + 376.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1491.0, + 641.0, + 1491.0, + 641.0, + 1534.0, + 293.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 708.0, + 819.0, + 708.0, + 819.0, + 755.0, + 292.0, + 755.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": [ + 291.0, + 1727.0, + 543.0, + 1727.0, + 543.0, + 1774.0, + 291.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 770.0, + 1086.0, + 770.0, + 1133.0, + 294.0, + 1133.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": [ + 296.0, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1330.0, + 296.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 1404.0, + 1326.0, + 1404.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1357.0, + 1405.0, + 1357.0, + 1405.0, + 1394.0, + 294.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1387.0, + 326.0, + 1387.0, + 326.0, + 1428.0, + 293.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1387.0, + 509.0, + 1387.0, + 509.0, + 1428.0, + 461.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1387.0, + 1406.0, + 1387.0, + 1406.0, + 1428.0, + 631.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1416.0, + 1287.0, + 1416.0, + 1287.0, + 1455.0, + 293.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 1404.0, + 1563.0, + 1404.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 534.0, + 1593.0, + 534.0, + 1629.0, + 294.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1593.0, + 846.0, + 1593.0, + 846.0, + 1629.0, + 556.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1593.0, + 1330.0, + 1593.0, + 1330.0, + 1629.0, + 866.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1593.0, + 1405.0, + 1593.0, + 1405.0, + 1629.0, + 1362.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 982.0, + 1624.0, + 982.0, + 1663.0, + 293.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1663.0, + 1004.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1655.0, + 1403.0, + 1655.0, + 1403.0, + 1690.0, + 293.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 782.0, + 1404.0, + 782.0, + 1404.0, + 819.0, + 294.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 810.0, + 1405.0, + 810.0, + 1405.0, + 850.0, + 293.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 840.0, + 1152.0, + 840.0, + 1152.0, + 882.0, + 293.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 840.0, + 1406.0, + 840.0, + 1406.0, + 882.0, + 1403.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1408.0, + 871.0, + 1408.0, + 910.0, + 292.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 903.0, + 298.0, + 903.0, + 298.0, + 945.0, + 293.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 903.0, + 558.0, + 903.0, + 558.0, + 945.0, + 547.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1156.0, + 1406.0, + 1156.0, + 1406.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1190.0, + 1406.0, + 1190.0, + 1406.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1404.0, + 1221.0, + 1404.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 680.0, + 1248.0, + 680.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1248.0, + 799.0, + 1248.0, + 799.0, + 1286.0, + 742.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1248.0, + 876.0, + 1248.0, + 876.0, + 1286.0, + 820.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1248.0, + 953.0, + 1248.0, + 953.0, + 1286.0, + 896.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1248.0, + 983.0, + 1248.0, + 983.0, + 1286.0, + 973.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 948.0, + 1404.0, + 948.0, + 1404.0, + 988.0, + 292.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 979.0, + 1404.0, + 979.0, + 1404.0, + 1021.0, + 293.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1013.0, + 783.0, + 1013.0, + 783.0, + 1046.0, + 294.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1797.0, + 366.0, + 1797.0, + 366.0, + 1837.0, + 293.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1797.0, + 1265.0, + 1797.0, + 1265.0, + 1837.0, + 420.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1797.0, + 1405.0, + 1797.0, + 1405.0, + 1837.0, + 1286.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1830.0, + 1406.0, + 1830.0, + 1406.0, + 1867.0, + 294.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1859.0, + 667.0, + 1859.0, + 667.0, + 1900.0, + 292.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1859.0, + 1406.0, + 1859.0, + 1406.0, + 1900.0, + 822.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1891.0, + 1404.0, + 1891.0, + 1404.0, + 1928.0, + 294.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1925.0, + 632.0, + 1925.0, + 632.0, + 1958.0, + 296.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 570.0, + 1045.0, + 570.0, + 1045.0, + 616.0, + 292.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 570.0, + 1405.0, + 570.0, + 1405.0, + 616.0, + 1152.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 603.0, + 663.0, + 603.0, + 663.0, + 646.0, + 291.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 603.0, + 928.0, + 603.0, + 928.0, + 646.0, + 724.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 603.0, + 1408.0, + 603.0, + 1408.0, + 646.0, + 998.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 637.0, + 416.0, + 637.0, + 416.0, + 673.0, + 293.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 369.0, + 229.0, + 369.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 229.0, + 783.0, + 229.0, + 783.0, + 265.0, + 388.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 865.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 812.0, + 260.0, + 812.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 260.0, + 891.0, + 260.0, + 891.0, + 296.0, + 879.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 307.0, + 572.0, + 307.0, + 572.0, + 343.0, + 295.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 343.0, + 639.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 336.0, + 802.0, + 336.0, + 802.0, + 376.0, + 294.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 496.0, + 369.0, + 496.0, + 369.0, + 536.0, + 295.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 496.0, + 1297.0, + 496.0, + 1297.0, + 536.0, + 389.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 496.0, + 1404.0, + 496.0, + 1404.0, + 536.0, + 1372.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 527.0, + 942.0, + 527.0, + 942.0, + 566.0, + 295.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 527.0, + 1020.0, + 527.0, + 1020.0, + 566.0, + 1009.0, + 566.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 413, + 1609, + 1288, + 1609, + 1288, + 1853, + 413, + 1853 + ], + "score": 0.984, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.609 ±0.0250.873 ±0.0340.746 ±0.0130.897 ±0.0050.561 ±0.0320.867 ±0.015
geca0.606 ±0.0190.871 ±0.0170.722 ±0.0180.884 ±0.0070.565 ±0.0340.856 ±0.028
geca + resampling0.675 ±0.0170.870 ±0.0220.802 ±0.0230.892 ±0.0100.65 ±0.050.850 ±0.019
learned aug0.597 ±0.0210.871 ±0.0240.737 ±0.0100.897 ±0.0110.58 ±0.040.853 ±0.026
learned aug +resampling0.646 ±0.0070.872 ±0.0280.826 ±0.0130.887 ±0.0100.637 ±0.0320.835 ±0.034
recomb-10.596 ±0.0200.884 ±0.0100.727 ±0.0120.893 ±0.0100.557 ±0.0320.868 ±0.010
recomb-1 + resampling0.663 ±0.0290.874 ±0.0140.812 ±0.0170.886 ±0.0110.67 ±0.040.84 ±0.04
recomb-20.598 ±0.0190.874 ±0.0070.730 ±0.0230.894 ±0.0080.581 ±0.0350.865 ±0.024
recomb-2 + resampling0.658 ±0.0120.872 ±0.0150.778 ±0.0110.897 ±0.0070.609 ±0.0320.850 ±0.029
" + }, + { + "category_id": 5, + "poly": [ + 412, + 1231, + 1286, + 1231, + 1286, + 1475, + 412, + 1475 + ], + "score": 0.984, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.078 ±0.0290.63 ±0.090.107 ±0.0340.532 ±0.0290.067 ±0.0200.57 ±0.04
geca0.072 ±0.0190.63 ±0.050.039 ±0.0110.496 ±0.0270.052 ±0.0140.54 ±0.08
geca + resampling0.16 ±0.040.65 ±0.050.27 ±0.080.52 ±0.040.12 ±0.040.554 ±0.029
learned aug0.063 ±0.0120.65 ±0.040.066 ±0.0340.52 ±0.040.074 ±0.0210.57 ±0.04
learned aug + resampling0.098 ±0.0210.65 ±0.050.29 ±0.060.480 ±0.0350.092 ±0.0290.54 ±0.06
recomb-10.063 ±0.0170.674 ±0.0210.061 ±0.0170.520 ±0.0280.055 ±0.0210.554 ±0.030
recomb-1 + resampling0.13 ±0.040.64 ±0.040.29 ±0.040.48 ±0.040.15 ±0.040.52 ±0.06
recomb-20.061 ±0.0100.656 ±0.0300.08 ±0.060.524 ±0.0260.073 ±0.0190.58 ±0.05
recomb-2+resampling0.108 ±0.0210.64 ±0.050.18 ±0.040.542 ±0.0350.067 ±0.0260.55 ±0.06
" + }, + { + "category_id": 1, + "poly": [ + 296, + 388, + 1408, + 388, + 1408, + 513, + 296, + 513 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 964, + 1405, + 964, + 1405, + 1058, + 299, + 1058 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1399, + 1972, + 1399, + 2034, + 299, + 2034 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 481, + 270, + 1216, + 270, + 1216, + 309, + 481, + 309 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 294, + 341, + 1058, + 341, + 1058, + 375, + 294, + 375 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 830, + 682, + 830, + 682, + 866, + 299, + 866 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 298, + 1914, + 502, + 1914, + 502, + 1946, + 298, + 1946 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 299, + 904, + 664, + 904, + 664, + 936, + 299, + 936 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1352, + 273, + 1400, + 273, + 1400, + 304, + 1352, + 304 + ], + "score": 0.904 + }, + { + "category_id": 6, + "poly": [ + 690, + 1177, + 1008, + 1177, + 1008, + 1206, + 690, + 1206 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 106, + 299, + 106 + ], + "score": 0.902 + }, + { + "category_id": 6, + "poly": [ + 740, + 1556, + 958, + 1556, + 958, + 1585, + 740, + 1585 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 298, + 1101, + 501, + 1101, + 501, + 1132, + 298, + 1132 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1352, + 668, + 1400, + 668, + 1400, + 698, + 1352, + 698 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1352, + 747, + 1400, + 747, + 1400, + 776, + 1352, + 776 + ], + "score": 0.866 + }, + { + "category_id": 9, + "poly": [ + 1352, + 708, + 1400, + 708, + 1400, + 737, + 1352, + 737 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 863, + 2087, + 863, + 2112, + 835, + 2112 + ], + "score": 0.86 + }, + { + "category_id": 8, + "poly": [ + 693, + 752, + 858, + 752, + 858, + 779, + 693, + 779 + ], + "score": 0.847 + }, + { + "category_id": 8, + "poly": [ + 680, + 707, + 873, + 707, + 873, + 740, + 680, + 740 + ], + "score": 0.833 + }, + { + "category_id": 8, + "poly": [ + 652, + 580, + 1032, + 580, + 1032, + 664, + 652, + 664 + ], + "score": 0.824 + }, + { + "category_id": 8, + "poly": [ + 652, + 668, + 1048, + 668, + 1048, + 702, + 652, + 702 + ], + "score": 0.809 + }, + { + "category_id": 8, + "poly": [ + 649, + 579, + 1049, + 579, + 1049, + 777, + 649, + 777 + ], + "score": 0.095 + }, + { + "category_id": 8, + "poly": [ + 672, + 629, + 1031, + 629, + 1031, + 664, + 672, + 664 + ], + "score": 0.094 + }, + { + "category_id": 13, + "poly": [ + 518, + 388, + 651, + 388, + 651, + 423, + 518, + 423 + ], + "score": 0.93, + "latex": "\\boldsymbol { q } ( \\boldsymbol { z } | \\boldsymbol { d } , d _ { 1 : n } )" + }, + { + "category_id": 14, + "poly": [ + 649, + 576, + 1050, + 576, + 1050, + 782, + 649, + 782 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { h _ { \\mathrm { f i n a l } } = \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { \\mathrm { s t a r t } } + \\bigl ( \\overline { { h } } _ { \\mathrm { p r o t o } } \\bigr ) _ { e n d } } \\\\ & { \\qquad \\mu = \\mathrm { t a n h } \\bigl ( W _ { z } \\left[ h _ { d \\mathrm { f i n a l } } , h _ { q \\mathrm { f i n a l } } \\right] \\bigr ) } \\\\ & { z _ { \\mathrm { n o r m } } \\sim U ( | \\mu | , m i n ( | \\mu | + \\epsilon , \\mu _ { \\mathrm { m a x } } ) \\bigr ) } \\\\ & { \\qquad z _ { \\mathrm { d i r } } \\sim v m F ( \\mu , \\kappa ) } \\\\ & { \\qquad z = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1203, + 453, + 1322, + 453, + 1322, + 484, + 1203, + 484 + ], + "score": 0.91, + "latex": "\\operatorname { v m F } ( \\mu , \\kappa )" + }, + { + "category_id": 13, + "poly": [ + 504, + 1974, + 537, + 1974, + 537, + 2003, + 504, + 2003 + ], + "score": 0.87, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 483, + 478, + 483, + 478, + 513, + 298, + 513 + ], + "score": 0.87, + "latex": "\\kappa = 2 5 , \\epsilon = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 1239, + 420, + 1410, + 420, + 1410, + 453, + 1239, + 453 + ], + "score": 0.86, + "latex": "( | \\mu | , \\operatorname* { m i n } ( | \\mu | +" + }, + { + "category_id": 13, + "poly": [ + 298, + 451, + 385, + 451, + 385, + 483, + 298, + 483 + ], + "score": 0.84, + "latex": "\\epsilon , \\mu _ { \\mathrm { m a x } } )" + }, + { + "category_id": 14, + "poly": [ + 482, + 269, + 1217, + 269, + 1217, + 307, + 482, + 307 + ], + "score": 0.83, + "latex": "z = z _ { \\mathrm { n o r m } } \\cdot z _ { \\mathrm { d i r } } \\quad w h e r e \\quad z _ { \\mathrm { n o r m } } \\sim U ( 0 , \\mu _ { \\mathrm { m a x } } ) , \\quad z _ { \\mathrm { d i r } } \\sim \\mathrm { v m F } ( \\vec { u } , 0 )" + }, + { + "category_id": 13, + "poly": [ + 988, + 349, + 1005, + 349, + 1005, + 370, + 988, + 370 + ], + "score": 0.76, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 551, + 349, + 568, + 349, + 568, + 370, + 551, + 370 + ], + "score": 0.75, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1301, + 398, + 1318, + 398, + 1318, + 416, + 1301, + 416 + ], + "score": 0.74, + "latex": "z" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 828.0, + 687.0, + 828.0, + 687.0, + 871.0, + 295.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 504.0, + 1911.0, + 504.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 904.0, + 664.0, + 904.0, + 664.0, + 940.0, + 296.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1171.0, + 1011.0, + 1171.0, + 1011.0, + 1212.0, + 687.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1552.0, + 961.0, + 1552.0, + 961.0, + 1589.0, + 737.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1099.0, + 506.0, + 1099.0, + 506.0, + 1135.0, + 295.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 385.0, + 517.0, + 385.0, + 517.0, + 426.0, + 291.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 385.0, + 1300.0, + 385.0, + 1300.0, + 426.0, + 652.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 385.0, + 1406.0, + 385.0, + 1406.0, + 426.0, + 1319.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 419.0, + 1238.0, + 419.0, + 1238.0, + 455.0, + 293.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 450.0, + 297.0, + 450.0, + 297.0, + 487.0, + 293.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 450.0, + 1202.0, + 450.0, + 1202.0, + 487.0, + 386.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 450.0, + 1407.0, + 450.0, + 1407.0, + 487.0, + 1323.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 482.0, + 297.0, + 482.0, + 297.0, + 514.0, + 293.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 482.0, + 487.0, + 482.0, + 487.0, + 514.0, + 479.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 965.0, + 1407.0, + 965.0, + 1407.0, + 999.0, + 294.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 996.0, + 1405.0, + 996.0, + 1405.0, + 1029.0, + 293.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 474.0, + 1027.0, + 474.0, + 1058.0, + 294.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 503.0, + 1971.0, + 503.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 538.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 943.0, + 2003.0, + 943.0, + 2035.0, + 296.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 340.0, + 550.0, + 340.0, + 550.0, + 377.0, + 296.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 340.0, + 987.0, + 340.0, + 987.0, + 377.0, + 569.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 340.0, + 1059.0, + 340.0, + 1059.0, + 377.0, + 1006.0, + 377.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 412, + 953, + 1286, + 953, + 1286, + 1206, + 412, + 1206 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.27 ±0.050.65 ±0.040.28 ±0.060.544 ±0.0290.40 ±0.040.614 ±0.032
geca0.26 ±0.060.65 ±0.060.26 ±0.050.530 ±0.0280.37 ±0.050.570 ±0.035
geca +resampling0.34 ±0.050.63 ±0.040.32 ±0.070.506 ±0.0340.42 ±0.050.590 ±0.035
learned aug0.25 ±0.040.65 ±0.040.32 ±0.060.538 ±0.0280.39 ±0.040.58 ±0.05
learned aug +resampling0.230 ±0.0350.61 ±0.040.42 ±0.060.54 ±0.040.42 ±0.050.578 ±0.027
recomb-10.27 ±0.050.63 ±0.060.32 ±0.050.55 ±0.040.35 ±0.060.60 ±0.05
recomb-1 +resampling0.28 ±0.040.61 ±0.070.418 ±0.0350.548 ±0.0230.35 ±0.060.56 ±0.04
recomb-20.22 ±0.060.62 ±0.070.28 ±0.040.56 ±0.040.40 ±0.060.596 ±0.024
recomb-2 +resampling0.262 ±0.0250.61 ±0.070.405 ±0.0280.53 ±0.040.43 ±0.060.61 ±0.04
" + }, + { + "category_id": 5, + "poly": [ + 413, + 1331, + 1288, + 1331, + 1288, + 1575, + 413, + 1575 + ], + "score": 0.983, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.733 ±0.0140.881 ±0.0120.811 ±0.0180.893 ±0.0110.750 ±0.0260.875 ±0.021
geca0.736 ±0.0190.884 ±0.0180.800 ±0.0240.889 ±0.0120.74 ±0.040.863 ±0.019
geca + resampling0.782 ±0.0240.867 ±0.0120.830 ±0.0210.885 ±0.0130.794 ±0.0320.865 ±0.018
learned aug0.738 ±0.0200.877 ±0.0080.816 ±0.0240.893 ±0.0120.752 ±0.0240.868 ±0.020
learned aug + resampling0.745 ±0.0190.870 ±0.0120.866 ±0.0160.894 ±0.0130.787 ±0.0310.863 ±0.021
recomb-10.738 ±0.0210.877 ±0.0190.820 ±0.0180.896 ±0.0140.735 ±0.0330.874 ±0.026
recomb-1 + resampling0.770 ±0.0200.867 ±0.0230.872 ±0.0050.892 ±0.0100.778 ±0.0240.861 ±0.022
recomb-20.716 ±0.0190.876 ±0.0220.815 ±0.0170.897 ±0.0160.752 ±0.0340.873 ±0.017
recomb-2+resampling0.765 ±0.0230.868 ±0.0210.856 ±0.0150.888 ±0.0160.808 ±0.0180.868 ±0.027
" + }, + { + "category_id": 5, + "poly": [ + 412, + 279, + 1287, + 279, + 1287, + 527, + 412, + 527 + ], + "score": 0.982, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
baseline0.151 ±0.0170.65 ±0.040.15 ±0.040.554 ±0.0340.23 ±0.060.55 ±0.04
geca0.136 ±0.0300.638 ±0.0260.15 ±0.050.55 ±0.060.21 ±0.050.550 ±0.032
geca +resampling0.249 ±0.0340.64 ±0.040.25 ±0.050.532 ±0.0330.27 ±0.070.524 ±0.026
learned aug0.163 ±0.0300.652 ±0.0330.18 ±0.050.560 ±0.0260.23 ±0.040.548 ±0.019
learned aug + resampling0.181 ±0.0260.590 ±0.0320.34 ±0.060.552 ±0.0290.24 ±0.040.53 ±0.05
recomb-10.155 ±0.0180.628 ±0.0200.161 ±0.0170.560 ±0.0250.22 ±0.040.538 ±0.025
recomb-1 +resampling0.218 ±0.0320.616 ±0.0340.35 ±0.040.53 ±0.040.30 ±0.040.52 ±0.04
recomb-20.131 ±0.0280.634 ±0.0270.19 ±0.110.56 ±0.040.24 ±0.050.528 ±0.032
recomb-2 +resampling0.203 ±0.0350.63 ±0.050.27 ±0.070.552 ±0.0310.25 ±0.050.54 ±0.06
" + }, + { + "category_id": 5, + "poly": [ + 300, + 1864, + 1399, + 1864, + 1399, + 2029, + 300, + 2029 + ], + "score": 0.975, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.259314
learned aug0.3525060.802058
recomb-10.7075340.1292440.187597
recomb-20.2335780.02305540.03317940.363375
geca + resampling1.0125e-163.7044e-124.07678e-156.04788e-171.71167e-19
leamed aug + resampling8.00807e-101.37553e-076.51548e-086.35314e-113.76501e-130.0167999
recomb-1 + resampling3.85877e-261.60117e-202.76421e-226.41228e-262.07776e-260.01093651.948e-06
recomb-2 + resampling2.56689e-153.4083e-132.08177e-142.92113e-181.79928e-190.9818860.01904620.0101878
" + }, + { + "category_id": 5, + "poly": [ + 411, + 652, + 1287, + 652, + 1287, + 773, + 411, + 773 + ], + "score": 0.974, + "html": "
SpanishSwahiliTurkish
FUT+PST*OTHERFUT+PSTOTHERFUT+PSTOTHER
learned aug + resampling +vae0.689 ±0.0180.859 ±0.0100.845 ±0.0140.896 ±0.0110.730 ±0.0320.850 ±0.015
recomb-1 + resampling +vae0.717 ±0.0140.870 ±0.0070.843 ±0.0140.898 ±0.0100.736 ±0.0300.859 ±0.031
recomb-2 + resampling +vae0.710 ±0.0080.865 ±0.0120.824 ±0.0150.896 ±0.0110.751 ±0.0270.848 ±0.027
" + }, + { + "category_id": 0, + "poly": [ + 299, + 1631, + 628, + 1631, + 628, + 1663, + 299, + 1663 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 296, + 1691, + 1402, + 1691, + 1402, + 1752, + 296, + 1752 + ], + "score": 0.927 + }, + { + "category_id": 6, + "poly": [ + 668, + 598, + 1031, + 598, + 1031, + 628, + 668, + 628 + ], + "score": 0.916 + }, + { + "category_id": 6, + "poly": [ + 690, + 225, + 1008, + 225, + 1008, + 254, + 690, + 254 + ], + "score": 0.908 + }, + { + "category_id": 6, + "poly": [ + 690, + 899, + 1007, + 899, + 1007, + 928, + 690, + 928 + ], + "score": 0.906 + }, + { + "category_id": 6, + "poly": [ + 740, + 1277, + 958, + 1277, + 958, + 1306, + 740, + 1306 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 299, + 829, + 516, + 829, + 516, + 860, + 299, + 860 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 293, + 1782, + 1399, + 1782, + 1399, + 1839, + 293, + 1839 + ], + "score": 0.752 + }, + { + "category_id": 6, + "poly": [ + 293, + 1782, + 1399, + 1782, + 1399, + 1839, + 293, + 1839 + ], + "score": 0.257 + }, + { + "category_id": 13, + "poly": [ + 1171, + 1784, + 1201, + 1784, + 1201, + 1810, + 1171, + 1810 + ], + "score": 0.85, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1788, + 579, + 1788, + 579, + 1812, + 562, + 1812 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 591, + 1696, + 608, + 1696, + 608, + 1723, + 591, + 1723 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 756, + 1785, + 769, + 1785, + 769, + 1808, + 756, + 1808 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 756, + 599, + 787, + 599, + 787, + 626, + 756, + 626 + ], + "score": 0.53, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1783, + 948, + 1783, + 948, + 1809, + 840, + 1809 + ], + "score": 0.37, + "latex": "\\mathrm { P S T + F U T }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1628.0, + 633.0, + 1628.0, + 633.0, + 1668.0, + 294.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 595.0, + 755.0, + 595.0, + 755.0, + 632.0, + 666.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 595.0, + 1031.0, + 595.0, + 1031.0, + 632.0, + 788.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 219.0, + 1011.0, + 219.0, + 1011.0, + 259.0, + 687.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 894.0, + 1010.0, + 894.0, + 1010.0, + 932.0, + 687.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1273.0, + 961.0, + 1273.0, + 961.0, + 1310.0, + 737.0, + 1310.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": [ + 295.0, + 826.0, + 520.0, + 826.0, + 520.0, + 865.0, + 295.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1780.0, + 561.0, + 1780.0, + 561.0, + 1815.0, + 292.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1780.0, + 755.0, + 1780.0, + 755.0, + 1815.0, + 580.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1780.0, + 839.0, + 1780.0, + 839.0, + 1815.0, + 770.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1780.0, + 1170.0, + 1780.0, + 1170.0, + 1815.0, + 949.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1780.0, + 1404.0, + 1780.0, + 1404.0, + 1815.0, + 1202.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1810.0, + 747.0, + 1810.0, + 747.0, + 1841.0, + 295.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1688.0, + 590.0, + 1688.0, + 590.0, + 1725.0, + 293.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1688.0, + 1404.0, + 1688.0, + 1404.0, + 1725.0, + 609.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1718.0, + 388.0, + 1718.0, + 388.0, + 1755.0, + 292.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1780.0, + 561.0, + 1780.0, + 561.0, + 1815.0, + 292.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1780.0, + 755.0, + 1780.0, + 755.0, + 1815.0, + 580.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1780.0, + 839.0, + 1780.0, + 839.0, + 1815.0, + 770.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1780.0, + 1170.0, + 1780.0, + 1170.0, + 1815.0, + 949.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1780.0, + 1404.0, + 1780.0, + 1404.0, + 1815.0, + 1202.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1810.0, + 747.0, + 1810.0, + 747.0, + 1841.0, + 295.0, + 1841.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 301, + 1171, + 1398, + 1171, + 1398, + 1308, + 301, + 1308 + ], + "score": 0.974, + "html": "
Example 1 (jump)Example 2 (jump)Example 3 (around right)
Input (𝑥= )walk twice after jump twicerun right after jump twice jump left and jump around right
True label (y) in augmented datasetJUMP JUMP WALK WALK JUMP JUMP JUMP WALKJUMP JUMP RTURN RUN (not generated)TURN LEFT JUMP'TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN LEFT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP TURN RIGHT JUMP
Predicted @
├ direct inference Lrecomb-2JUMP JUMP JUMP WALK JUMP JUMP WALK WALKLOOK LOOK RTURN JUMP JUMP JUMP RTURN RUNTURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP TURN LEFT JUMP
" + }, + { + "category_id": 5, + "poly": [ + 300, + 305, + 1400, + 305, + 1400, + 472, + 300, + 472 + ], + "score": 0.974, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.394748
learned aug0.7611290.635337
recomb-10.4286060.9748510.620601
recomb-20.1997680.6019980.3174940.625078
geca + resampling2.27478e-256.11513e-293.30904e-241.38242e-242.19894e-27
learned aug + resampling1.09224e-109.34816e-131.40474e-114.70624e-134.78418e-140.000137083
recomb-1 + resampling4.00039e-278.88347e-304.06546e-251.2159e-287.2465e-290.4957341.35727e-05
recomb-2 + resampling1.17709e-171.29429e-214.07864e-181.12332e-191.66638e-210.3131430.009254770.103819
" + }, + { + "category_id": 5, + "poly": [ + 301, + 618, + 1400, + 618, + 1400, + 785, + 301, + 785 + ], + "score": 0.973, + "html": "
baselinegecalearned augrecomb-1recomb-2geca + resamplinglearned aug + resamplingrecomb-1 + resamplingrecomb-2 + resampling
baseline
geca0.606002
learned aug0.0008571310.00384601
recomb-16.27581e-050.001013510.769589
recomb-21.75947e-050.0002075070.2632420.402064
geca + resampling2.58696e-218.85433e-194.57259e-111.33673e-111.87968e-08
learned aug + resampling7.09377e-531.46895e-472.3846e-386.32242e-382.09274e-303.26321e-10
recomb-1 + resampling1.66361e-581.28557e-549.46035e-442.05703e-459.46848e-371.60241e-170.0749463
recomb-2 +resampling2.16531e-313.52334e-257.80047e-201.08762e-191.26218e-150.07566461.52594e-062.51776e-11
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1916, + 1404, + 1916, + 1404, + 2032, + 299, + 2032 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 299, + 1016, + 1403, + 1016, + 1403, + 1139, + 299, + 1139 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 300, + 838, + 639, + 838, + 639, + 869, + 300, + 869 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 298, + 895, + 986, + 895, + 986, + 927, + 298, + 927 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 299, + 1529, + 1402, + 1529, + 1402, + 1591, + 299, + 1591 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 295, + 1610, + 1406, + 1610, + 1406, + 1881, + 295, + 1881 + ], + "score": 0.91 + }, + { + "category_id": 6, + "poly": [ + 297, + 225, + 1400, + 225, + 1400, + 280, + 297, + 280 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 299, + 961, + 476, + 961, + 476, + 993, + 299, + 993 + ], + "score": 0.887 + }, + { + "category_id": 6, + "poly": [ + 290, + 537, + 1398, + 537, + 1398, + 594, + 290, + 594 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 298, + 1331, + 1404, + 1331, + 1404, + 1472, + 298, + 1472 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.83 + }, + { + "category_id": 6, + "poly": [ + 298, + 1331, + 1404, + 1331, + 1404, + 1472, + 298, + 1472 + ], + "score": 0.101 + }, + { + "category_id": 13, + "poly": [ + 1174, + 226, + 1204, + 226, + 1204, + 252, + 1174, + 252 + ], + "score": 0.85, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 539, + 1204, + 539, + 1204, + 565, + 1174, + 565 + ], + "score": 0.84, + "latex": "F _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 573, + 230, + 590, + 230, + 590, + 254, + 573, + 254 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 763, + 541, + 776, + 541, + 776, + 563, + 763, + 563 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 626, + 1113, + 645, + 1113, + 645, + 1140, + 626, + 1140 + ], + "score": 0.71, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 571, + 543, + 588, + 543, + 588, + 567, + 571, + 567 + ], + "score": 0.7, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 765, + 227, + 777, + 227, + 777, + 250, + 765, + 250 + ], + "score": 0.65, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1089, + 1080, + 1125, + 1080, + 1125, + 1108, + 1089, + 1108 + ], + "score": 0.4, + "latex": "( x )" + }, + { + "category_id": 13, + "poly": [ + 347, + 1204, + 393, + 1204, + 393, + 1220, + 347, + 1220 + ], + "score": 0.4, + "latex": "( x = { \\hat { x } } )" + }, + { + "category_id": 13, + "poly": [ + 845, + 538, + 953, + 538, + 953, + 564, + 845, + 564 + ], + "score": 0.35, + "latex": "\\mathrm { P S T + F U T }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 836.0, + 642.0, + 836.0, + 642.0, + 872.0, + 296.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 221.0, + 572.0, + 221.0, + 572.0, + 257.0, + 293.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 221.0, + 764.0, + 221.0, + 764.0, + 257.0, + 591.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 221.0, + 1173.0, + 221.0, + 1173.0, + 257.0, + 778.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 221.0, + 1405.0, + 221.0, + 1405.0, + 257.0, + 1205.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 251.0, + 746.0, + 251.0, + 746.0, + 282.0, + 295.0, + 282.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": [ + 295.0, + 957.0, + 480.0, + 957.0, + 480.0, + 998.0, + 295.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 534.0, + 570.0, + 534.0, + 570.0, + 570.0, + 293.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 534.0, + 762.0, + 534.0, + 762.0, + 570.0, + 589.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 534.0, + 844.0, + 534.0, + 844.0, + 570.0, + 777.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 534.0, + 1173.0, + 534.0, + 1173.0, + 570.0, + 954.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 534.0, + 1404.0, + 534.0, + 1404.0, + 570.0, + 1205.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 565.0, + 746.0, + 565.0, + 746.0, + 596.0, + 295.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1408.0, + 1331.0, + 1408.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1405.0, + 1356.0, + 1405.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1385.0, + 1406.0, + 1385.0, + 1406.0, + 1420.0, + 294.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1412.0, + 1408.0, + 1412.0, + 1408.0, + 1448.0, + 292.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 488.0, + 1442.0, + 488.0, + 1478.0, + 293.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 1404.0, + 1915.0, + 1404.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 1202.0, + 1944.0, + 1202.0, + 1973.0, + 294.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2005.0, + 294.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2005.0, + 957.0, + 2005.0, + 957.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1050.0, + 294.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1047.0, + 1404.0, + 1047.0, + 1404.0, + 1080.0, + 295.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1080.0, + 1088.0, + 1080.0, + 1088.0, + 1111.0, + 294.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1080.0, + 1405.0, + 1080.0, + 1405.0, + 1111.0, + 1126.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1109.0, + 625.0, + 1109.0, + 625.0, + 1141.0, + 295.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1109.0, + 1096.0, + 1109.0, + 1096.0, + 1141.0, + 646.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 892.0, + 989.0, + 892.0, + 989.0, + 931.0, + 293.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 1404.0, + 1528.0, + 1404.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 533.0, + 1560.0, + 533.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1612.0, + 1404.0, + 1612.0, + 1404.0, + 1640.0, + 297.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1642.0, + 415.0, + 1642.0, + 415.0, + 1667.0, + 297.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1672.0, + 1404.0, + 1672.0, + 1404.0, + 1700.0, + 297.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1704.0, + 1403.0, + 1704.0, + 1403.0, + 1729.0, + 297.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1734.0, + 1404.0, + 1734.0, + 1404.0, + 1758.0, + 297.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1764.0, + 591.0, + 1764.0, + 591.0, + 1788.0, + 297.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1793.0, + 1404.0, + 1793.0, + 1404.0, + 1822.0, + 297.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 1091.0, + 1824.0, + 1091.0, + 1852.0, + 295.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1856.0, + 902.0, + 1856.0, + 902.0, + 1881.0, + 298.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1408.0, + 1331.0, + 1408.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1405.0, + 1356.0, + 1405.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1385.0, + 1406.0, + 1385.0, + 1406.0, + 1420.0, + 294.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1412.0, + 1408.0, + 1412.0, + 1408.0, + 1448.0, + 292.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 488.0, + 1442.0, + 488.0, + 1478.0, + 293.0, + 1478.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 511, + 1406, + 511, + 1406, + 750, + 296, + 750 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 297, + 1854, + 733, + 1854, + 733, + 2034, + 297, + 2034 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 1579, + 912, + 1579, + 912, + 1821, + 298, + 1821 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 297, + 1153, + 1406, + 1153, + 1406, + 1394, + 297, + 1394 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 847, + 1405, + 847, + 1405, + 1119, + 297, + 1119 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 767, + 1401, + 767, + 1401, + 830, + 298, + 830 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 299, + 429, + 1395, + 429, + 1395, + 493, + 299, + 493 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 299, + 1461, + 570, + 1461, + 570, + 1493, + 299, + 1493 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 299, + 233, + 1405, + 233, + 1405, + 352, + 299, + 352 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 299, + 1529, + 1273, + 1529, + 1273, + 1562, + 299, + 1562 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 297, + 356, + 1398, + 356, + 1398, + 413, + 297, + 413 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.835 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1456.0, + 576.0, + 1456.0, + 576.0, + 1499.0, + 295.0, + 1499.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": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 511.0, + 1403.0, + 511.0, + 1403.0, + 536.0, + 298.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 1058.0, + 539.0, + 1058.0, + 570.0, + 294.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 572.0, + 1404.0, + 572.0, + 1404.0, + 601.0, + 296.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 601.0, + 1068.0, + 601.0, + 1068.0, + 631.0, + 295.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 633.0, + 1404.0, + 633.0, + 1404.0, + 662.0, + 296.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 662.0, + 1068.0, + 662.0, + 1068.0, + 690.0, + 294.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 693.0, + 1404.0, + 693.0, + 1404.0, + 722.0, + 296.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 726.0, + 657.0, + 726.0, + 657.0, + 751.0, + 296.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1855.0, + 700.0, + 1855.0, + 700.0, + 1881.0, + 297.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1884.0, + 624.0, + 1884.0, + 624.0, + 1912.0, + 296.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1917.0, + 734.0, + 1917.0, + 734.0, + 1942.0, + 294.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1948.0, + 668.0, + 1948.0, + 668.0, + 1972.0, + 296.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1978.0, + 689.0, + 1978.0, + 689.0, + 2002.0, + 297.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2006.0, + 690.0, + 2006.0, + 690.0, + 2032.0, + 295.0, + 2032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1581.0, + 669.0, + 1581.0, + 669.0, + 1607.0, + 296.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1613.0, + 911.0, + 1613.0, + 911.0, + 1637.0, + 297.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1643.0, + 657.0, + 1643.0, + 657.0, + 1667.0, + 296.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1672.0, + 624.0, + 1672.0, + 624.0, + 1699.0, + 295.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1704.0, + 668.0, + 1704.0, + 668.0, + 1728.0, + 296.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1734.0, + 733.0, + 1734.0, + 733.0, + 1758.0, + 298.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1765.0, + 635.0, + 1765.0, + 635.0, + 1789.0, + 298.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1794.0, + 547.0, + 1794.0, + 547.0, + 1821.0, + 296.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1152.0, + 1404.0, + 1152.0, + 1404.0, + 1182.0, + 295.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1183.0, + 857.0, + 1183.0, + 857.0, + 1208.0, + 296.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1214.0, + 1404.0, + 1214.0, + 1404.0, + 1243.0, + 295.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1246.0, + 712.0, + 1246.0, + 712.0, + 1271.0, + 296.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1272.0, + 1406.0, + 1272.0, + 1406.0, + 1304.0, + 292.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 406.0, + 1304.0, + 406.0, + 1333.0, + 294.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 1404.0, + 1335.0, + 1404.0, + 1364.0, + 295.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1367.0, + 1122.0, + 1367.0, + 1122.0, + 1392.0, + 296.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 849.0, + 1405.0, + 849.0, + 1405.0, + 877.0, + 296.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 881.0, + 1403.0, + 881.0, + 1403.0, + 905.0, + 296.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 909.0, + 514.0, + 909.0, + 514.0, + 934.0, + 296.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 940.0, + 1405.0, + 940.0, + 1405.0, + 969.0, + 296.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 970.0, + 1405.0, + 970.0, + 1405.0, + 998.0, + 296.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 416.0, + 1001.0, + 416.0, + 1029.0, + 295.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1031.0, + 735.0, + 1031.0, + 735.0, + 1059.0, + 295.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1061.0, + 1406.0, + 1061.0, + 1406.0, + 1091.0, + 292.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1094.0, + 845.0, + 1094.0, + 845.0, + 1119.0, + 297.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 763.0, + 1405.0, + 763.0, + 1405.0, + 804.0, + 294.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 796.0, + 518.0, + 796.0, + 518.0, + 834.0, + 293.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 425.0, + 1401.0, + 425.0, + 1401.0, + 466.0, + 294.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 458.0, + 1227.0, + 458.0, + 1227.0, + 494.0, + 295.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 234.0, + 1406.0, + 234.0, + 1406.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 266.0, + 1403.0, + 266.0, + 1403.0, + 293.0, + 297.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 324.0, + 293.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 324.0, + 406.0, + 324.0, + 406.0, + 354.0, + 293.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1529.0, + 1277.0, + 1529.0, + 1277.0, + 1564.0, + 295.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 355.0, + 1405.0, + 355.0, + 1405.0, + 384.0, + 295.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 387.0, + 948.0, + 387.0, + 948.0, + 414.0, + 296.0, + 414.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 969, + 1366, + 969, + 1366, + 1211, + 297, + 1211 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 633, + 801, + 633, + 801, + 874, + 299, + 874 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1243, + 1188, + 1243, + 1188, + 1486, + 297, + 1486 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 359, + 910, + 359, + 910, + 600, + 298, + 600 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 291, + 889, + 1401, + 889, + 1401, + 951, + 291, + 951 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 298, + 234, + 758, + 234, + 758, + 292, + 298, + 292 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2112, + 834, + 2112 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 298, + 308, + 1149, + 308, + 1149, + 340, + 298, + 340 + ], + "score": 0.802 + }, + { + "category_id": 13, + "poly": [ + 805, + 891, + 848, + 891, + 848, + 918, + 805, + 918 + ], + "score": 0.8, + "latex": "l +" + }, + { + "category_id": 13, + "poly": [ + 917, + 313, + 940, + 313, + 940, + 336, + 917, + 336 + ], + "score": 0.75, + "latex": "^ +" + }, + { + "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": [ + 830.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 970.0, + 1231.0, + 970.0, + 1231.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1002.0, + 1012.0, + 1002.0, + 1012.0, + 1032.0, + 296.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1033.0, + 1175.0, + 1033.0, + 1175.0, + 1059.0, + 296.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1064.0, + 1208.0, + 1064.0, + 1208.0, + 1090.0, + 296.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1091.0, + 1124.0, + 1091.0, + 1124.0, + 1122.0, + 293.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1121.0, + 1366.0, + 1121.0, + 1366.0, + 1153.0, + 295.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1154.0, + 1124.0, + 1154.0, + 1124.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1183.0, + 1154.0, + 1183.0, + 1154.0, + 1214.0, + 293.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 636.0, + 745.0, + 636.0, + 745.0, + 658.0, + 299.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 666.0, + 611.0, + 666.0, + 611.0, + 688.0, + 299.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 696.0, + 801.0, + 696.0, + 801.0, + 718.0, + 299.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 726.0, + 801.0, + 726.0, + 801.0, + 751.0, + 298.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 756.0, + 633.0, + 756.0, + 633.0, + 781.0, + 298.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 787.0, + 655.0, + 787.0, + 655.0, + 812.0, + 299.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 815.0, + 790.0, + 815.0, + 790.0, + 842.0, + 298.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 849.0, + 755.0, + 849.0, + 755.0, + 871.0, + 299.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1246.0, + 910.0, + 1246.0, + 910.0, + 1272.0, + 299.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1277.0, + 1020.0, + 1277.0, + 1020.0, + 1303.0, + 297.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1307.0, + 1043.0, + 1307.0, + 1043.0, + 1333.0, + 297.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1337.0, + 1011.0, + 1337.0, + 1011.0, + 1363.0, + 297.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1368.0, + 1186.0, + 1368.0, + 1186.0, + 1395.0, + 297.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1396.0, + 1067.0, + 1396.0, + 1067.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1429.0, + 887.0, + 1429.0, + 887.0, + 1456.0, + 297.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1459.0, + 997.0, + 1459.0, + 997.0, + 1486.0, + 297.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 361.0, + 912.0, + 361.0, + 912.0, + 385.0, + 296.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 390.0, + 699.0, + 390.0, + 699.0, + 417.0, + 298.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 420.0, + 890.0, + 420.0, + 890.0, + 447.0, + 297.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 452.0, + 855.0, + 452.0, + 855.0, + 477.0, + 299.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 481.0, + 821.0, + 481.0, + 821.0, + 509.0, + 297.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 513.0, + 778.0, + 513.0, + 778.0, + 538.0, + 294.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 543.0, + 821.0, + 543.0, + 821.0, + 569.0, + 294.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 574.0, + 799.0, + 574.0, + 799.0, + 599.0, + 298.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 886.0, + 804.0, + 886.0, + 804.0, + 925.0, + 294.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 886.0, + 1404.0, + 886.0, + 1404.0, + 925.0, + 849.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 917.0, + 1082.0, + 917.0, + 1082.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 235.0, + 657.0, + 235.0, + 657.0, + 260.0, + 299.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 268.0, + 756.0, + 268.0, + 756.0, + 291.0, + 297.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 305.0, + 916.0, + 305.0, + 916.0, + 346.0, + 294.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 305.0, + 1152.0, + 305.0, + 1152.0, + 346.0, + 941.0, + 346.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 297, + 381, + 1404, + 381, + 1404, + 1485, + 297, + 1485 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1723, + 1404, + 1723, + 1404, + 1817, + 299, + 1817 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 298, + 1509, + 1405, + 1509, + 1405, + 1595, + 298, + 1595 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 294, + 287, + 1401, + 287, + 1401, + 351, + 294, + 351 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 638, + 229, + 638, + 261, + 299, + 261 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 1655, + 502, + 1655, + 502, + 1690, + 299, + 1690 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.855 + }, + { + "category_id": 15, + "poly": [ + 564.0, + 381.0, + 669.0, + 381.0, + 669.0, + 405.0, + 564.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 382.0, + 1224.0, + 382.0, + 1224.0, + 402.0, + 1108.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 404.0, + 385.0, + 404.0, + 385.0, + 425.0, + 348.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 404.0, + 935.0, + 404.0, + 935.0, + 425.0, + 886.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 424.0, + 385.0, + 424.0, + 385.0, + 445.0, + 348.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 426.0, + 935.0, + 426.0, + 935.0, + 446.0, + 854.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 446.0, + 384.0, + 446.0, + 384.0, + 464.0, + 346.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 449.0, + 933.0, + 449.0, + 933.0, + 466.0, + 887.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 465.0, + 385.0, + 465.0, + 385.0, + 487.0, + 341.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 468.0, + 934.0, + 468.0, + 934.0, + 489.0, + 851.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 489.0, + 935.0, + 489.0, + 935.0, + 509.0, + 848.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 507.0, + 385.0, + 507.0, + 385.0, + 525.0, + 339.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 512.0, + 935.0, + 512.0, + 935.0, + 532.0, + 848.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 527.0, + 387.0, + 527.0, + 387.0, + 548.0, + 341.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 534.0, + 933.0, + 534.0, + 933.0, + 550.0, + 849.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 549.0, + 384.0, + 549.0, + 384.0, + 566.0, + 339.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 555.0, + 933.0, + 555.0, + 933.0, + 572.0, + 849.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 568.0, + 387.0, + 568.0, + 387.0, + 589.0, + 341.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 577.0, + 933.0, + 577.0, + 933.0, + 593.0, + 849.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 589.0, + 385.0, + 589.0, + 385.0, + 607.0, + 343.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 597.0, + 934.0, + 597.0, + 934.0, + 614.0, + 848.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 609.0, + 384.0, + 609.0, + 384.0, + 627.0, + 343.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 619.0, + 932.0, + 619.0, + 932.0, + 636.0, + 851.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 628.0, + 385.0, + 628.0, + 385.0, + 650.0, + 341.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 641.0, + 933.0, + 641.0, + 933.0, + 657.0, + 849.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 649.0, + 384.0, + 649.0, + 384.0, + 668.0, + 340.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 670.0, + 383.0, + 670.0, + 383.0, + 689.0, + 339.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 690.0, + 385.0, + 690.0, + 385.0, + 711.0, + 341.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 683.0, + 933.0, + 683.0, + 933.0, + 701.0, + 898.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 703.0, + 935.0, + 703.0, + 935.0, + 722.0, + 908.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 732.0, + 385.0, + 732.0, + 385.0, + 749.0, + 344.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 725.0, + 935.0, + 725.0, + 935.0, + 744.0, + 905.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 750.0, + 385.0, + 750.0, + 385.0, + 771.0, + 346.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 747.0, + 935.0, + 747.0, + 935.0, + 765.0, + 907.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 772.0, + 385.0, + 772.0, + 385.0, + 790.0, + 349.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 769.0, + 933.0, + 769.0, + 933.0, + 786.0, + 900.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 793.0, + 384.0, + 793.0, + 384.0, + 810.0, + 349.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 788.0, + 936.0, + 788.0, + 936.0, + 809.0, + 900.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 811.0, + 385.0, + 811.0, + 385.0, + 833.0, + 348.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 811.0, + 933.0, + 811.0, + 933.0, + 828.0, + 891.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 833.0, + 935.0, + 833.0, + 935.0, + 850.0, + 903.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 852.0, + 384.0, + 852.0, + 384.0, + 871.0, + 344.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 855.0, + 1126.0, + 855.0, + 1126.0, + 865.0, + 1117.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 873.0, + 384.0, + 873.0, + 384.0, + 892.0, + 344.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 893.0, + 384.0, + 893.0, + 384.0, + 914.0, + 341.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 914.0, + 384.0, + 914.0, + 384.0, + 932.0, + 338.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 916.0, + 1226.0, + 916.0, + 1226.0, + 937.0, + 1106.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 933.0, + 385.0, + 933.0, + 385.0, + 953.0, + 304.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 930.0, + 1225.0, + 930.0, + 1225.0, + 954.0, + 1107.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 953.0, + 385.0, + 953.0, + 385.0, + 974.0, + 338.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 974.0, + 383.0, + 974.0, + 383.0, + 991.0, + 296.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 994.0, + 387.0, + 994.0, + 387.0, + 1015.0, + 335.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1017.0, + 385.0, + 1017.0, + 385.0, + 1035.0, + 340.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1018.0, + 935.0, + 1018.0, + 935.0, + 1040.0, + 887.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1037.0, + 385.0, + 1037.0, + 385.0, + 1055.0, + 354.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1057.0, + 385.0, + 1057.0, + 385.0, + 1075.0, + 348.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1076.0, + 387.0, + 1076.0, + 387.0, + 1097.0, + 350.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1097.0, + 385.0, + 1097.0, + 385.0, + 1116.0, + 358.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1117.0, + 385.0, + 1117.0, + 385.0, + 1136.0, + 358.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1136.0, + 387.0, + 1136.0, + 387.0, + 1157.0, + 350.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1159.0, + 385.0, + 1159.0, + 385.0, + 1176.0, + 356.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1179.0, + 385.0, + 1179.0, + 385.0, + 1196.0, + 346.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1198.0, + 387.0, + 1198.0, + 387.0, + 1219.0, + 350.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1219.0, + 385.0, + 1219.0, + 385.0, + 1239.0, + 332.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1239.0, + 385.0, + 1239.0, + 385.0, + 1258.0, + 354.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1259.0, + 387.0, + 1259.0, + 387.0, + 1280.0, + 348.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1282.0, + 384.0, + 1282.0, + 384.0, + 1297.0, + 368.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1305.0, + 382.0, + 1305.0, + 382.0, + 1314.0, + 370.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1318.0, + 385.0, + 1318.0, + 385.0, + 1342.0, + 339.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1317.0, + 936.0, + 1317.0, + 936.0, + 1338.0, + 898.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1342.0, + 383.0, + 1342.0, + 383.0, + 1359.0, + 340.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1362.0, + 384.0, + 1362.0, + 384.0, + 1381.0, + 335.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1382.0, + 383.0, + 1382.0, + 383.0, + 1400.0, + 341.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1407.0, + 576.0, + 1407.0, + 576.0, + 1416.0, + 566.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1407.0, + 1127.0, + 1407.0, + 1127.0, + 1416.0, + 1116.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1456.0, + 599.0, + 1456.0, + 599.0, + 1466.0, + 584.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1467.0, + 676.0, + 1467.0, + 676.0, + 1486.0, + 556.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1466.0, + 1227.0, + 1466.0, + 1227.0, + 1487.0, + 1104.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.25, + 484.5, + 387.25, + 484.5, + 387.25, + 506.5, + 339.25, + 506.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.25, + 709.0, + 387.25, + 709.0, + 387.25, + 730.5, + 344.25, + 730.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 831.0, + 388.0, + 831.0, + 388.0, + 853.5, + 344.0, + 853.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 853.5, + 1094.0, + 853.5, + 1094.0, + 872.0, + 1057.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 857.5, + 964.0, + 857.5, + 964.0, + 871.5, + 927.0, + 871.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.25, + 857.5, + 1008.25, + 857.5, + 1008.25, + 874.0, + 968.25, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.25, + 860.0, + 1031.25, + 860.0, + 1031.25, + 873.5, + 990.25, + 873.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 857.5, + 1050.0, + 857.5, + 1050.0, + 871.5, + 1015.0, + 871.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.75, + 864.0, + 989.75, + 864.0, + 989.75, + 876.5, + 944.75, + 876.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 861.0, + 1076.0, + 861.0, + 1076.0, + 875.0, + 1035.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 861.0, + 1117.0, + 861.0, + 1117.0, + 873.5, + 1079.0, + 873.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 876.5, + 1209.0, + 876.5, + 1209.0, + 896.5, + 1121.0, + 896.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.25, + 876.0, + 1231.25, + 876.0, + 1231.25, + 896.0, + 1143.25, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.25, + 875.0, + 1254.25, + 875.0, + 1254.25, + 896.5, + 1165.25, + 896.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 875.0, + 1275.0, + 875.0, + 1275.0, + 895.0, + 1187.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 874.5, + 1297.0, + 874.5, + 1297.0, + 895.0, + 1209.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.25, + 875.5, + 1316.25, + 875.5, + 1316.25, + 895.0, + 1230.25, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 874.5, + 1342.0, + 874.5, + 1342.0, + 896.0, + 1253.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 868.0, + 1375.0, + 868.0, + 1375.0, + 898.0, + 1271.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 874.5, + 1185.0, + 874.5, + 1185.0, + 894.5, + 1100.0, + 894.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.75, + 869.0, + 1417.75, + 869.0, + 1417.75, + 897.0, + 1317.75, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1404.5, + 544.0, + 1404.5, + 544.0, + 1423.5, + 510.0, + 1423.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1403.5, + 1092.0, + 1403.5, + 1092.0, + 1423.5, + 1061.0, + 1423.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.75, + 1409.0, + 411.75, + 1409.0, + 411.75, + 1421.5, + 377.75, + 1421.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.75, + 1409.0, + 457.75, + 1409.0, + 457.75, + 1423.0, + 420.75, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1409.5, + 481.0, + 1409.5, + 481.0, + 1423.5, + 439.0, + 1423.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1407.5, + 499.0, + 1407.5, + 499.0, + 1419.5, + 465.0, + 1419.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.75, + 1410.5, + 523.75, + 1410.5, + 523.75, + 1424.5, + 484.75, + 1424.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1409.0, + 570.0, + 1409.0, + 570.0, + 1423.5, + 528.0, + 1423.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1408.0, + 962.0, + 1408.0, + 962.0, + 1422.0, + 927.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1410.5, + 1008.0, + 1410.5, + 1008.0, + 1424.0, + 971.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1409.0, + 1032.0, + 1409.0, + 1032.0, + 1423.5, + 990.0, + 1423.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1408.0, + 1049.0, + 1408.0, + 1049.0, + 1420.0, + 1015.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.25, + 1407.0, + 1078.25, + 1407.0, + 1078.25, + 1426.0, + 1033.25, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1412.0, + 441.0, + 1412.0, + 441.0, + 1426.0, + 394.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.75, + 1412.5, + 655.75, + 1412.5, + 655.75, + 1428.5, + 603.75, + 1428.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.25, + 1412.0, + 676.25, + 1412.0, + 676.25, + 1428.0, + 626.25, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1411.0, + 790.0, + 1411.0, + 790.0, + 1428.5, + 737.0, + 1428.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.25, + 1407.0, + 820.25, + 1407.0, + 820.25, + 1429.5, + 757.25, + 1429.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1413.5, + 991.0, + 1413.5, + 991.0, + 1427.0, + 945.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1409.5, + 1118.0, + 1409.5, + 1118.0, + 1423.5, + 1078.0, + 1423.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1412.5, + 1206.0, + 1412.5, + 1206.0, + 1428.5, + 1155.0, + 1428.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1407.0, + 1369.0, + 1407.0, + 1369.0, + 1428.0, + 1309.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1426.5, + 633.0, + 1426.5, + 633.0, + 1442.5, + 552.0, + 1442.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1437.0, + 628.0, + 1437.0, + 628.0, + 1452.0, + 581.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1439.5, + 651.0, + 1439.5, + 651.0, + 1456.5, + 595.0, + 1456.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1426.0, + 701.0, + 1426.0, + 701.0, + 1444.0, + 617.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1426.0, + 725.0, + 1426.0, + 725.0, + 1446.0, + 637.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.25, + 1425.0, + 747.25, + 1425.0, + 747.25, + 1445.5, + 659.25, + 1445.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1424.5, + 768.0, + 1424.5, + 768.0, + 1444.0, + 681.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.25, + 1440.5, + 762.25, + 1440.5, + 762.25, + 1457.5, + 706.25, + 1457.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.25, + 1434.5, + 786.25, + 1434.5, + 786.25, + 1451.0, + 731.25, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1419.0, + 865.0, + 1419.0, + 865.0, + 1445.0, + 771.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1425.0, + 1186.0, + 1425.0, + 1186.0, + 1445.0, + 1099.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1439.5, + 1179.0, + 1439.5, + 1179.0, + 1456.0, + 1123.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.25, + 1426.0, + 1228.25, + 1426.0, + 1228.25, + 1443.5, + 1146.25, + 1443.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1427.5, + 1250.0, + 1427.5, + 1250.0, + 1443.5, + 1169.0, + 1443.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.25, + 1426.0, + 1272.25, + 1426.0, + 1272.25, + 1443.5, + 1190.25, + 1443.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1424.0, + 1297.0, + 1424.0, + 1297.0, + 1444.5, + 1209.0, + 1444.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1423.5, + 1320.0, + 1423.5, + 1320.0, + 1445.5, + 1229.0, + 1445.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1424.5, + 1341.0, + 1424.5, + 1341.0, + 1445.0, + 1253.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1431.5, + 1339.0, + 1431.5, + 1339.0, + 1452.0, + 1276.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 1418.0, + 1416.0, + 1418.0, + 1416.0, + 1445.0, + 1318.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1507.0, + 1405.0, + 1507.0, + 1405.0, + 1542.0, + 293.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1535.0, + 1407.0, + 1535.0, + 1407.0, + 1571.0, + 293.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1564.0, + 482.0, + 1564.0, + 482.0, + 1597.0, + 295.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 641.0, + 229.0, + 641.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1650.0, + 508.0, + 1650.0, + 508.0, + 1697.0, + 291.0, + 1697.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": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1721.0, + 1404.0, + 1721.0, + 1404.0, + 1760.0, + 293.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1755.0, + 1404.0, + 1755.0, + 1404.0, + 1789.0, + 295.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1787.0, + 766.0, + 1787.0, + 766.0, + 1817.0, + 297.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 284.0, + 1404.0, + 284.0, + 1404.0, + 320.0, + 293.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 316.0, + 448.0, + 316.0, + 448.0, + 354.0, + 294.0, + 354.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/Sklsm20ctX/Sklsm20ctX.md b/parse/train/Sklsm20ctX/Sklsm20ctX.md new file mode 100644 index 0000000000000000000000000000000000000000..3e2766b6546e805e25d7b3d1dc5ffbbbe01e0d54 --- /dev/null +++ b/parse/train/Sklsm20ctX/Sklsm20ctX.md @@ -0,0 +1,322 @@ +# COMPETITIVE EXPERIENCE REPLAY + +Hao Liu∗, Alexander Trott, Richard Socher, Caiming Xiong +Salesforce Research +Palo Alto, 94301 +lhao499@gmail.com,{atrott, rsocher, cxiong}@salesforce.com + +# ABSTRACT + +Deep learning has achieved remarkable successes in solving challenging reinforcement learning (RL) problems when dense reward function is provided. However, in sparse reward environment it still often suffers from the need to carefully shape reward function to guide policy optimization. This limits the applicability of RL in the real world since both reinforcement learning and domain-specific knowledge are required. It is therefore of great practical importance to develop algorithms which can learn from a binary signal indicating successful task completion or other unshaped, sparse reward signals. We propose a novel method called competitive experience replay, which efficiently supplements a sparse reward by placing learning in the context of an exploration competition between a pair of agents. Our method complements the recently proposed hindsight experience replay (HER) by inducing an automatic exploratory curriculum. We evaluate our approach on the tasks of reaching various goal locations in an ant maze and manipulating objects with a robotic arm. Each task provides only binary rewards indicating whether or not the goal is achieved. Our method asymmetrically augments these sparse rewards for a pair of agents each learning the same task, creating a competitive game designed to drive exploration. Extensive experiments demonstrate that this method leads to faster converge and improved task performance. + +# 1 INTRODUCTION + +Recent progress in deep reinforcement learning has achieved very impressive results in domains ranging from playing games (Mnih et al., 2015; Silver et al., 2016; 2017; OpenAI, 2018), to high dimensional continuous control (Schulman et al., 2016; 2017; 2015), and robotics (Levine et al., 2018; Kalashnikov et al., 2018; Andrychowicz et al., 2018b). + +Despite these successes, in robotics control and many other areas, deep reinforcement learning still suffers from the need to engineer a proper reward function to guide policy optimization (see e.g. Popov et al. 2017, $\mathrm { N g }$ et al. 2006). In robotic control as stacking bricks, reward function need to be sharped to very complex which consists of multiple terms(Popov et al., 2017). It is extremely hard and not applicable to engineer such reward function for each task in real world since both reinforcement learning expertise and domain-specific knowledge are required. Learning to perform well in environments with sparse rewards remains a major challenge. Therefore, it is of great practical importance to develop algorithms which can learn from binary signal indicating successful task completion or other unshaped reward signal. + +In environments where dense reward function is not available, only a small fraction of the agents’ experiences will be useful to compute gradient to optimize policy, leading to substantial high sample complexity. Providing agents with useful signals to pursue in sparse reward environments becomes crucial in these scenarios. + +In the domain of goal-directed RL, the recently proposed hindsight experience replay (HER) (Andrychowicz et al., 2017) addresses the challenge of learning from sparse rewards by re-labelling visited states as goal states during training. However, this technique continues to suffer from sample inefficiency, ostensibly due to difficulties related to exploration. In this work, we address these limitations by introducing a method called Competitive Experience Replay $( C E R )$ . This technique attempts to emphasize exploration by introducing a competition between two agents attempting to learn the same task. Intuitively, agent $A$ (the agent ultimately used for evaluation) receives a penalty for visiting states that the competitor agent $( B )$ also visits; and $B$ is rewarded for visiting states found by $A$ . Our approach maintains the reward from the original task such that exploration is biased towards the behaviors best suited to accomplishing the task goals. We show that this competition between agents can automatically generate a curriculum of exploration and shape otherwise sparse reward. We jointly train both agents’ policies by adopting methods from multi-agent RL. In addition, we propose two versions of CER, independent CER, and interact CER, which differ in the state initialization of agent $B$ : whether it is sampled from the initial state distribution or sampled from off-policy samples of agent $A$ , respectively. + +Whereas HER re-labels samples based on an agent’s individual rollout, our method re-labels samples based on intra-agent behavior; as such, the two methods do not interfere with each other algorithmically and are easily combined during training. We evaluate our method both with and without HER on a variety of reinforcement learning tasks, including navigating an ant agent to reach a goal position and manipulating objects with a robotic arm. For each such task the default reward is sparse, corresponding to a binary indicator of goal completion. Ablation studies show that our method is important for achieving a high success rate and often demonstrates faster convergence. Interestingly, we find that CER and HER are complementary methods and employ both to reach peak efficiency and performance. Furthermore, we observe that, when combined with HER, CER outperforms curiosity-driven exploration. + +# 2 BACKGROUND + +Here, we provide an introduction to the relevant concepts for reinforcement learning with sparse reward (Section 2.1), Deep Deterministic Policy Gradient, the backbone algorithm we build off of, (Section 2.2), and Hindsight Experience Replay (Section 2.3). + +# 2.1 SPARSE REWARD REINFORCEMENT LEARNING + +Reinforcement learning considers the problem of finding an optimal policy for an agent that interacts with an uncertain environment and collects reward per action. The goal of the agent is to maximize its cumulative reward. Formally, this problem can be viewed as a Markov decision process over the environment states $s \in S$ and agent actions $a \in A$ , with the (unknown) environment dynamics defined by the transition probability $T ( s ^ { \prime } | \bar { s } , a )$ and reward function $r ( s _ { t } , a _ { t } )$ , which yields a reward immediately following the action $a _ { t }$ performed in state $s _ { t }$ . + +We consider goal-conditioned reinforcement learning from sparse rewards. This constitutes a modification to the reward function such that it depends on a goal $g \in G$ , such that $r _ { g } : S \times A \times G \to R$ . Every episode starts with sampling a state-goal pair from some distribution $p ( s _ { 0 } , g )$ . Unlike the state, the goal stays fixed for the whole episode. At every time step, an action is chosen according to some policy $\pi$ , which is expressed as a function of the state and the goal, $\pi : S \times G \to A$ . For generality, our only restriction on $G$ is that it is a subset of $S$ . In other words, the goal describes a target state and the task of the agent is to reach that state. Therefore, we apply the following sparse reward function: + +$$ +r _ { t } = r _ { g } ( s _ { t } , a _ { t } , g ) = { \left\{ \begin{array} { l l } { 0 , { \mathrm { i f } } \ | s _ { t } - g | < \delta } \\ { - 1 , { \mathrm { o t h e r w i s e } } } \end{array} \right. } +$$ + +where $g$ is a goal, $| s _ { t } - g |$ is a distance measure, and $\delta$ is a predefined threshold that controls when the goal is considered completed. + +Following policy gradient methods, we model the policy as a conditional probability distribution over states, $\pi _ { \boldsymbol { \theta } } ( a | [ s , g ] )$ , where $[ s , g ]$ denotes concatenation of state $s$ and goal $g$ , and $\theta$ are the learnable parameters. Our objective is to optimize $\theta$ with respect to the expected cumulative reward, given by: + +$$ +J ( \theta ) = \mathbb { E } _ { s \sim \rho _ { \pi } , a \sim \pi ( a | s , g ) , g \sim G } \left[ r _ { g } ( s , a , g ) \right] , +$$ + +where $\begin{array} { r } { \rho _ { \pi } ( s ) = \sum _ { t = 1 } ^ { \infty } \gamma ^ { t - 1 } \mathrm { P r } ( s _ { t } = s ) } \end{array}$ is the normalized discounted state visitation distribution with discount factor $\gamma \in [ 0 , 1 )$ . To simplify the notation, we denote $\mathbb { E } _ { s \sim \rho _ { \pi } , a \sim \pi ( a | s , g ) , g \sim G } [ \cdot ]$ by simply $\mathbb { E } _ { \pi } [ \cdot ]$ in the rest of paper. According to the policy gradient theorem (Sutton et al., 1998), the gradient of $J ( \theta )$ can be written as + +$$ +\nabla _ { \theta } J ( \theta ) = \mathbb { E } _ { \pi } \left[ \nabla _ { \theta } \log \pi ( a | s , g ) Q ^ { \pi } ( s , a , g ) \right] , +$$ + +where $\begin{array} { r } { Q ^ { \pi } ( s , a , g ) = \mathbb { E } _ { \pi } \left[ \sum _ { t = 1 } ^ { \infty } \gamma ^ { t - 1 } r _ { g } ( s _ { t } , a _ { t } , g ) | s _ { 1 } = s , a _ { 1 } = a \right] } \end{array}$ , called the critic, denotes the expected return under policy $\pi$ after taking an action $a$ in state $s$ , with goal $g$ . + +# 2.2 DDPG ALGORITHM + +Here, we introduce Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), a model-free RL algorithm for continuous action spaces that serves as our backbone algorithm. Our proposed modifications need not be restricted to DDPG; however, we leave experimentation with other continuous control algorithms to future work. In DDPG, we maintain a deterministic target policy $\mu ( s , g )$ and a critic $Q ( s , a , g )$ , both implemented as deep neural networks (note: we modify the standard notation to accommodate goal-conditioned tasks). To train these networks, episodes are generated by sampling actions from the policy plus some noise, $a \sim \mu ( s , g ) + N ( 0 , 1 )$ . The transition tuple associated with each action $\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \right)$ is stored in the so-called replay buffer. During training, transition tuples are sampled from the buffer to perform mini-batch gradient descent on the loss $L$ which encourages the approximated Q-function to satisfy the Bellman equation $\mathbf { \bar { \boldsymbol { L } } } = \mathbb { E } ( Q ( s _ { t } , a _ { t } , g _ { t } ) - y _ { t } ) ^ { 2 }$ , where $y _ { t } = r _ { t } + \bar { \gamma } Q ( s _ { t + 1 } , \bar { \mu } ( s _ { t + 1 } , g _ { t } ) , g _ { t } )$ . Similarly, the actor can be updated by training with mini-batch gradient descent on the loss $J ( \theta ) = - \mathbb { E } _ { s } Q ( s , \mu ( s , g ) , g )$ through the deterministic policy gradient algorithm (Silver et al., 2014), + +$$ +\nabla _ { \theta } J ( \theta ) = \mathbb { E } [ \nabla _ { \theta } \mu ( s , g ) \nabla _ { a } Q ( s , a , g ) | _ { a = \mu ( s , g ) } ] . +$$ + +To make training more stable, the targets $y _ { t }$ are typically computed using a separate target network, whose weights are periodically updated to the current weights of the main network (Lillicrap et al., 2015; Mnih et al., 2013; 2015). + +# 2.3 HINDSIGHT EXPERIENCE REPLAY + +Despite numerous advances in the application of deep learning to RL challenges, learning in the presence of sparse rewards remains a major challenge. Intuitively, these algorithms depend on sufficient variability within the encountered rewards and, in many cases, random exploration is unlikely to uncover this variability if goals are difficult to reach. Recently, Andrychowicz et al. (2017) proposed Hindsight Experience Replay (HER) as a technique to address this challenge. The key insight of HER is that failed rollouts (where no task reward was obtained) can be treated as successful by assuming that a visited state was the actual goal. Basically, HER amounts to a relabelling strategy. For every episode the agent experiences, it gets stored in the replay buffer twice: once with the original goal pursued in the episode and once with the goal replaced with a future state achieved in the episode, as if the agent were instructed to reach this state from the beginning. Formally, HER randomly samples a mini-batch of episodes in buffer, for each episode $( \{ s ^ { i } \} _ { i = 1 } ^ { T } , \{ \stackrel { \smile } { g ^ { i } } \} _ { i = 1 } ^ { T } , \{ a ^ { i } \} _ { i = 1 } ^ { T } , \{ r ^ { i } \} _ { i = 1 } ^ { T } , \{ s ^ { \prime i } \} _ { i = 1 } ^ { T } \big )$ , for each state $s _ { t }$ , where $1 \leq t \leq T - 1$ in an episode, we randomly choose $s _ { k }$ where $t + 1 \leq k \leq T$ and relabel transition $\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \right)$ to $\left( s _ { t } , a _ { t } , s _ { k } , r _ { t } ^ { \prime } , s _ { t + 1 } \right)$ and recalculate reward $r _ { t } ^ { \prime }$ , + +$$ +r _ { t } ^ { \prime } = r _ { g } ( s _ { t } , s _ { k } ) = \left\{ { 0 , \mathrm { i f } | s _ { t } - s _ { k } | < \delta , \atop { - 1 , \mathrm { o t h e r w i s e . } } } \right. +$$ + +# 3 METHOD + +In this section, we present Competitive Experience Replay (CER) for policy gradient methods (Section 3.1) and describe the application of multi-agent DDPG to enable this technique (Section 3.2). + +# 3.1 COMPETITIVE EXPERIENCE REPLAY + +While the re-labelling strategy introduced by HER provides useful rewards for training a goal-conditioned policy, it assumes that learning from arbitrary goals will generalize to the actual task goals. As such, exploration remains a fundamental challenge for goal-directed RL with sparse reward. We propose a relabelling strategy designed to overcome this challenge. Our method is partly inspired by the success of self-play in learning to play competitive games, where sparse rewards (i.e. win or lose) are common. Rather than train a single agent, we train a pair of agents on the same task and apply an asymmetric reward relabelling strategy to induce a competition designed to encourage exploration. We call this strategy Competitive Experience Replay (CER). + +To implement CER, we learn a policy for each agent, $\pi _ { A }$ and $\pi _ { B }$ , as well as a multi-agent critic (see below), taking advantage of methods for decentralized execution and centralized training. During decentralized execution, $\pi _ { A }$ and $\pi _ { B }$ collect DDPG episode rollouts in parallel. Each agent effectively plays a singleplayer game; however, to take advantage of multi-agent training methods, we arbitrarily pair the rollout from $\pi _ { A }$ with that from $\pi _ { B }$ and store them as a single, multi-agent rollout in the replay buffer $\mathcal { D }$ . When training on a mini-batch of off policy samples, we first randomly sample a mini-batch of episodes in $\mathcal { D }$ and then randomly sample transitions in each episode. We denote the resulting mini-batch of transitions as $\{ ( s _ { A } ^ { i } , a _ { A } ^ { i } , g _ { A } ^ { i } , r _ { A } ^ { i } , s ^ { \prime } { } ^ { i } _ { A } ) , ( s _ { B } ^ { i } , a _ { B } ^ { i } , g _ { B } ^ { i } , r _ { B } ^ { i } , s ^ { \prime } { } ^ { i } _ { B } ) \} _ { i = 1 } ^ { m }$ , where $m$ is the size of the mini-batch. + +Reward re-labelling in CER attempts to create an implicit exploration curriculum by punishing agent $A$ for visiting states that agent $B$ also visited, and, for those same states, rewarding agent $B$ . For each $A$ state $s _ { A } ^ { i }$ in a mini-batch of transitions, we check if any $B$ state $s _ { B } ^ { j }$ in the mini-batch satisfies $| s _ { A } ^ { i } - s _ { B } ^ { j } | < \delta$ and, if so, re-label $r _ { A } ^ { i }$ with $r _ { A } ^ { i } - 1$ . Conversely, each time such a nearby state pair is found, we increment the associated reward for agent $B$ , $r _ { B } ^ { j }$ , by $+ 1$ . Each transition for agent $A$ can therefore be penalized only once, whereas no restriction is placed on the extra reward given to a transition for agent $B$ . Following training both agents with the re-labelled rewards, we retain the policy $\pi _ { A }$ for evaluation. Additional implementation details are provided in the appendix (Section D). + +We focus on two variations of CER that satisfy the multi-agent self-play requirements: first, the policy $\pi _ { B }$ receives its initial state from the task’s initial state distribution; second, although more restricted to re-settable environments, $\pi _ { B }$ receives its initial state from a random off-policy sample of $\pi _ { A }$ . We refer to the above methods as independent-CER and interact-CER, respectively, in the following sections. + +Importantly, CER re-labels rewards based on intra-agent behavior, whereas HER re-labels rewards based on each individual agent’s behavior. As a result, the two methods can be easily combined. In fact, as our experiments demonstrate, CER and HER are complementary and likely reflect distinct challenges that are both addressed through reward re-labelling. + +# 3.2 GOAL CONDITIONED MULTI-AGENT LEARNING + +We extend multi-agent DDPG (MADDPG), proposed by Lowe et al. (2017), for training using CER. MADDPG attempts to learn a different policy per agent and a single, centralized critic that has access to the combined states, actions, and goals of all agents. + +More precisely, consider a game with $N$ agents with policies parameterized by $\pmb { \theta } = \{ \theta _ { 1 } , \dots , \theta _ { N } \}$ , and let $\pmb { \pi } = \{ \bar { \pi } _ { 1 } , . . . , \bar { \pi } _ { N } \}$ be the set of all agent policies. $\mathbf { g } = [ \boldsymbol { g } _ { 1 } , \dots , \boldsymbol { g } _ { N } ]$ represents the concatenation of each agent’s goal, $\mathbf { s } = [ s _ { 1 } , \ldots , s _ { N } ]$ the concatenated states, and $\mathbf { a } = [ a _ { 1 } , \ldots , a _ { N } ]$ the concatenated actions. With this notation, we can write the gradient of the expected return for agent $i$ , $\bar { J ( \theta _ { i } ) } = \mathbb { E } [ R _ { i } ]$ as: + +$$ +\begin{array} { r } { \nabla _ { \theta _ { i } } J ( \theta _ { i } ) = \mathbb { E } _ { \pmb { \pi } } [ \nabla _ { \theta _ { i } } \log \pi _ { i } ( a _ { i } | s _ { i } , g _ { i } ) Q _ { i } ^ { \pi } ( \mathbf { s } , \mathbf { a } , \mathbf { g } ) ] . } \end{array} +$$ + +With deterministic policies ${ \pmb \mu } = \{ \mu _ { 1 } , . . . , \mu _ { N } \}$ , the gradient becomes: + +$$ +\nabla _ { \theta _ { i } } J ( \theta _ { i } ) = \mathbb { E } _ { \pmb { \mu } } [ \nabla _ { \theta _ { i } } \mu _ { i } ( s _ { i } , g _ { i } ) \nabla _ { a _ { i } } Q _ { i } ^ { \pmb { \mu } } ( \mathbf { s } , \mathbf { a } , \mathbf { g } ) | _ { a _ { i } = \mu _ { i } ( s _ { i } , g _ { i } ) } ] , +$$ + +The centralized action-value function $Q _ { i } ^ { \mu }$ , which estimates the expected return for agent $i$ , is updated as: + +$$ +\begin{array} { r } { \mathcal { L } ( \theta _ { i } ) = \mathbb { E } _ { { \mathbf s } , { \mathbf a } , { \mathbf r } , { \mathbf s } ^ { \prime } } [ ( Q _ { i } ^ { \mu } ( { \mathbf s } , { \mathbf a } , { \mathbf g } ) - y ) ^ { 2 } ] , \quad y = r _ { i } + \gamma Q _ { i } ^ { \mu ^ { \prime } } ( { \mathbf s } ^ { \prime } , a _ { 1 } ^ { \prime } , \dots , a _ { N } ^ { \prime } , { \mathbf g } ) \big | _ { a _ { j } ^ { \prime } = \mu _ { j } ^ { \prime } ( s _ { j } ) } , } \end{array} +$$ + +where $\pmb { \mu } ^ { \prime } = \{ \pmb { \mu } _ { \theta _ { 1 } ^ { \prime } } , . . . , \pmb { \mu } _ { \theta _ { N } ^ { \prime } } \}$ is the set of target policies with delayed parameters $\theta _ { i } ^ { \prime }$ . In practice people usually soft update it as $\mathbf { \dot { \theta } } _ { i } ^ { \prime } \gets \tau \dot { \theta } _ { i } + ( 1 - \tau ) \theta _ { i } ^ { \prime }$ , where $\tau$ is a Polyak coefficient. + +During training, we collect paired rollouts as described above, apply any re-labelling strategies (such as CER or HER) and use the MADDPG algorithm to train both agent policies and the centralized critic, concatenating states, actions, and goals where appropriate. Putting everything together, we summarize the full method in Algorithm 1. + +# 4 EXPERIMENT + +![](images/e055e6b40d22d0067714f3e76101f2b2ff58f924492920fd2548f0f2112a06b3.jpg) +Figure 1: Goal conditioned ’U’ shaped maze and $\mathbf { \vec { \nabla } } S \mathbf { \vec { \nabla } }$ shaped maze. For each plot pair, the left illustrates a rendering of the maze type and the right shows the associated success rate throughout training for each method. Each line shows results averaged over 5 random initializations; the X-axis corresponds to epoch number and shaded regions show standard deviation. All metrics based on CER reference the performance of agent $A$ . + +# 4.1 COMBINING COMPETITIVE EXPERIENCE REPLAY WITH EXISTING METHODS + +We start by asking whether CER improves performance and sample efficiency in a sparse reward task. To this end, we constructed two different mazes, an easier ’U’ shaped maze and a more difficult $\mathbf { \vec { \nabla } } S \mathbf { \vec { \nabla } }$ shaped maze (Figure 1). The goal of the ant agent is to reach the target mark by a red sphere, whose location is randomly sampled for each new episode. At each step, the agent obtains a reward of 0 if the goal has been achieved and $- 1$ otherwise. Additional details of the ant maze environments are found in Appendix B. An advantage of this environment is that it can be reset to any given state, facilitating comparison between our two proposed variants of CER (int-CER requires the environment to have this feature). + +We compare agents trained with HER, both variants of CER, and both variants of CER with HER. Since each uses DDPG as a backbone algorithm, we also include results from a policy trained using DDPG alone. To confirm that any difficulties are not simply due to DDPG, we include results from a policy trained using Proximal Policy Optimization (PPO) (Schulman et al., 2017). The results for each maze are shown in Figure 1. DDPG and PPO each performs quite poorly by itself, likely due to the sparsity of the reward in this task set up. Adding CER to DDPG partially overcomes this limitation in terms of final success rate, and, notably, reaches this stronger result with many fewer examples. A similar result is seen when adding HER to DDPG. Importantly, adding both HER and CER offers the best improvement of final success rate without requiring any observable increase in the number of episodes, as compared to each of the other baselines. These results support our hypothesis that existing state-of-the-art methods do not sufficiently address the exploration challenge intrinsic to sparse reward environments. Furthermore, these results show that CER improves both the quality and efficiency of learning in such challenging settings, especially when combined with HER. These results also show that int-CER tends to outperform ind-CER. As such, int-CER is considered preferable but has more restrictive technical requirements. + +To examine the efficacy of our method on a broader range of tasks, we evaluate the change in performance when ind-CER is added to HER on the challenging multi-goal sparse reward environments introduced in Plappert et al. (2018). (Note: we would prefer to examine int-CER but are prevented by technical issues related to the environment.) Results for each of the 12 tasks we trained on are illustrated in Figure 3. Our method, when used on top of HER, improves performance wherever it is not already saturated. This is especially true on harder tasks, where HER alone achieves only modest success (e.g., HandManipulateEggFull and handManipulatePenRotate). These results further support the conclusion that existing methods often fail to achieve sufficient exploration. Our method, which provides a targeted solution to this challenge, naturally complements HER. + +![](images/27e1273067bcfd690c40306cd806da119675b405423efbb3426709f9cc13b946.jpg) +Figure 2: Comparing CER and ICM with and without HER. Each line shows task success rate averaged over 5 random initializations. $\mathrm { X }$ -axis is epoch number; shaded regions denote standard deviation. + +# 4.2 COMPARING CER WITH CURIOSITY-DRIVEN EXPLORATION + +CER is designed to encourage exploration, but, unlike other methods, uses the behavior of a competitor agent to automatically determine the criteria for exploratory reward. Numerous methods have been proposed for improving exploration; for example, count-based exploration (Bellemare et al., 2016; Tang et al., 2017), VIME (Houthooft et al., 2016), bootstrap DQN (Osband et al., 2016), goal exploration process (Forestier et al., 2017), parameter space noise (Plappert et al., 2017), dynamics curiosity and boredom (Schmidhuber, 1991), and EX2 (Fu et al., 2017). One recent and popular method, intrinsic curiosity module (ICM) (Pathak et al., 2017; Burda et al., 2018), augments task reward with curiosity-driven reward. Much like CER and HER, ICM provides a method to relabel the reward associated with each transition; this reward comes from the error in a jointly trained forward prediction model. We compare how CER and ICM affect task performance and how they interact with HER across 4 tasks where we were able to implement ICM successfully. Figure 2 shows the results on several robotic control and maze tasks. We observe CER to consistently outperform ICM when each is implemented in isolation. In addition, we observe HER to benefit more from the addition of CER than of ICM. Compared to ICM, CER also tends to improve the speed of learning. These results suggest that the underlying problem is not a lack of diversity of states being visited but the size of the state space that the agent must explore (as also discussed in Andrychowicz et al. (2017)). One interpretation is that, since the two CER agents are both learning the task, the dynamics of their competition encourage more task-relevant exploration. From this perspective, CER provides an automatic curriculum for exploration such that visited states are utilized more efficiently. + +![](images/3e71c35ab545ef7c2cf7fe70aac3c1b801aeaa9d69edeae00e49c9c58f1ca488.jpg) +Figure 3: Evaluation of HER with ind-CER across different robotic control environments. Each line shows results averaged over 5 random initializations. X-axis shows epoch number; shaded regions denote standard deviation. + +# 4.3 ANALYSIS OF CER + +Figure 4 illustrates the success rates of agents of mini-batch samples whose reward is chang $A$ nd y C $B$ as well as the ‘effect ratio,’ whR during training, calculated as e fractiwhere $\begin{array} { r } { \phi = \frac { N } { M } } \end{array}$ $N$ $M$ +strong correspondence between the success rate and effect ratio, likely reflecting the influence of CER on the +learning dynamics. While a deeper analysis would be required to concretely understand the interplay of these +two terms, we point out that CER re-labels a substantial fraction of rewards in the mini-batch. Interestingly, +even the relatively small effect ratio observed in the first few epochs is enough support rapid learning. We +speculate that the sampling strategy used in int-CER provides a more targeted re-labelling, leading to the more +rapid increase in success rate for agent $A$ . We observe that agent $B$ reaches a lower level of performance. + +![](images/d1c163e8a3b024f543bf4bfe9dbdd875881fca86d2b95b586bdff97e6458f9e5.jpg) + +![](images/8899fe9d0a1ef3dcaa5d1a5edf516c162affe6dc3ef72029a5a1bf6c42780dfd.jpg) +Figure 4: Illustration of the automatically generated curriculum between $A$ and $B$ on ‘U‘ shaped AntMaze task. From left to right are success rate of ind-CER, effect ratio of ind-CER, success rate of int-CER, and effect ratio of int-CER. Each line shows results averaged over 5 random initializations. $\mathrm { X }$ -axis is epoch number. +Figure 5: State visitation frequency on ’U’ maze. Top row is from after 5 epochs; bottom row from after 35. Blue on the colormap denotes no visitation. The start and goal locations are labeled with the blue and green markers, respectively. ICM and CER are trained with HER also. + +This likely results from resetting the parameters of agent $B$ periodically during early training, which we observe to improve the ultimate performance of agent $A$ (see Section D for details). It is also possible that the reward structure of CER asymmetrically benefits agent $A$ with respect to the underlying task. + +To gain additional insight into how each method influences the behaviors learned across training, we visualize the frequency with which each location in the ‘U’ maze is visited after the 5th and 35th training epoch (Figure 5). Comparing DDPG and HER shows that the latter clearly helps move the state distribution towards the goal, especially during the early parts of training. When CER is added, states near the goal create a clear mode in the visitation distribution. This is never apparent with DDPG alone and only obvious for HER and $\mathrm { I C M + H E R }$ later in training. CER also appears to focus the visitation of the agent, as it less frequently gets caught along the outer walls. These disparities are emphasized in Figure 6, where we show the difference in the visitation profiles. The left two plots compare CER $^ +$ HER vs. HER. The right two plots compare Agent A vs Agent B from CER+HER. Interestingly, the Agents A and B exhibit fairly similar aggregate visitation profiles with the exception that Agent A reaches the goal more often later during training. These visitation profiles underscore both the quantitative and qualitative improvements associated with CER. + +# 5 RELATED WORK + +Self-play has a long history in this domain of research (Samuel, 1959; Tesauro, 1995; Heess et al., 2017). Silver et al. (2017) use self-play with deep reinforcement learning techniques to master the game of Go; and self-play has even been applied in Dota 5v5 (OpenAI, 2018). + +![](images/b00a3c03ad9575649264d247c87006c0ad2250785265eaac2510a5062afd0688.jpg) +Figure 6: State visitation difference on ’U’ maze. Left plots compare CER against HER; right plots compare the two CER agents. Each plot illustrates the difference in visitation, with red indicating more visitation by CER(A). Note: here, the “CER” agent is trained with $_ \mathrm { C E R + H E R }$ . + +Curriculum learning is widely used for training neural networks (see e.g., Bengio et al., 2009; Graves et al., 2017; Elman, 1993; Olsson, 1995). A general framework for automatic task selection is Powerplay (Schmidhuber, 2013; Srivastava et al., 2013), which proposes an asymptotically optimal way of selecting tasks from a set of tasks with program search, and use replay buffer to avoid catastrophic forgetting. Florensa et al. (2017); Held et al. (2017) propose to automatically adjust task difficulty during training. Forestier et al. (2017) study intrinsically motivated goal for robotic learning. Recently, Sukhbaatar et al. (2017) suggest to use self-play between two agents where reward depends on the time of the other agent to complete to enable implicit curriculum. Our work is similar to theirs, but we propose to use sample-based competitive experience replay, which is not only more readily scalable to high-dimension control but also integrates easily with Hindsight Experience Replay (Andrychowicz et al., 2017). The method of initializing based on a state not sampled from the initial state distribution has been explored in other works. For example, Ivanovic et al. (2018) propose to create a backwards curriculum for continuous control tasks through learning a dynamics model. Resnick et al. (2018b) and Salimans & Chen (2018) propose to train policies on Pommerman (Resnick et al., 2018a) and the Atari game ‘Montezumas Revenge’ by starting each episode from a different point along a demonstration. Recently, Goyal et al. (2018) and Edwards et al. (2018) propose a learned backtracking model to generate traces that lead to high value states in order to obtain higher sample efficiency. + +Experience replay has been introduced in (Lin, 1992) and later was a crucial ingredient in learning to master Atari games (Mnih et al., 2013; 2015). Wang et al. (2016) propose truncation with bias correction to reduce variance from using off-policy data in buffer and achieves good performance on continuous and discrete tasks. Different approaches have been proposed to incorporate model-free learning with experience replay(Gu et al., 2016; Feng et al., 2019). Schaul et al. (2015) improve experience replay by assigning priorities to transitions in the buffer to efficiently utilize samples. Horgan et al. (2018) further improve experience replay by proposing a distributed RL system in which experiences are shared between parallel workers and accumulated into a central replay memory and prioritized replay is used to update the policy based on the diverse accumulated experiences. + +# 6 CONCLUSION + +We introduce Competitive Experience Replay, a new and general method for encouraging exploration through implicit curriculum learning in sparse reward settings. We demonstrate an empirical advantage of our technique when combined with existing methods in several challenging RL tasks. In future work, we aim to investigate richer ways to re-label rewards based on intra-agent samples to further harness multi-agent competition, it’s interesting to investigate counterfactual inference to promote efficient re-label off-policy samples. We hope that this will facilitate the application of our method to more open-end environments with even more challenging task structures. In addition, future work will explore integrating our method into approaches more closely related to model-based learning, where adequate exposure to the dynamics of the environment is often crucial. + +# REFERENCES + +Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew, Josh Tobin, OpenAI Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. In Advances in Neural Information Processing Systems, pp. 5048–5058, 2017. + +Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki, Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, Jonas Schneider, Szymon Sidor, Josh Tobin, Peter Welinder, Lilian Weng, and Wojciech Zaremba. Learning dexterous in-hand manipulation. arXiv:1808.00177, 2018a. + +Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki, Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, et al. Learning dexterous in-hand manipulation. arXiv preprint arXiv:1808.00177, 2018b. + +Marc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos. Unifying count-based exploration and intrinsic motivation. In Advances in Neural Information Processing Systems, pp. 1471–1479, 2016. + +Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ Proceedings of the 26th annual international conference on machine learning, pp. 41–48. ACM, 2009. + +Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym. arXiv preprint arXiv:1606.01540, 2016. + +Yuri Burda, Harri Edwards, Deepak Pathak, Amos Storkey, Trevor Darrell, and Alexei A Efros. Large-scale study of curiosity-driven learning. arXiv preprint arXiv:1808.04355, 2018. + +Ashley D Edwards, Laura Downs, and James C Davidson. Forward-backward reinforcement learning. arXiv preprint arXiv:1803.10227, 2018. + +Jeffrey L Elman. Learning and development in neural networks: The importance of starting small. Cognition, 48(1):71–99, 1993. + +Yihao Feng, Hao Liu, Jian Peng, and Qiang Liu. Shrinkage-based bias-variance trade-off for deep reinforcement learning, 2019. URL https://openreview.net/forum?id=S1z9ehAqYX. + +Carlos Florensa, David Held, Markus Wulfmeier, Michael Zhang, and Pieter Abbeel. Reverse curriculum generation for reinforcement learning. arXiv preprint arXiv:1707.05300, 2017. + +Sebastien Forestier, Yoan Mollard, and Pierre-Yves Oudeyer. Intrinsically motivated goal exploration ´ processes with automatic curriculum learning. arXiv preprint arXiv:1708.02190, 2017. + +Justin Fu, John Co-Reyes, and Sergey Levine. Ex2: Exploration with exemplar models for deep reinforcement learning. In Advances in Neural Information Processing Systems, pp. 2577–2587, 2017. + +Anirudh Goyal, Philemon Brakel, William Fedus, Timothy Lillicrap, Sergey Levine, Hugo Larochelle, and Yoshua Bengio. Recall traces: Backtracking models for efficient reinforcement learning. arXiv preprint arXiv:1804.00379, 2018. + +Alex Graves, Marc G Bellemare, Jacob Menick, Remi Munos, and Koray Kavukcuoglu. Automated curriculum learning for neural networks. arXiv preprint arXiv:1704.03003, 2017. + +Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In International Conference on Machine Learning, pp. 2829–2838, 2016. + +Nicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich environments. arXiv preprint arXiv:1707.02286, 2017. + +David Held, Xinyang Geng, Carlos Florensa, and Pieter Abbeel. Automatic goal generation for reinforcement learning agents. arXiv preprint arXiv:1705.06366, 2017. + +Dan Horgan, John Quan, David Budden, Gabriel Barth-Maron, Matteo Hessel, Hado Van Hasselt, and David Silver. Distributed prioritized experience replay. arXiv preprint arXiv:1803.00933, 2018. + +Rein Houthooft, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel. Vime: Variational information maximizing exploration. In Advances in Neural Information Processing Systems, pp. 1109– 1117, 2016. + +Boris Ivanovic, James Harrison, Apoorva Sharma, Mo Chen, and Marco Pavone. Barc: Backward reachability curriculum for robotic reinforcement learning. arXiv preprint arXiv:1806.06161, 2018. + +Dmitry Kalashnikov, Alex Irpan, Peter Pastor, Julian Ibarz, Alexander Herzog, Eric Jang, Deirdre Quillen, Ethan Holly, Mrinal Kalakrishnan, Vincent Vanhoucke, et al. Qt-opt: Scalable deep reinforcement learning for vision-based robotic manipulation. arXiv preprint arXiv:1806.10293, 2018. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Sergey Levine, Peter Pastor, Alex Krizhevsky, Julian Ibarz, and Deirdre Quillen. Learning hand-eye coordination for robotic grasping with deep learning and large-scale data collection. The International Journal of Robotics Research, 37(4-5):421–436, 2018. + +Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971, 2015. + +Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching. Machine learning, 8(3-4):293–321, 1992. + +Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic for mixed cooperative-competitive environments. In Advances in Neural Information Processing Systems, pp. 6379–6390, 2017. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529, 2015. + +Andrew Y Ng, Adam Coates, Mark Diel, Varun Ganapathi, Jamie Schulte, Ben Tse, Eric Berger, and Eric Liang. Autonomous inverted helicopter flight via reinforcement learning. In Experimental Robotics IX, pp. 363–372. Springer, 2006. + +Roland Olsson. Inductive functional programming using incremental program transformation. Artificial intelligence, 74(1):55–81, 1995. + +OpenAI. Openai five. https://blog.openai.com/openai-five/, 2018. + +Ian Osband, Charles Blundell, Alexander Pritzel, and Benjamin Van Roy. Deep exploration via bootstrapped dqn. In Advances in neural information processing systems, pp. 4026–4034, 2016. + +Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by selfsupervised prediction. In International Conference on Machine Learning (ICML), volume 2017, 2017. + +Matthias Plappert, Rein Houthooft, Prafulla Dhariwal, Szymon Sidor, Richard Y Chen, Xi Chen, Tamim Asfour, Pieter Abbeel, and Marcin Andrychowicz. Parameter space noise for exploration. arXiv preprint arXiv:1706.01905, 2017. + +Matthias Plappert, Marcin Andrychowicz, Alex Ray, Bob McGrew, Bowen Baker, Glenn Powell, Jonas Schneider, Josh Tobin, Maciek Chociej, Peter Welinder, et al. Multi-goal reinforcement learning: Challenging robotics environments and request for research. arXiv preprint arXiv:1802.09464, 2018. + +Ivaylo Popov, Nicolas Heess, Timothy Lillicrap, Roland Hafner, Gabriel Barth-Maron, Matej Vecerik, Thomas Lampe, Yuval Tassa, Tom Erez, and Martin Riedmiller. Data-efficient deep reinforcement learning for dexterous manipulation. arXiv preprint arXiv:1704.03073, 2017. + +Cinjon Resnick, Wes Eldridge, David Ha, Denny Britz, Jakob Foerster, Julian Togelius, Kyunghyun Cho, and Joan Bruna. Pommerman: A multi-agent playground. arXiv preprint arXiv:1809.07124, 2018a. + +Cinjon Resnick, Roberta Raileanu, Sanyam Kapoor, Alex Peysakhovich, Kyunghyun Cho, and Joan Bruna. Backplay:” man muss immer umkehren”. arXiv preprint arXiv:1807.06919, 2018b. + +Tim Salimans and Richard Chen. Learning montezumas revenge from a single demonstration. https://blog.openai.com/ learning-montezumas-revenge-from-a-single-demonstration/, 2018. + +Arthur L Samuel. Some studies in machine learning using the game of checkers. IBM Journal of research and development, 3(3):210–229, 1959. + +Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint arXiv:1511.05952, 2015. + +Jurgen Schmidhuber. A possibility for implementing curiosity and boredom in model-building neural¨ controllers. In Proc. of the international conference on simulation of adaptive behavior: From animals to animats, pp. 222–227, 1991. + +Jurgen Schmidhuber. Powerplay: Training an increasingly general problem solver by continually searching ¨ for the simplest still unsolvable problem. Frontiers in psychology, 4:313, 2013. + +John Schulman, Sergey Levine, Philipp Moritz, Michael I. Jordan, and Pieter Abbeel. Trust region policy optimization. In International Conference on Machine Learning, 2015. + +John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. High-dimensional continuous control using generalized advantage estimation. International Conference of Learning Representations (ICLR), 2016. + +John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. Advances in Neural Information Processing Systems, 2017. + +David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller. Deterministic policy gradient algorithms. In ICML, 2014. + +David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. + +David Silver, Thomas Hubert, Julian Schrittwieser, Ioannis Antonoglou, Matthew Lai, Arthur Guez, Marc Lanctot, Laurent Sifre, Dharshan Kumaran, Thore Graepel, et al. Mastering chess and shogi by self-play with a general reinforcement learning algorithm. arXiv preprint arXiv:1712.01815, 2017. + +Rupesh Kumar Srivastava, Bas R Steunebrink, and Jurgen Schmidhuber. First experiments with powerplay.¨ Neural Networks, 41:130–136, 2013. + +Sainbayar Sukhbaatar, Zeming Lin, Ilya Kostrikov, Gabriel Synnaeve, Arthur Szlam, and Rob Fergus. Intrinsic motivation and automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017. + +Richard S Sutton, Andrew G Barto, et al. Reinforcement learning: An introduction. MIT press, 1998. + +Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, OpenAI Xi Chen, Yan Duan, John Schulman, Filip DeTurck, and Pieter Abbeel. # exploration: A study of count-based exploration for deep reinforcement learning. In Advances in Neural Information Processing Systems, pp. 2753–2762, 2017. + +Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3):58–68, 1995. + +Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026–5033. IEEE, 2012. + +Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and Nando de Freitas. Sample efficient actor-critic with experience replay. arXiv preprint arXiv:1611.01224, 2016. + +# A ALGORITHM + +We summarize the algorithm for HER with CER in Algorithm 1. + +
Algorithm1HER with CER
Initialize a random process N for action exploration,max episode length to L Set CER to ind-CER or int-CER
for episode= 1 to M do
Receive initial state S A
Receive a goal rA for this episode
Initialize episode buffer buffer A
for t=1to L do
select action aA = μe(sA) +Nt w.r.t. the current policy and exploration Execute actions αA and observe reward rA and new state s'A
Store (sA,aA,gA,rA,SA') in buffer A
SA↑SA
end for
Receive initial state SB or Receive initial state SB, where SB is a state sampled from buffer A
Receive a goal rB for this episode Initialize episode buffer buffer B
for t=1 to L do
select action aB = μe(sB)+Nt w.r.t. the current policy and exploration
Execute actions αB and observe reward rB and new state s'B
Store (sB,aB,gB,rB,SB') in bufferB
SB↑SB
end for
ConcatenatebuferA and bufferg and store ({si}=1,{ai}T=1,{g}T=1,{ri}=1,{s'i}T=1) in replay buffer D
// Optimization based on off-policysamples
fork=1 toKdo // Relabelling off-policy samples
+ +# B ENVIRONMENT DETAILS + +Robotic control environments The robotic control environments shown in Figure 7 are part of challenging continuous robotics control suite (Plappert et al., 2018) integrated in OpenAI Gym (Brockman et al., 2016) and based on Mujoco simulation enginge (Todorov et al., 2012). The Fetch environments are based on the 7-DoF Fetch robotics arm, which has a two-fingered parallel gripper. The Hand environments are based on the Shadow Dexterous Hand, which is an anthropomorphic robotic hand with 24 degrees of freedom. In all tasks, rewards are sparse and binary: the agent obtains a reward of 0 if the goal has been achieved and $- 1$ otherwise. For more details please refer to Plappert et al. (2018). + +Ant maze environments We also construct two maze environments with the re-settable property, rendered in Figure 1, in which walls are placed to construct ”U” or ”S” shaped maze. At the beginning of each episode, the agent is always initialized at position $( 0 , 0 )$ , and can move in any direction as long as it is not obstructed by a wall. The $\mathbf { X } ^ { - }$ and y-axis locations of the target ball are sampled uniformly from $[ - 5 , 2 0 ]$ , $[ - 5 , 2 0 ]$ , respectively. + +![](images/18ec610471e417495297d3ada254ce66e758df5b2463d05d5b9be2f597a0bd37.jpg) +Figure 7: Robotics control environments used in our experiments + +# C COMPETITIVE EXPERIENCE REPLAY WITH DIFFERENT ADVERSARIAL AGENTS + +![](images/d5cc5dff820ac51df2323423b6c4f33228df28e6347716f00a1bea69f7c54c77.jpg) +Figure 8: Performance on FetchSlide (top) and HandManipulatePenFull (bottom) for different batch-size multipliers when training using HER (left columns) or HER $^ +$ CER (middle, right columns). Middle plots show the performance of agent $A$ and, in the right plots, performance of agent $B$ is shown for reference. + +As Andrychowicz et al. (2017) and Andrychowicz et al. (2018a) observe (and we also observe), performance depends on the batch size. We leverage this observation to tune the relative strengths of Agents $A$ and $B$ by separately manipulating the batch sizes used for updating each. + +For simplicity, we control the batch size by changing the number of MPI workers devoted to a particular update. Each MPI worker computes the gradients for a batch size of 256; averaging the gradients from each worker results in an effective batch size of $N * 2 5 6$ . For our single-agent baselines, we choose $N = 3 0$ workers, and, when using CER, a default of $N = 1 5$ for each $A$ and $B$ In the following, $A x B y$ denotes, for agent $A$ , $N = x$ and, for agent $B$ , $N = y$ . These results suggest that, while a sufficiently large batch size is important for achieving the best performance, the optimal configuration occurs when the batch sizes used for the two agents are balanced. Interestingly, we observe that batch size imbalance adversely effects both agents trained during CER. + +# D IMPLEMENTATION DETAILS + +In the code for HER (Andrychowicz et al., 2017), the authors use MPI to increase the batch size. MPI is used here to run rollouts in parallel and average gradients over all MPI workers. We found that MPI is crucial for good performance, since training for longer time with a smaller batch size gives sub-optimal performance. This is consistent with the authors’ findings in their code that having a much larger batch size helps a lot. For each experiment, we provide the per-worker batch sizes in Table 1; note that the effective batch size is multiplied by the number of MPI workers $N$ . + +In our implementation, we do $N$ rollouts in parallel for each agent and have separate optimizers for each. We found that periodically resetting the parameters of agent $B$ in early stage of training helps agent $A$ more consistently reach a high level of performance. This resetting helps to strike an optimal balance between the influences of HER and CER in training agent $A$ . We also add L2 regularization, following the practice of Andrychowicz et al. (2017). + +For the experiments with neural networks, all parameters are randomly initialized from $\mathcal { N } ( 0 , 0 . 2 )$ . We use networks with three layers of hidden layer size 256 and Adam (Kingma & Ba, 2014) for optimization. Presented results are averaged over 5 random seeds. We summarize the hyperparameters in Table 1. + +Table 1: Hyperparameter values used in experiments. + +
Hyperparametername'U'AntMaze'S'AntMazeFetchControlHandControl
Buffer size1E51E61E61E6
Batch size128128256256
Max steps ofepisode5010050100
Reset epochs2255
Max reset epochs10102030
Total epochs50100100/50200
ActorLearning rate0.00040.00040.0010.001
CriticLearning rate0.00040.00040.0010.001
ActionL2 regularization0.010.011.001.00
Polyak0.950.950.950.95
\ No newline at end of file diff --git a/parse/train/Sklsm20ctX/Sklsm20ctX_content_list.json b/parse/train/Sklsm20ctX/Sklsm20ctX_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..a346216506562cb8ec04322ccadf61eacbdc7aba --- /dev/null +++ b/parse/train/Sklsm20ctX/Sklsm20ctX_content_list.json @@ -0,0 +1,1706 @@ +[ + { + "type": "text", + "text": "COMPETITIVE EXPERIENCE REPLAY ", + "text_level": 1, + "bbox": [ + 148, + 117, + 576, + 137 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Hao Liu∗, Alexander Trott, Richard Socher, Caiming Xiong \nSalesforce Research \nPalo Alto, 94301 \nlhao499@gmail.com,{atrott, rsocher, cxiong}@salesforce.com ", + "bbox": [ + 161, + 161, + 728, + 218 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 452, + 253, + 544, + 270 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep learning has achieved remarkable successes in solving challenging reinforcement learning (RL) problems when dense reward function is provided. However, in sparse reward environment it still often suffers from the need to carefully shape reward function to guide policy optimization. This limits the applicability of RL in the real world since both reinforcement learning and domain-specific knowledge are required. It is therefore of great practical importance to develop algorithms which can learn from a binary signal indicating successful task completion or other unshaped, sparse reward signals. We propose a novel method called competitive experience replay, which efficiently supplements a sparse reward by placing learning in the context of an exploration competition between a pair of agents. Our method complements the recently proposed hindsight experience replay (HER) by inducing an automatic exploratory curriculum. We evaluate our approach on the tasks of reaching various goal locations in an ant maze and manipulating objects with a robotic arm. Each task provides only binary rewards indicating whether or not the goal is achieved. Our method asymmetrically augments these sparse rewards for a pair of agents each learning the same task, creating a competitive game designed to drive exploration. Extensive experiments demonstrate that this method leads to faster converge and improved task performance. ", + "bbox": [ + 207, + 285, + 792, + 520 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 150, + 546, + 310, + 561 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent progress in deep reinforcement learning has achieved very impressive results in domains ranging from playing games (Mnih et al., 2015; Silver et al., 2016; 2017; OpenAI, 2018), to high dimensional continuous control (Schulman et al., 2016; 2017; 2015), and robotics (Levine et al., 2018; Kalashnikov et al., 2018; Andrychowicz et al., 2018b). ", + "bbox": [ + 148, + 577, + 851, + 632 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Despite these successes, in robotics control and many other areas, deep reinforcement learning still suffers from the need to engineer a proper reward function to guide policy optimization (see e.g. Popov et al. 2017, $\\mathrm { N g }$ et al. 2006). In robotic control as stacking bricks, reward function need to be sharped to very complex which consists of multiple terms(Popov et al., 2017). It is extremely hard and not applicable to engineer such reward function for each task in real world since both reinforcement learning expertise and domain-specific knowledge are required. Learning to perform well in environments with sparse rewards remains a major challenge. Therefore, it is of great practical importance to develop algorithms which can learn from binary signal indicating successful task completion or other unshaped reward signal. ", + "bbox": [ + 148, + 640, + 851, + 751 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In environments where dense reward function is not available, only a small fraction of the agents’ experiences will be useful to compute gradient to optimize policy, leading to substantial high sample complexity. Providing agents with useful signals to pursue in sparse reward environments becomes crucial in these scenarios. ", + "bbox": [ + 148, + 758, + 851, + 800 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In the domain of goal-directed RL, the recently proposed hindsight experience replay (HER) (Andrychowicz et al., 2017) addresses the challenge of learning from sparse rewards by re-labelling visited states as goal states during training. However, this technique continues to suffer from sample inefficiency, ostensibly due to difficulties related to exploration. In this work, we address these limitations by introducing a method called Competitive Experience Replay $( C E R )$ . This technique attempts to emphasize exploration by introducing a competition between two agents attempting to learn the same task. Intuitively, agent $A$ (the agent ultimately used for evaluation) receives a penalty for visiting states that the competitor agent $( B )$ also visits; and $B$ is rewarded for visiting states found by $A$ . Our approach maintains the reward from the original task such that exploration is biased towards the behaviors best suited to accomplishing the task goals. We show that this competition between agents can automatically generate a curriculum of exploration and shape otherwise sparse reward. We jointly train both agents’ policies by adopting methods from multi-agent RL. In addition, we propose two versions of CER, independent CER, and interact CER, which differ in the state initialization of agent $B$ : whether it is sampled from the initial state distribution or sampled from off-policy samples of agent $A$ , respectively. ", + "bbox": [ + 148, + 119, + 851, + 314 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Whereas HER re-labels samples based on an agent’s individual rollout, our method re-labels samples based on intra-agent behavior; as such, the two methods do not interfere with each other algorithmically and are easily combined during training. We evaluate our method both with and without HER on a variety of reinforcement learning tasks, including navigating an ant agent to reach a goal position and manipulating objects with a robotic arm. For each such task the default reward is sparse, corresponding to a binary indicator of goal completion. Ablation studies show that our method is important for achieving a high success rate and often demonstrates faster convergence. Interestingly, we find that CER and HER are complementary methods and employ both to reach peak efficiency and performance. Furthermore, we observe that, when combined with HER, CER outperforms curiosity-driven exploration. ", + "bbox": [ + 147, + 320, + 851, + 446 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND ", + "text_level": 1, + "bbox": [ + 148, + 469, + 300, + 486 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Here, we provide an introduction to the relevant concepts for reinforcement learning with sparse reward (Section 2.1), Deep Deterministic Policy Gradient, the backbone algorithm we build off of, (Section 2.2), and Hindsight Experience Replay (Section 2.3). ", + "bbox": [ + 148, + 503, + 851, + 546 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 SPARSE REWARD REINFORCEMENT LEARNING ", + "text_level": 1, + "bbox": [ + 148, + 565, + 509, + 580 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Reinforcement learning considers the problem of finding an optimal policy for an agent that interacts with an uncertain environment and collects reward per action. The goal of the agent is to maximize its cumulative reward. Formally, this problem can be viewed as a Markov decision process over the environment states $s \\in S$ and agent actions $a \\in A$ , with the (unknown) environment dynamics defined by the transition probability $T ( s ^ { \\prime } | \\bar { s } , a )$ and reward function $r ( s _ { t } , a _ { t } )$ , which yields a reward immediately following the action $a _ { t }$ performed in state $s _ { t }$ . ", + "bbox": [ + 148, + 593, + 851, + 678 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We consider goal-conditioned reinforcement learning from sparse rewards. This constitutes a modification to the reward function such that it depends on a goal $g \\in G$ , such that $r _ { g } : S \\times A \\times G \\to R$ . Every episode starts with sampling a state-goal pair from some distribution $p ( s _ { 0 } , g )$ . Unlike the state, the goal stays fixed for the whole episode. At every time step, an action is chosen according to some policy $\\pi$ , which is expressed as a function of the state and the goal, $\\pi : S \\times G \\to A$ . For generality, our only restriction on $G$ is that it is a subset of $S$ . In other words, the goal describes a target state and the task of the agent is to reach that state. Therefore, we apply the following sparse reward function: ", + "bbox": [ + 147, + 684, + 852, + 781 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/bc3b0c05124a7d82463e3cb60fe4ad4972449d1f1b688d6d0ee1b750ecbd9381.jpg", + "text": "$$\nr _ { t } = r _ { g } ( s _ { t } , a _ { t } , g ) = { \\left\\{ \\begin{array} { l l } { 0 , { \\mathrm { i f } } \\ | s _ { t } - g | < \\delta } \\\\ { - 1 , { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 359, + 791, + 635, + 827 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $g$ is a goal, $| s _ { t } - g |$ is a distance measure, and $\\delta$ is a predefined threshold that controls when the goal is considered completed. ", + "bbox": [ + 145, + 119, + 852, + 148 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Following policy gradient methods, we model the policy as a conditional probability distribution over states, $\\pi _ { \\boldsymbol { \\theta } } ( a | [ s , g ] )$ , where $[ s , g ]$ denotes concatenation of state $s$ and goal $g$ , and $\\theta$ are the learnable parameters. Our objective is to optimize $\\theta$ with respect to the expected cumulative reward, given by: ", + "bbox": [ + 147, + 155, + 852, + 198 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/af22a8a4a6d72a51da4964219477015bfefdf2041ad4cc321fcd5ca9d94c28e5.jpg", + "text": "$$\nJ ( \\theta ) = \\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } \\left[ r _ { g } ( s , a , g ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 356, + 203, + 638, + 222 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } \\mathrm { P r } ( s _ { t } = s ) } \\end{array}$ is the normalized discounted state visitation distribution with discount factor $\\gamma \\in [ 0 , 1 )$ . To simplify the notation, we denote $\\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } [ \\cdot ]$ by simply $\\mathbb { E } _ { \\pi } [ \\cdot ]$ in the rest of paper. According to the policy gradient theorem (Sutton et al., 1998), the gradient of $J ( \\theta )$ can be written as ", + "bbox": [ + 147, + 234, + 852, + 280 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d2eaaf445d9676d09b0abe1f32ca8f84691878086c2f7fde001b9cc9b9f1b7d8.jpg", + "text": "$$\n\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } _ { \\pi } \\left[ \\nabla _ { \\theta } \\log \\pi ( a | s , g ) Q ^ { \\pi } ( s , a , g ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 349, + 285, + 647, + 303 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { Q ^ { \\pi } ( s , a , g ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } r _ { g } ( s _ { t } , a _ { t } , g ) | s _ { 1 } = s , a _ { 1 } = a \\right] } \\end{array}$ , called the critic, denotes the expected return under policy $\\pi$ after taking an action $a$ in state $s$ , with goal $g$ . ", + "bbox": [ + 147, + 309, + 857, + 339 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 DDPG ALGORITHM ", + "text_level": 1, + "bbox": [ + 148, + 354, + 325, + 369 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here, we introduce Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), a model-free RL algorithm for continuous action spaces that serves as our backbone algorithm. Our proposed modifications need not be restricted to DDPG; however, we leave experimentation with other continuous control algorithms to future work. In DDPG, we maintain a deterministic target policy $\\mu ( s , g )$ and a critic $Q ( s , a , g )$ , both implemented as deep neural networks (note: we modify the standard notation to accommodate goal-conditioned tasks). To train these networks, episodes are generated by sampling actions from the policy plus some noise, $a \\sim \\mu ( s , g ) + N ( 0 , 1 )$ . The transition tuple associated with each action $\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)$ is stored in the so-called replay buffer. During training, transition tuples are sampled from the buffer to perform mini-batch gradient descent on the loss $L$ which encourages the approximated Q-function to satisfy the Bellman equation $\\mathbf { \\bar { \\boldsymbol { L } } } = \\mathbb { E } ( Q ( s _ { t } , a _ { t } , g _ { t } ) - y _ { t } ) ^ { 2 }$ , where $y _ { t } = r _ { t } + \\bar { \\gamma } Q ( s _ { t + 1 } , \\bar { \\mu } ( s _ { t + 1 } , g _ { t } ) , g _ { t } )$ . Similarly, the actor can be updated by training with mini-batch gradient descent on the loss $J ( \\theta ) = - \\mathbb { E } _ { s } Q ( s , \\mu ( s , g ) , g )$ through the deterministic policy gradient algorithm (Silver et al., 2014), ", + "bbox": [ + 147, + 381, + 852, + 549 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/61cbf72e039883c96a15b5be262e8304b5f77fd6ec0e534652890592ab47011c.jpg", + "text": "$$\n\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } [ \\nabla _ { \\theta } \\mu ( s , g ) \\nabla _ { a } Q ( s , a , g ) | _ { a = \\mu ( s , g ) } ] .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 554, + 656, + 573 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To make training more stable, the targets $y _ { t }$ are typically computed using a separate target network, whose weights are periodically updated to the current weights of the main network (Lillicrap et al., 2015; Mnih et al., 2013; 2015). ", + "bbox": [ + 147, + 584, + 852, + 627 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 HINDSIGHT EXPERIENCE REPLAY", + "text_level": 1, + "bbox": [ + 150, + 643, + 416, + 659 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Despite numerous advances in the application of deep learning to RL challenges, learning in the presence of sparse rewards remains a major challenge. Intuitively, these algorithms depend on sufficient variability within the encountered rewards and, in many cases, random exploration is unlikely to uncover this variability if goals are difficult to reach. Recently, Andrychowicz et al. (2017) proposed Hindsight Experience Replay (HER) as a technique to address this challenge. The key insight of HER is that failed rollouts (where no task reward was obtained) can be treated as successful by assuming that a visited state was the actual goal. Basically, HER amounts to a relabelling strategy. For every episode the agent experiences, it gets stored in the replay buffer twice: once with the original goal pursued in the episode and once with the goal replaced with a future state achieved in the episode, as if the agent were instructed to reach this state from the beginning. Formally, HER randomly samples a mini-batch of episodes in buffer, for each episode $( \\{ s ^ { i } \\} _ { i = 1 } ^ { T } , \\{ \\stackrel { \\smile } { g ^ { i } } \\} _ { i = 1 } ^ { T } , \\{ a ^ { i } \\} _ { i = 1 } ^ { T } , \\{ r ^ { i } \\} _ { i = 1 } ^ { T } , \\{ s ^ { \\prime i } \\} _ { i = 1 } ^ { T } \\big )$ , for each state $s _ { t }$ , where $1 \\leq t \\leq T - 1$ in an episode, we randomly choose $s _ { k }$ where $t + 1 \\leq k \\leq T$ and relabel transition $\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)$ to $\\left( s _ { t } , a _ { t } , s _ { k } , r _ { t } ^ { \\prime } , s _ { t + 1 } \\right)$ and recalculate reward $r _ { t } ^ { \\prime }$ , ", + "bbox": [ + 147, + 669, + 851, + 824 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 143, + 119, + 854, + 150 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/a26e6b0f57bdfdac9fcbc75ddb11695d4d3d55360a134a0e1538445f815fff35.jpg", + "text": "$$\nr _ { t } ^ { \\prime } = r _ { g } ( s _ { t } , s _ { k } ) = \\left\\{ { 0 , \\mathrm { i f } | s _ { t } - s _ { k } | < \\delta , \\atop { - 1 , \\mathrm { o t h e r w i s e . } } } \\right.\n$$", + "text_format": "latex", + "bbox": [ + 362, + 159, + 632, + 194 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 METHOD ", + "text_level": 1, + "bbox": [ + 148, + 218, + 254, + 234 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this section, we present Competitive Experience Replay (CER) for policy gradient methods (Section 3.1) and describe the application of multi-agent DDPG to enable this technique (Section 3.2). ", + "bbox": [ + 148, + 256, + 849, + 285 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 COMPETITIVE EXPERIENCE REPLAY ", + "text_level": 1, + "bbox": [ + 150, + 310, + 434, + 324 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "While the re-labelling strategy introduced by HER provides useful rewards for training a goal-conditioned policy, it assumes that learning from arbitrary goals will generalize to the actual task goals. As such, exploration remains a fundamental challenge for goal-directed RL with sparse reward. We propose a relabelling strategy designed to overcome this challenge. Our method is partly inspired by the success of self-play in learning to play competitive games, where sparse rewards (i.e. win or lose) are common. Rather than train a single agent, we train a pair of agents on the same task and apply an asymmetric reward relabelling strategy to induce a competition designed to encourage exploration. We call this strategy Competitive Experience Replay (CER). ", + "bbox": [ + 147, + 338, + 852, + 450 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To implement CER, we learn a policy for each agent, $\\pi _ { A }$ and $\\pi _ { B }$ , as well as a multi-agent critic (see below), taking advantage of methods for decentralized execution and centralized training. During decentralized execution, $\\pi _ { A }$ and $\\pi _ { B }$ collect DDPG episode rollouts in parallel. Each agent effectively plays a singleplayer game; however, to take advantage of multi-agent training methods, we arbitrarily pair the rollout from $\\pi _ { A }$ with that from $\\pi _ { B }$ and store them as a single, multi-agent rollout in the replay buffer $\\mathcal { D }$ . When training on a mini-batch of off policy samples, we first randomly sample a mini-batch of episodes in $\\mathcal { D }$ and then randomly sample transitions in each episode. We denote the resulting mini-batch of transitions as $\\{ ( s _ { A } ^ { i } , a _ { A } ^ { i } , g _ { A } ^ { i } , r _ { A } ^ { i } , s ^ { \\prime } { } ^ { i } _ { A } ) , ( s _ { B } ^ { i } , a _ { B } ^ { i } , g _ { B } ^ { i } , r _ { B } ^ { i } , s ^ { \\prime } { } ^ { i } _ { B } ) \\} _ { i = 1 } ^ { m }$ , where $m$ is the size of the mini-batch. ", + "bbox": [ + 147, + 457, + 852, + 574 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Reward re-labelling in CER attempts to create an implicit exploration curriculum by punishing agent $A$ for visiting states that agent $B$ also visited, and, for those same states, rewarding agent $B$ . For each $A$ state $s _ { A } ^ { i }$ in a mini-batch of transitions, we check if any $B$ state $s _ { B } ^ { j }$ in the mini-batch satisfies $| s _ { A } ^ { i } - s _ { B } ^ { j } | < \\delta$ and, if so, re-label $r _ { A } ^ { i }$ with $r _ { A } ^ { i } - 1$ . Conversely, each time such a nearby state pair is found, we increment the associated reward for agent $B$ , $r _ { B } ^ { j }$ , by $+ 1$ . Each transition for agent $A$ can therefore be penalized only once, whereas no restriction is placed on the extra reward given to a transition for agent $B$ . Following training both agents with the re-labelled rewards, we retain the policy $\\pi _ { A }$ for evaluation. Additional implementation details are provided in the appendix (Section D). ", + "bbox": [ + 147, + 578, + 851, + 696 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We focus on two variations of CER that satisfy the multi-agent self-play requirements: first, the policy $\\pi _ { B }$ receives its initial state from the task’s initial state distribution; second, although more restricted to re-settable environments, $\\pi _ { B }$ receives its initial state from a random off-policy sample of $\\pi _ { A }$ . We refer to the above methods as independent-CER and interact-CER, respectively, in the following sections. ", + "bbox": [ + 148, + 703, + 849, + 760 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Importantly, CER re-labels rewards based on intra-agent behavior, whereas HER re-labels rewards based on each individual agent’s behavior. As a result, the two methods can be easily combined. In fact, as our experiments demonstrate, CER and HER are complementary and likely reflect distinct challenges that are both addressed through reward re-labelling. ", + "bbox": [ + 148, + 766, + 851, + 823 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 GOAL CONDITIONED MULTI-AGENT LEARNING", + "text_level": 1, + "bbox": [ + 148, + 121, + 513, + 135 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We extend multi-agent DDPG (MADDPG), proposed by Lowe et al. (2017), for training using CER. MADDPG attempts to learn a different policy per agent and a single, centralized critic that has access to the combined states, actions, and goals of all agents. ", + "bbox": [ + 147, + 145, + 851, + 189 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "More precisely, consider a game with $N$ agents with policies parameterized by $\\pmb { \\theta } = \\{ \\theta _ { 1 } , \\dots , \\theta _ { N } \\}$ , and let $\\pmb { \\pi } = \\{ \\bar { \\pi } _ { 1 } , . . . , \\bar { \\pi } _ { N } \\}$ be the set of all agent policies. $\\mathbf { g } = [ \\boldsymbol { g } _ { 1 } , \\dots , \\boldsymbol { g } _ { N } ]$ represents the concatenation of each agent’s goal, $\\mathbf { s } = [ s _ { 1 } , \\ldots , s _ { N } ]$ the concatenated states, and $\\mathbf { a } = [ a _ { 1 } , \\ldots , a _ { N } ]$ the concatenated actions. With this notation, we can write the gradient of the expected return for agent $i$ , $\\bar { J ( \\theta _ { i } ) } = \\mathbb { E } [ R _ { i } ]$ as: ", + "bbox": [ + 147, + 195, + 851, + 252 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2e6850d92597d835ba628f97c0f7711ea1835645b432dfbb185d432047b1c797.jpg", + "text": "$$\n\\begin{array} { r } { \\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\pi } } [ \\nabla _ { \\theta _ { i } } \\log \\pi _ { i } ( a _ { i } | s _ { i } , g _ { i } ) Q _ { i } ^ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 334, + 257, + 661, + 275 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "With deterministic policies ${ \\pmb \\mu } = \\{ \\mu _ { 1 } , . . . , \\mu _ { N } \\}$ , the gradient becomes: ", + "bbox": [ + 145, + 281, + 602, + 297 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/4135d952788d1437a8eb0c338c4eb28bd17da7bdc1e7d7f6e9980d410c2d2423.jpg", + "text": "$$\n\\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\mu } } [ \\nabla _ { \\theta _ { i } } \\mu _ { i } ( s _ { i } , g _ { i } ) \\nabla _ { a _ { i } } Q _ { i } ^ { \\pmb { \\mu } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) | _ { a _ { i } = \\mu _ { i } ( s _ { i } , g _ { i } ) } ] ,\n$$", + "text_format": "latex", + "bbox": [ + 305, + 301, + 691, + 320 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The centralized action-value function $Q _ { i } ^ { \\mu }$ , which estimates the expected return for agent $i$ , is updated as: ", + "bbox": [ + 155, + 327, + 821, + 343 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2da34ef7b3aa9d33ff804f1b9ecbb628b3534a4c0a0ed55f49dacca81dfcfb39.jpg", + "text": "$$\n\\begin{array} { r } { \\mathcal { L } ( \\theta _ { i } ) = \\mathbb { E } _ { { \\mathbf s } , { \\mathbf a } , { \\mathbf r } , { \\mathbf s } ^ { \\prime } } [ ( Q _ { i } ^ { \\mu } ( { \\mathbf s } , { \\mathbf a } , { \\mathbf g } ) - y ) ^ { 2 } ] , \\quad y = r _ { i } + \\gamma Q _ { i } ^ { \\mu ^ { \\prime } } ( { \\mathbf s } ^ { \\prime } , a _ { 1 } ^ { \\prime } , \\dots , a _ { N } ^ { \\prime } , { \\mathbf g } ) \\big | _ { a _ { j } ^ { \\prime } = \\mu _ { j } ^ { \\prime } ( s _ { j } ) } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 215, + 348, + 781, + 375 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\pmb { \\mu } ^ { \\prime } = \\{ \\pmb { \\mu } _ { \\theta _ { 1 } ^ { \\prime } } , . . . , \\pmb { \\mu } _ { \\theta _ { N } ^ { \\prime } } \\}$ is the set of target policies with delayed parameters $\\theta _ { i } ^ { \\prime }$ . In practice people usually soft update it as $\\mathbf { \\dot { \\theta } } _ { i } ^ { \\prime } \\gets \\tau \\dot { \\theta } _ { i } + ( 1 - \\tau ) \\theta _ { i } ^ { \\prime }$ , where $\\tau$ is a Polyak coefficient. ", + "bbox": [ + 147, + 382, + 852, + 414 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "During training, we collect paired rollouts as described above, apply any re-labelling strategies (such as CER or HER) and use the MADDPG algorithm to train both agent policies and the centralized critic, concatenating states, actions, and goals where appropriate. Putting everything together, we summarize the full method in Algorithm 1. ", + "bbox": [ + 148, + 419, + 849, + 476 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENT ", + "text_level": 1, + "bbox": [ + 148, + 496, + 290, + 511 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/e055e6b40d22d0067714f3e76101f2b2ff58f924492920fd2548f0f2112a06b3.jpg", + "image_caption": [ + "Figure 1: Goal conditioned ’U’ shaped maze and $\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }$ shaped maze. For each plot pair, the left illustrates a rendering of the maze type and the right shows the associated success rate throughout training for each method. Each line shows results averaged over 5 random initializations; the X-axis corresponds to epoch number and shaded regions show standard deviation. All metrics based on CER reference the performance of agent $A$ . " + ], + "image_footnote": [], + "bbox": [ + 158, + 530, + 836, + 654 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 COMBINING COMPETITIVE EXPERIENCE REPLAY WITH EXISTING METHODS ", + "text_level": 1, + "bbox": [ + 148, + 741, + 705, + 755 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We start by asking whether CER improves performance and sample efficiency in a sparse reward task. To this end, we constructed two different mazes, an easier ’U’ shaped maze and a more difficult $\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }$ shaped maze (Figure 1). The goal of the ant agent is to reach the target mark by a red sphere, whose location is randomly sampled for each new episode. At each step, the agent obtains a reward of 0 if the goal has been achieved and $- 1$ otherwise. Additional details of the ant maze environments are found in Appendix B. An advantage of this environment is that it can be reset to any given state, facilitating comparison between our two proposed variants of CER (int-CER requires the environment to have this feature). ", + "bbox": [ + 148, + 766, + 851, + 823 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 148, + 121, + 851, + 162 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We compare agents trained with HER, both variants of CER, and both variants of CER with HER. Since each uses DDPG as a backbone algorithm, we also include results from a policy trained using DDPG alone. To confirm that any difficulties are not simply due to DDPG, we include results from a policy trained using Proximal Policy Optimization (PPO) (Schulman et al., 2017). The results for each maze are shown in Figure 1. DDPG and PPO each performs quite poorly by itself, likely due to the sparsity of the reward in this task set up. Adding CER to DDPG partially overcomes this limitation in terms of final success rate, and, notably, reaches this stronger result with many fewer examples. A similar result is seen when adding HER to DDPG. Importantly, adding both HER and CER offers the best improvement of final success rate without requiring any observable increase in the number of episodes, as compared to each of the other baselines. These results support our hypothesis that existing state-of-the-art methods do not sufficiently address the exploration challenge intrinsic to sparse reward environments. Furthermore, these results show that CER improves both the quality and efficiency of learning in such challenging settings, especially when combined with HER. These results also show that int-CER tends to outperform ind-CER. As such, int-CER is considered preferable but has more restrictive technical requirements. ", + "bbox": [ + 148, + 170, + 852, + 363 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To examine the efficacy of our method on a broader range of tasks, we evaluate the change in performance when ind-CER is added to HER on the challenging multi-goal sparse reward environments introduced in Plappert et al. (2018). (Note: we would prefer to examine int-CER but are prevented by technical issues related to the environment.) Results for each of the 12 tasks we trained on are illustrated in Figure 3. Our method, when used on top of HER, improves performance wherever it is not already saturated. This is especially true on harder tasks, where HER alone achieves only modest success (e.g., HandManipulateEggFull and handManipulatePenRotate). These results further support the conclusion that existing methods often fail to achieve sufficient exploration. Our method, which provides a targeted solution to this challenge, naturally complements HER. ", + "bbox": [ + 147, + 371, + 851, + 494 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/27e1273067bcfd690c40306cd806da119675b405423efbb3426709f9cc13b946.jpg", + "image_caption": [ + "Figure 2: Comparing CER and ICM with and without HER. Each line shows task success rate averaged over 5 random initializations. $\\mathrm { X }$ -axis is epoch number; shaded regions denote standard deviation. " + ], + "image_footnote": [], + "bbox": [ + 158, + 511, + 848, + 630 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 COMPARING CER WITH CURIOSITY-DRIVEN EXPLORATION ", + "text_level": 1, + "bbox": [ + 148, + 685, + 596, + 699 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "CER is designed to encourage exploration, but, unlike other methods, uses the behavior of a competitor agent to automatically determine the criteria for exploratory reward. Numerous methods have been proposed for improving exploration; for example, count-based exploration (Bellemare et al., 2016; Tang et al., 2017), VIME (Houthooft et al., 2016), bootstrap DQN (Osband et al., 2016), goal exploration process (Forestier et al., 2017), parameter space noise (Plappert et al., 2017), dynamics curiosity and boredom (Schmidhuber, 1991), and EX2 (Fu et al., 2017). One recent and popular method, intrinsic curiosity module (ICM) (Pathak et al., 2017; Burda et al., 2018), augments task reward with curiosity-driven reward. Much like CER and HER, ICM provides a method to relabel the reward associated with each transition; this reward comes from the error in a jointly trained forward prediction model. We compare how CER and ICM affect task performance and how they interact with HER across 4 tasks where we were able to implement ICM successfully. Figure 2 shows the results on several robotic control and maze tasks. We observe CER to consistently outperform ICM when each is implemented in isolation. In addition, we observe HER to benefit more from the addition of CER than of ICM. Compared to ICM, CER also tends to improve the speed of learning. These results suggest that the underlying problem is not a lack of diversity of states being visited but the size of the state space that the agent must explore (as also discussed in Andrychowicz et al. (2017)). One interpretation is that, since the two CER agents are both learning the task, the dynamics of their competition encourage more task-relevant exploration. From this perspective, CER provides an automatic curriculum for exploration such that visited states are utilized more efficiently. ", + "bbox": [ + 148, + 710, + 851, + 821 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/3e71c35ab545ef7c2cf7fe70aac3c1b801aeaa9d69edeae00e49c9c58f1ca488.jpg", + "image_caption": [ + "Figure 3: Evaluation of HER with ind-CER across different robotic control environments. Each line shows results averaged over 5 random initializations. X-axis shows epoch number; shaded regions denote standard deviation. " + ], + "image_footnote": [], + "bbox": [ + 165, + 117, + 825, + 472 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 148, + 515, + 851, + 654 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 ANALYSIS OF CER ", + "text_level": 1, + "bbox": [ + 148, + 671, + 320, + 685 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Figure 4 illustrates the success rates of agents of mini-batch samples whose reward is chang $A$ nd y C $B$ as well as the ‘effect ratio,’ whR during training, calculated as e fractiwhere $\\begin{array} { r } { \\phi = \\frac { N } { M } } \\end{array}$ $N$ $M$ \nstrong correspondence between the success rate and effect ratio, likely reflecting the influence of CER on the \nlearning dynamics. While a deeper analysis would be required to concretely understand the interplay of these \ntwo terms, we point out that CER re-labels a substantial fraction of rewards in the mini-batch. Interestingly, \neven the relatively small effect ratio observed in the first few epochs is enough support rapid learning. We \nspeculate that the sampling strategy used in int-CER provides a more targeted re-labelling, leading to the more \nrapid increase in success rate for agent $A$ . We observe that agent $B$ reaches a lower level of performance. ", + "bbox": [ + 147, + 696, + 851, + 823 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/d1c163e8a3b024f543bf4bfe9dbdd875881fca86d2b95b586bdff97e6458f9e5.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 160, + 119, + 838, + 220 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/8899fe9d0a1ef3dcaa5d1a5edf516c162affe6dc3ef72029a5a1bf6c42780dfd.jpg", + "image_caption": [ + "Figure 4: Illustration of the automatically generated curriculum between $A$ and $B$ on ‘U‘ shaped AntMaze task. From left to right are success rate of ind-CER, effect ratio of ind-CER, success rate of int-CER, and effect ratio of int-CER. Each line shows results averaged over 5 random initializations. $\\mathrm { X }$ -axis is epoch number. ", + "Figure 5: State visitation frequency on ’U’ maze. Top row is from after 5 epochs; bottom row from after 35. Blue on the colormap denotes no visitation. The start and goal locations are labeled with the blue and green markers, respectively. ICM and CER are trained with HER also. " + ], + "image_footnote": [], + "bbox": [ + 151, + 263, + 848, + 452 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "This likely results from resetting the parameters of agent $B$ periodically during early training, which we observe to improve the ultimate performance of agent $A$ (see Section D for details). It is also possible that the reward structure of CER asymmetrically benefits agent $A$ with respect to the underlying task. ", + "bbox": [ + 148, + 521, + 851, + 563 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To gain additional insight into how each method influences the behaviors learned across training, we visualize the frequency with which each location in the ‘U’ maze is visited after the 5th and 35th training epoch (Figure 5). Comparing DDPG and HER shows that the latter clearly helps move the state distribution towards the goal, especially during the early parts of training. When CER is added, states near the goal create a clear mode in the visitation distribution. This is never apparent with DDPG alone and only obvious for HER and $\\mathrm { I C M + H E R }$ later in training. CER also appears to focus the visitation of the agent, as it less frequently gets caught along the outer walls. These disparities are emphasized in Figure 6, where we show the difference in the visitation profiles. The left two plots compare CER $^ +$ HER vs. HER. The right two plots compare Agent A vs Agent B from CER+HER. Interestingly, the Agents A and B exhibit fairly similar aggregate visitation profiles with the exception that Agent A reaches the goal more often later during training. These visitation profiles underscore both the quantitative and qualitative improvements associated with CER. ", + "bbox": [ + 147, + 570, + 851, + 723 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 RELATED WORK ", + "text_level": 1, + "bbox": [ + 150, + 746, + 316, + 762 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Self-play has a long history in this domain of research (Samuel, 1959; Tesauro, 1995; Heess et al., 2017). Silver et al. (2017) use self-play with deep reinforcement learning techniques to master the game of Go; and self-play has even been applied in Dota 5v5 (OpenAI, 2018). ", + "bbox": [ + 148, + 780, + 852, + 821 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/b00a3c03ad9575649264d247c87006c0ad2250785265eaac2510a5062afd0688.jpg", + "image_caption": [ + "Figure 6: State visitation difference on ’U’ maze. Left plots compare CER against HER; right plots compare the two CER agents. Each plot illustrates the difference in visitation, with red indicating more visitation by CER(A). Note: here, the “CER” agent is trained with $_ \\mathrm { C E R + H E R }$ . " + ], + "image_footnote": [], + "bbox": [ + 168, + 113, + 828, + 224 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Curriculum learning is widely used for training neural networks (see e.g., Bengio et al., 2009; Graves et al., 2017; Elman, 1993; Olsson, 1995). A general framework for automatic task selection is Powerplay (Schmidhuber, 2013; Srivastava et al., 2013), which proposes an asymptotically optimal way of selecting tasks from a set of tasks with program search, and use replay buffer to avoid catastrophic forgetting. Florensa et al. (2017); Held et al. (2017) propose to automatically adjust task difficulty during training. Forestier et al. (2017) study intrinsically motivated goal for robotic learning. Recently, Sukhbaatar et al. (2017) suggest to use self-play between two agents where reward depends on the time of the other agent to complete to enable implicit curriculum. Our work is similar to theirs, but we propose to use sample-based competitive experience replay, which is not only more readily scalable to high-dimension control but also integrates easily with Hindsight Experience Replay (Andrychowicz et al., 2017). The method of initializing based on a state not sampled from the initial state distribution has been explored in other works. For example, Ivanovic et al. (2018) propose to create a backwards curriculum for continuous control tasks through learning a dynamics model. Resnick et al. (2018b) and Salimans & Chen (2018) propose to train policies on Pommerman (Resnick et al., 2018a) and the Atari game ‘Montezumas Revenge’ by starting each episode from a different point along a demonstration. Recently, Goyal et al. (2018) and Edwards et al. (2018) propose a learned backtracking model to generate traces that lead to high value states in order to obtain higher sample efficiency. ", + "bbox": [ + 147, + 291, + 851, + 513 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Experience replay has been introduced in (Lin, 1992) and later was a crucial ingredient in learning to master Atari games (Mnih et al., 2013; 2015). Wang et al. (2016) propose truncation with bias correction to reduce variance from using off-policy data in buffer and achieves good performance on continuous and discrete tasks. Different approaches have been proposed to incorporate model-free learning with experience replay(Gu et al., 2016; Feng et al., 2019). Schaul et al. (2015) improve experience replay by assigning priorities to transitions in the buffer to efficiently utilize samples. Horgan et al. (2018) further improve experience replay by proposing a distributed RL system in which experiences are shared between parallel workers and accumulated into a central replay memory and prioritized replay is used to update the policy based on the diverse accumulated experiences. ", + "bbox": [ + 148, + 520, + 852, + 646 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 148, + 665, + 294, + 681 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We introduce Competitive Experience Replay, a new and general method for encouraging exploration through implicit curriculum learning in sparse reward settings. We demonstrate an empirical advantage of our technique when combined with existing methods in several challenging RL tasks. In future work, we aim to investigate richer ways to re-label rewards based on intra-agent samples to further harness multi-agent competition, it’s interesting to investigate counterfactual inference to promote efficient re-label off-policy samples. We hope that this will facilitate the application of our method to more open-end environments with even more challenging task structures. In addition, future work will explore integrating our method into approaches more closely related to model-based learning, where adequate exposure to the dynamics of the environment is often crucial. ", + "bbox": [ + 148, + 696, + 851, + 821 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 148, + 119, + 259, + 135 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew, Josh Tobin, OpenAI Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. In Advances in Neural Information Processing Systems, pp. 5048–5058, 2017. ", + "bbox": [ + 145, + 142, + 854, + 185 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki, Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, Jonas Schneider, Szymon Sidor, Josh Tobin, Peter Welinder, Lilian Weng, and Wojciech Zaremba. Learning dexterous in-hand manipulation. arXiv:1808.00177, 2018a. ", + "bbox": [ + 147, + 194, + 854, + 251 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki, Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, et al. Learning dexterous in-hand manipulation. arXiv preprint arXiv:1808.00177, 2018b. ", + "bbox": [ + 147, + 260, + 854, + 303 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos. Unifying count-based exploration and intrinsic motivation. In Advances in Neural Information Processing Systems, pp. 1471–1479, 2016. ", + "bbox": [ + 147, + 310, + 852, + 354 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ Proceedings of the 26th annual international conference on machine learning, pp. 41–48. ACM, 2009. ", + "bbox": [ + 150, + 362, + 849, + 392 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym. arXiv preprint arXiv:1606.01540, 2016. ", + "bbox": [ + 148, + 400, + 852, + 430 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yuri Burda, Harri Edwards, Deepak Pathak, Amos Storkey, Trevor Darrell, and Alexei A Efros. Large-scale study of curiosity-driven learning. arXiv preprint arXiv:1808.04355, 2018. ", + "bbox": [ + 147, + 438, + 852, + 468 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ashley D Edwards, Laura Downs, and James C Davidson. Forward-backward reinforcement learning. arXiv preprint arXiv:1803.10227, 2018. ", + "bbox": [ + 143, + 476, + 851, + 506 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeffrey L Elman. Learning and development in neural networks: The importance of starting small. Cognition, 48(1):71–99, 1993. ", + "bbox": [ + 145, + 513, + 851, + 544 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yihao Feng, Hao Liu, Jian Peng, and Qiang Liu. Shrinkage-based bias-variance trade-off for deep reinforcement learning, 2019. URL https://openreview.net/forum?id=S1z9ehAqYX. ", + "bbox": [ + 147, + 551, + 849, + 582 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Carlos Florensa, David Held, Markus Wulfmeier, Michael Zhang, and Pieter Abbeel. Reverse curriculum generation for reinforcement learning. arXiv preprint arXiv:1707.05300, 2017. ", + "bbox": [ + 147, + 589, + 849, + 621 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sebastien Forestier, Yoan Mollard, and Pierre-Yves Oudeyer. Intrinsically motivated goal exploration ´ processes with automatic curriculum learning. arXiv preprint arXiv:1708.02190, 2017. ", + "bbox": [ + 145, + 627, + 849, + 657 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Justin Fu, John Co-Reyes, and Sergey Levine. Ex2: Exploration with exemplar models for deep reinforcement learning. In Advances in Neural Information Processing Systems, pp. 2577–2587, 2017. ", + "bbox": [ + 147, + 665, + 849, + 695 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Anirudh Goyal, Philemon Brakel, William Fedus, Timothy Lillicrap, Sergey Levine, Hugo Larochelle, and Yoshua Bengio. Recall traces: Backtracking models for efficient reinforcement learning. arXiv preprint arXiv:1804.00379, 2018. ", + "bbox": [ + 148, + 703, + 849, + 747 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Graves, Marc G Bellemare, Jacob Menick, Remi Munos, and Koray Kavukcuoglu. Automated curriculum learning for neural networks. arXiv preprint arXiv:1704.03003, 2017. ", + "bbox": [ + 143, + 755, + 849, + 785 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In International Conference on Machine Learning, pp. 2829–2838, 2016. ", + "bbox": [ + 148, + 794, + 846, + 823 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich environments. arXiv preprint arXiv:1707.02286, 2017. ", + "bbox": [ + 147, + 119, + 852, + 162 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "David Held, Xinyang Geng, Carlos Florensa, and Pieter Abbeel. Automatic goal generation for reinforcement learning agents. arXiv preprint arXiv:1705.06366, 2017. ", + "bbox": [ + 143, + 171, + 848, + 202 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dan Horgan, John Quan, David Budden, Gabriel Barth-Maron, Matteo Hessel, Hado Van Hasselt, and David Silver. Distributed prioritized experience replay. arXiv preprint arXiv:1803.00933, 2018. ", + "bbox": [ + 148, + 209, + 848, + 241 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Rein Houthooft, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel. Vime: Variational information maximizing exploration. In Advances in Neural Information Processing Systems, pp. 1109– 1117, 2016. ", + "bbox": [ + 147, + 248, + 851, + 291 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Boris Ivanovic, James Harrison, Apoorva Sharma, Mo Chen, and Marco Pavone. Barc: Backward reachability curriculum for robotic reinforcement learning. arXiv preprint arXiv:1806.06161, 2018. ", + "bbox": [ + 145, + 301, + 851, + 330 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dmitry Kalashnikov, Alex Irpan, Peter Pastor, Julian Ibarz, Alexander Herzog, Eric Jang, Deirdre Quillen, Ethan Holly, Mrinal Kalakrishnan, Vincent Vanhoucke, et al. Qt-opt: Scalable deep reinforcement learning for vision-based robotic manipulation. arXiv preprint arXiv:1806.10293, 2018. ", + "bbox": [ + 148, + 339, + 852, + 383 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 147, + 392, + 852, + 421 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sergey Levine, Peter Pastor, Alex Krizhevsky, Julian Ibarz, and Deirdre Quillen. Learning hand-eye coordination for robotic grasping with deep learning and large-scale data collection. The International Journal of Robotics Research, 37(4-5):421–436, 2018. ", + "bbox": [ + 147, + 430, + 851, + 473 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971, 2015. ", + "bbox": [ + 147, + 482, + 854, + 526 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching. Machine learning, 8(3-4):293–321, 1992. ", + "bbox": [ + 147, + 535, + 851, + 564 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic for mixed cooperative-competitive environments. In Advances in Neural Information Processing Systems, pp. 6379–6390, 2017. ", + "bbox": [ + 147, + 573, + 854, + 616 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013. ", + "bbox": [ + 145, + 625, + 851, + 655 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529, 2015. ", + "bbox": [ + 147, + 664, + 852, + 708 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew Y Ng, Adam Coates, Mark Diel, Varun Ganapathi, Jamie Schulte, Ben Tse, Eric Berger, and Eric Liang. Autonomous inverted helicopter flight via reinforcement learning. In Experimental Robotics IX, pp. 363–372. Springer, 2006. ", + "bbox": [ + 147, + 715, + 852, + 760 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Roland Olsson. Inductive functional programming using incremental program transformation. Artificial intelligence, 74(1):55–81, 1995. ", + "bbox": [ + 143, + 768, + 851, + 797 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "OpenAI. Openai five. https://blog.openai.com/openai-five/, 2018. ", + "bbox": [ + 147, + 808, + 694, + 823 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ian Osband, Charles Blundell, Alexander Pritzel, and Benjamin Van Roy. Deep exploration via bootstrapped dqn. In Advances in neural information processing systems, pp. 4026–4034, 2016. ", + "bbox": [ + 143, + 119, + 851, + 150 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by selfsupervised prediction. In International Conference on Machine Learning (ICML), volume 2017, 2017. ", + "bbox": [ + 147, + 159, + 849, + 189 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Matthias Plappert, Rein Houthooft, Prafulla Dhariwal, Szymon Sidor, Richard Y Chen, Xi Chen, Tamim Asfour, Pieter Abbeel, and Marcin Andrychowicz. Parameter space noise for exploration. arXiv preprint arXiv:1706.01905, 2017. ", + "bbox": [ + 147, + 198, + 856, + 241 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Matthias Plappert, Marcin Andrychowicz, Alex Ray, Bob McGrew, Bowen Baker, Glenn Powell, Jonas Schneider, Josh Tobin, Maciek Chociej, Peter Welinder, et al. Multi-goal reinforcement learning: Challenging robotics environments and request for research. arXiv preprint arXiv:1802.09464, 2018. ", + "bbox": [ + 147, + 251, + 851, + 295 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ivaylo Popov, Nicolas Heess, Timothy Lillicrap, Roland Hafner, Gabriel Barth-Maron, Matej Vecerik, Thomas Lampe, Yuval Tassa, Tom Erez, and Martin Riedmiller. Data-efficient deep reinforcement learning for dexterous manipulation. arXiv preprint arXiv:1704.03073, 2017. ", + "bbox": [ + 151, + 304, + 851, + 348 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Cinjon Resnick, Wes Eldridge, David Ha, Denny Britz, Jakob Foerster, Julian Togelius, Kyunghyun Cho, and Joan Bruna. Pommerman: A multi-agent playground. arXiv preprint arXiv:1809.07124, 2018a. ", + "bbox": [ + 150, + 358, + 852, + 388 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Cinjon Resnick, Roberta Raileanu, Sanyam Kapoor, Alex Peysakhovich, Kyunghyun Cho, and Joan Bruna. Backplay:” man muss immer umkehren”. arXiv preprint arXiv:1807.06919, 2018b. ", + "bbox": [ + 148, + 397, + 851, + 428 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tim Salimans and Richard Chen. Learning montezumas revenge from a single demonstration. https://blog.openai.com/ learning-montezumas-revenge-from-a-single-demonstration/, 2018. ", + "bbox": [ + 147, + 436, + 852, + 481 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Arthur L Samuel. Some studies in machine learning using the game of checkers. IBM Journal of research and development, 3(3):210–229, 1959. ", + "bbox": [ + 143, + 489, + 851, + 520 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint arXiv:1511.05952, 2015. ", + "bbox": [ + 143, + 529, + 851, + 559 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jurgen Schmidhuber. A possibility for implementing curiosity and boredom in model-building neural¨ controllers. In Proc. of the international conference on simulation of adaptive behavior: From animals to animats, pp. 222–227, 1991. ", + "bbox": [ + 147, + 569, + 852, + 612 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jurgen Schmidhuber. Powerplay: Training an increasingly general problem solver by continually searching ¨ for the simplest still unsolvable problem. Frontiers in psychology, 4:313, 2013. ", + "bbox": [ + 143, + 622, + 851, + 651 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John Schulman, Sergey Levine, Philipp Moritz, Michael I. Jordan, and Pieter Abbeel. Trust region policy optimization. In International Conference on Machine Learning, 2015. ", + "bbox": [ + 145, + 661, + 849, + 691 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. High-dimensional continuous control using generalized advantage estimation. International Conference of Learning Representations (ICLR), 2016. ", + "bbox": [ + 145, + 700, + 851, + 744 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. Advances in Neural Information Processing Systems, 2017. ", + "bbox": [ + 142, + 753, + 851, + 784 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller. Deterministic policy gradient algorithms. In ICML, 2014. ", + "bbox": [ + 143, + 792, + 849, + 823 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. ", + "bbox": [ + 147, + 119, + 851, + 162 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "David Silver, Thomas Hubert, Julian Schrittwieser, Ioannis Antonoglou, Matthew Lai, Arthur Guez, Marc Lanctot, Laurent Sifre, Dharshan Kumaran, Thore Graepel, et al. Mastering chess and shogi by self-play with a general reinforcement learning algorithm. arXiv preprint arXiv:1712.01815, 2017. ", + "bbox": [ + 147, + 171, + 848, + 214 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Rupesh Kumar Srivastava, Bas R Steunebrink, and Jurgen Schmidhuber. First experiments with powerplay.¨ Neural Networks, 41:130–136, 2013. ", + "bbox": [ + 143, + 223, + 849, + 252 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Sainbayar Sukhbaatar, Zeming Lin, Ilya Kostrikov, Gabriel Synnaeve, Arthur Szlam, and Rob Fergus. Intrinsic motivation and automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017. ", + "bbox": [ + 147, + 261, + 849, + 290 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Richard S Sutton, Andrew G Barto, et al. Reinforcement learning: An introduction. MIT press, 1998. ", + "bbox": [ + 147, + 297, + 813, + 314 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, OpenAI Xi Chen, Yan Duan, John Schulman, Filip DeTurck, and Pieter Abbeel. # exploration: A study of count-based exploration for deep reinforcement learning. In Advances in Neural Information Processing Systems, pp. 2753–2762, 2017. ", + "bbox": [ + 147, + 321, + 849, + 366 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3):58–68, 1995. ", + "bbox": [ + 145, + 373, + 851, + 402 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026–5033. IEEE, 2012. ", + "bbox": [ + 147, + 411, + 852, + 454 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and Nando de Freitas. Sample efficient actor-critic with experience replay. arXiv preprint arXiv:1611.01224, 2016. ", + "bbox": [ + 150, + 463, + 851, + 492 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A ALGORITHM ", + "text_level": 1, + "bbox": [ + 148, + 119, + 290, + 135 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We summarize the algorithm for HER with CER in Algorithm 1. ", + "bbox": [ + 147, + 150, + 570, + 166 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/41c030bb667512b63e645f4439dd94c158536b6e1285dc124280366913476cd0.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm1HER with CER
Initialize a random process N for action exploration,max episode length to L Set CER to ind-CER or int-CER
for episode= 1 to M do
Receive initial state S A
Receive a goal rA for this episode
Initialize episode buffer buffer A
for t=1to L do
select action aA = μe(sA) +Nt w.r.t. the current policy and exploration Execute actions αA and observe reward rA and new state s'A
Store (sA,aA,gA,rA,SA') in buffer A
SA↑SA
end for
Receive initial state SB or Receive initial state SB, where SB is a state sampled from buffer A
Receive a goal rB for this episode Initialize episode buffer buffer B
for t=1 to L do
select action aB = μe(sB)+Nt w.r.t. the current policy and exploration
Execute actions αB and observe reward rB and new state s'B
Store (sB,aB,gB,rB,SB') in bufferB
SB↑SB
end for
ConcatenatebuferA and bufferg and store ({si}=1,{ai}T=1,{g}T=1,{ri}=1,{s'i}T=1) in replay buffer D
// Optimization based on off-policysamples
fork=1 toKdo // Relabelling off-policy samples
", + "bbox": [ + 145, + 181, + 831, + 617 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B ENVIRONMENT DETAILS ", + "text_level": 1, + "bbox": [ + 148, + 647, + 385, + 664 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Robotic control environments The robotic control environments shown in Figure 7 are part of challenging continuous robotics control suite (Plappert et al., 2018) integrated in OpenAI Gym (Brockman et al., 2016) and based on Mujoco simulation enginge (Todorov et al., 2012). The Fetch environments are based on the 7-DoF Fetch robotics arm, which has a two-fingered parallel gripper. The Hand environments are based on the Shadow Dexterous Hand, which is an anthropomorphic robotic hand with 24 degrees of freedom. In all tasks, rewards are sparse and binary: the agent obtains a reward of 0 if the goal has been achieved and $- 1$ otherwise. For more details please refer to Plappert et al. (2018). ", + "bbox": [ + 147, + 679, + 852, + 777 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Ant maze environments We also construct two maze environments with the re-settable property, rendered in Figure 1, in which walls are placed to construct ”U” or ”S” shaped maze. At the beginning of each episode, the agent is always initialized at position $( 0 , 0 )$ , and can move in any direction as long as it is not obstructed by a wall. The $\\mathbf { X } ^ { - }$ and y-axis locations of the target ball are sampled uniformly from $[ - 5 , 2 0 ]$ , $[ - 5 , 2 0 ]$ , respectively. ", + "bbox": [ + 147, + 794, + 849, + 821 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/18ec610471e417495297d3ada254ce66e758df5b2463d05d5b9be2f597a0bd37.jpg", + "image_caption": [ + "Figure 7: Robotics control environments used in our experiments " + ], + "image_footnote": [], + "bbox": [ + 158, + 117, + 836, + 388 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "", + "bbox": [ + 147, + 430, + 852, + 473 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C COMPETITIVE EXPERIENCE REPLAY WITH DIFFERENT ADVERSARIAL AGENTS ", + "text_level": 1, + "bbox": [ + 147, + 494, + 823, + 508 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/d5cc5dff820ac51df2323423b6c4f33228df28e6347716f00a1bea69f7c54c77.jpg", + "image_caption": [ + "Figure 8: Performance on FetchSlide (top) and HandManipulatePenFull (bottom) for different batch-size multipliers when training using HER (left columns) or HER $^ +$ CER (middle, right columns). Middle plots show the performance of agent $A$ and, in the right plots, performance of agent $B$ is shown for reference. " + ], + "image_footnote": [], + "bbox": [ + 223, + 529, + 756, + 733 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "As Andrychowicz et al. (2017) and Andrychowicz et al. (2018a) observe (and we also observe), performance depends on the batch size. We leverage this observation to tune the relative strengths of Agents $A$ and $B$ by separately manipulating the batch sizes used for updating each. ", + "bbox": [ + 148, + 780, + 852, + 823 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For simplicity, we control the batch size by changing the number of MPI workers devoted to a particular update. Each MPI worker computes the gradients for a batch size of 256; averaging the gradients from each worker results in an effective batch size of $N * 2 5 6$ . For our single-agent baselines, we choose $N = 3 0$ workers, and, when using CER, a default of $N = 1 5$ for each $A$ and $B$ In the following, $A x B y$ denotes, for agent $A$ , $N = x$ and, for agent $B$ , $N = y$ . These results suggest that, while a sufficiently large batch size is important for achieving the best performance, the optimal configuration occurs when the batch sizes used for the two agents are balanced. Interestingly, we observe that batch size imbalance adversely effects both agents trained during CER. ", + "bbox": [ + 147, + 119, + 852, + 232 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "D IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 148, + 252, + 410, + 268 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In the code for HER (Andrychowicz et al., 2017), the authors use MPI to increase the batch size. MPI is used here to run rollouts in parallel and average gradients over all MPI workers. We found that MPI is crucial for good performance, since training for longer time with a smaller batch size gives sub-optimal performance. This is consistent with the authors’ findings in their code that having a much larger batch size helps a lot. For each experiment, we provide the per-worker batch sizes in Table 1; note that the effective batch size is multiplied by the number of MPI workers $N$ . ", + "bbox": [ + 148, + 284, + 852, + 367 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In our implementation, we do $N$ rollouts in parallel for each agent and have separate optimizers for each. We found that periodically resetting the parameters of agent $B$ in early stage of training helps agent $A$ more consistently reach a high level of performance. This resetting helps to strike an optimal balance between the influences of HER and CER in training agent $A$ . We also add L2 regularization, following the practice of Andrychowicz et al. (2017). ", + "bbox": [ + 147, + 373, + 852, + 444 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "For the experiments with neural networks, all parameters are randomly initialized from $\\mathcal { N } ( 0 , 0 . 2 )$ . We use networks with three layers of hidden layer size 256 and Adam (Kingma & Ba, 2014) for optimization. Presented results are averaged over 5 random seeds. We summarize the hyperparameters in Table 1. ", + "bbox": [ + 147, + 450, + 852, + 493 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/12721f8289fc6e8305dc6c8ba83c8d9e44f50e66bde71016c6b12f52add3bb27.jpg", + "table_caption": [ + "Table 1: Hyperparameter values used in experiments. " + ], + "table_footnote": [], + "table_body": "
Hyperparametername'U'AntMaze'S'AntMazeFetchControlHandControl
Buffer size1E51E61E61E6
Batch size128128256256
Max steps ofepisode5010050100
Reset epochs2255
Max reset epochs10102030
Total epochs50100100/50200
ActorLearning rate0.00040.00040.0010.001
CriticLearning rate0.00040.00040.0010.001
ActionL2 regularization0.010.011.001.00
Polyak0.950.950.950.95
", + "bbox": [ + 274, + 506, + 718, + 738 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/Sklsm20ctX/Sklsm20ctX_middle.json b/parse/train/Sklsm20ctX/Sklsm20ctX_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..af32afd21b9f4c974c1f46aa6dc57fafe794c28e --- /dev/null +++ b/parse/train/Sklsm20ctX/Sklsm20ctX_middle.json @@ -0,0 +1,35382 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 93, + 353, + 109 + ], + "lines": [ + { + "bbox": [ + 90, + 92, + 354, + 113 + ], + "spans": [ + { + "bbox": [ + 90, + 92, + 354, + 113 + ], + "score": 1.0, + "content": "COMPETITIVE EXPERIENCE REPLAY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 99, + 128, + 446, + 173 + ], + "lines": [ + { + "bbox": [ + 97, + 126, + 351, + 142 + ], + "spans": [ + { + "bbox": [ + 97, + 126, + 351, + 142 + ], + "score": 1.0, + "content": "Hao Liu∗, Alexander Trott, Richard Socher, Caiming Xiong", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 98, + 138, + 181, + 150 + ], + "spans": [ + { + "bbox": [ + 98, + 138, + 181, + 150 + ], + "score": 1.0, + "content": "Salesforce Research", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 98, + 151, + 168, + 162 + ], + "spans": [ + { + "bbox": [ + 98, + 151, + 168, + 162 + ], + "score": 1.0, + "content": "Palo Alto, 94301", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 98, + 160, + 447, + 174 + ], + "spans": [ + { + "bbox": [ + 98, + 160, + 447, + 174 + ], + "score": 1.0, + "content": "lhao499@gmail.com,{atrott, rsocher, cxiong}@salesforce.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 277, + 201, + 333, + 214 + ], + "lines": [ + { + "bbox": [ + 276, + 201, + 335, + 215 + ], + "spans": [ + { + "bbox": [ + 276, + 201, + 335, + 215 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 127, + 226, + 485, + 412 + ], + "lines": [ + { + "bbox": [ + 125, + 226, + 486, + 239 + ], + "spans": [ + { + "bbox": [ + 125, + 226, + 486, + 239 + ], + "score": 1.0, + "content": "Deep learning has achieved remarkable successes in solving challenging reinforcement", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 125, + 236, + 486, + 250 + ], + "spans": [ + { + "bbox": [ + 125, + 236, + 486, + 250 + ], + "score": 1.0, + "content": "learning (RL) problems when dense reward function is provided. However, in sparse", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 249, + 485, + 259 + ], + "spans": [ + { + "bbox": [ + 126, + 249, + 485, + 259 + ], + "score": 1.0, + "content": "reward environment it still often suffers from the need to carefully shape reward function", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 259, + 486, + 272 + ], + "spans": [ + { + "bbox": [ + 125, + 259, + 486, + 272 + ], + "score": 1.0, + "content": "to guide policy optimization. This limits the applicability of RL in the real world since", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 125, + 270, + 486, + 283 + ], + "spans": [ + { + "bbox": [ + 125, + 270, + 486, + 283 + ], + "score": 1.0, + "content": "both reinforcement learning and domain-specific knowledge are required. It is therefore", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 125, + 281, + 486, + 294 + ], + "spans": [ + { + "bbox": [ + 125, + 281, + 486, + 294 + ], + "score": 1.0, + "content": "of great practical importance to develop algorithms which can learn from a binary signal", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 125, + 291, + 486, + 305 + ], + "spans": [ + { + "bbox": [ + 125, + 291, + 486, + 305 + ], + "score": 1.0, + "content": "indicating successful task completion or other unshaped, sparse reward signals. We propose", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 125, + 303, + 486, + 316 + ], + "spans": [ + { + "bbox": [ + 125, + 303, + 486, + 316 + ], + "score": 1.0, + "content": "a novel method called competitive experience replay, which efficiently supplements a sparse", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 126, + 315, + 486, + 326 + ], + "spans": [ + { + "bbox": [ + 126, + 315, + 486, + 326 + ], + "score": 1.0, + "content": "reward by placing learning in the context of an exploration competition between a pair", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 125, + 324, + 485, + 338 + ], + "spans": [ + { + "bbox": [ + 125, + 324, + 485, + 338 + ], + "score": 1.0, + "content": "of agents. Our method complements the recently proposed hindsight experience replay", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 125, + 335, + 485, + 348 + ], + "spans": [ + { + "bbox": [ + 125, + 335, + 485, + 348 + ], + "score": 1.0, + "content": "(HER) by inducing an automatic exploratory curriculum. We evaluate our approach on the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 125, + 347, + 486, + 360 + ], + "spans": [ + { + "bbox": [ + 125, + 347, + 486, + 360 + ], + "score": 1.0, + "content": "tasks of reaching various goal locations in an ant maze and manipulating objects with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 125, + 357, + 486, + 370 + ], + "spans": [ + { + "bbox": [ + 125, + 357, + 486, + 370 + ], + "score": 1.0, + "content": "robotic arm. Each task provides only binary rewards indicating whether or not the goal is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 125, + 368, + 486, + 381 + ], + "spans": [ + { + "bbox": [ + 125, + 368, + 486, + 381 + ], + "score": 1.0, + "content": "achieved. Our method asymmetrically augments these sparse rewards for a pair of agents", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 125, + 380, + 486, + 393 + ], + "spans": [ + { + "bbox": [ + 125, + 380, + 486, + 393 + ], + "score": 1.0, + "content": "each learning the same task, creating a competitive game designed to drive exploration.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 390, + 486, + 403 + ], + "spans": [ + { + "bbox": [ + 125, + 390, + 486, + 403 + ], + "score": 1.0, + "content": "Extensive experiments demonstrate that this method leads to faster converge and improved", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 403, + 200, + 413 + ], + "spans": [ + { + "bbox": [ + 126, + 403, + 200, + 413 + ], + "score": 1.0, + "content": "task performance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 92, + 433, + 190, + 445 + ], + "lines": [ + { + "bbox": [ + 89, + 431, + 192, + 448 + ], + "spans": [ + { + "bbox": [ + 89, + 431, + 192, + 448 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 91, + 457, + 521, + 501 + ], + "lines": [ + { + "bbox": [ + 89, + 457, + 522, + 471 + ], + "spans": [ + { + "bbox": [ + 89, + 457, + 522, + 471 + ], + "score": 1.0, + "content": "Recent progress in deep reinforcement learning has achieved very impressive results in domains ranging from", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 88, + 468, + 522, + 482 + ], + "spans": [ + { + "bbox": [ + 88, + 468, + 522, + 482 + ], + "score": 1.0, + "content": "playing games (Mnih et al., 2015; Silver et al., 2016; 2017; OpenAI, 2018), to high dimensional continuous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "spans": [ + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "score": 1.0, + "content": "control (Schulman et al., 2016; 2017; 2015), and robotics (Levine et al., 2018; Kalashnikov et al., 2018;", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 90, + 491, + 208, + 503 + ], + "spans": [ + { + "bbox": [ + 90, + 491, + 208, + 503 + ], + "score": 1.0, + "content": "Andrychowicz et al., 2018b).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 91, + 507, + 521, + 595 + ], + "lines": [ + { + "bbox": [ + 90, + 507, + 521, + 520 + ], + "spans": [ + { + "bbox": [ + 90, + 507, + 521, + 520 + ], + "score": 1.0, + "content": "Despite these successes, in robotics control and many other areas, deep reinforcement learning still suffers", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 517, + 523, + 532 + ], + "spans": [ + { + "bbox": [ + 89, + 517, + 523, + 532 + ], + "score": 1.0, + "content": "from the need to engineer a proper reward function to guide policy optimization (see e.g. Popov et al. 2017,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 90, + 529, + 522, + 542 + ], + "spans": [ + { + "bbox": [ + 90, + 529, + 105, + 541 + ], + "score": 0.51, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 105, + 529, + 522, + 542 + ], + "score": 1.0, + "content": "et al. 2006). In robotic control as stacking bricks, reward function need to be sharped to very complex", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 541, + 521, + 553 + ], + "spans": [ + { + "bbox": [ + 89, + 541, + 521, + 553 + ], + "score": 1.0, + "content": "which consists of multiple terms(Popov et al., 2017). It is extremely hard and not applicable to engineer such", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 89, + 551, + 522, + 564 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 522, + 564 + ], + "score": 1.0, + "content": "reward function for each task in real world since both reinforcement learning expertise and domain-specific", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 89, + 561, + 522, + 576 + ], + "spans": [ + { + "bbox": [ + 89, + 561, + 522, + 576 + ], + "score": 1.0, + "content": "knowledge are required. Learning to perform well in environments with sparse rewards remains a major", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 572, + 521, + 587 + ], + "spans": [ + { + "bbox": [ + 89, + 572, + 521, + 587 + ], + "score": 1.0, + "content": "challenge. Therefore, it is of great practical importance to develop algorithms which can learn from binary", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 584, + 401, + 597 + ], + "spans": [ + { + "bbox": [ + 89, + 584, + 401, + 597 + ], + "score": 1.0, + "content": "signal indicating successful task completion or other unshaped reward signal.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 91, + 601, + 521, + 634 + ], + "lines": [ + { + "bbox": [ + 89, + 600, + 521, + 614 + ], + "spans": [ + { + "bbox": [ + 89, + 600, + 521, + 614 + ], + "score": 1.0, + "content": "In environments where dense reward function is not available, only a small fraction of the agents’ experiences", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 88, + 610, + 522, + 626 + ], + "spans": [ + { + "bbox": [ + 88, + 610, + 522, + 626 + ], + "score": 1.0, + "content": "will be useful to compute gradient to optimize policy, leading to substantial high sample complexity. Providing", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 622, + 501, + 636 + ], + "spans": [ + { + "bbox": [ + 88, + 622, + 501, + 636 + ], + "score": 1.0, + "content": "agents with useful signals to pursue in sparse reward environments becomes crucial in these scenarios.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 102, + 641, + 376, + 651 + ], + "lines": [ + { + "bbox": [ + 102, + 640, + 376, + 651 + ], + "spans": [ + { + "bbox": [ + 102, + 640, + 376, + 651 + ], + "score": 1.0, + "content": "∗This work was done when the author was an intern at Salesforce Research.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 291, + 680 + ], + "lines": [ + { + "bbox": [ + 286, + 671, + 293, + 682 + ], + "spans": [ + { + "bbox": [ + 286, + 671, + 293, + 682 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 93, + 353, + 109 + ], + "lines": [ + { + "bbox": [ + 90, + 92, + 354, + 113 + ], + "spans": [ + { + "bbox": [ + 90, + 92, + 354, + 113 + ], + "score": 1.0, + "content": "COMPETITIVE EXPERIENCE REPLAY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 99, + 128, + 446, + 173 + ], + "lines": [ + { + "bbox": [ + 97, + 126, + 351, + 142 + ], + "spans": [ + { + "bbox": [ + 97, + 126, + 351, + 142 + ], + "score": 1.0, + "content": "Hao Liu∗, Alexander Trott, Richard Socher, Caiming Xiong", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 98, + 138, + 181, + 150 + ], + "spans": [ + { + "bbox": [ + 98, + 138, + 181, + 150 + ], + "score": 1.0, + "content": "Salesforce Research", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 98, + 151, + 168, + 162 + ], + "spans": [ + { + "bbox": [ + 98, + 151, + 168, + 162 + ], + "score": 1.0, + "content": "Palo Alto, 94301", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 98, + 160, + 447, + 174 + ], + "spans": [ + { + "bbox": [ + 98, + 160, + 447, + 174 + ], + "score": 1.0, + "content": "lhao499@gmail.com,{atrott, rsocher, cxiong}@salesforce.com", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + } + ], + "index": 2.5, + "bbox_fs": [ + 97, + 126, + 447, + 174 + ] + }, + { + "type": "title", + "bbox": [ + 277, + 201, + 333, + 214 + ], + "lines": [ + { + "bbox": [ + 276, + 201, + 335, + 215 + ], + "spans": [ + { + "bbox": [ + 276, + 201, + 335, + 215 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 127, + 226, + 485, + 412 + ], + "lines": [ + { + "bbox": [ + 125, + 226, + 486, + 239 + ], + "spans": [ + { + "bbox": [ + 125, + 226, + 486, + 239 + ], + "score": 1.0, + "content": "Deep learning has achieved remarkable successes in solving challenging reinforcement", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 125, + 236, + 486, + 250 + ], + "spans": [ + { + "bbox": [ + 125, + 236, + 486, + 250 + ], + "score": 1.0, + "content": "learning (RL) problems when dense reward function is provided. However, in sparse", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 249, + 485, + 259 + ], + "spans": [ + { + "bbox": [ + 126, + 249, + 485, + 259 + ], + "score": 1.0, + "content": "reward environment it still often suffers from the need to carefully shape reward function", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 259, + 486, + 272 + ], + "spans": [ + { + "bbox": [ + 125, + 259, + 486, + 272 + ], + "score": 1.0, + "content": "to guide policy optimization. This limits the applicability of RL in the real world since", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 125, + 270, + 486, + 283 + ], + "spans": [ + { + "bbox": [ + 125, + 270, + 486, + 283 + ], + "score": 1.0, + "content": "both reinforcement learning and domain-specific knowledge are required. It is therefore", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 125, + 281, + 486, + 294 + ], + "spans": [ + { + "bbox": [ + 125, + 281, + 486, + 294 + ], + "score": 1.0, + "content": "of great practical importance to develop algorithms which can learn from a binary signal", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 125, + 291, + 486, + 305 + ], + "spans": [ + { + "bbox": [ + 125, + 291, + 486, + 305 + ], + "score": 1.0, + "content": "indicating successful task completion or other unshaped, sparse reward signals. We propose", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 125, + 303, + 486, + 316 + ], + "spans": [ + { + "bbox": [ + 125, + 303, + 486, + 316 + ], + "score": 1.0, + "content": "a novel method called competitive experience replay, which efficiently supplements a sparse", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 126, + 315, + 486, + 326 + ], + "spans": [ + { + "bbox": [ + 126, + 315, + 486, + 326 + ], + "score": 1.0, + "content": "reward by placing learning in the context of an exploration competition between a pair", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 125, + 324, + 485, + 338 + ], + "spans": [ + { + "bbox": [ + 125, + 324, + 485, + 338 + ], + "score": 1.0, + "content": "of agents. Our method complements the recently proposed hindsight experience replay", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 125, + 335, + 485, + 348 + ], + "spans": [ + { + "bbox": [ + 125, + 335, + 485, + 348 + ], + "score": 1.0, + "content": "(HER) by inducing an automatic exploratory curriculum. We evaluate our approach on the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 125, + 347, + 486, + 360 + ], + "spans": [ + { + "bbox": [ + 125, + 347, + 486, + 360 + ], + "score": 1.0, + "content": "tasks of reaching various goal locations in an ant maze and manipulating objects with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 125, + 357, + 486, + 370 + ], + "spans": [ + { + "bbox": [ + 125, + 357, + 486, + 370 + ], + "score": 1.0, + "content": "robotic arm. Each task provides only binary rewards indicating whether or not the goal is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 125, + 368, + 486, + 381 + ], + "spans": [ + { + "bbox": [ + 125, + 368, + 486, + 381 + ], + "score": 1.0, + "content": "achieved. Our method asymmetrically augments these sparse rewards for a pair of agents", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 125, + 380, + 486, + 393 + ], + "spans": [ + { + "bbox": [ + 125, + 380, + 486, + 393 + ], + "score": 1.0, + "content": "each learning the same task, creating a competitive game designed to drive exploration.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 390, + 486, + 403 + ], + "spans": [ + { + "bbox": [ + 125, + 390, + 486, + 403 + ], + "score": 1.0, + "content": "Extensive experiments demonstrate that this method leads to faster converge and improved", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 403, + 200, + 413 + ], + "spans": [ + { + "bbox": [ + 126, + 403, + 200, + 413 + ], + "score": 1.0, + "content": "task performance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 14, + "bbox_fs": [ + 125, + 226, + 486, + 413 + ] + }, + { + "type": "title", + "bbox": [ + 92, + 433, + 190, + 445 + ], + "lines": [ + { + "bbox": [ + 89, + 431, + 192, + 448 + ], + "spans": [ + { + "bbox": [ + 89, + 431, + 192, + 448 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 91, + 457, + 521, + 501 + ], + "lines": [ + { + "bbox": [ + 89, + 457, + 522, + 471 + ], + "spans": [ + { + "bbox": [ + 89, + 457, + 522, + 471 + ], + "score": 1.0, + "content": "Recent progress in deep reinforcement learning has achieved very impressive results in domains ranging from", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 88, + 468, + 522, + 482 + ], + "spans": [ + { + "bbox": [ + 88, + 468, + 522, + 482 + ], + "score": 1.0, + "content": "playing games (Mnih et al., 2015; Silver et al., 2016; 2017; OpenAI, 2018), to high dimensional continuous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "spans": [ + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "score": 1.0, + "content": "control (Schulman et al., 2016; 2017; 2015), and robotics (Levine et al., 2018; Kalashnikov et al., 2018;", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 90, + 491, + 208, + 503 + ], + "spans": [ + { + "bbox": [ + 90, + 491, + 208, + 503 + ], + "score": 1.0, + "content": "Andrychowicz et al., 2018b).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 88, + 457, + 522, + 503 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 507, + 521, + 595 + ], + "lines": [ + { + "bbox": [ + 90, + 507, + 521, + 520 + ], + "spans": [ + { + "bbox": [ + 90, + 507, + 521, + 520 + ], + "score": 1.0, + "content": "Despite these successes, in robotics control and many other areas, deep reinforcement learning still suffers", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 517, + 523, + 532 + ], + "spans": [ + { + "bbox": [ + 89, + 517, + 523, + 532 + ], + "score": 1.0, + "content": "from the need to engineer a proper reward function to guide policy optimization (see e.g. Popov et al. 2017,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 90, + 529, + 522, + 542 + ], + "spans": [ + { + "bbox": [ + 90, + 529, + 105, + 541 + ], + "score": 0.51, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 105, + 529, + 522, + 542 + ], + "score": 1.0, + "content": "et al. 2006). In robotic control as stacking bricks, reward function need to be sharped to very complex", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 541, + 521, + 553 + ], + "spans": [ + { + "bbox": [ + 89, + 541, + 521, + 553 + ], + "score": 1.0, + "content": "which consists of multiple terms(Popov et al., 2017). It is extremely hard and not applicable to engineer such", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 89, + 551, + 522, + 564 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 522, + 564 + ], + "score": 1.0, + "content": "reward function for each task in real world since both reinforcement learning expertise and domain-specific", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 89, + 561, + 522, + 576 + ], + "spans": [ + { + "bbox": [ + 89, + 561, + 522, + 576 + ], + "score": 1.0, + "content": "knowledge are required. Learning to perform well in environments with sparse rewards remains a major", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 572, + 521, + 587 + ], + "spans": [ + { + "bbox": [ + 89, + 572, + 521, + 587 + ], + "score": 1.0, + "content": "challenge. Therefore, it is of great practical importance to develop algorithms which can learn from binary", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 584, + 401, + 597 + ], + "spans": [ + { + "bbox": [ + 89, + 584, + 401, + 597 + ], + "score": 1.0, + "content": "signal indicating successful task completion or other unshaped reward signal.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 89, + 507, + 523, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 601, + 521, + 634 + ], + "lines": [ + { + "bbox": [ + 89, + 600, + 521, + 614 + ], + "spans": [ + { + "bbox": [ + 89, + 600, + 521, + 614 + ], + "score": 1.0, + "content": "In environments where dense reward function is not available, only a small fraction of the agents’ experiences", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 88, + 610, + 522, + 626 + ], + "spans": [ + { + "bbox": [ + 88, + 610, + 522, + 626 + ], + "score": 1.0, + "content": "will be useful to compute gradient to optimize policy, leading to substantial high sample complexity. Providing", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 622, + 501, + 636 + ], + "spans": [ + { + "bbox": [ + 88, + 622, + 501, + 636 + ], + "score": 1.0, + "content": "agents with useful signals to pursue in sparse reward environments becomes crucial in these scenarios.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 88, + 600, + 522, + 636 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 91, + 95, + 521, + 249 + ], + "lines": [ + { + "bbox": [ + 88, + 94, + 522, + 110 + ], + "spans": [ + { + "bbox": [ + 88, + 94, + 522, + 110 + ], + "score": 1.0, + "content": "In the domain of goal-directed RL, the recently proposed hindsight experience replay (HER) (Andrychowicz", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 106, + 522, + 120 + ], + "spans": [ + { + "bbox": [ + 89, + 106, + 522, + 120 + ], + "score": 1.0, + "content": "et al., 2017) addresses the challenge of learning from sparse rewards by re-labelling visited states as goal", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 89, + 118, + 522, + 130 + ], + "spans": [ + { + "bbox": [ + 89, + 118, + 522, + 130 + ], + "score": 1.0, + "content": "states during training. However, this technique continues to suffer from sample inefficiency, ostensibly due to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 90, + 129, + 522, + 141 + ], + "spans": [ + { + "bbox": [ + 90, + 129, + 522, + 141 + ], + "score": 1.0, + "content": "difficulties related to exploration. In this work, we address these limitations by introducing a method called", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 138, + 522, + 153 + ], + "spans": [ + { + "bbox": [ + 89, + 138, + 220, + 153 + ], + "score": 1.0, + "content": "Competitive Experience Replay", + "type": "text" + }, + { + "bbox": [ + 220, + 140, + 246, + 151 + ], + "score": 0.29, + "content": "( C E R )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 138, + 522, + 153 + ], + "score": 1.0, + "content": ". This technique attempts to emphasize exploration by introducing a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 151, + 521, + 163 + ], + "spans": [ + { + "bbox": [ + 90, + 151, + 427, + 163 + ], + "score": 1.0, + "content": "competition between two agents attempting to learn the same task. Intuitively, agent", + "type": "text" + }, + { + "bbox": [ + 427, + 151, + 436, + 160 + ], + "score": 0.67, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 151, + 521, + 163 + ], + "score": 1.0, + "content": "(the agent ultimately", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 162, + 520, + 174 + ], + "spans": [ + { + "bbox": [ + 89, + 162, + 429, + 174 + ], + "score": 1.0, + "content": "used for evaluation) receives a penalty for visiting states that the competitor agent", + "type": "text" + }, + { + "bbox": [ + 430, + 162, + 444, + 172 + ], + "score": 0.66, + "content": "( B )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 162, + 510, + 174 + ], + "score": 1.0, + "content": "also visits; and", + "type": "text" + }, + { + "bbox": [ + 511, + 162, + 520, + 171 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 88, + 172, + 522, + 186 + ], + "spans": [ + { + "bbox": [ + 88, + 172, + 251, + 186 + ], + "score": 1.0, + "content": "is rewarded for visiting states found by", + "type": "text" + }, + { + "bbox": [ + 251, + 173, + 260, + 182 + ], + "score": 0.47, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 172, + 522, + 186 + ], + "score": 1.0, + "content": ". Our approach maintains the reward from the original task such", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 183, + 522, + 196 + ], + "spans": [ + { + "bbox": [ + 89, + 183, + 522, + 196 + ], + "score": 1.0, + "content": "that exploration is biased towards the behaviors best suited to accomplishing the task goals. We show that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 194, + 522, + 208 + ], + "spans": [ + { + "bbox": [ + 89, + 194, + 522, + 208 + ], + "score": 1.0, + "content": "this competition between agents can automatically generate a curriculum of exploration and shape otherwise", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 204, + 523, + 218 + ], + "spans": [ + { + "bbox": [ + 89, + 204, + 523, + 218 + ], + "score": 1.0, + "content": "sparse reward. We jointly train both agents’ policies by adopting methods from multi-agent RL. In addition,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 216, + 522, + 229 + ], + "spans": [ + { + "bbox": [ + 89, + 216, + 522, + 229 + ], + "score": 1.0, + "content": "we propose two versions of CER, independent CER, and interact CER, which differ in the state initialization", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 90, + 227, + 522, + 240 + ], + "spans": [ + { + "bbox": [ + 90, + 227, + 126, + 240 + ], + "score": 1.0, + "content": "of agent", + "type": "text" + }, + { + "bbox": [ + 126, + 228, + 135, + 237 + ], + "score": 0.77, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 227, + 522, + 240 + ], + "score": 1.0, + "content": ": whether it is sampled from the initial state distribution or sampled from off-policy samples of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 88, + 238, + 178, + 252 + ], + "spans": [ + { + "bbox": [ + 88, + 238, + 114, + 252 + ], + "score": 1.0, + "content": "agent", + "type": "text" + }, + { + "bbox": [ + 115, + 239, + 123, + 248 + ], + "score": 0.75, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 238, + 178, + 252 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 90, + 254, + 521, + 354 + ], + "lines": [ + { + "bbox": [ + 89, + 254, + 522, + 267 + ], + "spans": [ + { + "bbox": [ + 89, + 254, + 522, + 267 + ], + "score": 1.0, + "content": "Whereas HER re-labels samples based on an agent’s individual rollout, our method re-labels samples based on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 88, + 265, + 522, + 279 + ], + "spans": [ + { + "bbox": [ + 88, + 265, + 522, + 279 + ], + "score": 1.0, + "content": "intra-agent behavior; as such, the two methods do not interfere with each other algorithmically and are easily", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 276, + 522, + 290 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 522, + 290 + ], + "score": 1.0, + "content": "combined during training. We evaluate our method both with and without HER on a variety of reinforcement", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 288, + 523, + 301 + ], + "spans": [ + { + "bbox": [ + 89, + 288, + 523, + 301 + ], + "score": 1.0, + "content": "learning tasks, including navigating an ant agent to reach a goal position and manipulating objects with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 298, + 522, + 312 + ], + "spans": [ + { + "bbox": [ + 88, + 298, + 522, + 312 + ], + "score": 1.0, + "content": "robotic arm. For each such task the default reward is sparse, corresponding to a binary indicator of goal", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 90, + 310, + 521, + 322 + ], + "spans": [ + { + "bbox": [ + 90, + 310, + 521, + 322 + ], + "score": 1.0, + "content": "completion. Ablation studies show that our method is important for achieving a high success rate and often", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 321, + 521, + 333 + ], + "spans": [ + { + "bbox": [ + 89, + 321, + 521, + 333 + ], + "score": 1.0, + "content": "demonstrates faster convergence. Interestingly, we find that CER and HER are complementary methods and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 331, + 522, + 344 + ], + "spans": [ + { + "bbox": [ + 89, + 331, + 522, + 344 + ], + "score": 1.0, + "content": "employ both to reach peak efficiency and performance. Furthermore, we observe that, when combined with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 342, + 304, + 356 + ], + "spans": [ + { + "bbox": [ + 89, + 342, + 304, + 356 + ], + "score": 1.0, + "content": "HER, CER outperforms curiosity-driven exploration.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 91, + 372, + 184, + 385 + ], + "lines": [ + { + "bbox": [ + 88, + 371, + 185, + 388 + ], + "spans": [ + { + "bbox": [ + 88, + 371, + 185, + 388 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 91, + 399, + 521, + 433 + ], + "lines": [ + { + "bbox": [ + 90, + 399, + 521, + 411 + ], + "spans": [ + { + "bbox": [ + 90, + 399, + 521, + 411 + ], + "score": 1.0, + "content": "Here, we provide an introduction to the relevant concepts for reinforcement learning with sparse reward", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 90, + 410, + 521, + 423 + ], + "spans": [ + { + "bbox": [ + 90, + 410, + 521, + 423 + ], + "score": 1.0, + "content": "(Section 2.1), Deep Deterministic Policy Gradient, the backbone algorithm we build off of, (Section 2.2), and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 420, + 267, + 435 + ], + "spans": [ + { + "bbox": [ + 89, + 420, + 267, + 435 + ], + "score": 1.0, + "content": "Hindsight Experience Replay (Section 2.3).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 91, + 448, + 312, + 460 + ], + "lines": [ + { + "bbox": [ + 90, + 448, + 315, + 461 + ], + "spans": [ + { + "bbox": [ + 90, + 448, + 315, + 461 + ], + "score": 1.0, + "content": "2.1 SPARSE REWARD REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 91, + 470, + 521, + 537 + ], + "lines": [ + { + "bbox": [ + 89, + 469, + 522, + 483 + ], + "spans": [ + { + "bbox": [ + 89, + 469, + 522, + 483 + ], + "score": 1.0, + "content": "Reinforcement learning considers the problem of finding an optimal policy for an agent that interacts with an", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 481, + 522, + 493 + ], + "spans": [ + { + "bbox": [ + 89, + 481, + 522, + 493 + ], + "score": 1.0, + "content": "uncertain environment and collects reward per action. The goal of the agent is to maximize its cumulative", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 492, + 520, + 505 + ], + "spans": [ + { + "bbox": [ + 89, + 492, + 495, + 505 + ], + "score": 1.0, + "content": "reward. Formally, this problem can be viewed as a Markov decision process over the environment states", + "type": "text" + }, + { + "bbox": [ + 495, + 492, + 520, + 503 + ], + "score": 0.89, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 503, + 521, + 516 + ], + "spans": [ + { + "bbox": [ + 89, + 503, + 164, + 516 + ], + "score": 1.0, + "content": "and agent actions", + "type": "text" + }, + { + "bbox": [ + 164, + 504, + 190, + 514 + ], + "score": 0.9, + "content": "a \\in A", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 503, + 521, + 516 + ], + "score": 1.0, + "content": ", with the (unknown) environment dynamics defined by the transition probability", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 91, + 513, + 522, + 528 + ], + "spans": [ + { + "bbox": [ + 91, + 514, + 131, + 526 + ], + "score": 0.93, + "content": "T ( s ^ { \\prime } | \\bar { s } , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 513, + 212, + 528 + ], + "score": 1.0, + "content": "and reward function", + "type": "text" + }, + { + "bbox": [ + 212, + 514, + 246, + 526 + ], + "score": 0.93, + "content": "r ( s _ { t } , a _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 513, + 467, + 528 + ], + "score": 1.0, + "content": ", which yields a reward immediately following the action", + "type": "text" + }, + { + "bbox": [ + 467, + 516, + 477, + 525 + ], + "score": 0.83, + "content": "a _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 513, + 522, + 528 + ], + "score": 1.0, + "content": "performed", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 525, + 135, + 538 + ], + "spans": [ + { + "bbox": [ + 88, + 525, + 121, + 538 + ], + "score": 1.0, + "content": "in state", + "type": "text" + }, + { + "bbox": [ + 122, + 528, + 131, + 536 + ], + "score": 0.85, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 525, + 135, + 538 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 90, + 542, + 522, + 619 + ], + "lines": [ + { + "bbox": [ + 89, + 542, + 522, + 555 + ], + "spans": [ + { + "bbox": [ + 89, + 542, + 522, + 555 + ], + "score": 1.0, + "content": "We consider goal-conditioned reinforcement learning from sparse rewards. This constitutes a modification to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 552, + 522, + 566 + ], + "spans": [ + { + "bbox": [ + 89, + 552, + 295, + 566 + ], + "score": 1.0, + "content": "the reward function such that it depends on a goal", + "type": "text" + }, + { + "bbox": [ + 296, + 554, + 323, + 565 + ], + "score": 0.91, + "content": "g \\in G", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 552, + 366, + 566 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 366, + 553, + 456, + 565 + ], + "score": 0.91, + "content": "r _ { g } : S \\times A \\times G \\to R", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 552, + 522, + 566 + ], + "score": 1.0, + "content": ". Every episode", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 563, + 522, + 578 + ], + "spans": [ + { + "bbox": [ + 89, + 563, + 335, + 578 + ], + "score": 1.0, + "content": "starts with sampling a state-goal pair from some distribution", + "type": "text" + }, + { + "bbox": [ + 336, + 564, + 368, + 576 + ], + "score": 0.93, + "content": "p ( s _ { 0 } , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 563, + 522, + 578 + ], + "score": 1.0, + "content": ". Unlike the state, the goal stays fixed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 574, + 522, + 589 + ], + "spans": [ + { + "bbox": [ + 89, + 574, + 434, + 589 + ], + "score": 1.0, + "content": "for the whole episode. At every time step, an action is chosen according to some policy", + "type": "text" + }, + { + "bbox": [ + 434, + 577, + 441, + 585 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 574, + 522, + 589 + ], + "score": 1.0, + "content": ", which is expressed", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 585, + 523, + 599 + ], + "spans": [ + { + "bbox": [ + 88, + 585, + 241, + 599 + ], + "score": 1.0, + "content": "as a function of the state and the goal,", + "type": "text" + }, + { + "bbox": [ + 241, + 586, + 307, + 596 + ], + "score": 0.91, + "content": "\\pi : S \\times G \\to A", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 585, + 461, + 599 + ], + "score": 1.0, + "content": ". For generality, our only restriction on", + "type": "text" + }, + { + "bbox": [ + 461, + 586, + 470, + 596 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 585, + 523, + 599 + ], + "score": 1.0, + "content": "is that it is a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 88, + 595, + 523, + 610 + ], + "spans": [ + { + "bbox": [ + 88, + 595, + 129, + 610 + ], + "score": 1.0, + "content": "subset of", + "type": "text" + }, + { + "bbox": [ + 129, + 597, + 137, + 607 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 595, + 523, + 610 + ], + "score": 1.0, + "content": ". In other words, the goal describes a target state and the task of the agent is to reach that state.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 88, + 606, + 325, + 621 + ], + "spans": [ + { + "bbox": [ + 88, + 606, + 325, + 621 + ], + "score": 1.0, + "content": "Therefore, we apply the following sparse reward function:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 627, + 389, + 655 + ], + "lines": [ + { + "bbox": [ + 220, + 627, + 389, + 655 + ], + "spans": [ + { + "bbox": [ + 220, + 627, + 389, + 655 + ], + "score": 0.94, + "content": "r _ { t } = r _ { g } ( s _ { t } , a _ { t } , g ) = { \\left\\{ \\begin{array} { l l } { 0 , { \\mathrm { i f } } \\ | s _ { t } - g | < \\delta } \\\\ { - 1 , { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "bc3b0c05124a7d82463e3cb60fe4ad4972449d1f1b688d6d0ee1b750ecbd9381.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 220, + 627, + 389, + 655 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 293, + 680 + ], + "lines": [ + { + "bbox": [ + 285, + 670, + 294, + 682 + ], + "spans": [ + { + "bbox": [ + 285, + 670, + 294, + 682 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 91, + 95, + 521, + 249 + ], + "lines": [ + { + "bbox": [ + 88, + 94, + 522, + 110 + ], + "spans": [ + { + "bbox": [ + 88, + 94, + 522, + 110 + ], + "score": 1.0, + "content": "In the domain of goal-directed RL, the recently proposed hindsight experience replay (HER) (Andrychowicz", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 106, + 522, + 120 + ], + "spans": [ + { + "bbox": [ + 89, + 106, + 522, + 120 + ], + "score": 1.0, + "content": "et al., 2017) addresses the challenge of learning from sparse rewards by re-labelling visited states as goal", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 89, + 118, + 522, + 130 + ], + "spans": [ + { + "bbox": [ + 89, + 118, + 522, + 130 + ], + "score": 1.0, + "content": "states during training. However, this technique continues to suffer from sample inefficiency, ostensibly due to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 90, + 129, + 522, + 141 + ], + "spans": [ + { + "bbox": [ + 90, + 129, + 522, + 141 + ], + "score": 1.0, + "content": "difficulties related to exploration. In this work, we address these limitations by introducing a method called", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 138, + 522, + 153 + ], + "spans": [ + { + "bbox": [ + 89, + 138, + 220, + 153 + ], + "score": 1.0, + "content": "Competitive Experience Replay", + "type": "text" + }, + { + "bbox": [ + 220, + 140, + 246, + 151 + ], + "score": 0.29, + "content": "( C E R )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 138, + 522, + 153 + ], + "score": 1.0, + "content": ". This technique attempts to emphasize exploration by introducing a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 151, + 521, + 163 + ], + "spans": [ + { + "bbox": [ + 90, + 151, + 427, + 163 + ], + "score": 1.0, + "content": "competition between two agents attempting to learn the same task. Intuitively, agent", + "type": "text" + }, + { + "bbox": [ + 427, + 151, + 436, + 160 + ], + "score": 0.67, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 151, + 521, + 163 + ], + "score": 1.0, + "content": "(the agent ultimately", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 162, + 520, + 174 + ], + "spans": [ + { + "bbox": [ + 89, + 162, + 429, + 174 + ], + "score": 1.0, + "content": "used for evaluation) receives a penalty for visiting states that the competitor agent", + "type": "text" + }, + { + "bbox": [ + 430, + 162, + 444, + 172 + ], + "score": 0.66, + "content": "( B )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 162, + 510, + 174 + ], + "score": 1.0, + "content": "also visits; and", + "type": "text" + }, + { + "bbox": [ + 511, + 162, + 520, + 171 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 88, + 172, + 522, + 186 + ], + "spans": [ + { + "bbox": [ + 88, + 172, + 251, + 186 + ], + "score": 1.0, + "content": "is rewarded for visiting states found by", + "type": "text" + }, + { + "bbox": [ + 251, + 173, + 260, + 182 + ], + "score": 0.47, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 172, + 522, + 186 + ], + "score": 1.0, + "content": ". Our approach maintains the reward from the original task such", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 183, + 522, + 196 + ], + "spans": [ + { + "bbox": [ + 89, + 183, + 522, + 196 + ], + "score": 1.0, + "content": "that exploration is biased towards the behaviors best suited to accomplishing the task goals. We show that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 194, + 522, + 208 + ], + "spans": [ + { + "bbox": [ + 89, + 194, + 522, + 208 + ], + "score": 1.0, + "content": "this competition between agents can automatically generate a curriculum of exploration and shape otherwise", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 204, + 523, + 218 + ], + "spans": [ + { + "bbox": [ + 89, + 204, + 523, + 218 + ], + "score": 1.0, + "content": "sparse reward. We jointly train both agents’ policies by adopting methods from multi-agent RL. In addition,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 216, + 522, + 229 + ], + "spans": [ + { + "bbox": [ + 89, + 216, + 522, + 229 + ], + "score": 1.0, + "content": "we propose two versions of CER, independent CER, and interact CER, which differ in the state initialization", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 90, + 227, + 522, + 240 + ], + "spans": [ + { + "bbox": [ + 90, + 227, + 126, + 240 + ], + "score": 1.0, + "content": "of agent", + "type": "text" + }, + { + "bbox": [ + 126, + 228, + 135, + 237 + ], + "score": 0.77, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 227, + 522, + 240 + ], + "score": 1.0, + "content": ": whether it is sampled from the initial state distribution or sampled from off-policy samples of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 88, + 238, + 178, + 252 + ], + "spans": [ + { + "bbox": [ + 88, + 238, + 114, + 252 + ], + "score": 1.0, + "content": "agent", + "type": "text" + }, + { + "bbox": [ + 115, + 239, + 123, + 248 + ], + "score": 0.75, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 238, + 178, + 252 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 6.5, + "bbox_fs": [ + 88, + 94, + 523, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 254, + 521, + 354 + ], + "lines": [ + { + "bbox": [ + 89, + 254, + 522, + 267 + ], + "spans": [ + { + "bbox": [ + 89, + 254, + 522, + 267 + ], + "score": 1.0, + "content": "Whereas HER re-labels samples based on an agent’s individual rollout, our method re-labels samples based on", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 88, + 265, + 522, + 279 + ], + "spans": [ + { + "bbox": [ + 88, + 265, + 522, + 279 + ], + "score": 1.0, + "content": "intra-agent behavior; as such, the two methods do not interfere with each other algorithmically and are easily", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 276, + 522, + 290 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 522, + 290 + ], + "score": 1.0, + "content": "combined during training. We evaluate our method both with and without HER on a variety of reinforcement", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 288, + 523, + 301 + ], + "spans": [ + { + "bbox": [ + 89, + 288, + 523, + 301 + ], + "score": 1.0, + "content": "learning tasks, including navigating an ant agent to reach a goal position and manipulating objects with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 298, + 522, + 312 + ], + "spans": [ + { + "bbox": [ + 88, + 298, + 522, + 312 + ], + "score": 1.0, + "content": "robotic arm. For each such task the default reward is sparse, corresponding to a binary indicator of goal", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 90, + 310, + 521, + 322 + ], + "spans": [ + { + "bbox": [ + 90, + 310, + 521, + 322 + ], + "score": 1.0, + "content": "completion. Ablation studies show that our method is important for achieving a high success rate and often", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 321, + 521, + 333 + ], + "spans": [ + { + "bbox": [ + 89, + 321, + 521, + 333 + ], + "score": 1.0, + "content": "demonstrates faster convergence. Interestingly, we find that CER and HER are complementary methods and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 331, + 522, + 344 + ], + "spans": [ + { + "bbox": [ + 89, + 331, + 522, + 344 + ], + "score": 1.0, + "content": "employ both to reach peak efficiency and performance. Furthermore, we observe that, when combined with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 342, + 304, + 356 + ], + "spans": [ + { + "bbox": [ + 89, + 342, + 304, + 356 + ], + "score": 1.0, + "content": "HER, CER outperforms curiosity-driven exploration.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 88, + 254, + 523, + 356 + ] + }, + { + "type": "title", + "bbox": [ + 91, + 372, + 184, + 385 + ], + "lines": [ + { + "bbox": [ + 88, + 371, + 185, + 388 + ], + "spans": [ + { + "bbox": [ + 88, + 371, + 185, + 388 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 91, + 399, + 521, + 433 + ], + "lines": [ + { + "bbox": [ + 90, + 399, + 521, + 411 + ], + "spans": [ + { + "bbox": [ + 90, + 399, + 521, + 411 + ], + "score": 1.0, + "content": "Here, we provide an introduction to the relevant concepts for reinforcement learning with sparse reward", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 90, + 410, + 521, + 423 + ], + "spans": [ + { + "bbox": [ + 90, + 410, + 521, + 423 + ], + "score": 1.0, + "content": "(Section 2.1), Deep Deterministic Policy Gradient, the backbone algorithm we build off of, (Section 2.2), and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 420, + 267, + 435 + ], + "spans": [ + { + "bbox": [ + 89, + 420, + 267, + 435 + ], + "score": 1.0, + "content": "Hindsight Experience Replay (Section 2.3).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 89, + 399, + 521, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 91, + 448, + 312, + 460 + ], + "lines": [ + { + "bbox": [ + 90, + 448, + 315, + 461 + ], + "spans": [ + { + "bbox": [ + 90, + 448, + 315, + 461 + ], + "score": 1.0, + "content": "2.1 SPARSE REWARD REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 91, + 470, + 521, + 537 + ], + "lines": [ + { + "bbox": [ + 89, + 469, + 522, + 483 + ], + "spans": [ + { + "bbox": [ + 89, + 469, + 522, + 483 + ], + "score": 1.0, + "content": "Reinforcement learning considers the problem of finding an optimal policy for an agent that interacts with an", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 481, + 522, + 493 + ], + "spans": [ + { + "bbox": [ + 89, + 481, + 522, + 493 + ], + "score": 1.0, + "content": "uncertain environment and collects reward per action. The goal of the agent is to maximize its cumulative", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 492, + 520, + 505 + ], + "spans": [ + { + "bbox": [ + 89, + 492, + 495, + 505 + ], + "score": 1.0, + "content": "reward. Formally, this problem can be viewed as a Markov decision process over the environment states", + "type": "text" + }, + { + "bbox": [ + 495, + 492, + 520, + 503 + ], + "score": 0.89, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 503, + 521, + 516 + ], + "spans": [ + { + "bbox": [ + 89, + 503, + 164, + 516 + ], + "score": 1.0, + "content": "and agent actions", + "type": "text" + }, + { + "bbox": [ + 164, + 504, + 190, + 514 + ], + "score": 0.9, + "content": "a \\in A", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 503, + 521, + 516 + ], + "score": 1.0, + "content": ", with the (unknown) environment dynamics defined by the transition probability", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 91, + 513, + 522, + 528 + ], + "spans": [ + { + "bbox": [ + 91, + 514, + 131, + 526 + ], + "score": 0.93, + "content": "T ( s ^ { \\prime } | \\bar { s } , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 513, + 212, + 528 + ], + "score": 1.0, + "content": "and reward function", + "type": "text" + }, + { + "bbox": [ + 212, + 514, + 246, + 526 + ], + "score": 0.93, + "content": "r ( s _ { t } , a _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 513, + 467, + 528 + ], + "score": 1.0, + "content": ", which yields a reward immediately following the action", + "type": "text" + }, + { + "bbox": [ + 467, + 516, + 477, + 525 + ], + "score": 0.83, + "content": "a _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 513, + 522, + 528 + ], + "score": 1.0, + "content": "performed", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 525, + 135, + 538 + ], + "spans": [ + { + "bbox": [ + 88, + 525, + 121, + 538 + ], + "score": 1.0, + "content": "in state", + "type": "text" + }, + { + "bbox": [ + 122, + 528, + 131, + 536 + ], + "score": 0.85, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 525, + 135, + 538 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 88, + 469, + 522, + 538 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 542, + 522, + 619 + ], + "lines": [ + { + "bbox": [ + 89, + 542, + 522, + 555 + ], + "spans": [ + { + "bbox": [ + 89, + 542, + 522, + 555 + ], + "score": 1.0, + "content": "We consider goal-conditioned reinforcement learning from sparse rewards. This constitutes a modification to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 552, + 522, + 566 + ], + "spans": [ + { + "bbox": [ + 89, + 552, + 295, + 566 + ], + "score": 1.0, + "content": "the reward function such that it depends on a goal", + "type": "text" + }, + { + "bbox": [ + 296, + 554, + 323, + 565 + ], + "score": 0.91, + "content": "g \\in G", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 552, + 366, + 566 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 366, + 553, + 456, + 565 + ], + "score": 0.91, + "content": "r _ { g } : S \\times A \\times G \\to R", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 552, + 522, + 566 + ], + "score": 1.0, + "content": ". Every episode", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 563, + 522, + 578 + ], + "spans": [ + { + "bbox": [ + 89, + 563, + 335, + 578 + ], + "score": 1.0, + "content": "starts with sampling a state-goal pair from some distribution", + "type": "text" + }, + { + "bbox": [ + 336, + 564, + 368, + 576 + ], + "score": 0.93, + "content": "p ( s _ { 0 } , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 563, + 522, + 578 + ], + "score": 1.0, + "content": ". Unlike the state, the goal stays fixed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 574, + 522, + 589 + ], + "spans": [ + { + "bbox": [ + 89, + 574, + 434, + 589 + ], + "score": 1.0, + "content": "for the whole episode. At every time step, an action is chosen according to some policy", + "type": "text" + }, + { + "bbox": [ + 434, + 577, + 441, + 585 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 574, + 522, + 589 + ], + "score": 1.0, + "content": ", which is expressed", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 585, + 523, + 599 + ], + "spans": [ + { + "bbox": [ + 88, + 585, + 241, + 599 + ], + "score": 1.0, + "content": "as a function of the state and the goal,", + "type": "text" + }, + { + "bbox": [ + 241, + 586, + 307, + 596 + ], + "score": 0.91, + "content": "\\pi : S \\times G \\to A", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 585, + 461, + 599 + ], + "score": 1.0, + "content": ". For generality, our only restriction on", + "type": "text" + }, + { + "bbox": [ + 461, + 586, + 470, + 596 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 585, + 523, + 599 + ], + "score": 1.0, + "content": "is that it is a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 88, + 595, + 523, + 610 + ], + "spans": [ + { + "bbox": [ + 88, + 595, + 129, + 610 + ], + "score": 1.0, + "content": "subset of", + "type": "text" + }, + { + "bbox": [ + 129, + 597, + 137, + 607 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 595, + 523, + 610 + ], + "score": 1.0, + "content": ". In other words, the goal describes a target state and the task of the agent is to reach that state.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 88, + 606, + 325, + 621 + ], + "spans": [ + { + "bbox": [ + 88, + 606, + 325, + 621 + ], + "score": 1.0, + "content": "Therefore, we apply the following sparse reward function:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37, + "bbox_fs": [ + 88, + 542, + 523, + 621 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 627, + 389, + 655 + ], + "lines": [ + { + "bbox": [ + 220, + 627, + 389, + 655 + ], + "spans": [ + { + "bbox": [ + 220, + 627, + 389, + 655 + ], + "score": 0.94, + "content": "r _ { t } = r _ { g } ( s _ { t } , a _ { t } , g ) = { \\left\\{ \\begin{array} { l l } { 0 , { \\mathrm { i f } } \\ | s _ { t } - g | < \\delta } \\\\ { - 1 , { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "bc3b0c05124a7d82463e3cb60fe4ad4972449d1f1b688d6d0ee1b750ecbd9381.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 220, + 627, + 389, + 655 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 89, + 95, + 522, + 118 + ], + "lines": [ + { + "bbox": [ + 89, + 95, + 522, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 95, + 116, + 108 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 116, + 98, + 123, + 108 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 95, + 161, + 108 + ], + "score": 1.0, + "content": "is a goal,", + "type": "text" + }, + { + "bbox": [ + 162, + 96, + 193, + 108 + ], + "score": 0.92, + "content": "| s _ { t } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 95, + 298, + 108 + ], + "score": 1.0, + "content": "is a distance measure, and", + "type": "text" + }, + { + "bbox": [ + 299, + 96, + 304, + 106 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 95, + 522, + 108 + ], + "score": 1.0, + "content": "is a predefined threshold that controls when the goal is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 106, + 183, + 119 + ], + "spans": [ + { + "bbox": [ + 89, + 106, + 183, + 119 + ], + "score": 1.0, + "content": "considered completed.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 90, + 123, + 522, + 157 + ], + "lines": [ + { + "bbox": [ + 88, + 121, + 523, + 138 + ], + "spans": [ + { + "bbox": [ + 88, + 121, + 523, + 138 + ], + "score": 1.0, + "content": "Following policy gradient methods, we model the policy as a conditional probability distribution over states,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 91, + 135, + 522, + 148 + ], + "spans": [ + { + "bbox": [ + 91, + 135, + 137, + 147 + ], + "score": 0.92, + "content": "\\pi _ { \\boldsymbol { \\theta } } ( a | [ s , g ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 135, + 167, + 148 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 168, + 135, + 188, + 146 + ], + "score": 0.9, + "content": "[ s , g ]", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 135, + 310, + 148 + ], + "score": 1.0, + "content": "denotes concatenation of state", + "type": "text" + }, + { + "bbox": [ + 310, + 137, + 316, + 145 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 135, + 353, + 148 + ], + "score": 1.0, + "content": "and goal", + "type": "text" + }, + { + "bbox": [ + 353, + 137, + 360, + 146 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 135, + 380, + 148 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 380, + 136, + 387, + 145 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 135, + 522, + 148 + ], + "score": 1.0, + "content": "are the learnable parameters. Our", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 145, + 425, + 159 + ], + "spans": [ + { + "bbox": [ + 89, + 145, + 185, + 159 + ], + "score": 1.0, + "content": "objective is to optimize", + "type": "text" + }, + { + "bbox": [ + 186, + 146, + 192, + 155 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 145, + 425, + 159 + ], + "score": 1.0, + "content": "with respect to the expected cumulative reward, given by:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 161, + 391, + 176 + ], + "lines": [ + { + "bbox": [ + 218, + 161, + 391, + 176 + ], + "spans": [ + { + "bbox": [ + 218, + 161, + 391, + 176 + ], + "score": 0.9, + "content": "J ( \\theta ) = \\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } \\left[ r _ { g } ( s , a , g ) \\right] ,", + "type": "interline_equation", + "image_path": "af22a8a4a6d72a51da4964219477015bfefdf2041ad4cc321fcd5ca9d94c28e5.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 218, + 161, + 391, + 176 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 186, + 522, + 222 + ], + "lines": [ + { + "bbox": [ + 87, + 184, + 523, + 203 + ], + "spans": [ + { + "bbox": [ + 87, + 184, + 116, + 203 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 117, + 186, + 243, + 200 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } \\mathrm { P r } ( s _ { t } = s ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 184, + 523, + 203 + ], + "score": 1.0, + "content": "is the normalized discounted state visitation distribution with discount", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 88, + 197, + 523, + 214 + ], + "spans": [ + { + "bbox": [ + 88, + 197, + 116, + 214 + ], + "score": 1.0, + "content": "factor", + "type": "text" + }, + { + "bbox": [ + 117, + 199, + 156, + 210 + ], + "score": 0.91, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 197, + 306, + 214 + ], + "score": 1.0, + "content": ". To simplify the notation, we denote", + "type": "text" + }, + { + "bbox": [ + 306, + 198, + 401, + 211 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 197, + 445, + 214 + ], + "score": 1.0, + "content": "by simply", + "type": "text" + }, + { + "bbox": [ + 446, + 198, + 467, + 210 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { \\pi } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 197, + 523, + 214 + ], + "score": 1.0, + "content": "in the rest of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 209, + 523, + 224 + ], + "spans": [ + { + "bbox": [ + 89, + 209, + 430, + 224 + ], + "score": 1.0, + "content": "paper. According to the policy gradient theorem (Sutton et al., 1998), the gradient of", + "type": "text" + }, + { + "bbox": [ + 430, + 210, + 450, + 222 + ], + "score": 0.92, + "content": "J ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 209, + 523, + 224 + ], + "score": 1.0, + "content": "can be written as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 226, + 396, + 240 + ], + "lines": [ + { + "bbox": [ + 214, + 226, + 396, + 240 + ], + "spans": [ + { + "bbox": [ + 214, + 226, + 396, + 240 + ], + "score": 0.89, + "content": "\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } _ { \\pi } \\left[ \\nabla _ { \\theta } \\log \\pi ( a | s , g ) Q ^ { \\pi } ( s , a , g ) \\right] ,", + "type": "interline_equation", + "image_path": "d2eaaf445d9676d09b0abe1f32ca8f84691878086c2f7fde001b9cc9b9f1b7d8.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 214, + 226, + 396, + 240 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 245, + 525, + 269 + ], + "lines": [ + { + "bbox": [ + 87, + 241, + 524, + 263 + ], + "spans": [ + { + "bbox": [ + 87, + 241, + 118, + 263 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 118, + 245, + 357, + 259 + ], + "score": 0.86, + "content": "\\begin{array} { r } { Q ^ { \\pi } ( s , a , g ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } r _ { g } ( s _ { t } , a _ { t } , g ) | s _ { 1 } = s , a _ { 1 } = a \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 241, + 524, + 263 + ], + "score": 1.0, + "content": ", called the critic, denotes the expected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 257, + 363, + 270 + ], + "spans": [ + { + "bbox": [ + 89, + 257, + 169, + 270 + ], + "score": 1.0, + "content": "return under policy", + "type": "text" + }, + { + "bbox": [ + 169, + 260, + 176, + 267 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 257, + 264, + 270 + ], + "score": 1.0, + "content": "after taking an action", + "type": "text" + }, + { + "bbox": [ + 264, + 260, + 271, + 267 + ], + "score": 0.77, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 257, + 303, + 270 + ], + "score": 1.0, + "content": "in state", + "type": "text" + }, + { + "bbox": [ + 303, + 260, + 309, + 267 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 257, + 352, + 270 + ], + "score": 1.0, + "content": ", with goal", + "type": "text" + }, + { + "bbox": [ + 353, + 260, + 359, + 269 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 257, + 363, + 270 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 91, + 281, + 199, + 293 + ], + "lines": [ + { + "bbox": [ + 89, + 281, + 201, + 294 + ], + "spans": [ + { + "bbox": [ + 89, + 281, + 201, + 294 + ], + "score": 1.0, + "content": "2.2 DDPG ALGORITHM", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 90, + 302, + 522, + 435 + ], + "lines": [ + { + "bbox": [ + 88, + 302, + 522, + 315 + ], + "spans": [ + { + "bbox": [ + 88, + 302, + 522, + 315 + ], + "score": 1.0, + "content": "Here, we introduce Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), a model-free RL", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 90, + 314, + 522, + 326 + ], + "spans": [ + { + "bbox": [ + 90, + 314, + 522, + 326 + ], + "score": 1.0, + "content": "algorithm for continuous action spaces that serves as our backbone algorithm. Our proposed modifications", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 324, + 522, + 337 + ], + "spans": [ + { + "bbox": [ + 89, + 324, + 522, + 337 + ], + "score": 1.0, + "content": "need not be restricted to DDPG; however, we leave experimentation with other continuous control algorithms", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 88, + 335, + 523, + 350 + ], + "spans": [ + { + "bbox": [ + 88, + 335, + 363, + 350 + ], + "score": 1.0, + "content": "to future work. In DDPG, we maintain a deterministic target policy", + "type": "text" + }, + { + "bbox": [ + 364, + 335, + 393, + 347 + ], + "score": 0.93, + "content": "\\mu ( s , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 335, + 441, + 350 + ], + "score": 1.0, + "content": "and a critic", + "type": "text" + }, + { + "bbox": [ + 442, + 335, + 482, + 348 + ], + "score": 0.93, + "content": "Q ( s , a , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 335, + 523, + 350 + ], + "score": 1.0, + "content": ", both im-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 88, + 346, + 522, + 359 + ], + "spans": [ + { + "bbox": [ + 88, + 346, + 522, + 359 + ], + "score": 1.0, + "content": "plemented as deep neural networks (note: we modify the standard notation to accommodate goal-conditioned", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 357, + 522, + 371 + ], + "spans": [ + { + "bbox": [ + 89, + 357, + 522, + 371 + ], + "score": 1.0, + "content": "tasks). To train these networks, episodes are generated by sampling actions from the policy plus some noise,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 91, + 368, + 523, + 383 + ], + "spans": [ + { + "bbox": [ + 91, + 368, + 181, + 380 + ], + "score": 0.92, + "content": "a \\sim \\mu ( s , g ) + N ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 368, + 380, + 383 + ], + "score": 1.0, + "content": ". The transition tuple associated with each action", + "type": "text" + }, + { + "bbox": [ + 381, + 369, + 458, + 380 + ], + "score": 0.9, + "content": "\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 368, + 523, + 383 + ], + "score": 1.0, + "content": "is stored in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 88, + 379, + 522, + 392 + ], + "spans": [ + { + "bbox": [ + 88, + 379, + 522, + 392 + ], + "score": 1.0, + "content": "so-called replay buffer. During training, transition tuples are sampled from the buffer to perform mini-batch", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 390, + 522, + 403 + ], + "spans": [ + { + "bbox": [ + 89, + 390, + 200, + 403 + ], + "score": 1.0, + "content": "gradient descent on the loss", + "type": "text" + }, + { + "bbox": [ + 200, + 391, + 208, + 400 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 390, + 522, + 403 + ], + "score": 1.0, + "content": "which encourages the approximated Q-function to satisfy the Bellman equation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 91, + 400, + 522, + 415 + ], + "spans": [ + { + "bbox": [ + 91, + 401, + 198, + 413 + ], + "score": 0.91, + "content": "\\mathbf { \\bar { \\boldsymbol { L } } } = \\mathbb { E } ( Q ( s _ { t } , a _ { t } , g _ { t } ) - y _ { t } ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 400, + 227, + 415 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 227, + 401, + 369, + 413 + ], + "score": 0.91, + "content": "y _ { t } = r _ { t } + \\bar { \\gamma } Q ( s _ { t + 1 } , \\bar { \\mu } ( s _ { t + 1 } , g _ { t } ) , g _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 400, + 522, + 415 + ], + "score": 1.0, + "content": ". Similarly, the actor can be updated by", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 88, + 411, + 522, + 426 + ], + "spans": [ + { + "bbox": [ + 88, + 411, + 303, + 426 + ], + "score": 1.0, + "content": "training with mini-batch gradient descent on the loss", + "type": "text" + }, + { + "bbox": [ + 303, + 412, + 416, + 424 + ], + "score": 0.9, + "content": "J ( \\theta ) = - \\mathbb { E } _ { s } Q ( s , \\mu ( s , g ) , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 411, + 522, + 426 + ], + "score": 1.0, + "content": "through the deterministic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 423, + 276, + 437 + ], + "spans": [ + { + "bbox": [ + 89, + 423, + 276, + 437 + ], + "score": 1.0, + "content": "policy gradient algorithm (Silver et al., 2014),", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 439, + 402, + 454 + ], + "lines": [ + { + "bbox": [ + 209, + 439, + 402, + 454 + ], + "spans": [ + { + "bbox": [ + 209, + 439, + 402, + 454 + ], + "score": 0.88, + "content": "\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } [ \\nabla _ { \\theta } \\mu ( s , g ) \\nabla _ { a } Q ( s , a , g ) | _ { a = \\mu ( s , g ) } ] .", + "type": "interline_equation", + "image_path": "61cbf72e039883c96a15b5be262e8304b5f77fd6ec0e534652890592ab47011c.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 209, + 439, + 402, + 454 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 463, + 522, + 497 + ], + "lines": [ + { + "bbox": [ + 89, + 463, + 522, + 477 + ], + "spans": [ + { + "bbox": [ + 89, + 463, + 257, + 477 + ], + "score": 1.0, + "content": "To make training more stable, the targets", + "type": "text" + }, + { + "bbox": [ + 257, + 466, + 266, + 475 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 463, + 522, + 477 + ], + "score": 1.0, + "content": "are typically computed using a separate target network, whose", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 90, + 474, + 522, + 487 + ], + "spans": [ + { + "bbox": [ + 90, + 474, + 522, + 487 + ], + "score": 1.0, + "content": "weights are periodically updated to the current weights of the main network (Lillicrap et al., 2015; Mnih et al.,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 90, + 485, + 143, + 497 + ], + "spans": [ + { + "bbox": [ + 90, + 485, + 143, + 497 + ], + "score": 1.0, + "content": "2013; 2015).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 92, + 510, + 255, + 522 + ], + "lines": [ + { + "bbox": [ + 90, + 510, + 257, + 522 + ], + "spans": [ + { + "bbox": [ + 90, + 510, + 257, + 522 + ], + "score": 1.0, + "content": "2.3 HINDSIGHT EXPERIENCE REPLAY", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 90, + 530, + 521, + 653 + ], + "lines": [ + { + "bbox": [ + 89, + 530, + 522, + 544 + ], + "spans": [ + { + "bbox": [ + 89, + 530, + 522, + 544 + ], + "score": 1.0, + "content": "Despite numerous advances in the application of deep learning to RL challenges, learning in the presence", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 542, + 521, + 554 + ], + "spans": [ + { + "bbox": [ + 89, + 542, + 521, + 554 + ], + "score": 1.0, + "content": "of sparse rewards remains a major challenge. Intuitively, these algorithms depend on sufficient variability", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 88, + 551, + 522, + 566 + ], + "spans": [ + { + "bbox": [ + 88, + 551, + 522, + 566 + ], + "score": 1.0, + "content": "within the encountered rewards and, in many cases, random exploration is unlikely to uncover this variability", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 562, + 522, + 577 + ], + "spans": [ + { + "bbox": [ + 88, + 562, + 522, + 577 + ], + "score": 1.0, + "content": "if goals are difficult to reach. Recently, Andrychowicz et al. (2017) proposed Hindsight Experience Replay", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 574, + 522, + 587 + ], + "spans": [ + { + "bbox": [ + 89, + 574, + 522, + 587 + ], + "score": 1.0, + "content": "(HER) as a technique to address this challenge. The key insight of HER is that failed rollouts (where", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 586, + 522, + 598 + ], + "spans": [ + { + "bbox": [ + 89, + 586, + 522, + 598 + ], + "score": 1.0, + "content": "no task reward was obtained) can be treated as successful by assuming that a visited state was the actual", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 596, + 522, + 609 + ], + "spans": [ + { + "bbox": [ + 89, + 596, + 522, + 609 + ], + "score": 1.0, + "content": "goal. Basically, HER amounts to a relabelling strategy. For every episode the agent experiences, it gets", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 608, + 522, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 608, + 522, + 620 + ], + "score": 1.0, + "content": "stored in the replay buffer twice: once with the original goal pursued in the episode and once with the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 617, + 523, + 631 + ], + "spans": [ + { + "bbox": [ + 88, + 617, + 523, + 631 + ], + "score": 1.0, + "content": "goal replaced with a future state achieved in the episode, as if the agent were instructed to reach this state", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "spans": [ + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "score": 1.0, + "content": "from the beginning. Formally, HER randomly samples a mini-batch of episodes in buffer, for each episode", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 89, + 637, + 522, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 639, + 276, + 653 + ], + "score": 0.73, + "content": "( \\{ s ^ { i } \\} _ { i = 1 } ^ { T } , \\{ \\stackrel { \\smile } { g ^ { i } } \\} _ { i = 1 } ^ { T } , \\{ a ^ { i } \\} _ { i = 1 } ^ { T } , \\{ r ^ { i } \\} _ { i = 1 } ^ { T } , \\{ s ^ { \\prime i } \\} _ { i = 1 } ^ { T } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 637, + 338, + 654 + ], + "score": 1.0, + "content": ", for each state", + "type": "text" + }, + { + "bbox": [ + 338, + 642, + 348, + 651 + ], + "score": 0.86, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 637, + 380, + 654 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 380, + 640, + 445, + 651 + ], + "score": 0.92, + "content": "1 \\leq t \\leq T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 637, + 522, + 654 + ], + "score": 1.0, + "content": "in an episode, we", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 39, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 293, + 680 + ], + "lines": [ + { + "bbox": [ + 285, + 670, + 293, + 681 + ], + "spans": [ + { + "bbox": [ + 285, + 670, + 293, + 681 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 89, + 95, + 522, + 118 + ], + "lines": [ + { + "bbox": [ + 89, + 95, + 522, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 95, + 116, + 108 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 116, + 98, + 123, + 108 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 95, + 161, + 108 + ], + "score": 1.0, + "content": "is a goal,", + "type": "text" + }, + { + "bbox": [ + 162, + 96, + 193, + 108 + ], + "score": 0.92, + "content": "| s _ { t } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 95, + 298, + 108 + ], + "score": 1.0, + "content": "is a distance measure, and", + "type": "text" + }, + { + "bbox": [ + 299, + 96, + 304, + 106 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 95, + 522, + 108 + ], + "score": 1.0, + "content": "is a predefined threshold that controls when the goal is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 106, + 183, + 119 + ], + "spans": [ + { + "bbox": [ + 89, + 106, + 183, + 119 + ], + "score": 1.0, + "content": "considered completed.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 89, + 95, + 522, + 119 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 123, + 522, + 157 + ], + "lines": [ + { + "bbox": [ + 88, + 121, + 523, + 138 + ], + "spans": [ + { + "bbox": [ + 88, + 121, + 523, + 138 + ], + "score": 1.0, + "content": "Following policy gradient methods, we model the policy as a conditional probability distribution over states,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 91, + 135, + 522, + 148 + ], + "spans": [ + { + "bbox": [ + 91, + 135, + 137, + 147 + ], + "score": 0.92, + "content": "\\pi _ { \\boldsymbol { \\theta } } ( a | [ s , g ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 135, + 167, + 148 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 168, + 135, + 188, + 146 + ], + "score": 0.9, + "content": "[ s , g ]", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 135, + 310, + 148 + ], + "score": 1.0, + "content": "denotes concatenation of state", + "type": "text" + }, + { + "bbox": [ + 310, + 137, + 316, + 145 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 135, + 353, + 148 + ], + "score": 1.0, + "content": "and goal", + "type": "text" + }, + { + "bbox": [ + 353, + 137, + 360, + 146 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 135, + 380, + 148 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 380, + 136, + 387, + 145 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 135, + 522, + 148 + ], + "score": 1.0, + "content": "are the learnable parameters. Our", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 145, + 425, + 159 + ], + "spans": [ + { + "bbox": [ + 89, + 145, + 185, + 159 + ], + "score": 1.0, + "content": "objective is to optimize", + "type": "text" + }, + { + "bbox": [ + 186, + 146, + 192, + 155 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 145, + 425, + 159 + ], + "score": 1.0, + "content": "with respect to the expected cumulative reward, given by:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 88, + 121, + 523, + 159 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 161, + 391, + 176 + ], + "lines": [ + { + "bbox": [ + 218, + 161, + 391, + 176 + ], + "spans": [ + { + "bbox": [ + 218, + 161, + 391, + 176 + ], + "score": 0.9, + "content": "J ( \\theta ) = \\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } \\left[ r _ { g } ( s , a , g ) \\right] ,", + "type": "interline_equation", + "image_path": "af22a8a4a6d72a51da4964219477015bfefdf2041ad4cc321fcd5ca9d94c28e5.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 218, + 161, + 391, + 176 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 186, + 522, + 222 + ], + "lines": [ + { + "bbox": [ + 87, + 184, + 523, + 203 + ], + "spans": [ + { + "bbox": [ + 87, + 184, + 116, + 203 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 117, + 186, + 243, + 200 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } \\mathrm { P r } ( s _ { t } = s ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 184, + 523, + 203 + ], + "score": 1.0, + "content": "is the normalized discounted state visitation distribution with discount", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 88, + 197, + 523, + 214 + ], + "spans": [ + { + "bbox": [ + 88, + 197, + 116, + 214 + ], + "score": 1.0, + "content": "factor", + "type": "text" + }, + { + "bbox": [ + 117, + 199, + 156, + 210 + ], + "score": 0.91, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 197, + 306, + 214 + ], + "score": 1.0, + "content": ". To simplify the notation, we denote", + "type": "text" + }, + { + "bbox": [ + 306, + 198, + 401, + 211 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 197, + 445, + 214 + ], + "score": 1.0, + "content": "by simply", + "type": "text" + }, + { + "bbox": [ + 446, + 198, + 467, + 210 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { \\pi } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 197, + 523, + 214 + ], + "score": 1.0, + "content": "in the rest of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 209, + 523, + 224 + ], + "spans": [ + { + "bbox": [ + 89, + 209, + 430, + 224 + ], + "score": 1.0, + "content": "paper. According to the policy gradient theorem (Sutton et al., 1998), the gradient of", + "type": "text" + }, + { + "bbox": [ + 430, + 210, + 450, + 222 + ], + "score": 0.92, + "content": "J ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 209, + 523, + 224 + ], + "score": 1.0, + "content": "can be written as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 87, + 184, + 523, + 224 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 226, + 396, + 240 + ], + "lines": [ + { + "bbox": [ + 214, + 226, + 396, + 240 + ], + "spans": [ + { + "bbox": [ + 214, + 226, + 396, + 240 + ], + "score": 0.89, + "content": "\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } _ { \\pi } \\left[ \\nabla _ { \\theta } \\log \\pi ( a | s , g ) Q ^ { \\pi } ( s , a , g ) \\right] ,", + "type": "interline_equation", + "image_path": "d2eaaf445d9676d09b0abe1f32ca8f84691878086c2f7fde001b9cc9b9f1b7d8.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 214, + 226, + 396, + 240 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 245, + 525, + 269 + ], + "lines": [ + { + "bbox": [ + 87, + 241, + 524, + 263 + ], + "spans": [ + { + "bbox": [ + 87, + 241, + 118, + 263 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 118, + 245, + 357, + 259 + ], + "score": 0.86, + "content": "\\begin{array} { r } { Q ^ { \\pi } ( s , a , g ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } r _ { g } ( s _ { t } , a _ { t } , g ) | s _ { 1 } = s , a _ { 1 } = a \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 241, + 524, + 263 + ], + "score": 1.0, + "content": ", called the critic, denotes the expected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 257, + 363, + 270 + ], + "spans": [ + { + "bbox": [ + 89, + 257, + 169, + 270 + ], + "score": 1.0, + "content": "return under policy", + "type": "text" + }, + { + "bbox": [ + 169, + 260, + 176, + 267 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 257, + 264, + 270 + ], + "score": 1.0, + "content": "after taking an action", + "type": "text" + }, + { + "bbox": [ + 264, + 260, + 271, + 267 + ], + "score": 0.77, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 257, + 303, + 270 + ], + "score": 1.0, + "content": "in state", + "type": "text" + }, + { + "bbox": [ + 303, + 260, + 309, + 267 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 257, + 352, + 270 + ], + "score": 1.0, + "content": ", with goal", + "type": "text" + }, + { + "bbox": [ + 353, + 260, + 359, + 269 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 257, + 363, + 270 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 87, + 241, + 524, + 270 + ] + }, + { + "type": "title", + "bbox": [ + 91, + 281, + 199, + 293 + ], + "lines": [ + { + "bbox": [ + 89, + 281, + 201, + 294 + ], + "spans": [ + { + "bbox": [ + 89, + 281, + 201, + 294 + ], + "score": 1.0, + "content": "2.2 DDPG ALGORITHM", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 90, + 302, + 522, + 435 + ], + "lines": [ + { + "bbox": [ + 88, + 302, + 522, + 315 + ], + "spans": [ + { + "bbox": [ + 88, + 302, + 522, + 315 + ], + "score": 1.0, + "content": "Here, we introduce Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), a model-free RL", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 90, + 314, + 522, + 326 + ], + "spans": [ + { + "bbox": [ + 90, + 314, + 522, + 326 + ], + "score": 1.0, + "content": "algorithm for continuous action spaces that serves as our backbone algorithm. Our proposed modifications", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 324, + 522, + 337 + ], + "spans": [ + { + "bbox": [ + 89, + 324, + 522, + 337 + ], + "score": 1.0, + "content": "need not be restricted to DDPG; however, we leave experimentation with other continuous control algorithms", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 88, + 335, + 523, + 350 + ], + "spans": [ + { + "bbox": [ + 88, + 335, + 363, + 350 + ], + "score": 1.0, + "content": "to future work. In DDPG, we maintain a deterministic target policy", + "type": "text" + }, + { + "bbox": [ + 364, + 335, + 393, + 347 + ], + "score": 0.93, + "content": "\\mu ( s , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 335, + 441, + 350 + ], + "score": 1.0, + "content": "and a critic", + "type": "text" + }, + { + "bbox": [ + 442, + 335, + 482, + 348 + ], + "score": 0.93, + "content": "Q ( s , a , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 335, + 523, + 350 + ], + "score": 1.0, + "content": ", both im-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 88, + 346, + 522, + 359 + ], + "spans": [ + { + "bbox": [ + 88, + 346, + 522, + 359 + ], + "score": 1.0, + "content": "plemented as deep neural networks (note: we modify the standard notation to accommodate goal-conditioned", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 357, + 522, + 371 + ], + "spans": [ + { + "bbox": [ + 89, + 357, + 522, + 371 + ], + "score": 1.0, + "content": "tasks). To train these networks, episodes are generated by sampling actions from the policy plus some noise,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 91, + 368, + 523, + 383 + ], + "spans": [ + { + "bbox": [ + 91, + 368, + 181, + 380 + ], + "score": 0.92, + "content": "a \\sim \\mu ( s , g ) + N ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 368, + 380, + 383 + ], + "score": 1.0, + "content": ". The transition tuple associated with each action", + "type": "text" + }, + { + "bbox": [ + 381, + 369, + 458, + 380 + ], + "score": 0.9, + "content": "\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 368, + 523, + 383 + ], + "score": 1.0, + "content": "is stored in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 88, + 379, + 522, + 392 + ], + "spans": [ + { + "bbox": [ + 88, + 379, + 522, + 392 + ], + "score": 1.0, + "content": "so-called replay buffer. During training, transition tuples are sampled from the buffer to perform mini-batch", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 390, + 522, + 403 + ], + "spans": [ + { + "bbox": [ + 89, + 390, + 200, + 403 + ], + "score": 1.0, + "content": "gradient descent on the loss", + "type": "text" + }, + { + "bbox": [ + 200, + 391, + 208, + 400 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 390, + 522, + 403 + ], + "score": 1.0, + "content": "which encourages the approximated Q-function to satisfy the Bellman equation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 91, + 400, + 522, + 415 + ], + "spans": [ + { + "bbox": [ + 91, + 401, + 198, + 413 + ], + "score": 0.91, + "content": "\\mathbf { \\bar { \\boldsymbol { L } } } = \\mathbb { E } ( Q ( s _ { t } , a _ { t } , g _ { t } ) - y _ { t } ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 400, + 227, + 415 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 227, + 401, + 369, + 413 + ], + "score": 0.91, + "content": "y _ { t } = r _ { t } + \\bar { \\gamma } Q ( s _ { t + 1 } , \\bar { \\mu } ( s _ { t + 1 } , g _ { t } ) , g _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 400, + 522, + 415 + ], + "score": 1.0, + "content": ". Similarly, the actor can be updated by", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 88, + 411, + 522, + 426 + ], + "spans": [ + { + "bbox": [ + 88, + 411, + 303, + 426 + ], + "score": 1.0, + "content": "training with mini-batch gradient descent on the loss", + "type": "text" + }, + { + "bbox": [ + 303, + 412, + 416, + 424 + ], + "score": 0.9, + "content": "J ( \\theta ) = - \\mathbb { E } _ { s } Q ( s , \\mu ( s , g ) , g )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 411, + 522, + 426 + ], + "score": 1.0, + "content": "through the deterministic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 423, + 276, + 437 + ], + "spans": [ + { + "bbox": [ + 89, + 423, + 276, + 437 + ], + "score": 1.0, + "content": "policy gradient algorithm (Silver et al., 2014),", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5, + "bbox_fs": [ + 88, + 302, + 523, + 437 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 439, + 402, + 454 + ], + "lines": [ + { + "bbox": [ + 209, + 439, + 402, + 454 + ], + "spans": [ + { + "bbox": [ + 209, + 439, + 402, + 454 + ], + "score": 0.88, + "content": "\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } [ \\nabla _ { \\theta } \\mu ( s , g ) \\nabla _ { a } Q ( s , a , g ) | _ { a = \\mu ( s , g ) } ] .", + "type": "interline_equation", + "image_path": "61cbf72e039883c96a15b5be262e8304b5f77fd6ec0e534652890592ab47011c.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 209, + 439, + 402, + 454 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 463, + 522, + 497 + ], + "lines": [ + { + "bbox": [ + 89, + 463, + 522, + 477 + ], + "spans": [ + { + "bbox": [ + 89, + 463, + 257, + 477 + ], + "score": 1.0, + "content": "To make training more stable, the targets", + "type": "text" + }, + { + "bbox": [ + 257, + 466, + 266, + 475 + ], + "score": 0.85, + "content": "y _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 463, + 522, + 477 + ], + "score": 1.0, + "content": "are typically computed using a separate target network, whose", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 90, + 474, + 522, + 487 + ], + "spans": [ + { + "bbox": [ + 90, + 474, + 522, + 487 + ], + "score": 1.0, + "content": "weights are periodically updated to the current weights of the main network (Lillicrap et al., 2015; Mnih et al.,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 90, + 485, + 143, + 497 + ], + "spans": [ + { + "bbox": [ + 90, + 485, + 143, + 497 + ], + "score": 1.0, + "content": "2013; 2015).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 89, + 463, + 522, + 497 + ] + }, + { + "type": "title", + "bbox": [ + 92, + 510, + 255, + 522 + ], + "lines": [ + { + "bbox": [ + 90, + 510, + 257, + 522 + ], + "spans": [ + { + "bbox": [ + 90, + 510, + 257, + 522 + ], + "score": 1.0, + "content": "2.3 HINDSIGHT EXPERIENCE REPLAY", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 90, + 530, + 521, + 653 + ], + "lines": [ + { + "bbox": [ + 89, + 530, + 522, + 544 + ], + "spans": [ + { + "bbox": [ + 89, + 530, + 522, + 544 + ], + "score": 1.0, + "content": "Despite numerous advances in the application of deep learning to RL challenges, learning in the presence", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 542, + 521, + 554 + ], + "spans": [ + { + "bbox": [ + 89, + 542, + 521, + 554 + ], + "score": 1.0, + "content": "of sparse rewards remains a major challenge. Intuitively, these algorithms depend on sufficient variability", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 88, + 551, + 522, + 566 + ], + "spans": [ + { + "bbox": [ + 88, + 551, + 522, + 566 + ], + "score": 1.0, + "content": "within the encountered rewards and, in many cases, random exploration is unlikely to uncover this variability", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 562, + 522, + 577 + ], + "spans": [ + { + "bbox": [ + 88, + 562, + 522, + 577 + ], + "score": 1.0, + "content": "if goals are difficult to reach. Recently, Andrychowicz et al. (2017) proposed Hindsight Experience Replay", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 574, + 522, + 587 + ], + "spans": [ + { + "bbox": [ + 89, + 574, + 522, + 587 + ], + "score": 1.0, + "content": "(HER) as a technique to address this challenge. The key insight of HER is that failed rollouts (where", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 586, + 522, + 598 + ], + "spans": [ + { + "bbox": [ + 89, + 586, + 522, + 598 + ], + "score": 1.0, + "content": "no task reward was obtained) can be treated as successful by assuming that a visited state was the actual", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 596, + 522, + 609 + ], + "spans": [ + { + "bbox": [ + 89, + 596, + 522, + 609 + ], + "score": 1.0, + "content": "goal. Basically, HER amounts to a relabelling strategy. For every episode the agent experiences, it gets", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 608, + 522, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 608, + 522, + 620 + ], + "score": 1.0, + "content": "stored in the replay buffer twice: once with the original goal pursued in the episode and once with the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 617, + 523, + 631 + ], + "spans": [ + { + "bbox": [ + 88, + 617, + 523, + 631 + ], + "score": 1.0, + "content": "goal replaced with a future state achieved in the episode, as if the agent were instructed to reach this state", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "spans": [ + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "score": 1.0, + "content": "from the beginning. Formally, HER randomly samples a mini-batch of episodes in buffer, for each episode", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 89, + 637, + 522, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 639, + 276, + 653 + ], + "score": 0.73, + "content": "( \\{ s ^ { i } \\} _ { i = 1 } ^ { T } , \\{ \\stackrel { \\smile } { g ^ { i } } \\} _ { i = 1 } ^ { T } , \\{ a ^ { i } \\} _ { i = 1 } ^ { T } , \\{ r ^ { i } \\} _ { i = 1 } ^ { T } , \\{ s ^ { \\prime i } \\} _ { i = 1 } ^ { T } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 637, + 338, + 654 + ], + "score": 1.0, + "content": ", for each state", + "type": "text" + }, + { + "bbox": [ + 338, + 642, + 348, + 651 + ], + "score": 0.86, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 637, + 380, + 654 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 380, + 640, + 445, + 651 + ], + "score": 0.92, + "content": "1 \\leq t \\leq T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 637, + 522, + 654 + ], + "score": 1.0, + "content": "in an episode, we", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 88, + 93, + 521, + 109 + ], + "spans": [ + { + "bbox": [ + 88, + 93, + 162, + 109 + ], + "score": 1.0, + "content": "randomly choose", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 162, + 98, + 173, + 107 + ], + "score": 0.85, + "content": "s _ { k }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 173, + 93, + 201, + 109 + ], + "score": 1.0, + "content": "where", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 201, + 96, + 263, + 107 + ], + "score": 0.92, + "content": "t + 1 \\leq k \\leq T", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 263, + 93, + 352, + 109 + ], + "score": 1.0, + "content": "and relabel transition", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 353, + 96, + 430, + 108 + ], + "score": 0.9, + "content": "\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 430, + 93, + 442, + 109 + ], + "score": 1.0, + "content": "to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 442, + 97, + 521, + 108 + ], + "score": 0.91, + "content": "\\left( s _ { t } , a _ { t } , s _ { k } , r _ { t } ^ { \\prime } , s _ { t + 1 } \\right)", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 106, + 196, + 119 + ], + "spans": [ + { + "bbox": [ + 89, + 106, + 182, + 119 + ], + "score": 1.0, + "content": "and recalculate reward", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 183, + 107, + 192, + 119 + ], + "score": 0.88, + "content": "r _ { t } ^ { \\prime }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 192, + 106, + 196, + 119 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 35, + "bbox_fs": [ + 88, + 530, + 523, + 654 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 88, + 95, + 523, + 119 + ], + "lines": [ + { + "bbox": [ + 88, + 93, + 521, + 109 + ], + "spans": [ + { + "bbox": [ + 88, + 93, + 162, + 109 + ], + "score": 1.0, + "content": "randomly choose", + "type": "text" + }, + { + "bbox": [ + 162, + 98, + 173, + 107 + ], + "score": 0.85, + "content": "s _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 93, + 201, + 109 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 201, + 96, + 263, + 107 + ], + "score": 0.92, + "content": "t + 1 \\leq k \\leq T", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 93, + 352, + 109 + ], + "score": 1.0, + "content": "and relabel transition", + "type": "text" + }, + { + "bbox": [ + 353, + 96, + 430, + 108 + ], + "score": 0.9, + "content": "\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 93, + 442, + 109 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 442, + 97, + 521, + 108 + ], + "score": 0.91, + "content": "\\left( s _ { t } , a _ { t } , s _ { k } , r _ { t } ^ { \\prime } , s _ { t + 1 } \\right)", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 106, + 196, + 119 + ], + "spans": [ + { + "bbox": [ + 89, + 106, + 182, + 119 + ], + "score": 1.0, + "content": "and recalculate reward", + "type": "text" + }, + { + "bbox": [ + 183, + 107, + 192, + 119 + ], + "score": 0.88, + "content": "r _ { t } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 106, + 196, + 119 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 126, + 387, + 154 + ], + "lines": [ + { + "bbox": [ + 222, + 126, + 387, + 154 + ], + "spans": [ + { + "bbox": [ + 222, + 126, + 387, + 154 + ], + "score": 0.93, + "content": "r _ { t } ^ { \\prime } = r _ { g } ( s _ { t } , s _ { k } ) = \\left\\{ { 0 , \\mathrm { i f } | s _ { t } - s _ { k } | < \\delta , \\atop { - 1 , \\mathrm { o t h e r w i s e . } } } \\right.", + "type": "interline_equation", + "image_path": "a26e6b0f57bdfdac9fcbc75ddb11695d4d3d55360a134a0e1538445f815fff35.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 222, + 126, + 387, + 140.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 222, + 140.0, + 387, + 154.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "title", + "bbox": [ + 91, + 173, + 156, + 186 + ], + "lines": [ + { + "bbox": [ + 88, + 171, + 158, + 189 + ], + "spans": [ + { + "bbox": [ + 88, + 171, + 158, + 189 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 91, + 203, + 520, + 226 + ], + "lines": [ + { + "bbox": [ + 89, + 202, + 523, + 216 + ], + "spans": [ + { + "bbox": [ + 89, + 202, + 523, + 216 + ], + "score": 1.0, + "content": "In this section, we present Competitive Experience Replay (CER) for policy gradient methods (Section 3.1)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 214, + 446, + 227 + ], + "spans": [ + { + "bbox": [ + 89, + 214, + 446, + 227 + ], + "score": 1.0, + "content": "and describe the application of multi-agent DDPG to enable this technique (Section 3.2).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 92, + 246, + 266, + 257 + ], + "lines": [ + { + "bbox": [ + 90, + 245, + 268, + 258 + ], + "spans": [ + { + "bbox": [ + 90, + 245, + 268, + 258 + ], + "score": 1.0, + "content": "3.1 COMPETITIVE EXPERIENCE REPLAY", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 90, + 268, + 522, + 357 + ], + "lines": [ + { + "bbox": [ + 90, + 269, + 522, + 281 + ], + "spans": [ + { + "bbox": [ + 90, + 269, + 522, + 281 + ], + "score": 1.0, + "content": "While the re-labelling strategy introduced by HER provides useful rewards for training a goal-conditioned", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 280, + 522, + 293 + ], + "spans": [ + { + "bbox": [ + 89, + 280, + 522, + 293 + ], + "score": 1.0, + "content": "policy, it assumes that learning from arbitrary goals will generalize to the actual task goals. As such,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 291, + 522, + 303 + ], + "spans": [ + { + "bbox": [ + 89, + 291, + 522, + 303 + ], + "score": 1.0, + "content": "exploration remains a fundamental challenge for goal-directed RL with sparse reward. We propose a re-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 88, + 301, + 523, + 315 + ], + "spans": [ + { + "bbox": [ + 88, + 301, + 523, + 315 + ], + "score": 1.0, + "content": "labelling strategy designed to overcome this challenge. Our method is partly inspired by the success of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 313, + 522, + 326 + ], + "spans": [ + { + "bbox": [ + 89, + 313, + 522, + 326 + ], + "score": 1.0, + "content": "self-play in learning to play competitive games, where sparse rewards (i.e. win or lose) are common. Rather", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 324, + 522, + 336 + ], + "spans": [ + { + "bbox": [ + 89, + 324, + 522, + 336 + ], + "score": 1.0, + "content": "than train a single agent, we train a pair of agents on the same task and apply an asymmetric reward re-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 88, + 333, + 522, + 349 + ], + "spans": [ + { + "bbox": [ + 88, + 333, + 522, + 349 + ], + "score": 1.0, + "content": "labelling strategy to induce a competition designed to encourage exploration. We call this strategy Competitive", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 345, + 198, + 359 + ], + "spans": [ + { + "bbox": [ + 89, + 345, + 198, + 359 + ], + "score": 1.0, + "content": "Experience Replay (CER).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 90, + 362, + 522, + 455 + ], + "lines": [ + { + "bbox": [ + 89, + 362, + 523, + 376 + ], + "spans": [ + { + "bbox": [ + 89, + 362, + 303, + 376 + ], + "score": 1.0, + "content": "To implement CER, we learn a policy for each agent,", + "type": "text" + }, + { + "bbox": [ + 304, + 365, + 317, + 374 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 362, + 335, + 376 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 364, + 348, + 374 + ], + "score": 0.88, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 362, + 523, + 376 + ], + "score": 1.0, + "content": ", as well as a multi-agent critic (see below),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 90, + 374, + 522, + 386 + ], + "spans": [ + { + "bbox": [ + 90, + 374, + 522, + 386 + ], + "score": 1.0, + "content": "taking advantage of methods for decentralized execution and centralized training. During decentralized", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 384, + 523, + 398 + ], + "spans": [ + { + "bbox": [ + 89, + 384, + 135, + 398 + ], + "score": 1.0, + "content": "execution,", + "type": "text" + }, + { + "bbox": [ + 135, + 386, + 149, + 396 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 384, + 169, + 398 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 386, + 183, + 396 + ], + "score": 0.88, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 384, + 523, + 398 + ], + "score": 1.0, + "content": "collect DDPG episode rollouts in parallel. Each agent effectively plays a single-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 396, + 522, + 408 + ], + "spans": [ + { + "bbox": [ + 89, + 396, + 522, + 408 + ], + "score": 1.0, + "content": "player game; however, to take advantage of multi-agent training methods, we arbitrarily pair the rollout", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 406, + 522, + 419 + ], + "spans": [ + { + "bbox": [ + 89, + 406, + 113, + 419 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 113, + 408, + 126, + 418 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 406, + 190, + 419 + ], + "score": 1.0, + "content": "with that from", + "type": "text" + }, + { + "bbox": [ + 190, + 408, + 204, + 417 + ], + "score": 0.86, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 406, + 479, + 419 + ], + "score": 1.0, + "content": "and store them as a single, multi-agent rollout in the replay buffer", + "type": "text" + }, + { + "bbox": [ + 479, + 407, + 489, + 416 + ], + "score": 0.74, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 406, + 522, + 419 + ], + "score": 1.0, + "content": ". When", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 88, + 417, + 520, + 430 + ], + "spans": [ + { + "bbox": [ + 88, + 417, + 510, + 430 + ], + "score": 1.0, + "content": "training on a mini-batch of off policy samples, we first randomly sample a mini-batch of episodes in", + "type": "text" + }, + { + "bbox": [ + 511, + 418, + 520, + 428 + ], + "score": 0.78, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 428, + 522, + 441 + ], + "spans": [ + { + "bbox": [ + 89, + 428, + 522, + 441 + ], + "score": 1.0, + "content": "and then randomly sample transitions in each episode. We denote the resulting mini-batch of transitions as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 91, + 439, + 448, + 456 + ], + "spans": [ + { + "bbox": [ + 91, + 439, + 290, + 454 + ], + "score": 0.85, + "content": "\\{ ( s _ { A } ^ { i } , a _ { A } ^ { i } , g _ { A } ^ { i } , r _ { A } ^ { i } , s ^ { \\prime } { } ^ { i } _ { A } ) , ( s _ { B } ^ { i } , a _ { B } ^ { i } , g _ { B } ^ { i } , r _ { B } ^ { i } , s ^ { \\prime } { } ^ { i } _ { B } ) \\} _ { i = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 439, + 321, + 456 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 321, + 443, + 331, + 452 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 439, + 448, + 456 + ], + "score": 1.0, + "content": "is the size of the mini-batch.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 90, + 458, + 521, + 552 + ], + "lines": [ + { + "bbox": [ + 89, + 458, + 521, + 471 + ], + "spans": [ + { + "bbox": [ + 89, + 458, + 497, + 471 + ], + "score": 1.0, + "content": "Reward re-labelling in CER attempts to create an implicit exploration curriculum by punishing agent", + "type": "text" + }, + { + "bbox": [ + 497, + 459, + 506, + 468 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 506, + 458, + 521, + 471 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 468, + 522, + 483 + ], + "spans": [ + { + "bbox": [ + 89, + 468, + 187, + 483 + ], + "score": 1.0, + "content": "visiting states that agent", + "type": "text" + }, + { + "bbox": [ + 187, + 470, + 196, + 479 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 468, + 417, + 483 + ], + "score": 1.0, + "content": "also visited, and, for those same states, rewarding agent", + "type": "text" + }, + { + "bbox": [ + 417, + 470, + 426, + 479 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 468, + 467, + 483 + ], + "score": 1.0, + "content": ". For each", + "type": "text" + }, + { + "bbox": [ + 467, + 470, + 476, + 479 + ], + "score": 0.73, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 468, + 497, + 483 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 497, + 469, + 510, + 482 + ], + "score": 0.89, + "content": "s _ { A } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 468, + 522, + 483 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 88, + 480, + 523, + 497 + ], + "spans": [ + { + "bbox": [ + 88, + 481, + 267, + 497 + ], + "score": 1.0, + "content": "a mini-batch of transitions, we check if any", + "type": "text" + }, + { + "bbox": [ + 268, + 483, + 277, + 493 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 481, + 299, + 497 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 299, + 480, + 312, + 495 + ], + "score": 0.92, + "content": "s _ { B } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 481, + 419, + 497 + ], + "score": 1.0, + "content": "in the mini-batch satisfies", + "type": "text" + }, + { + "bbox": [ + 420, + 480, + 479, + 495 + ], + "score": 0.94, + "content": "| s _ { A } ^ { i } - s _ { B } ^ { j } | < \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 481, + 523, + 497 + ], + "score": 1.0, + "content": "and, if so,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 89, + 493, + 522, + 509 + ], + "spans": [ + { + "bbox": [ + 89, + 493, + 122, + 509 + ], + "score": 1.0, + "content": "re-label", + "type": "text" + }, + { + "bbox": [ + 123, + 493, + 135, + 507 + ], + "score": 0.89, + "content": "r _ { A } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 493, + 155, + 509 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 156, + 493, + 185, + 506 + ], + "score": 0.91, + "content": "r _ { A } ^ { i } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 493, + 522, + 509 + ], + "score": 1.0, + "content": ". Conversely, each time such a nearby state pair is found, we increment the associated", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 88, + 506, + 522, + 522 + ], + "spans": [ + { + "bbox": [ + 88, + 506, + 159, + 522 + ], + "score": 1.0, + "content": "reward for agent", + "type": "text" + }, + { + "bbox": [ + 159, + 507, + 168, + 518 + ], + "score": 0.65, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 506, + 172, + 522 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 172, + 506, + 185, + 520 + ], + "score": 0.79, + "content": "r _ { B } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 506, + 201, + 522 + ], + "score": 1.0, + "content": ", by", + "type": "text" + }, + { + "bbox": [ + 201, + 508, + 215, + 519 + ], + "score": 0.85, + "content": "+ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 506, + 322, + 522 + ], + "score": 1.0, + "content": ". Each transition for agent", + "type": "text" + }, + { + "bbox": [ + 322, + 508, + 331, + 518 + ], + "score": 0.72, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 506, + 522, + 522 + ], + "score": 1.0, + "content": "can therefore be penalized only once, whereas", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 518, + 522, + 532 + ], + "spans": [ + { + "bbox": [ + 89, + 518, + 383, + 532 + ], + "score": 1.0, + "content": "no restriction is placed on the extra reward given to a transition for agent", + "type": "text" + }, + { + "bbox": [ + 383, + 519, + 392, + 528 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 518, + 522, + 532 + ], + "score": 1.0, + "content": ". Following training both agents", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 88, + 528, + 522, + 543 + ], + "spans": [ + { + "bbox": [ + 88, + 528, + 289, + 543 + ], + "score": 1.0, + "content": "with the re-labelled rewards, we retain the policy", + "type": "text" + }, + { + "bbox": [ + 290, + 531, + 303, + 541 + ], + "score": 0.86, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 528, + 522, + 543 + ], + "score": 1.0, + "content": "for evaluation. Additional implementation details are", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 88, + 540, + 243, + 554 + ], + "spans": [ + { + "bbox": [ + 88, + 540, + 243, + 554 + ], + "score": 1.0, + "content": "provided in the appendix (Section D).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 91, + 557, + 520, + 602 + ], + "lines": [ + { + "bbox": [ + 89, + 555, + 520, + 571 + ], + "spans": [ + { + "bbox": [ + 89, + 555, + 506, + 571 + ], + "score": 1.0, + "content": "We focus on two variations of CER that satisfy the multi-agent self-play requirements: first, the policy", + "type": "text" + }, + { + "bbox": [ + 506, + 560, + 520, + 568 + ], + "score": 0.8, + "content": "\\pi _ { B }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 89, + 568, + 522, + 581 + ], + "spans": [ + { + "bbox": [ + 89, + 568, + 522, + 581 + ], + "score": 1.0, + "content": "receives its initial state from the task’s initial state distribution; second, although more restricted to re-settable", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 90, + 579, + 522, + 592 + ], + "spans": [ + { + "bbox": [ + 90, + 579, + 150, + 592 + ], + "score": 1.0, + "content": "environments,", + "type": "text" + }, + { + "bbox": [ + 151, + 581, + 164, + 591 + ], + "score": 0.84, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 579, + 411, + 592 + ], + "score": 1.0, + "content": "receives its initial state from a random off-policy sample of", + "type": "text" + }, + { + "bbox": [ + 412, + 581, + 425, + 591 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 579, + 522, + 592 + ], + "score": 1.0, + "content": ". We refer to the above", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 90, + 590, + 441, + 603 + ], + "spans": [ + { + "bbox": [ + 90, + 590, + 441, + 603 + ], + "score": 1.0, + "content": "methods as independent-CER and interact-CER, respectively, in the following sections.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 91, + 607, + 521, + 652 + ], + "lines": [ + { + "bbox": [ + 90, + 607, + 521, + 620 + ], + "spans": [ + { + "bbox": [ + 90, + 607, + 521, + 620 + ], + "score": 1.0, + "content": "Importantly, CER re-labels rewards based on intra-agent behavior, whereas HER re-labels rewards based", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "on each individual agent’s behavior. As a result, the two methods can be easily combined. In fact, as our", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 90, + 629, + 521, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 521, + 642 + ], + "score": 1.0, + "content": "experiments demonstrate, CER and HER are complementary and likely reflect distinct challenges that are", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 88, + 638, + 267, + 654 + ], + "spans": [ + { + "bbox": [ + 88, + 638, + 267, + 654 + ], + "score": 1.0, + "content": "both addressed through reward re-labelling.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 39, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 292, + 680 + ], + "lines": [ + { + "bbox": [ + 285, + 670, + 293, + 682 + ], + "spans": [ + { + "bbox": [ + 285, + 670, + 293, + 682 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 88, + 95, + 523, + 119 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 88, + 93, + 521, + 119 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 126, + 387, + 154 + ], + "lines": [ + { + "bbox": [ + 222, + 126, + 387, + 154 + ], + "spans": [ + { + "bbox": [ + 222, + 126, + 387, + 154 + ], + "score": 0.93, + "content": "r _ { t } ^ { \\prime } = r _ { g } ( s _ { t } , s _ { k } ) = \\left\\{ { 0 , \\mathrm { i f } | s _ { t } - s _ { k } | < \\delta , \\atop { - 1 , \\mathrm { o t h e r w i s e . } } } \\right.", + "type": "interline_equation", + "image_path": "a26e6b0f57bdfdac9fcbc75ddb11695d4d3d55360a134a0e1538445f815fff35.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 222, + 126, + 387, + 140.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 222, + 140.0, + 387, + 154.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "title", + "bbox": [ + 91, + 173, + 156, + 186 + ], + "lines": [ + { + "bbox": [ + 88, + 171, + 158, + 189 + ], + "spans": [ + { + "bbox": [ + 88, + 171, + 158, + 189 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 91, + 203, + 520, + 226 + ], + "lines": [ + { + "bbox": [ + 89, + 202, + 523, + 216 + ], + "spans": [ + { + "bbox": [ + 89, + 202, + 523, + 216 + ], + "score": 1.0, + "content": "In this section, we present Competitive Experience Replay (CER) for policy gradient methods (Section 3.1)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 214, + 446, + 227 + ], + "spans": [ + { + "bbox": [ + 89, + 214, + 446, + 227 + ], + "score": 1.0, + "content": "and describe the application of multi-agent DDPG to enable this technique (Section 3.2).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 89, + 202, + 523, + 227 + ] + }, + { + "type": "title", + "bbox": [ + 92, + 246, + 266, + 257 + ], + "lines": [ + { + "bbox": [ + 90, + 245, + 268, + 258 + ], + "spans": [ + { + "bbox": [ + 90, + 245, + 268, + 258 + ], + "score": 1.0, + "content": "3.1 COMPETITIVE EXPERIENCE REPLAY", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 90, + 268, + 522, + 357 + ], + "lines": [ + { + "bbox": [ + 90, + 269, + 522, + 281 + ], + "spans": [ + { + "bbox": [ + 90, + 269, + 522, + 281 + ], + "score": 1.0, + "content": "While the re-labelling strategy introduced by HER provides useful rewards for training a goal-conditioned", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 280, + 522, + 293 + ], + "spans": [ + { + "bbox": [ + 89, + 280, + 522, + 293 + ], + "score": 1.0, + "content": "policy, it assumes that learning from arbitrary goals will generalize to the actual task goals. As such,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 291, + 522, + 303 + ], + "spans": [ + { + "bbox": [ + 89, + 291, + 522, + 303 + ], + "score": 1.0, + "content": "exploration remains a fundamental challenge for goal-directed RL with sparse reward. We propose a re-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 88, + 301, + 523, + 315 + ], + "spans": [ + { + "bbox": [ + 88, + 301, + 523, + 315 + ], + "score": 1.0, + "content": "labelling strategy designed to overcome this challenge. Our method is partly inspired by the success of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 313, + 522, + 326 + ], + "spans": [ + { + "bbox": [ + 89, + 313, + 522, + 326 + ], + "score": 1.0, + "content": "self-play in learning to play competitive games, where sparse rewards (i.e. win or lose) are common. Rather", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 324, + 522, + 336 + ], + "spans": [ + { + "bbox": [ + 89, + 324, + 522, + 336 + ], + "score": 1.0, + "content": "than train a single agent, we train a pair of agents on the same task and apply an asymmetric reward re-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 88, + 333, + 522, + 349 + ], + "spans": [ + { + "bbox": [ + 88, + 333, + 522, + 349 + ], + "score": 1.0, + "content": "labelling strategy to induce a competition designed to encourage exploration. We call this strategy Competitive", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 345, + 198, + 359 + ], + "spans": [ + { + "bbox": [ + 89, + 345, + 198, + 359 + ], + "score": 1.0, + "content": "Experience Replay (CER).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5, + "bbox_fs": [ + 88, + 269, + 523, + 359 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 362, + 522, + 455 + ], + "lines": [ + { + "bbox": [ + 89, + 362, + 523, + 376 + ], + "spans": [ + { + "bbox": [ + 89, + 362, + 303, + 376 + ], + "score": 1.0, + "content": "To implement CER, we learn a policy for each agent,", + "type": "text" + }, + { + "bbox": [ + 304, + 365, + 317, + 374 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 362, + 335, + 376 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 364, + 348, + 374 + ], + "score": 0.88, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 362, + 523, + 376 + ], + "score": 1.0, + "content": ", as well as a multi-agent critic (see below),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 90, + 374, + 522, + 386 + ], + "spans": [ + { + "bbox": [ + 90, + 374, + 522, + 386 + ], + "score": 1.0, + "content": "taking advantage of methods for decentralized execution and centralized training. During decentralized", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 384, + 523, + 398 + ], + "spans": [ + { + "bbox": [ + 89, + 384, + 135, + 398 + ], + "score": 1.0, + "content": "execution,", + "type": "text" + }, + { + "bbox": [ + 135, + 386, + 149, + 396 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 384, + 169, + 398 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 386, + 183, + 396 + ], + "score": 0.88, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 384, + 523, + 398 + ], + "score": 1.0, + "content": "collect DDPG episode rollouts in parallel. Each agent effectively plays a single-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 396, + 522, + 408 + ], + "spans": [ + { + "bbox": [ + 89, + 396, + 522, + 408 + ], + "score": 1.0, + "content": "player game; however, to take advantage of multi-agent training methods, we arbitrarily pair the rollout", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 406, + 522, + 419 + ], + "spans": [ + { + "bbox": [ + 89, + 406, + 113, + 419 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 113, + 408, + 126, + 418 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 406, + 190, + 419 + ], + "score": 1.0, + "content": "with that from", + "type": "text" + }, + { + "bbox": [ + 190, + 408, + 204, + 417 + ], + "score": 0.86, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 406, + 479, + 419 + ], + "score": 1.0, + "content": "and store them as a single, multi-agent rollout in the replay buffer", + "type": "text" + }, + { + "bbox": [ + 479, + 407, + 489, + 416 + ], + "score": 0.74, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 406, + 522, + 419 + ], + "score": 1.0, + "content": ". When", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 88, + 417, + 520, + 430 + ], + "spans": [ + { + "bbox": [ + 88, + 417, + 510, + 430 + ], + "score": 1.0, + "content": "training on a mini-batch of off policy samples, we first randomly sample a mini-batch of episodes in", + "type": "text" + }, + { + "bbox": [ + 511, + 418, + 520, + 428 + ], + "score": 0.78, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 428, + 522, + 441 + ], + "spans": [ + { + "bbox": [ + 89, + 428, + 522, + 441 + ], + "score": 1.0, + "content": "and then randomly sample transitions in each episode. We denote the resulting mini-batch of transitions as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 91, + 439, + 448, + 456 + ], + "spans": [ + { + "bbox": [ + 91, + 439, + 290, + 454 + ], + "score": 0.85, + "content": "\\{ ( s _ { A } ^ { i } , a _ { A } ^ { i } , g _ { A } ^ { i } , r _ { A } ^ { i } , s ^ { \\prime } { } ^ { i } _ { A } ) , ( s _ { B } ^ { i } , a _ { B } ^ { i } , g _ { B } ^ { i } , r _ { B } ^ { i } , s ^ { \\prime } { } ^ { i } _ { B } ) \\} _ { i = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 439, + 321, + 456 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 321, + 443, + 331, + 452 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 439, + 448, + 456 + ], + "score": 1.0, + "content": "is the size of the mini-batch.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 88, + 362, + 523, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 458, + 521, + 552 + ], + "lines": [ + { + "bbox": [ + 89, + 458, + 521, + 471 + ], + "spans": [ + { + "bbox": [ + 89, + 458, + 497, + 471 + ], + "score": 1.0, + "content": "Reward re-labelling in CER attempts to create an implicit exploration curriculum by punishing agent", + "type": "text" + }, + { + "bbox": [ + 497, + 459, + 506, + 468 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 506, + 458, + 521, + 471 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 468, + 522, + 483 + ], + "spans": [ + { + "bbox": [ + 89, + 468, + 187, + 483 + ], + "score": 1.0, + "content": "visiting states that agent", + "type": "text" + }, + { + "bbox": [ + 187, + 470, + 196, + 479 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 468, + 417, + 483 + ], + "score": 1.0, + "content": "also visited, and, for those same states, rewarding agent", + "type": "text" + }, + { + "bbox": [ + 417, + 470, + 426, + 479 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 468, + 467, + 483 + ], + "score": 1.0, + "content": ". For each", + "type": "text" + }, + { + "bbox": [ + 467, + 470, + 476, + 479 + ], + "score": 0.73, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 468, + 497, + 483 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 497, + 469, + 510, + 482 + ], + "score": 0.89, + "content": "s _ { A } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 468, + 522, + 483 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 88, + 480, + 523, + 497 + ], + "spans": [ + { + "bbox": [ + 88, + 481, + 267, + 497 + ], + "score": 1.0, + "content": "a mini-batch of transitions, we check if any", + "type": "text" + }, + { + "bbox": [ + 268, + 483, + 277, + 493 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 481, + 299, + 497 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 299, + 480, + 312, + 495 + ], + "score": 0.92, + "content": "s _ { B } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 481, + 419, + 497 + ], + "score": 1.0, + "content": "in the mini-batch satisfies", + "type": "text" + }, + { + "bbox": [ + 420, + 480, + 479, + 495 + ], + "score": 0.94, + "content": "| s _ { A } ^ { i } - s _ { B } ^ { j } | < \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 481, + 523, + 497 + ], + "score": 1.0, + "content": "and, if so,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 89, + 493, + 522, + 509 + ], + "spans": [ + { + "bbox": [ + 89, + 493, + 122, + 509 + ], + "score": 1.0, + "content": "re-label", + "type": "text" + }, + { + "bbox": [ + 123, + 493, + 135, + 507 + ], + "score": 0.89, + "content": "r _ { A } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 493, + 155, + 509 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 156, + 493, + 185, + 506 + ], + "score": 0.91, + "content": "r _ { A } ^ { i } - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 493, + 522, + 509 + ], + "score": 1.0, + "content": ". Conversely, each time such a nearby state pair is found, we increment the associated", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 88, + 506, + 522, + 522 + ], + "spans": [ + { + "bbox": [ + 88, + 506, + 159, + 522 + ], + "score": 1.0, + "content": "reward for agent", + "type": "text" + }, + { + "bbox": [ + 159, + 507, + 168, + 518 + ], + "score": 0.65, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 506, + 172, + 522 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 172, + 506, + 185, + 520 + ], + "score": 0.79, + "content": "r _ { B } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 506, + 201, + 522 + ], + "score": 1.0, + "content": ", by", + "type": "text" + }, + { + "bbox": [ + 201, + 508, + 215, + 519 + ], + "score": 0.85, + "content": "+ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 506, + 322, + 522 + ], + "score": 1.0, + "content": ". Each transition for agent", + "type": "text" + }, + { + "bbox": [ + 322, + 508, + 331, + 518 + ], + "score": 0.72, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 506, + 522, + 522 + ], + "score": 1.0, + "content": "can therefore be penalized only once, whereas", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 518, + 522, + 532 + ], + "spans": [ + { + "bbox": [ + 89, + 518, + 383, + 532 + ], + "score": 1.0, + "content": "no restriction is placed on the extra reward given to a transition for agent", + "type": "text" + }, + { + "bbox": [ + 383, + 519, + 392, + 528 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 518, + 522, + 532 + ], + "score": 1.0, + "content": ". Following training both agents", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 88, + 528, + 522, + 543 + ], + "spans": [ + { + "bbox": [ + 88, + 528, + 289, + 543 + ], + "score": 1.0, + "content": "with the re-labelled rewards, we retain the policy", + "type": "text" + }, + { + "bbox": [ + 290, + 531, + 303, + 541 + ], + "score": 0.86, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 528, + 522, + 543 + ], + "score": 1.0, + "content": "for evaluation. Additional implementation details are", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 88, + 540, + 243, + 554 + ], + "spans": [ + { + "bbox": [ + 88, + 540, + 243, + 554 + ], + "score": 1.0, + "content": "provided in the appendix (Section D).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 88, + 458, + 523, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 557, + 520, + 602 + ], + "lines": [ + { + "bbox": [ + 89, + 555, + 520, + 571 + ], + "spans": [ + { + "bbox": [ + 89, + 555, + 506, + 571 + ], + "score": 1.0, + "content": "We focus on two variations of CER that satisfy the multi-agent self-play requirements: first, the policy", + "type": "text" + }, + { + "bbox": [ + 506, + 560, + 520, + 568 + ], + "score": 0.8, + "content": "\\pi _ { B }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 89, + 568, + 522, + 581 + ], + "spans": [ + { + "bbox": [ + 89, + 568, + 522, + 581 + ], + "score": 1.0, + "content": "receives its initial state from the task’s initial state distribution; second, although more restricted to re-settable", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 90, + 579, + 522, + 592 + ], + "spans": [ + { + "bbox": [ + 90, + 579, + 150, + 592 + ], + "score": 1.0, + "content": "environments,", + "type": "text" + }, + { + "bbox": [ + 151, + 581, + 164, + 591 + ], + "score": 0.84, + "content": "\\pi _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 579, + 411, + 592 + ], + "score": 1.0, + "content": "receives its initial state from a random off-policy sample of", + "type": "text" + }, + { + "bbox": [ + 412, + 581, + 425, + 591 + ], + "score": 0.87, + "content": "\\pi _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 579, + 522, + 592 + ], + "score": 1.0, + "content": ". We refer to the above", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 90, + 590, + 441, + 603 + ], + "spans": [ + { + "bbox": [ + 90, + 590, + 441, + 603 + ], + "score": 1.0, + "content": "methods as independent-CER and interact-CER, respectively, in the following sections.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 89, + 555, + 522, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 607, + 521, + 652 + ], + "lines": [ + { + "bbox": [ + 90, + 607, + 521, + 620 + ], + "spans": [ + { + "bbox": [ + 90, + 607, + 521, + 620 + ], + "score": 1.0, + "content": "Importantly, CER re-labels rewards based on intra-agent behavior, whereas HER re-labels rewards based", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "on each individual agent’s behavior. As a result, the two methods can be easily combined. In fact, as our", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 90, + 629, + 521, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 521, + 642 + ], + "score": 1.0, + "content": "experiments demonstrate, CER and HER are complementary and likely reflect distinct challenges that are", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 88, + 638, + 267, + 654 + ], + "spans": [ + { + "bbox": [ + 88, + 638, + 267, + 654 + ], + "score": 1.0, + "content": "both addressed through reward re-labelling.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 88, + 607, + 522, + 654 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 96, + 314, + 107 + ], + "lines": [ + { + "bbox": [ + 89, + 95, + 315, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 95, + 315, + 108 + ], + "score": 1.0, + "content": "3.2 GOAL CONDITIONED MULTI-AGENT LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 90, + 115, + 521, + 150 + ], + "lines": [ + { + "bbox": [ + 89, + 115, + 523, + 129 + ], + "spans": [ + { + "bbox": [ + 89, + 115, + 523, + 129 + ], + "score": 1.0, + "content": "We extend multi-agent DDPG (MADDPG), proposed by Lowe et al. (2017), for training using CER. MAD-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 89, + 127, + 521, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 127, + 521, + 140 + ], + "score": 1.0, + "content": "DPG attempts to learn a different policy per agent and a single, centralized critic that has access to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 137, + 286, + 151 + ], + "spans": [ + { + "bbox": [ + 89, + 137, + 286, + 151 + ], + "score": 1.0, + "content": "combined states, actions, and goals of all agents.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 90, + 155, + 521, + 200 + ], + "lines": [ + { + "bbox": [ + 89, + 154, + 522, + 168 + ], + "spans": [ + { + "bbox": [ + 89, + 154, + 245, + 168 + ], + "score": 1.0, + "content": "More precisely, consider a game with", + "type": "text" + }, + { + "bbox": [ + 246, + 156, + 256, + 165 + ], + "score": 0.83, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 154, + 414, + 168 + ], + "score": 1.0, + "content": "agents with policies parameterized by", + "type": "text" + }, + { + "bbox": [ + 414, + 155, + 487, + 167 + ], + "score": 0.92, + "content": "\\pmb { \\theta } = \\{ \\theta _ { 1 } , \\dots , \\theta _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 154, + 522, + 168 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 165, + 523, + 180 + ], + "spans": [ + { + "bbox": [ + 90, + 166, + 167, + 178 + ], + "score": 0.91, + "content": "\\pmb { \\pi } = \\{ \\bar { \\pi } _ { 1 } , . . . , \\bar { \\pi } _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 165, + 298, + 180 + ], + "score": 1.0, + "content": "be the set of all agent policies.", + "type": "text" + }, + { + "bbox": [ + 298, + 166, + 369, + 178 + ], + "score": 0.92, + "content": "\\mathbf { g } = [ \\boldsymbol { g } _ { 1 } , \\dots , \\boldsymbol { g } _ { N } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 165, + 523, + 180 + ], + "score": 1.0, + "content": "represents the concatenation of each", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 90, + 176, + 522, + 190 + ], + "spans": [ + { + "bbox": [ + 90, + 176, + 143, + 190 + ], + "score": 1.0, + "content": "agent’s goal,", + "type": "text" + }, + { + "bbox": [ + 143, + 177, + 211, + 189 + ], + "score": 0.92, + "content": "\\mathbf { s } = [ s _ { 1 } , \\ldots , s _ { N } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 176, + 325, + 190 + ], + "score": 1.0, + "content": "the concatenated states, and", + "type": "text" + }, + { + "bbox": [ + 325, + 177, + 396, + 189 + ], + "score": 0.92, + "content": "\\mathbf { a } = [ a _ { 1 } , \\ldots , a _ { N } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 176, + 522, + 190 + ], + "score": 1.0, + "content": "the concatenated actions. With", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 90, + 187, + 459, + 201 + ], + "spans": [ + { + "bbox": [ + 90, + 187, + 376, + 201 + ], + "score": 1.0, + "content": "this notation, we can write the gradient of the expected return for agent", + "type": "text" + }, + { + "bbox": [ + 376, + 190, + 380, + 198 + ], + "score": 0.62, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 187, + 385, + 201 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 385, + 188, + 444, + 200 + ], + "score": 0.93, + "content": "\\bar { J ( \\theta _ { i } ) } = \\mathbb { E } [ R _ { i } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 187, + 459, + 201 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 204, + 405, + 218 + ], + "lines": [ + { + "bbox": [ + 205, + 204, + 405, + 218 + ], + "spans": [ + { + "bbox": [ + 205, + 204, + 405, + 218 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\pi } } [ \\nabla _ { \\theta _ { i } } \\log \\pi _ { i } ( a _ { i } | s _ { i } , g _ { i } ) Q _ { i } ^ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "2e6850d92597d835ba628f97c0f7711ea1835645b432dfbb185d432047b1c797.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 205, + 204, + 405, + 218 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 89, + 223, + 369, + 236 + ], + "lines": [ + { + "bbox": [ + 89, + 222, + 370, + 237 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 200, + 237 + ], + "score": 1.0, + "content": "With deterministic policies", + "type": "text" + }, + { + "bbox": [ + 200, + 223, + 277, + 236 + ], + "score": 0.93, + "content": "{ \\pmb \\mu } = \\{ \\mu _ { 1 } , . . . , \\mu _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 222, + 370, + 237 + ], + "score": 1.0, + "content": ", the gradient becomes:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 239, + 423, + 254 + ], + "lines": [ + { + "bbox": [ + 187, + 239, + 423, + 254 + ], + "spans": [ + { + "bbox": [ + 187, + 239, + 423, + 254 + ], + "score": 0.89, + "content": "\\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\mu } } [ \\nabla _ { \\theta _ { i } } \\mu _ { i } ( s _ { i } , g _ { i } ) \\nabla _ { a _ { i } } Q _ { i } ^ { \\pmb { \\mu } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) | _ { a _ { i } = \\mu _ { i } ( s _ { i } , g _ { i } ) } ] ,", + "type": "interline_equation", + "image_path": "4135d952788d1437a8eb0c338c4eb28bd17da7bdc1e7d7f6e9980d410c2d2423.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 187, + 239, + 423, + 254 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 95, + 259, + 503, + 272 + ], + "lines": [ + { + "bbox": [ + 93, + 259, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 93, + 259, + 241, + 273 + ], + "score": 1.0, + "content": "The centralized action-value function", + "type": "text" + }, + { + "bbox": [ + 241, + 259, + 255, + 272 + ], + "score": 0.91, + "content": "Q _ { i } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 259, + 443, + 273 + ], + "score": 1.0, + "content": ", which estimates the expected return for agent", + "type": "text" + }, + { + "bbox": [ + 443, + 261, + 447, + 270 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 259, + 506, + 273 + ], + "score": 1.0, + "content": ", is updated as:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 132, + 276, + 478, + 297 + ], + "lines": [ + { + "bbox": [ + 132, + 276, + 478, + 297 + ], + "spans": [ + { + "bbox": [ + 132, + 276, + 478, + 297 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\theta _ { i } ) = \\mathbb { E } _ { { \\mathbf s } , { \\mathbf a } , { \\mathbf r } , { \\mathbf s } ^ { \\prime } } [ ( Q _ { i } ^ { \\mu } ( { \\mathbf s } , { \\mathbf a } , { \\mathbf g } ) - y ) ^ { 2 } ] , \\quad y = r _ { i } + \\gamma Q _ { i } ^ { \\mu ^ { \\prime } } ( { \\mathbf s } ^ { \\prime } , a _ { 1 } ^ { \\prime } , \\dots , a _ { N } ^ { \\prime } , { \\mathbf g } ) \\big | _ { a _ { j } ^ { \\prime } = \\mu _ { j } ^ { \\prime } ( s _ { j } ) } , } \\end{array}", + "type": "interline_equation", + "image_path": "2da34ef7b3aa9d33ff804f1b9ecbb628b3534a4c0a0ed55f49dacca81dfcfb39.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 132, + 276, + 478, + 297 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 303, + 522, + 328 + ], + "lines": [ + { + "bbox": [ + 88, + 301, + 522, + 317 + ], + "spans": [ + { + "bbox": [ + 88, + 301, + 116, + 317 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 117, + 303, + 198, + 316 + ], + "score": 0.92, + "content": "\\pmb { \\mu } ^ { \\prime } = \\{ \\pmb { \\mu } _ { \\theta _ { 1 } ^ { \\prime } } , . . . , \\pmb { \\mu } _ { \\theta _ { N } ^ { \\prime } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 301, + 403, + 317 + ], + "score": 1.0, + "content": "is the set of target policies with delayed parameters", + "type": "text" + }, + { + "bbox": [ + 404, + 303, + 413, + 315 + ], + "score": 0.89, + "content": "\\theta _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 301, + 522, + 317 + ], + "score": 1.0, + "content": ". In practice people usually", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 90, + 315, + 376, + 329 + ], + "spans": [ + { + "bbox": [ + 90, + 315, + 155, + 329 + ], + "score": 1.0, + "content": "soft update it as", + "type": "text" + }, + { + "bbox": [ + 156, + 316, + 244, + 328 + ], + "score": 0.92, + "content": "\\mathbf { \\dot { \\theta } } _ { i } ^ { \\prime } \\gets \\tau \\dot { \\theta } _ { i } + ( 1 - \\tau ) \\theta _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 315, + 275, + 329 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 275, + 317, + 282, + 326 + ], + "score": 0.79, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 315, + 376, + 329 + ], + "score": 1.0, + "content": "is a Polyak coefficient.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 91, + 332, + 520, + 377 + ], + "lines": [ + { + "bbox": [ + 90, + 332, + 521, + 344 + ], + "spans": [ + { + "bbox": [ + 90, + 332, + 521, + 344 + ], + "score": 1.0, + "content": "During training, we collect paired rollouts as described above, apply any re-labelling strategies (such as CER", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 88, + 342, + 522, + 357 + ], + "spans": [ + { + "bbox": [ + 88, + 342, + 522, + 357 + ], + "score": 1.0, + "content": "or HER) and use the MADDPG algorithm to train both agent policies and the centralized critic, concatenating", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 90, + 354, + 522, + 367 + ], + "spans": [ + { + "bbox": [ + 90, + 354, + 522, + 367 + ], + "score": 1.0, + "content": "states, actions, and goals where appropriate. Putting everything together, we summarize the full method in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 365, + 145, + 379 + ], + "spans": [ + { + "bbox": [ + 89, + 365, + 145, + 379 + ], + "score": 1.0, + "content": "Algorithm 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 91, + 393, + 178, + 405 + ], + "lines": [ + { + "bbox": [ + 89, + 393, + 179, + 407 + ], + "spans": [ + { + "bbox": [ + 89, + 393, + 179, + 407 + ], + "score": 1.0, + "content": "4 EXPERIMENT", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "image", + "bbox": [ + 97, + 420, + 512, + 518 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 97, + 420, + 512, + 518 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 97, + 420, + 512, + 518 + ], + "spans": [ + { + "bbox": [ + 97, + 420, + 512, + 518 + ], + "score": 0.968, + "type": "image", + "image_path": "e055e6b40d22d0067714f3e76101f2b2ff58f924492920fd2548f0f2112a06b3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 97, + 420, + 512, + 452.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 97, + 452.6666666666667, + 512, + 485.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 97, + 485.33333333333337, + 512, + 518.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 90, + 524, + 521, + 565 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 524, + 521, + 537 + ], + "spans": [ + { + "bbox": [ + 89, + 524, + 280, + 537 + ], + "score": 1.0, + "content": "Figure 1: Goal conditioned ’U’ shaped maze and", + "type": "text" + }, + { + "bbox": [ + 280, + 525, + 290, + 534 + ], + "score": 0.26, + "content": "\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 524, + 521, + 537 + ], + "score": 1.0, + "content": "shaped maze. For each plot pair, the left illustrates a rendering", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 90, + 535, + 521, + 546 + ], + "spans": [ + { + "bbox": [ + 90, + 535, + 521, + 546 + ], + "score": 1.0, + "content": "of the maze type and the right shows the associated success rate throughout training for each method. Each line shows", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 545, + 521, + 556 + ], + "spans": [ + { + "bbox": [ + 89, + 545, + 521, + 556 + ], + "score": 1.0, + "content": "results averaged over 5 random initializations; the X-axis corresponds to epoch number and shaded regions show standard", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 555, + 364, + 567 + ], + "spans": [ + { + "bbox": [ + 89, + 555, + 352, + 567 + ], + "score": 1.0, + "content": "deviation. All metrics based on CER reference the performance of agent", + "type": "text" + }, + { + "bbox": [ + 352, + 555, + 360, + 564 + ], + "score": 0.64, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 555, + 364, + 567 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + } + ], + "index": 22.75 + }, + { + "type": "title", + "bbox": [ + 91, + 587, + 432, + 598 + ], + "lines": [ + { + "bbox": [ + 89, + 586, + 434, + 600 + ], + "spans": [ + { + "bbox": [ + 89, + 586, + 434, + 600 + ], + "score": 1.0, + "content": "4.1 COMBINING COMPETITIVE EXPERIENCE REPLAY WITH EXISTING METHODS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 91, + 607, + 521, + 652 + ], + "lines": [ + { + "bbox": [ + 89, + 606, + 522, + 621 + ], + "spans": [ + { + "bbox": [ + 89, + 606, + 522, + 621 + ], + "score": 1.0, + "content": "We start by asking whether CER improves performance and sample efficiency in a sparse reward task. To this", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 90, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 90, + 618, + 453, + 631 + ], + "score": 1.0, + "content": "end, we constructed two different mazes, an easier ’U’ shaped maze and a more difficult", + "type": "text" + }, + { + "bbox": [ + 453, + 618, + 465, + 629 + ], + "score": 0.32, + "content": "\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "shaped maze", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "spans": [ + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "score": 1.0, + "content": "(Figure 1). The goal of the ant agent is to reach the target mark by a red sphere, whose location is randomly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "score": 1.0, + "content": "sampled for each new episode. At each step, the agent obtains a reward of 0 if the goal has been achieved and", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 39, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 292, + 680 + ], + "lines": [ + { + "bbox": [ + 285, + 670, + 293, + 682 + ], + "spans": [ + { + "bbox": [ + 285, + 670, + 293, + 682 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 96, + 314, + 107 + ], + "lines": [ + { + "bbox": [ + 89, + 95, + 315, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 95, + 315, + 108 + ], + "score": 1.0, + "content": "3.2 GOAL CONDITIONED MULTI-AGENT LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 90, + 115, + 521, + 150 + ], + "lines": [ + { + "bbox": [ + 89, + 115, + 523, + 129 + ], + "spans": [ + { + "bbox": [ + 89, + 115, + 523, + 129 + ], + "score": 1.0, + "content": "We extend multi-agent DDPG (MADDPG), proposed by Lowe et al. (2017), for training using CER. MAD-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 89, + 127, + 521, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 127, + 521, + 140 + ], + "score": 1.0, + "content": "DPG attempts to learn a different policy per agent and a single, centralized critic that has access to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 137, + 286, + 151 + ], + "spans": [ + { + "bbox": [ + 89, + 137, + 286, + 151 + ], + "score": 1.0, + "content": "combined states, actions, and goals of all agents.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 89, + 115, + 523, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 155, + 521, + 200 + ], + "lines": [ + { + "bbox": [ + 89, + 154, + 522, + 168 + ], + "spans": [ + { + "bbox": [ + 89, + 154, + 245, + 168 + ], + "score": 1.0, + "content": "More precisely, consider a game with", + "type": "text" + }, + { + "bbox": [ + 246, + 156, + 256, + 165 + ], + "score": 0.83, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 154, + 414, + 168 + ], + "score": 1.0, + "content": "agents with policies parameterized by", + "type": "text" + }, + { + "bbox": [ + 414, + 155, + 487, + 167 + ], + "score": 0.92, + "content": "\\pmb { \\theta } = \\{ \\theta _ { 1 } , \\dots , \\theta _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 154, + 522, + 168 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 165, + 523, + 180 + ], + "spans": [ + { + "bbox": [ + 90, + 166, + 167, + 178 + ], + "score": 0.91, + "content": "\\pmb { \\pi } = \\{ \\bar { \\pi } _ { 1 } , . . . , \\bar { \\pi } _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 165, + 298, + 180 + ], + "score": 1.0, + "content": "be the set of all agent policies.", + "type": "text" + }, + { + "bbox": [ + 298, + 166, + 369, + 178 + ], + "score": 0.92, + "content": "\\mathbf { g } = [ \\boldsymbol { g } _ { 1 } , \\dots , \\boldsymbol { g } _ { N } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 165, + 523, + 180 + ], + "score": 1.0, + "content": "represents the concatenation of each", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 90, + 176, + 522, + 190 + ], + "spans": [ + { + "bbox": [ + 90, + 176, + 143, + 190 + ], + "score": 1.0, + "content": "agent’s goal,", + "type": "text" + }, + { + "bbox": [ + 143, + 177, + 211, + 189 + ], + "score": 0.92, + "content": "\\mathbf { s } = [ s _ { 1 } , \\ldots , s _ { N } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 176, + 325, + 190 + ], + "score": 1.0, + "content": "the concatenated states, and", + "type": "text" + }, + { + "bbox": [ + 325, + 177, + 396, + 189 + ], + "score": 0.92, + "content": "\\mathbf { a } = [ a _ { 1 } , \\ldots , a _ { N } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 176, + 522, + 190 + ], + "score": 1.0, + "content": "the concatenated actions. With", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 90, + 187, + 459, + 201 + ], + "spans": [ + { + "bbox": [ + 90, + 187, + 376, + 201 + ], + "score": 1.0, + "content": "this notation, we can write the gradient of the expected return for agent", + "type": "text" + }, + { + "bbox": [ + 376, + 190, + 380, + 198 + ], + "score": 0.62, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 187, + 385, + 201 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 385, + 188, + 444, + 200 + ], + "score": 0.93, + "content": "\\bar { J ( \\theta _ { i } ) } = \\mathbb { E } [ R _ { i } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 187, + 459, + 201 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 89, + 154, + 523, + 201 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 204, + 405, + 218 + ], + "lines": [ + { + "bbox": [ + 205, + 204, + 405, + 218 + ], + "spans": [ + { + "bbox": [ + 205, + 204, + 405, + 218 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\pi } } [ \\nabla _ { \\theta _ { i } } \\log \\pi _ { i } ( a _ { i } | s _ { i } , g _ { i } ) Q _ { i } ^ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "2e6850d92597d835ba628f97c0f7711ea1835645b432dfbb185d432047b1c797.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 205, + 204, + 405, + 218 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 89, + 223, + 369, + 236 + ], + "lines": [ + { + "bbox": [ + 89, + 222, + 370, + 237 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 200, + 237 + ], + "score": 1.0, + "content": "With deterministic policies", + "type": "text" + }, + { + "bbox": [ + 200, + 223, + 277, + 236 + ], + "score": 0.93, + "content": "{ \\pmb \\mu } = \\{ \\mu _ { 1 } , . . . , \\mu _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 222, + 370, + 237 + ], + "score": 1.0, + "content": ", the gradient becomes:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 89, + 222, + 370, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 239, + 423, + 254 + ], + "lines": [ + { + "bbox": [ + 187, + 239, + 423, + 254 + ], + "spans": [ + { + "bbox": [ + 187, + 239, + 423, + 254 + ], + "score": 0.89, + "content": "\\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\mu } } [ \\nabla _ { \\theta _ { i } } \\mu _ { i } ( s _ { i } , g _ { i } ) \\nabla _ { a _ { i } } Q _ { i } ^ { \\pmb { \\mu } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) | _ { a _ { i } = \\mu _ { i } ( s _ { i } , g _ { i } ) } ] ,", + "type": "interline_equation", + "image_path": "4135d952788d1437a8eb0c338c4eb28bd17da7bdc1e7d7f6e9980d410c2d2423.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 187, + 239, + 423, + 254 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 95, + 259, + 503, + 272 + ], + "lines": [ + { + "bbox": [ + 93, + 259, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 93, + 259, + 241, + 273 + ], + "score": 1.0, + "content": "The centralized action-value function", + "type": "text" + }, + { + "bbox": [ + 241, + 259, + 255, + 272 + ], + "score": 0.91, + "content": "Q _ { i } ^ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 259, + 443, + 273 + ], + "score": 1.0, + "content": ", which estimates the expected return for agent", + "type": "text" + }, + { + "bbox": [ + 443, + 261, + 447, + 270 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 259, + 506, + 273 + ], + "score": 1.0, + "content": ", is updated as:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 93, + 259, + 506, + 273 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 132, + 276, + 478, + 297 + ], + "lines": [ + { + "bbox": [ + 132, + 276, + 478, + 297 + ], + "spans": [ + { + "bbox": [ + 132, + 276, + 478, + 297 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\theta _ { i } ) = \\mathbb { E } _ { { \\mathbf s } , { \\mathbf a } , { \\mathbf r } , { \\mathbf s } ^ { \\prime } } [ ( Q _ { i } ^ { \\mu } ( { \\mathbf s } , { \\mathbf a } , { \\mathbf g } ) - y ) ^ { 2 } ] , \\quad y = r _ { i } + \\gamma Q _ { i } ^ { \\mu ^ { \\prime } } ( { \\mathbf s } ^ { \\prime } , a _ { 1 } ^ { \\prime } , \\dots , a _ { N } ^ { \\prime } , { \\mathbf g } ) \\big | _ { a _ { j } ^ { \\prime } = \\mu _ { j } ^ { \\prime } ( s _ { j } ) } , } \\end{array}", + "type": "interline_equation", + "image_path": "2da34ef7b3aa9d33ff804f1b9ecbb628b3534a4c0a0ed55f49dacca81dfcfb39.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 132, + 276, + 478, + 297 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 303, + 522, + 328 + ], + "lines": [ + { + "bbox": [ + 88, + 301, + 522, + 317 + ], + "spans": [ + { + "bbox": [ + 88, + 301, + 116, + 317 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 117, + 303, + 198, + 316 + ], + "score": 0.92, + "content": "\\pmb { \\mu } ^ { \\prime } = \\{ \\pmb { \\mu } _ { \\theta _ { 1 } ^ { \\prime } } , . . . , \\pmb { \\mu } _ { \\theta _ { N } ^ { \\prime } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 301, + 403, + 317 + ], + "score": 1.0, + "content": "is the set of target policies with delayed parameters", + "type": "text" + }, + { + "bbox": [ + 404, + 303, + 413, + 315 + ], + "score": 0.89, + "content": "\\theta _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 301, + 522, + 317 + ], + "score": 1.0, + "content": ". In practice people usually", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 90, + 315, + 376, + 329 + ], + "spans": [ + { + "bbox": [ + 90, + 315, + 155, + 329 + ], + "score": 1.0, + "content": "soft update it as", + "type": "text" + }, + { + "bbox": [ + 156, + 316, + 244, + 328 + ], + "score": 0.92, + "content": "\\mathbf { \\dot { \\theta } } _ { i } ^ { \\prime } \\gets \\tau \\dot { \\theta } _ { i } + ( 1 - \\tau ) \\theta _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 315, + 275, + 329 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 275, + 317, + 282, + 326 + ], + "score": 0.79, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 315, + 376, + 329 + ], + "score": 1.0, + "content": "is a Polyak coefficient.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 88, + 301, + 522, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 332, + 520, + 377 + ], + "lines": [ + { + "bbox": [ + 90, + 332, + 521, + 344 + ], + "spans": [ + { + "bbox": [ + 90, + 332, + 521, + 344 + ], + "score": 1.0, + "content": "During training, we collect paired rollouts as described above, apply any re-labelling strategies (such as CER", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 88, + 342, + 522, + 357 + ], + "spans": [ + { + "bbox": [ + 88, + 342, + 522, + 357 + ], + "score": 1.0, + "content": "or HER) and use the MADDPG algorithm to train both agent policies and the centralized critic, concatenating", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 90, + 354, + 522, + 367 + ], + "spans": [ + { + "bbox": [ + 90, + 354, + 522, + 367 + ], + "score": 1.0, + "content": "states, actions, and goals where appropriate. Putting everything together, we summarize the full method in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 365, + 145, + 379 + ], + "spans": [ + { + "bbox": [ + 89, + 365, + 145, + 379 + ], + "score": 1.0, + "content": "Algorithm 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 88, + 332, + 522, + 379 + ] + }, + { + "type": "title", + "bbox": [ + 91, + 393, + 178, + 405 + ], + "lines": [ + { + "bbox": [ + 89, + 393, + 179, + 407 + ], + "spans": [ + { + "bbox": [ + 89, + 393, + 179, + 407 + ], + "score": 1.0, + "content": "4 EXPERIMENT", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "image", + "bbox": [ + 97, + 420, + 512, + 518 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 97, + 420, + 512, + 518 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 97, + 420, + 512, + 518 + ], + "spans": [ + { + "bbox": [ + 97, + 420, + 512, + 518 + ], + "score": 0.968, + "type": "image", + "image_path": "e055e6b40d22d0067714f3e76101f2b2ff58f924492920fd2548f0f2112a06b3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 97, + 420, + 512, + 452.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 97, + 452.6666666666667, + 512, + 485.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 97, + 485.33333333333337, + 512, + 518.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 90, + 524, + 521, + 565 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 524, + 521, + 537 + ], + "spans": [ + { + "bbox": [ + 89, + 524, + 280, + 537 + ], + "score": 1.0, + "content": "Figure 1: Goal conditioned ’U’ shaped maze and", + "type": "text" + }, + { + "bbox": [ + 280, + 525, + 290, + 534 + ], + "score": 0.26, + "content": "\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 524, + 521, + 537 + ], + "score": 1.0, + "content": "shaped maze. For each plot pair, the left illustrates a rendering", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 90, + 535, + 521, + 546 + ], + "spans": [ + { + "bbox": [ + 90, + 535, + 521, + 546 + ], + "score": 1.0, + "content": "of the maze type and the right shows the associated success rate throughout training for each method. Each line shows", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 545, + 521, + 556 + ], + "spans": [ + { + "bbox": [ + 89, + 545, + 521, + 556 + ], + "score": 1.0, + "content": "results averaged over 5 random initializations; the X-axis corresponds to epoch number and shaded regions show standard", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 555, + 364, + 567 + ], + "spans": [ + { + "bbox": [ + 89, + 555, + 352, + 567 + ], + "score": 1.0, + "content": "deviation. All metrics based on CER reference the performance of agent", + "type": "text" + }, + { + "bbox": [ + 352, + 555, + 360, + 564 + ], + "score": 0.64, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 555, + 364, + 567 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + } + ], + "index": 22.75 + }, + { + "type": "title", + "bbox": [ + 91, + 587, + 432, + 598 + ], + "lines": [ + { + "bbox": [ + 89, + 586, + 434, + 600 + ], + "spans": [ + { + "bbox": [ + 89, + 586, + 434, + 600 + ], + "score": 1.0, + "content": "4.1 COMBINING COMPETITIVE EXPERIENCE REPLAY WITH EXISTING METHODS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 91, + 607, + 521, + 652 + ], + "lines": [ + { + "bbox": [ + 89, + 606, + 522, + 621 + ], + "spans": [ + { + "bbox": [ + 89, + 606, + 522, + 621 + ], + "score": 1.0, + "content": "We start by asking whether CER improves performance and sample efficiency in a sparse reward task. To this", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 90, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 90, + 618, + 453, + 631 + ], + "score": 1.0, + "content": "end, we constructed two different mazes, an easier ’U’ shaped maze and a more difficult", + "type": "text" + }, + { + "bbox": [ + 453, + 618, + 465, + 629 + ], + "score": 0.32, + "content": "\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "shaped maze", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "spans": [ + { + "bbox": [ + 89, + 628, + 521, + 642 + ], + "score": 1.0, + "content": "(Figure 1). The goal of the ant agent is to reach the target mark by a red sphere, whose location is randomly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "score": 1.0, + "content": "sampled for each new episode. At each step, the agent obtains a reward of 0 if the goal has been achieved and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 91, + 94, + 522, + 109 + ], + "spans": [ + { + "bbox": [ + 91, + 96, + 104, + 106 + ], + "score": 0.58, + "content": "- 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 105, + 94, + 522, + 109 + ], + "score": 1.0, + "content": "otherwise. Additional details of the ant maze environments are found in Appendix B. An advantage of", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 90, + 106, + 521, + 120 + ], + "spans": [ + { + "bbox": [ + 90, + 106, + 521, + 120 + ], + "score": 1.0, + "content": "this environment is that it can be reset to any given state, facilitating comparison between our two proposed", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 90, + 118, + 381, + 130 + ], + "spans": [ + { + "bbox": [ + 90, + 118, + 381, + 130 + ], + "score": 1.0, + "content": "variants of CER (int-CER requires the environment to have this feature).", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 29.5, + "bbox_fs": [ + 89, + 606, + 522, + 653 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 91, + 96, + 521, + 129 + ], + "lines": [ + { + "bbox": [ + 91, + 94, + 522, + 109 + ], + "spans": [ + { + "bbox": [ + 91, + 96, + 104, + 106 + ], + "score": 0.58, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 105, + 94, + 522, + 109 + ], + "score": 1.0, + "content": "otherwise. Additional details of the ant maze environments are found in Appendix B. An advantage of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 90, + 106, + 521, + 120 + ], + "spans": [ + { + "bbox": [ + 90, + 106, + 521, + 120 + ], + "score": 1.0, + "content": "this environment is that it can be reset to any given state, facilitating comparison between our two proposed", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 90, + 118, + 381, + 130 + ], + "spans": [ + { + "bbox": [ + 90, + 118, + 381, + 130 + ], + "score": 1.0, + "content": "variants of CER (int-CER requires the environment to have this feature).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 91, + 135, + 522, + 288 + ], + "lines": [ + { + "bbox": [ + 90, + 135, + 522, + 147 + ], + "spans": [ + { + "bbox": [ + 90, + 135, + 522, + 147 + ], + "score": 1.0, + "content": "We compare agents trained with HER, both variants of CER, and both variants of CER with HER. Since", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 90, + 146, + 523, + 158 + ], + "spans": [ + { + "bbox": [ + 90, + 146, + 523, + 158 + ], + "score": 1.0, + "content": "each uses DDPG as a backbone algorithm, we also include results from a policy trained using DDPG alone.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 88, + 154, + 523, + 171 + ], + "spans": [ + { + "bbox": [ + 88, + 154, + 523, + 171 + ], + "score": 1.0, + "content": "To confirm that any difficulties are not simply due to DDPG, we include results from a policy trained using", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 168, + 523, + 180 + ], + "spans": [ + { + "bbox": [ + 89, + 168, + 523, + 180 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO) (Schulman et al., 2017). The results for each maze are shown in Figure 1.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 89, + 177, + 523, + 191 + ], + "spans": [ + { + "bbox": [ + 89, + 177, + 523, + 191 + ], + "score": 1.0, + "content": "DDPG and PPO each performs quite poorly by itself, likely due to the sparsity of the reward in this task set", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 189, + 523, + 202 + ], + "spans": [ + { + "bbox": [ + 89, + 189, + 523, + 202 + ], + "score": 1.0, + "content": "up. Adding CER to DDPG partially overcomes this limitation in terms of final success rate, and, notably,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 200, + 523, + 214 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 523, + 214 + ], + "score": 1.0, + "content": "reaches this stronger result with many fewer examples. A similar result is seen when adding HER to DDPG.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 88, + 210, + 523, + 226 + ], + "spans": [ + { + "bbox": [ + 88, + 210, + 523, + 226 + ], + "score": 1.0, + "content": "Importantly, adding both HER and CER offers the best improvement of final success rate without requiring", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 222, + 522, + 235 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 522, + 235 + ], + "score": 1.0, + "content": "any observable increase in the number of episodes, as compared to each of the other baselines. These results", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 88, + 233, + 523, + 246 + ], + "spans": [ + { + "bbox": [ + 88, + 233, + 523, + 246 + ], + "score": 1.0, + "content": "support our hypothesis that existing state-of-the-art methods do not sufficiently address the exploration", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 244, + 522, + 257 + ], + "spans": [ + { + "bbox": [ + 89, + 244, + 522, + 257 + ], + "score": 1.0, + "content": "challenge intrinsic to sparse reward environments. Furthermore, these results show that CER improves both", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 255, + 523, + 268 + ], + "spans": [ + { + "bbox": [ + 89, + 255, + 523, + 268 + ], + "score": 1.0, + "content": "the quality and efficiency of learning in such challenging settings, especially when combined with HER.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 266, + 520, + 278 + ], + "spans": [ + { + "bbox": [ + 89, + 266, + 520, + 278 + ], + "score": 1.0, + "content": "These results also show that int-CER tends to outperform ind-CER. As such, int-CER is considered preferable", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 276, + 281, + 290 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 281, + 290 + ], + "score": 1.0, + "content": "but has more restrictive technical requirements.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 90, + 294, + 521, + 392 + ], + "lines": [ + { + "bbox": [ + 88, + 293, + 522, + 307 + ], + "spans": [ + { + "bbox": [ + 88, + 293, + 522, + 307 + ], + "score": 1.0, + "content": "To examine the efficacy of our method on a broader range of tasks, we evaluate the change in performance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 304, + 522, + 318 + ], + "spans": [ + { + "bbox": [ + 88, + 304, + 522, + 318 + ], + "score": 1.0, + "content": "when ind-CER is added to HER on the challenging multi-goal sparse reward environments introduced in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 88, + 315, + 522, + 328 + ], + "spans": [ + { + "bbox": [ + 88, + 315, + 522, + 328 + ], + "score": 1.0, + "content": "Plappert et al. (2018). (Note: we would prefer to examine int-CER but are prevented by technical issues related", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 327, + 522, + 339 + ], + "spans": [ + { + "bbox": [ + 89, + 327, + 522, + 339 + ], + "score": 1.0, + "content": "to the environment.) Results for each of the 12 tasks we trained on are illustrated in Figure 3. Our method,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 338, + 521, + 350 + ], + "spans": [ + { + "bbox": [ + 89, + 338, + 521, + 350 + ], + "score": 1.0, + "content": "when used on top of HER, improves performance wherever it is not already saturated. This is especially", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 349, + 522, + 361 + ], + "spans": [ + { + "bbox": [ + 89, + 349, + 522, + 361 + ], + "score": 1.0, + "content": "true on harder tasks, where HER alone achieves only modest success (e.g., HandManipulateEggFull and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 89, + 359, + 522, + 372 + ], + "spans": [ + { + "bbox": [ + 89, + 359, + 522, + 372 + ], + "score": 1.0, + "content": "handManipulatePenRotate). These results further support the conclusion that existing methods often fail to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 370, + 521, + 383 + ], + "spans": [ + { + "bbox": [ + 89, + 370, + 521, + 383 + ], + "score": 1.0, + "content": "achieve sufficient exploration. Our method, which provides a targeted solution to this challenge, naturally", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 382, + 171, + 393 + ], + "spans": [ + { + "bbox": [ + 89, + 382, + 171, + 393 + ], + "score": 1.0, + "content": "complements HER.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21 + }, + { + "type": "image", + "bbox": [ + 97, + 405, + 519, + 499 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 97, + 405, + 519, + 499 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 97, + 405, + 519, + 499 + ], + "spans": [ + { + "bbox": [ + 97, + 405, + 519, + 499 + ], + "score": 0.965, + "type": "image", + "image_path": "27e1273067bcfd690c40306cd806da119675b405423efbb3426709f9cc13b946.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 97, + 405, + 519, + 436.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 97, + 436.3333333333333, + 519, + 467.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 97, + 467.66666666666663, + 519, + 498.99999999999994 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 89, + 502, + 519, + 523 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 502, + 521, + 514 + ], + "spans": [ + { + "bbox": [ + 90, + 502, + 521, + 514 + ], + "score": 1.0, + "content": "Figure 2: Comparing CER and ICM with and without HER. Each line shows task success rate averaged over 5 random", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 90, + 512, + 386, + 523 + ], + "spans": [ + { + "bbox": [ + 90, + 512, + 144, + 523 + ], + "score": 1.0, + "content": "initializations.", + "type": "text" + }, + { + "bbox": [ + 144, + 513, + 152, + 522 + ], + "score": 0.35, + "content": "\\mathrm { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 512, + 386, + 523 + ], + "score": 1.0, + "content": "-axis is epoch number; shaded regions denote standard deviation.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "index": 28.25 + }, + { + "type": "title", + "bbox": [ + 91, + 543, + 365, + 554 + ], + "lines": [ + { + "bbox": [ + 89, + 542, + 367, + 556 + ], + "spans": [ + { + "bbox": [ + 89, + 542, + 367, + 556 + ], + "score": 1.0, + "content": "4.2 COMPARING CER WITH CURIOSITY-DRIVEN EXPLORATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 91, + 563, + 521, + 651 + ], + "lines": [ + { + "bbox": [ + 89, + 562, + 522, + 577 + ], + "spans": [ + { + "bbox": [ + 89, + 562, + 522, + 577 + ], + "score": 1.0, + "content": "CER is designed to encourage exploration, but, unlike other methods, uses the behavior of a competitor agent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 574, + 523, + 587 + ], + "spans": [ + { + "bbox": [ + 88, + 574, + 523, + 587 + ], + "score": 1.0, + "content": "to automatically determine the criteria for exploratory reward. Numerous methods have been proposed for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 585, + 522, + 597 + ], + "spans": [ + { + "bbox": [ + 89, + 585, + 522, + 597 + ], + "score": 1.0, + "content": "improving exploration; for example, count-based exploration (Bellemare et al., 2016; Tang et al., 2017),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 595, + 523, + 609 + ], + "spans": [ + { + "bbox": [ + 89, + 595, + 523, + 609 + ], + "score": 1.0, + "content": "VIME (Houthooft et al., 2016), bootstrap DQN (Osband et al., 2016), goal exploration process (Forestier", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 607, + 523, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 607, + 523, + 620 + ], + "score": 1.0, + "content": "et al., 2017), parameter space noise (Plappert et al., 2017), dynamics curiosity and boredom (Schmidhuber,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "1991), and EX2 (Fu et al., 2017). One recent and popular method, intrinsic curiosity module (ICM) (Pathak", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 628, + 523, + 642 + ], + "spans": [ + { + "bbox": [ + 88, + 628, + 523, + 642 + ], + "score": 1.0, + "content": "et al., 2017; Burda et al., 2018), augments task reward with curiosity-driven reward. Much like CER and HER,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "score": 1.0, + "content": "ICM provides a method to relabel the reward associated with each transition; this reward comes from the", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 293, + 680 + ], + "lines": [ + { + "bbox": [ + 286, + 671, + 293, + 682 + ], + "spans": [ + { + "bbox": [ + 286, + 671, + 293, + 682 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 91, + 96, + 521, + 129 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 90, + 94, + 522, + 130 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 91, + 135, + 522, + 288 + ], + "lines": [ + { + "bbox": [ + 90, + 135, + 522, + 147 + ], + "spans": [ + { + "bbox": [ + 90, + 135, + 522, + 147 + ], + "score": 1.0, + "content": "We compare agents trained with HER, both variants of CER, and both variants of CER with HER. Since", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 90, + 146, + 523, + 158 + ], + "spans": [ + { + "bbox": [ + 90, + 146, + 523, + 158 + ], + "score": 1.0, + "content": "each uses DDPG as a backbone algorithm, we also include results from a policy trained using DDPG alone.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 88, + 154, + 523, + 171 + ], + "spans": [ + { + "bbox": [ + 88, + 154, + 523, + 171 + ], + "score": 1.0, + "content": "To confirm that any difficulties are not simply due to DDPG, we include results from a policy trained using", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 168, + 523, + 180 + ], + "spans": [ + { + "bbox": [ + 89, + 168, + 523, + 180 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO) (Schulman et al., 2017). The results for each maze are shown in Figure 1.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 89, + 177, + 523, + 191 + ], + "spans": [ + { + "bbox": [ + 89, + 177, + 523, + 191 + ], + "score": 1.0, + "content": "DDPG and PPO each performs quite poorly by itself, likely due to the sparsity of the reward in this task set", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 189, + 523, + 202 + ], + "spans": [ + { + "bbox": [ + 89, + 189, + 523, + 202 + ], + "score": 1.0, + "content": "up. Adding CER to DDPG partially overcomes this limitation in terms of final success rate, and, notably,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 200, + 523, + 214 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 523, + 214 + ], + "score": 1.0, + "content": "reaches this stronger result with many fewer examples. A similar result is seen when adding HER to DDPG.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 88, + 210, + 523, + 226 + ], + "spans": [ + { + "bbox": [ + 88, + 210, + 523, + 226 + ], + "score": 1.0, + "content": "Importantly, adding both HER and CER offers the best improvement of final success rate without requiring", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 222, + 522, + 235 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 522, + 235 + ], + "score": 1.0, + "content": "any observable increase in the number of episodes, as compared to each of the other baselines. These results", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 88, + 233, + 523, + 246 + ], + "spans": [ + { + "bbox": [ + 88, + 233, + 523, + 246 + ], + "score": 1.0, + "content": "support our hypothesis that existing state-of-the-art methods do not sufficiently address the exploration", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 244, + 522, + 257 + ], + "spans": [ + { + "bbox": [ + 89, + 244, + 522, + 257 + ], + "score": 1.0, + "content": "challenge intrinsic to sparse reward environments. Furthermore, these results show that CER improves both", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 255, + 523, + 268 + ], + "spans": [ + { + "bbox": [ + 89, + 255, + 523, + 268 + ], + "score": 1.0, + "content": "the quality and efficiency of learning in such challenging settings, especially when combined with HER.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 266, + 520, + 278 + ], + "spans": [ + { + "bbox": [ + 89, + 266, + 520, + 278 + ], + "score": 1.0, + "content": "These results also show that int-CER tends to outperform ind-CER. As such, int-CER is considered preferable", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 276, + 281, + 290 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 281, + 290 + ], + "score": 1.0, + "content": "but has more restrictive technical requirements.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 9.5, + "bbox_fs": [ + 88, + 135, + 523, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 294, + 521, + 392 + ], + "lines": [ + { + "bbox": [ + 88, + 293, + 522, + 307 + ], + "spans": [ + { + "bbox": [ + 88, + 293, + 522, + 307 + ], + "score": 1.0, + "content": "To examine the efficacy of our method on a broader range of tasks, we evaluate the change in performance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 304, + 522, + 318 + ], + "spans": [ + { + "bbox": [ + 88, + 304, + 522, + 318 + ], + "score": 1.0, + "content": "when ind-CER is added to HER on the challenging multi-goal sparse reward environments introduced in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 88, + 315, + 522, + 328 + ], + "spans": [ + { + "bbox": [ + 88, + 315, + 522, + 328 + ], + "score": 1.0, + "content": "Plappert et al. (2018). (Note: we would prefer to examine int-CER but are prevented by technical issues related", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 327, + 522, + 339 + ], + "spans": [ + { + "bbox": [ + 89, + 327, + 522, + 339 + ], + "score": 1.0, + "content": "to the environment.) Results for each of the 12 tasks we trained on are illustrated in Figure 3. Our method,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 338, + 521, + 350 + ], + "spans": [ + { + "bbox": [ + 89, + 338, + 521, + 350 + ], + "score": 1.0, + "content": "when used on top of HER, improves performance wherever it is not already saturated. This is especially", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 349, + 522, + 361 + ], + "spans": [ + { + "bbox": [ + 89, + 349, + 522, + 361 + ], + "score": 1.0, + "content": "true on harder tasks, where HER alone achieves only modest success (e.g., HandManipulateEggFull and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 89, + 359, + 522, + 372 + ], + "spans": [ + { + "bbox": [ + 89, + 359, + 522, + 372 + ], + "score": 1.0, + "content": "handManipulatePenRotate). These results further support the conclusion that existing methods often fail to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 370, + 521, + 383 + ], + "spans": [ + { + "bbox": [ + 89, + 370, + 521, + 383 + ], + "score": 1.0, + "content": "achieve sufficient exploration. Our method, which provides a targeted solution to this challenge, naturally", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 382, + 171, + 393 + ], + "spans": [ + { + "bbox": [ + 89, + 382, + 171, + 393 + ], + "score": 1.0, + "content": "complements HER.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21, + "bbox_fs": [ + 88, + 293, + 522, + 393 + ] + }, + { + "type": "image", + "bbox": [ + 97, + 405, + 519, + 499 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 97, + 405, + 519, + 499 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 97, + 405, + 519, + 499 + ], + "spans": [ + { + "bbox": [ + 97, + 405, + 519, + 499 + ], + "score": 0.965, + "type": "image", + "image_path": "27e1273067bcfd690c40306cd806da119675b405423efbb3426709f9cc13b946.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 97, + 405, + 519, + 436.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 97, + 436.3333333333333, + 519, + 467.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 97, + 467.66666666666663, + 519, + 498.99999999999994 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 89, + 502, + 519, + 523 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 502, + 521, + 514 + ], + "spans": [ + { + "bbox": [ + 90, + 502, + 521, + 514 + ], + "score": 1.0, + "content": "Figure 2: Comparing CER and ICM with and without HER. Each line shows task success rate averaged over 5 random", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 90, + 512, + 386, + 523 + ], + "spans": [ + { + "bbox": [ + 90, + 512, + 144, + 523 + ], + "score": 1.0, + "content": "initializations.", + "type": "text" + }, + { + "bbox": [ + 144, + 513, + 152, + 522 + ], + "score": 0.35, + "content": "\\mathrm { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 512, + 386, + 523 + ], + "score": 1.0, + "content": "-axis is epoch number; shaded regions denote standard deviation.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "index": 28.25 + }, + { + "type": "title", + "bbox": [ + 91, + 543, + 365, + 554 + ], + "lines": [ + { + "bbox": [ + 89, + 542, + 367, + 556 + ], + "spans": [ + { + "bbox": [ + 89, + 542, + 367, + 556 + ], + "score": 1.0, + "content": "4.2 COMPARING CER WITH CURIOSITY-DRIVEN EXPLORATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 91, + 563, + 521, + 651 + ], + "lines": [ + { + "bbox": [ + 89, + 562, + 522, + 577 + ], + "spans": [ + { + "bbox": [ + 89, + 562, + 522, + 577 + ], + "score": 1.0, + "content": "CER is designed to encourage exploration, but, unlike other methods, uses the behavior of a competitor agent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 574, + 523, + 587 + ], + "spans": [ + { + "bbox": [ + 88, + 574, + 523, + 587 + ], + "score": 1.0, + "content": "to automatically determine the criteria for exploratory reward. Numerous methods have been proposed for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 585, + 522, + 597 + ], + "spans": [ + { + "bbox": [ + 89, + 585, + 522, + 597 + ], + "score": 1.0, + "content": "improving exploration; for example, count-based exploration (Bellemare et al., 2016; Tang et al., 2017),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 595, + 523, + 609 + ], + "spans": [ + { + "bbox": [ + 89, + 595, + 523, + 609 + ], + "score": 1.0, + "content": "VIME (Houthooft et al., 2016), bootstrap DQN (Osband et al., 2016), goal exploration process (Forestier", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 607, + 523, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 607, + 523, + 620 + ], + "score": 1.0, + "content": "et al., 2017), parameter space noise (Plappert et al., 2017), dynamics curiosity and boredom (Schmidhuber,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "1991), and EX2 (Fu et al., 2017). One recent and popular method, intrinsic curiosity module (ICM) (Pathak", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 88, + 628, + 523, + 642 + ], + "spans": [ + { + "bbox": [ + 88, + 628, + 523, + 642 + ], + "score": 1.0, + "content": "et al., 2017; Burda et al., 2018), augments task reward with curiosity-driven reward. Much like CER and HER,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 521, + 653 + ], + "score": 1.0, + "content": "ICM provides a method to relabel the reward associated with each transition; this reward comes from the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 89, + 408, + 522, + 421 + ], + "spans": [ + { + "bbox": [ + 89, + 408, + 522, + 421 + ], + "score": 1.0, + "content": "error in a jointly trained forward prediction model. We compare how CER and ICM affect task performance", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 419, + 522, + 432 + ], + "spans": [ + { + "bbox": [ + 89, + 419, + 522, + 432 + ], + "score": 1.0, + "content": "and how they interact with HER across 4 tasks where we were able to implement ICM successfully. Figure 2", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 90, + 431, + 521, + 442 + ], + "spans": [ + { + "bbox": [ + 90, + 431, + 521, + 442 + ], + "score": 1.0, + "content": "shows the results on several robotic control and maze tasks. We observe CER to consistently outperform ICM", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 441, + 522, + 453 + ], + "spans": [ + { + "bbox": [ + 89, + 441, + 522, + 453 + ], + "score": 1.0, + "content": "when each is implemented in isolation. In addition, we observe HER to benefit more from the addition of", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 88, + 451, + 523, + 466 + ], + "spans": [ + { + "bbox": [ + 88, + 451, + 523, + 466 + ], + "score": 1.0, + "content": "CER than of ICM. Compared to ICM, CER also tends to improve the speed of learning. These results suggest", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 463, + 522, + 475 + ], + "spans": [ + { + "bbox": [ + 89, + 463, + 522, + 475 + ], + "score": 1.0, + "content": "that the underlying problem is not a lack of diversity of states being visited but the size of the state space that", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 88, + 473, + 522, + 487 + ], + "spans": [ + { + "bbox": [ + 88, + 473, + 522, + 487 + ], + "score": 1.0, + "content": "the agent must explore (as also discussed in Andrychowicz et al. (2017)). One interpretation is that, since the", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 485, + 521, + 498 + ], + "spans": [ + { + "bbox": [ + 89, + 485, + 521, + 498 + ], + "score": 1.0, + "content": "two CER agents are both learning the task, the dynamics of their competition encourage more task-relevant", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 90, + 496, + 521, + 509 + ], + "spans": [ + { + "bbox": [ + 90, + 496, + 521, + 509 + ], + "score": 1.0, + "content": "exploration. From this perspective, CER provides an automatic curriculum for exploration such that visited", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 506, + 229, + 520 + ], + "spans": [ + { + "bbox": [ + 89, + 506, + 229, + 520 + ], + "score": 1.0, + "content": "states are utilized more efficiently.", + "type": "text", + "cross_page": true + } + ], + "index": 14 + } + ], + "index": 35.5, + "bbox_fs": [ + 88, + 562, + 523, + 653 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 101, + 93, + 505, + 374 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 101, + 93, + 505, + 374 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 101, + 93, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 101, + 93, + 505, + 374 + ], + "score": 0.977, + "type": "image", + "image_path": "3e71c35ab545ef7c2cf7fe70aac3c1b801aeaa9d69edeae00e49c9c58f1ca488.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 101, + 93, + 505, + 186.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 101, + 186.66666666666669, + 505, + 280.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 101, + 280.33333333333337, + 505, + 374.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 89, + 377, + 520, + 398 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 376, + 521, + 388 + ], + "spans": [ + { + "bbox": [ + 90, + 376, + 521, + 388 + ], + "score": 1.0, + "content": "Figure 3: Evaluation of HER with ind-CER across different robotic control environments. Each line shows results", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 387, + 492, + 398 + ], + "spans": [ + { + "bbox": [ + 89, + 387, + 492, + 398 + ], + "score": 1.0, + "content": "averaged over 5 random initializations. X-axis shows epoch number; shaded regions denote standard deviation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 91, + 408, + 521, + 518 + ], + "lines": [ + { + "bbox": [ + 89, + 408, + 522, + 421 + ], + "spans": [ + { + "bbox": [ + 89, + 408, + 522, + 421 + ], + "score": 1.0, + "content": "error in a jointly trained forward prediction model. We compare how CER and ICM affect task performance", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 419, + 522, + 432 + ], + "spans": [ + { + "bbox": [ + 89, + 419, + 522, + 432 + ], + "score": 1.0, + "content": "and how they interact with HER across 4 tasks where we were able to implement ICM successfully. Figure 2", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 90, + 431, + 521, + 442 + ], + "spans": [ + { + "bbox": [ + 90, + 431, + 521, + 442 + ], + "score": 1.0, + "content": "shows the results on several robotic control and maze tasks. We observe CER to consistently outperform ICM", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 441, + 522, + 453 + ], + "spans": [ + { + "bbox": [ + 89, + 441, + 522, + 453 + ], + "score": 1.0, + "content": "when each is implemented in isolation. In addition, we observe HER to benefit more from the addition of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 88, + 451, + 523, + 466 + ], + "spans": [ + { + "bbox": [ + 88, + 451, + 523, + 466 + ], + "score": 1.0, + "content": "CER than of ICM. Compared to ICM, CER also tends to improve the speed of learning. These results suggest", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 463, + 522, + 475 + ], + "spans": [ + { + "bbox": [ + 89, + 463, + 522, + 475 + ], + "score": 1.0, + "content": "that the underlying problem is not a lack of diversity of states being visited but the size of the state space that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 88, + 473, + 522, + 487 + ], + "spans": [ + { + "bbox": [ + 88, + 473, + 522, + 487 + ], + "score": 1.0, + "content": "the agent must explore (as also discussed in Andrychowicz et al. (2017)). One interpretation is that, since the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 485, + 521, + 498 + ], + "spans": [ + { + "bbox": [ + 89, + 485, + 521, + 498 + ], + "score": 1.0, + "content": "two CER agents are both learning the task, the dynamics of their competition encourage more task-relevant", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 90, + 496, + 521, + 509 + ], + "spans": [ + { + "bbox": [ + 90, + 496, + 521, + 509 + ], + "score": 1.0, + "content": "exploration. From this perspective, CER provides an automatic curriculum for exploration such that visited", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 506, + 229, + 520 + ], + "spans": [ + { + "bbox": [ + 89, + 506, + 229, + 520 + ], + "score": 1.0, + "content": "states are utilized more efficiently.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 91, + 532, + 196, + 543 + ], + "lines": [ + { + "bbox": [ + 90, + 531, + 197, + 544 + ], + "spans": [ + { + "bbox": [ + 90, + 531, + 197, + 544 + ], + "score": 1.0, + "content": "4.3 ANALYSIS OF CER", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 90, + 552, + 521, + 652 + ], + "lines": [ + { + "bbox": [ + 85, + 552, + 509, + 587 + ], + "spans": [ + { + "bbox": [ + 85, + 552, + 281, + 587 + ], + "score": 1.0, + "content": "Figure 4 illustrates the success rates of agents of mini-batch samples whose reward is chang", + "type": "text" + }, + { + "bbox": [ + 281, + 553, + 290, + 562 + ], + "score": 0.79, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 552, + 309, + 587 + ], + "score": 1.0, + "content": "nd y C", + "type": "text" + }, + { + "bbox": [ + 309, + 553, + 318, + 562 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 552, + 447, + 587 + ], + "score": 1.0, + "content": "as well as the ‘effect ratio,’ whR during training, calculated as", + "type": "text" + }, + { + "bbox": [ + 480, + 552, + 509, + 587 + ], + "score": 1.0, + "content": "e fractiwhere", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 448, + 563, + 520, + 576 + ], + "spans": [ + { + "bbox": [ + 448, + 563, + 480, + 576 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\phi = \\frac { N } { M } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 564, + 520, + 573 + ], + "score": 0.76, + "content": "N", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 285, + 575, + 297, + 584 + ], + "spans": [ + { + "bbox": [ + 285, + 575, + 297, + 584 + ], + "score": 0.8, + "content": "M", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 585, + 522, + 598 + ], + "spans": [ + { + "bbox": [ + 88, + 585, + 522, + 598 + ], + "score": 1.0, + "content": "strong correspondence between the success rate and effect ratio, likely reflecting the influence of CER on the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 597, + 521, + 608 + ], + "spans": [ + { + "bbox": [ + 89, + 597, + 521, + 608 + ], + "score": 1.0, + "content": "learning dynamics. While a deeper analysis would be required to concretely understand the interplay of these", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 607, + 522, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 607, + 522, + 620 + ], + "score": 1.0, + "content": "two terms, we point out that CER re-labels a substantial fraction of rewards in the mini-batch. Interestingly,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 88, + 617, + 522, + 632 + ], + "spans": [ + { + "bbox": [ + 88, + 617, + 522, + 632 + ], + "score": 1.0, + "content": "even the relatively small effect ratio observed in the first few epochs is enough support rapid learning. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 89, + 629, + 522, + 643 + ], + "spans": [ + { + "bbox": [ + 89, + 629, + 522, + 643 + ], + "score": 1.0, + "content": "speculate that the sampling strategy used in int-CER provides a more targeted re-labelling, leading to the more", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 640, + 523, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 251, + 653 + ], + "score": 1.0, + "content": "rapid increase in success rate for agent", + "type": "text" + }, + { + "bbox": [ + 251, + 642, + 259, + 650 + ], + "score": 0.81, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 640, + 357, + 653 + ], + "score": 1.0, + "content": ". We observe that agent", + "type": "text" + }, + { + "bbox": [ + 357, + 642, + 366, + 650 + ], + "score": 0.83, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 640, + 523, + 653 + ], + "score": 1.0, + "content": "reaches a lower level of performance.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 51 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 51 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 292, + 679 + ], + "lines": [ + { + "bbox": [ + 285, + 670, + 293, + 682 + ], + "spans": [ + { + "bbox": [ + 285, + 670, + 293, + 682 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 101, + 93, + 505, + 374 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 101, + 93, + 505, + 374 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 101, + 93, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 101, + 93, + 505, + 374 + ], + "score": 0.977, + "type": "image", + "image_path": "3e71c35ab545ef7c2cf7fe70aac3c1b801aeaa9d69edeae00e49c9c58f1ca488.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 101, + 93, + 505, + 186.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 101, + 186.66666666666669, + 505, + 280.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 101, + 280.33333333333337, + 505, + 374.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 89, + 377, + 520, + 398 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 376, + 521, + 388 + ], + "spans": [ + { + "bbox": [ + 90, + 376, + 521, + 388 + ], + "score": 1.0, + "content": "Figure 3: Evaluation of HER with ind-CER across different robotic control environments. Each line shows results", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 387, + 492, + 398 + ], + "spans": [ + { + "bbox": [ + 89, + 387, + 492, + 398 + ], + "score": 1.0, + "content": "averaged over 5 random initializations. X-axis shows epoch number; shaded regions denote standard deviation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 91, + 408, + 521, + 518 + ], + "lines": [], + "index": 9.5, + "bbox_fs": [ + 88, + 408, + 523, + 520 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 91, + 532, + 196, + 543 + ], + "lines": [ + { + "bbox": [ + 90, + 531, + 197, + 544 + ], + "spans": [ + { + "bbox": [ + 90, + 531, + 197, + 544 + ], + "score": 1.0, + "content": "4.3 ANALYSIS OF CER", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "list", + "bbox": [ + 90, + 552, + 521, + 652 + ], + "lines": [ + { + "bbox": [ + 85, + 552, + 509, + 587 + ], + "spans": [ + { + "bbox": [ + 85, + 552, + 281, + 587 + ], + "score": 1.0, + "content": "Figure 4 illustrates the success rates of agents of mini-batch samples whose reward is chang", + "type": "text" + }, + { + "bbox": [ + 281, + 553, + 290, + 562 + ], + "score": 0.79, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 552, + 309, + 587 + ], + "score": 1.0, + "content": "nd y C", + "type": "text" + }, + { + "bbox": [ + 309, + 553, + 318, + 562 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 552, + 447, + 587 + ], + "score": 1.0, + "content": "as well as the ‘effect ratio,’ whR during training, calculated as", + "type": "text" + }, + { + "bbox": [ + 480, + 552, + 509, + 587 + ], + "score": 1.0, + "content": "e fractiwhere", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 448, + 563, + 520, + 576 + ], + "spans": [ + { + "bbox": [ + 448, + 563, + 480, + 576 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\phi = \\frac { N } { M } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 564, + 520, + 573 + ], + "score": 0.76, + "content": "N", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 285, + 575, + 297, + 584 + ], + "spans": [ + { + "bbox": [ + 285, + 575, + 297, + 584 + ], + "score": 0.8, + "content": "M", + "type": "inline_equation" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 585, + 522, + 598 + ], + "spans": [ + { + "bbox": [ + 88, + 585, + 522, + 598 + ], + "score": 1.0, + "content": "strong correspondence between the success rate and effect ratio, likely reflecting the influence of CER on the", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 597, + 521, + 608 + ], + "spans": [ + { + "bbox": [ + 89, + 597, + 521, + 608 + ], + "score": 1.0, + "content": "learning dynamics. While a deeper analysis would be required to concretely understand the interplay of these", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 607, + 522, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 607, + 522, + 620 + ], + "score": 1.0, + "content": "two terms, we point out that CER re-labels a substantial fraction of rewards in the mini-batch. Interestingly,", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 617, + 522, + 632 + ], + "spans": [ + { + "bbox": [ + 88, + 617, + 522, + 632 + ], + "score": 1.0, + "content": "even the relatively small effect ratio observed in the first few epochs is enough support rapid learning. We", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 629, + 522, + 643 + ], + "spans": [ + { + "bbox": [ + 89, + 629, + 522, + 643 + ], + "score": 1.0, + "content": "speculate that the sampling strategy used in int-CER provides a more targeted re-labelling, leading to the more", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 640, + 523, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 251, + 653 + ], + "score": 1.0, + "content": "rapid increase in success rate for agent", + "type": "text" + }, + { + "bbox": [ + 251, + 642, + 259, + 650 + ], + "score": 0.81, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 640, + 357, + 653 + ], + "score": 1.0, + "content": ". We observe that agent", + "type": "text" + }, + { + "bbox": [ + 357, + 642, + 366, + 650 + ], + "score": 0.83, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 640, + 523, + 653 + ], + "score": 1.0, + "content": "reaches a lower level of performance.", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + } + ], + "index": 20, + "bbox_fs": [ + 85, + 552, + 523, + 653 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 98, + 95, + 513, + 175 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 98, + 95, + 513, + 175 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 98, + 95, + 513, + 175 + ], + "spans": [ + { + "bbox": [ + 98, + 95, + 513, + 175 + ], + "score": 0.955, + "type": "image", + "image_path": "d1c163e8a3b024f543bf4bfe9dbdd875881fca86d2b95b586bdff97e6458f9e5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 98, + 95, + 513, + 121.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 98, + 121.66666666666667, + 513, + 148.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 98, + 148.33333333333334, + 513, + 175.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 93, + 209, + 519, + 358 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 91, + 178, + 521, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 176, + 522, + 190 + ], + "spans": [ + { + "bbox": [ + 89, + 176, + 357, + 190 + ], + "score": 1.0, + "content": "Figure 4: Illustration of the automatically generated curriculum between", + "type": "text" + }, + { + "bbox": [ + 357, + 178, + 365, + 187 + ], + "score": 0.61, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 176, + 381, + 190 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 381, + 178, + 390, + 187 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 176, + 522, + 190 + ], + "score": 1.0, + "content": "on ‘U‘ shaped AntMaze task. From", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 90, + 188, + 522, + 199 + ], + "spans": [ + { + "bbox": [ + 90, + 188, + 522, + 199 + ], + "score": 1.0, + "content": "left to right are success rate of ind-CER, effect ratio of ind-CER, success rate of int-CER, and effect ratio of int-CER.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 197, + 407, + 208 + ], + "spans": [ + { + "bbox": [ + 90, + 197, + 318, + 208 + ], + "score": 1.0, + "content": "Each line shows results averaged over 5 random initializations.", + "type": "text" + }, + { + "bbox": [ + 318, + 198, + 326, + 207 + ], + "score": 0.3, + "content": "\\mathrm { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 197, + 407, + 208 + ], + "score": 1.0, + "content": "-axis is epoch number.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "image_body", + "bbox": [ + 93, + 209, + 519, + 358 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 93, + 209, + 519, + 358 + ], + "spans": [ + { + "bbox": [ + 93, + 209, + 519, + 358 + ], + "score": 0.971, + "type": "image", + "image_path": "8899fe9d0a1ef3dcaa5d1a5edf516c162affe6dc3ef72029a5a1bf6c42780dfd.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 93, + 209, + 519, + 258.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 93, + 258.6666666666667, + 519, + 308.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 93, + 308.33333333333337, + 519, + 358.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 89, + 361, + 519, + 392 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 361, + 521, + 372 + ], + "spans": [ + { + "bbox": [ + 90, + 361, + 521, + 372 + ], + "score": 1.0, + "content": "Figure 5: State visitation frequency on ’U’ maze. Top row is from after 5 epochs; bottom row from after 35. Blue on the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 370, + 520, + 384 + ], + "spans": [ + { + "bbox": [ + 89, + 370, + 520, + 384 + ], + "score": 1.0, + "content": "colormap denotes no visitation. The start and goal locations are labeled with the blue and green markers, respectively.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 380, + 242, + 392 + ], + "spans": [ + { + "bbox": [ + 89, + 380, + 242, + 392 + ], + "score": 1.0, + "content": "ICM and CER are trained with HER also.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 91, + 413, + 521, + 446 + ], + "lines": [ + { + "bbox": [ + 89, + 412, + 521, + 426 + ], + "spans": [ + { + "bbox": [ + 89, + 412, + 326, + 426 + ], + "score": 1.0, + "content": "This likely results from resetting the parameters of agent", + "type": "text" + }, + { + "bbox": [ + 327, + 414, + 336, + 423 + ], + "score": 0.77, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 412, + 521, + 426 + ], + "score": 1.0, + "content": "periodically during early training, which we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 90, + 424, + 521, + 436 + ], + "spans": [ + { + "bbox": [ + 90, + 424, + 302, + 436 + ], + "score": 1.0, + "content": "observe to improve the ultimate performance of agent", + "type": "text" + }, + { + "bbox": [ + 303, + 424, + 311, + 434 + ], + "score": 0.75, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 424, + 521, + 436 + ], + "score": 1.0, + "content": "(see Section D for details). It is also possible that the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 90, + 435, + 463, + 447 + ], + "spans": [ + { + "bbox": [ + 90, + 435, + 311, + 447 + ], + "score": 1.0, + "content": "reward structure of CER asymmetrically benefits agent", + "type": "text" + }, + { + "bbox": [ + 312, + 435, + 320, + 445 + ], + "score": 0.68, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 435, + 463, + 447 + ], + "score": 1.0, + "content": "with respect to the underlying task.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 90, + 452, + 521, + 573 + ], + "lines": [ + { + "bbox": [ + 88, + 451, + 522, + 465 + ], + "spans": [ + { + "bbox": [ + 88, + 451, + 522, + 465 + ], + "score": 1.0, + "content": "To gain additional insight into how each method influences the behaviors learned across training, we visualize", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 88, + 462, + 522, + 476 + ], + "spans": [ + { + "bbox": [ + 88, + 462, + 522, + 476 + ], + "score": 1.0, + "content": "the frequency with which each location in the ‘U’ maze is visited after the 5th and 35th training epoch (Figure", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 473, + 522, + 487 + ], + "spans": [ + { + "bbox": [ + 89, + 473, + 522, + 487 + ], + "score": 1.0, + "content": "5). Comparing DDPG and HER shows that the latter clearly helps move the state distribution towards the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 484, + 523, + 498 + ], + "spans": [ + { + "bbox": [ + 88, + 484, + 523, + 498 + ], + "score": 1.0, + "content": "goal, especially during the early parts of training. When CER is added, states near the goal create a clear", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 88, + 495, + 522, + 508 + ], + "spans": [ + { + "bbox": [ + 88, + 495, + 522, + 508 + ], + "score": 1.0, + "content": "mode in the visitation distribution. This is never apparent with DDPG alone and only obvious for HER and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 90, + 505, + 522, + 520 + ], + "spans": [ + { + "bbox": [ + 90, + 507, + 137, + 518 + ], + "score": 0.37, + "content": "\\mathrm { I C M + H E R }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 505, + 522, + 520 + ], + "score": 1.0, + "content": "later in training. CER also appears to focus the visitation of the agent, as it less frequently gets", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 518, + 522, + 530 + ], + "spans": [ + { + "bbox": [ + 89, + 518, + 522, + 530 + ], + "score": 1.0, + "content": "caught along the outer walls. These disparities are emphasized in Figure 6, where we show the difference in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 88, + 527, + 522, + 542 + ], + "spans": [ + { + "bbox": [ + 88, + 527, + 311, + 542 + ], + "score": 1.0, + "content": "the visitation profiles. The left two plots compare CER", + "type": "text" + }, + { + "bbox": [ + 311, + 529, + 317, + 538 + ], + "score": 0.33, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 527, + 522, + 542 + ], + "score": 1.0, + "content": "HER vs. HER. The right two plots compare Agent", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 88, + 538, + 522, + 553 + ], + "spans": [ + { + "bbox": [ + 88, + 538, + 522, + 553 + ], + "score": 1.0, + "content": "A vs Agent B from CER+HER. Interestingly, the Agents A and B exhibit fairly similar aggregate visitation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 550, + 522, + 564 + ], + "spans": [ + { + "bbox": [ + 89, + 550, + 522, + 564 + ], + "score": 1.0, + "content": "profiles with the exception that Agent A reaches the goal more often later during training. These visitation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 88, + 561, + 461, + 574 + ], + "spans": [ + { + "bbox": [ + 88, + 561, + 461, + 574 + ], + "score": 1.0, + "content": "profiles underscore both the quantitative and qualitative improvements associated with CER.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 92, + 591, + 194, + 604 + ], + "lines": [ + { + "bbox": [ + 89, + 590, + 197, + 606 + ], + "spans": [ + { + "bbox": [ + 89, + 590, + 197, + 606 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 91, + 618, + 522, + 651 + ], + "lines": [ + { + "bbox": [ + 90, + 617, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 90, + 617, + 522, + 631 + ], + "score": 1.0, + "content": "Self-play has a long history in this domain of research (Samuel, 1959; Tesauro, 1995; Heess et al., 2017).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "score": 1.0, + "content": "Silver et al. (2017) use self-play with deep reinforcement learning techniques to master the game of Go; and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 90, + 640, + 335, + 653 + ], + "spans": [ + { + "bbox": [ + 90, + 640, + 335, + 653 + ], + "score": 1.0, + "content": "self-play has even been applied in Dota 5v5 (OpenAI, 2018).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 292, + 680 + ], + "lines": [ + { + "bbox": [ + 285, + 670, + 293, + 681 + ], + "spans": [ + { + "bbox": [ + 285, + 670, + 293, + 681 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 98, + 95, + 513, + 175 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 98, + 95, + 513, + 175 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 98, + 95, + 513, + 175 + ], + "spans": [ + { + "bbox": [ + 98, + 95, + 513, + 175 + ], + "score": 0.955, + "type": "image", + "image_path": "d1c163e8a3b024f543bf4bfe9dbdd875881fca86d2b95b586bdff97e6458f9e5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 98, + 95, + 513, + 121.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 98, + 121.66666666666667, + 513, + 148.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 98, + 148.33333333333334, + 513, + 175.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 93, + 209, + 519, + 358 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 91, + 178, + 521, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 176, + 522, + 190 + ], + "spans": [ + { + "bbox": [ + 89, + 176, + 357, + 190 + ], + "score": 1.0, + "content": "Figure 4: Illustration of the automatically generated curriculum between", + "type": "text" + }, + { + "bbox": [ + 357, + 178, + 365, + 187 + ], + "score": 0.61, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 176, + 381, + 190 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 381, + 178, + 390, + 187 + ], + "score": 0.76, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 176, + 522, + 190 + ], + "score": 1.0, + "content": "on ‘U‘ shaped AntMaze task. From", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 90, + 188, + 522, + 199 + ], + "spans": [ + { + "bbox": [ + 90, + 188, + 522, + 199 + ], + "score": 1.0, + "content": "left to right are success rate of ind-CER, effect ratio of ind-CER, success rate of int-CER, and effect ratio of int-CER.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 197, + 407, + 208 + ], + "spans": [ + { + "bbox": [ + 90, + 197, + 318, + 208 + ], + "score": 1.0, + "content": "Each line shows results averaged over 5 random initializations.", + "type": "text" + }, + { + "bbox": [ + 318, + 198, + 326, + 207 + ], + "score": 0.3, + "content": "\\mathrm { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 197, + 407, + 208 + ], + "score": 1.0, + "content": "-axis is epoch number.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "image_body", + "bbox": [ + 93, + 209, + 519, + 358 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 93, + 209, + 519, + 358 + ], + "spans": [ + { + "bbox": [ + 93, + 209, + 519, + 358 + ], + "score": 0.971, + "type": "image", + "image_path": "8899fe9d0a1ef3dcaa5d1a5edf516c162affe6dc3ef72029a5a1bf6c42780dfd.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 93, + 209, + 519, + 258.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 93, + 258.6666666666667, + 519, + 308.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 93, + 308.33333333333337, + 519, + 358.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 89, + 361, + 519, + 392 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 361, + 521, + 372 + ], + "spans": [ + { + "bbox": [ + 90, + 361, + 521, + 372 + ], + "score": 1.0, + "content": "Figure 5: State visitation frequency on ’U’ maze. Top row is from after 5 epochs; bottom row from after 35. Blue on the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 370, + 520, + 384 + ], + "spans": [ + { + "bbox": [ + 89, + 370, + 520, + 384 + ], + "score": 1.0, + "content": "colormap denotes no visitation. The start and goal locations are labeled with the blue and green markers, respectively.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 380, + 242, + 392 + ], + "spans": [ + { + "bbox": [ + 89, + 380, + 242, + 392 + ], + "score": 1.0, + "content": "ICM and CER are trained with HER also.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 91, + 413, + 521, + 446 + ], + "lines": [ + { + "bbox": [ + 89, + 412, + 521, + 426 + ], + "spans": [ + { + "bbox": [ + 89, + 412, + 326, + 426 + ], + "score": 1.0, + "content": "This likely results from resetting the parameters of agent", + "type": "text" + }, + { + "bbox": [ + 327, + 414, + 336, + 423 + ], + "score": 0.77, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 412, + 521, + 426 + ], + "score": 1.0, + "content": "periodically during early training, which we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 90, + 424, + 521, + 436 + ], + "spans": [ + { + "bbox": [ + 90, + 424, + 302, + 436 + ], + "score": 1.0, + "content": "observe to improve the ultimate performance of agent", + "type": "text" + }, + { + "bbox": [ + 303, + 424, + 311, + 434 + ], + "score": 0.75, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 424, + 521, + 436 + ], + "score": 1.0, + "content": "(see Section D for details). It is also possible that the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 90, + 435, + 463, + 447 + ], + "spans": [ + { + "bbox": [ + 90, + 435, + 311, + 447 + ], + "score": 1.0, + "content": "reward structure of CER asymmetrically benefits agent", + "type": "text" + }, + { + "bbox": [ + 312, + 435, + 320, + 445 + ], + "score": 0.68, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 435, + 463, + 447 + ], + "score": 1.0, + "content": "with respect to the underlying task.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 89, + 412, + 521, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 452, + 521, + 573 + ], + "lines": [ + { + "bbox": [ + 88, + 451, + 522, + 465 + ], + "spans": [ + { + "bbox": [ + 88, + 451, + 522, + 465 + ], + "score": 1.0, + "content": "To gain additional insight into how each method influences the behaviors learned across training, we visualize", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 88, + 462, + 522, + 476 + ], + "spans": [ + { + "bbox": [ + 88, + 462, + 522, + 476 + ], + "score": 1.0, + "content": "the frequency with which each location in the ‘U’ maze is visited after the 5th and 35th training epoch (Figure", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 473, + 522, + 487 + ], + "spans": [ + { + "bbox": [ + 89, + 473, + 522, + 487 + ], + "score": 1.0, + "content": "5). Comparing DDPG and HER shows that the latter clearly helps move the state distribution towards the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 484, + 523, + 498 + ], + "spans": [ + { + "bbox": [ + 88, + 484, + 523, + 498 + ], + "score": 1.0, + "content": "goal, especially during the early parts of training. When CER is added, states near the goal create a clear", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 88, + 495, + 522, + 508 + ], + "spans": [ + { + "bbox": [ + 88, + 495, + 522, + 508 + ], + "score": 1.0, + "content": "mode in the visitation distribution. This is never apparent with DDPG alone and only obvious for HER and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 90, + 505, + 522, + 520 + ], + "spans": [ + { + "bbox": [ + 90, + 507, + 137, + 518 + ], + "score": 0.37, + "content": "\\mathrm { I C M + H E R }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 505, + 522, + 520 + ], + "score": 1.0, + "content": "later in training. CER also appears to focus the visitation of the agent, as it less frequently gets", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 518, + 522, + 530 + ], + "spans": [ + { + "bbox": [ + 89, + 518, + 522, + 530 + ], + "score": 1.0, + "content": "caught along the outer walls. These disparities are emphasized in Figure 6, where we show the difference in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 88, + 527, + 522, + 542 + ], + "spans": [ + { + "bbox": [ + 88, + 527, + 311, + 542 + ], + "score": 1.0, + "content": "the visitation profiles. The left two plots compare CER", + "type": "text" + }, + { + "bbox": [ + 311, + 529, + 317, + 538 + ], + "score": 0.33, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 527, + 522, + 542 + ], + "score": 1.0, + "content": "HER vs. HER. The right two plots compare Agent", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 88, + 538, + 522, + 553 + ], + "spans": [ + { + "bbox": [ + 88, + 538, + 522, + 553 + ], + "score": 1.0, + "content": "A vs Agent B from CER+HER. Interestingly, the Agents A and B exhibit fairly similar aggregate visitation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 550, + 522, + 564 + ], + "spans": [ + { + "bbox": [ + 89, + 550, + 522, + 564 + ], + "score": 1.0, + "content": "profiles with the exception that Agent A reaches the goal more often later during training. These visitation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 88, + 561, + 461, + 574 + ], + "spans": [ + { + "bbox": [ + 88, + 561, + 461, + 574 + ], + "score": 1.0, + "content": "profiles underscore both the quantitative and qualitative improvements associated with CER.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20, + "bbox_fs": [ + 88, + 451, + 523, + 574 + ] + }, + { + "type": "title", + "bbox": [ + 92, + 591, + 194, + 604 + ], + "lines": [ + { + "bbox": [ + 89, + 590, + 197, + 606 + ], + "spans": [ + { + "bbox": [ + 89, + 590, + 197, + 606 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 91, + 618, + 522, + 651 + ], + "lines": [ + { + "bbox": [ + 90, + 617, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 90, + 617, + 522, + 631 + ], + "score": 1.0, + "content": "Self-play has a long history in this domain of research (Samuel, 1959; Tesauro, 1995; Heess et al., 2017).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "score": 1.0, + "content": "Silver et al. (2017) use self-play with deep reinforcement learning techniques to master the game of Go; and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 90, + 640, + 335, + 653 + ], + "spans": [ + { + "bbox": [ + 90, + 640, + 335, + 653 + ], + "score": 1.0, + "content": "self-play has even been applied in Dota 5v5 (OpenAI, 2018).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 90, + 617, + 522, + 653 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 103, + 90, + 507, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 103, + 90, + 507, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 103, + 90, + 507, + 178 + ], + "spans": [ + { + "bbox": [ + 103, + 90, + 507, + 178 + ], + "score": 0.923, + "type": "image", + "image_path": "b00a3c03ad9575649264d247c87006c0ad2250785265eaac2510a5062afd0688.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 103, + 90, + 507, + 119.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 103, + 119.33333333333333, + 507, + 148.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 103, + 148.66666666666666, + 507, + 178.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 90, + 181, + 522, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 180, + 522, + 194 + ], + "spans": [ + { + "bbox": [ + 89, + 180, + 522, + 194 + ], + "score": 1.0, + "content": "Figure 6: State visitation difference on ’U’ maze. Left plots compare CER against HER; right plots compare the two", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 88, + 189, + 523, + 205 + ], + "spans": [ + { + "bbox": [ + 88, + 189, + 523, + 205 + ], + "score": 1.0, + "content": "CER agents. Each plot illustrates the difference in visitation, with red indicating more visitation by CER(A). Note: here,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 201, + 252, + 213 + ], + "spans": [ + { + "bbox": [ + 90, + 201, + 206, + 213 + ], + "score": 1.0, + "content": "the “CER” agent is trained with", + "type": "text" + }, + { + "bbox": [ + 207, + 202, + 248, + 211 + ], + "score": 0.3, + "content": "_ \\mathrm { C E R + H E R }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 201, + 252, + 213 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 90, + 231, + 521, + 407 + ], + "lines": [ + { + "bbox": [ + 90, + 232, + 521, + 244 + ], + "spans": [ + { + "bbox": [ + 90, + 232, + 521, + 244 + ], + "score": 1.0, + "content": "Curriculum learning is widely used for training neural networks (see e.g., Bengio et al., 2009; Graves", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 88, + 241, + 522, + 255 + ], + "spans": [ + { + "bbox": [ + 88, + 241, + 522, + 255 + ], + "score": 1.0, + "content": "et al., 2017; Elman, 1993; Olsson, 1995). A general framework for automatic task selection is Powerplay", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 88, + 252, + 522, + 268 + ], + "spans": [ + { + "bbox": [ + 88, + 252, + 522, + 268 + ], + "score": 1.0, + "content": "(Schmidhuber, 2013; Srivastava et al., 2013), which proposes an asymptotically optimal way of selecting", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 264, + 522, + 277 + ], + "spans": [ + { + "bbox": [ + 89, + 264, + 522, + 277 + ], + "score": 1.0, + "content": "tasks from a set of tasks with program search, and use replay buffer to avoid catastrophic forgetting. Florensa", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 88, + 276, + 523, + 289 + ], + "spans": [ + { + "bbox": [ + 88, + 276, + 523, + 289 + ], + "score": 1.0, + "content": "et al. (2017); Held et al. (2017) propose to automatically adjust task difficulty during training. Forestier et al.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 88, + 285, + 523, + 300 + ], + "spans": [ + { + "bbox": [ + 88, + 285, + 523, + 300 + ], + "score": 1.0, + "content": "(2017) study intrinsically motivated goal for robotic learning. Recently, Sukhbaatar et al. (2017) suggest", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 298, + 522, + 309 + ], + "spans": [ + { + "bbox": [ + 89, + 298, + 522, + 309 + ], + "score": 1.0, + "content": "to use self-play between two agents where reward depends on the time of the other agent to complete to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 308, + 522, + 321 + ], + "spans": [ + { + "bbox": [ + 89, + 308, + 522, + 321 + ], + "score": 1.0, + "content": "enable implicit curriculum. Our work is similar to theirs, but we propose to use sample-based competitive", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 88, + 319, + 522, + 332 + ], + "spans": [ + { + "bbox": [ + 88, + 319, + 522, + 332 + ], + "score": 1.0, + "content": "experience replay, which is not only more readily scalable to high-dimension control but also integrates easily", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 88, + 329, + 522, + 343 + ], + "spans": [ + { + "bbox": [ + 88, + 329, + 522, + 343 + ], + "score": 1.0, + "content": "with Hindsight Experience Replay (Andrychowicz et al., 2017). The method of initializing based on a state", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 341, + 523, + 353 + ], + "spans": [ + { + "bbox": [ + 89, + 341, + 523, + 353 + ], + "score": 1.0, + "content": "not sampled from the initial state distribution has been explored in other works. For example, Ivanovic et al.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 352, + 521, + 364 + ], + "spans": [ + { + "bbox": [ + 89, + 352, + 521, + 364 + ], + "score": 1.0, + "content": "(2018) propose to create a backwards curriculum for continuous control tasks through learning a dynamics", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 362, + 522, + 376 + ], + "spans": [ + { + "bbox": [ + 88, + 362, + 522, + 376 + ], + "score": 1.0, + "content": "model. Resnick et al. (2018b) and Salimans & Chen (2018) propose to train policies on Pommerman (Resnick", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 88, + 372, + 522, + 389 + ], + "spans": [ + { + "bbox": [ + 88, + 372, + 522, + 389 + ], + "score": 1.0, + "content": "et al., 2018a) and the Atari game ‘Montezumas Revenge’ by starting each episode from a different point along", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 88, + 383, + 522, + 399 + ], + "spans": [ + { + "bbox": [ + 88, + 383, + 522, + 399 + ], + "score": 1.0, + "content": "a demonstration. Recently, Goyal et al. (2018) and Edwards et al. (2018) propose a learned backtracking", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 395, + 478, + 410 + ], + "spans": [ + { + "bbox": [ + 89, + 395, + 478, + 410 + ], + "score": 1.0, + "content": "model to generate traces that lead to high value states in order to obtain higher sample efficiency.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 91, + 412, + 522, + 512 + ], + "lines": [ + { + "bbox": [ + 90, + 413, + 522, + 425 + ], + "spans": [ + { + "bbox": [ + 90, + 413, + 522, + 425 + ], + "score": 1.0, + "content": "Experience replay has been introduced in (Lin, 1992) and later was a crucial ingredient in learning to master", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 90, + 424, + 522, + 436 + ], + "spans": [ + { + "bbox": [ + 90, + 424, + 522, + 436 + ], + "score": 1.0, + "content": "Atari games (Mnih et al., 2013; 2015). Wang et al. (2016) propose truncation with bias correction to reduce", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 90, + 435, + 523, + 447 + ], + "spans": [ + { + "bbox": [ + 90, + 435, + 523, + 447 + ], + "score": 1.0, + "content": "variance from using off-policy data in buffer and achieves good performance on continuous and discrete tasks.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 445, + 523, + 459 + ], + "spans": [ + { + "bbox": [ + 89, + 445, + 523, + 459 + ], + "score": 1.0, + "content": "Different approaches have been proposed to incorporate model-free learning with experience replay(Gu et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 88, + 455, + 523, + 471 + ], + "spans": [ + { + "bbox": [ + 88, + 455, + 523, + 471 + ], + "score": 1.0, + "content": "2016; Feng et al., 2019). Schaul et al. (2015) improve experience replay by assigning priorities to transitions in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 89, + 467, + 522, + 481 + ], + "spans": [ + { + "bbox": [ + 89, + 467, + 522, + 481 + ], + "score": 1.0, + "content": "the buffer to efficiently utilize samples. Horgan et al. (2018) further improve experience replay by proposing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "spans": [ + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "score": 1.0, + "content": "a distributed RL system in which experiences are shared between parallel workers and accumulated into a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 489, + 522, + 502 + ], + "spans": [ + { + "bbox": [ + 89, + 489, + 522, + 502 + ], + "score": 1.0, + "content": "central replay memory and prioritized replay is used to update the policy based on the diverse accumulated", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 502, + 141, + 513 + ], + "spans": [ + { + "bbox": [ + 89, + 502, + 141, + 513 + ], + "score": 1.0, + "content": "experiences.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 91, + 527, + 180, + 540 + ], + "lines": [ + { + "bbox": [ + 88, + 526, + 181, + 543 + ], + "spans": [ + { + "bbox": [ + 88, + 526, + 181, + 543 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 91, + 552, + 521, + 651 + ], + "lines": [ + { + "bbox": [ + 89, + 551, + 521, + 565 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 521, + 565 + ], + "score": 1.0, + "content": "We introduce Competitive Experience Replay, a new and general method for encouraging exploration through", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 90, + 564, + 522, + 576 + ], + "spans": [ + { + "bbox": [ + 90, + 564, + 522, + 576 + ], + "score": 1.0, + "content": "implicit curriculum learning in sparse reward settings. We demonstrate an empirical advantage of our", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 90, + 575, + 522, + 587 + ], + "spans": [ + { + "bbox": [ + 90, + 575, + 522, + 587 + ], + "score": 1.0, + "content": "technique when combined with existing methods in several challenging RL tasks. In future work, we aim", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 585, + 521, + 598 + ], + "spans": [ + { + "bbox": [ + 89, + 585, + 521, + 598 + ], + "score": 1.0, + "content": "to investigate richer ways to re-label rewards based on intra-agent samples to further harness multi-agent", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 88, + 595, + 522, + 610 + ], + "spans": [ + { + "bbox": [ + 88, + 595, + 522, + 610 + ], + "score": 1.0, + "content": "competition, it’s interesting to investigate counterfactual inference to promote efficient re-label off-policy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 607, + 521, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 607, + 521, + 620 + ], + "score": 1.0, + "content": "samples. We hope that this will facilitate the application of our method to more open-end environments with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "even more challenging task structures. In addition, future work will explore integrating our method into", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 630, + 522, + 642 + ], + "spans": [ + { + "bbox": [ + 89, + 630, + 522, + 642 + ], + "score": 1.0, + "content": "approaches more closely related to model-based learning, where adequate exposure to the dynamics of the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 90, + 640, + 206, + 652 + ], + "spans": [ + { + "bbox": [ + 90, + 640, + 206, + 652 + ], + "score": 1.0, + "content": "environment is often crucial.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 276, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 51 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 51 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 286, + 671, + 292, + 679 + ], + "lines": [ + { + "bbox": [ + 285, + 671, + 293, + 681 + ], + "spans": [ + { + "bbox": [ + 285, + 671, + 293, + 681 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 103, + 90, + 507, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 103, + 90, + 507, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 103, + 90, + 507, + 178 + ], + "spans": [ + { + "bbox": [ + 103, + 90, + 507, + 178 + ], + "score": 0.923, + "type": "image", + "image_path": "b00a3c03ad9575649264d247c87006c0ad2250785265eaac2510a5062afd0688.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 103, + 90, + 507, + 119.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 103, + 119.33333333333333, + 507, + 148.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 103, + 148.66666666666666, + 507, + 178.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 90, + 181, + 522, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 180, + 522, + 194 + ], + "spans": [ + { + "bbox": [ + 89, + 180, + 522, + 194 + ], + "score": 1.0, + "content": "Figure 6: State visitation difference on ’U’ maze. Left plots compare CER against HER; right plots compare the two", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 88, + 189, + 523, + 205 + ], + "spans": [ + { + "bbox": [ + 88, + 189, + 523, + 205 + ], + "score": 1.0, + "content": "CER agents. Each plot illustrates the difference in visitation, with red indicating more visitation by CER(A). Note: here,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 201, + 252, + 213 + ], + "spans": [ + { + "bbox": [ + 90, + 201, + 206, + 213 + ], + "score": 1.0, + "content": "the “CER” agent is trained with", + "type": "text" + }, + { + "bbox": [ + 207, + 202, + 248, + 211 + ], + "score": 0.3, + "content": "_ \\mathrm { C E R + H E R }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 201, + 252, + 213 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 90, + 231, + 521, + 407 + ], + "lines": [ + { + "bbox": [ + 90, + 232, + 521, + 244 + ], + "spans": [ + { + "bbox": [ + 90, + 232, + 521, + 244 + ], + "score": 1.0, + "content": "Curriculum learning is widely used for training neural networks (see e.g., Bengio et al., 2009; Graves", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 88, + 241, + 522, + 255 + ], + "spans": [ + { + "bbox": [ + 88, + 241, + 522, + 255 + ], + "score": 1.0, + "content": "et al., 2017; Elman, 1993; Olsson, 1995). A general framework for automatic task selection is Powerplay", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 88, + 252, + 522, + 268 + ], + "spans": [ + { + "bbox": [ + 88, + 252, + 522, + 268 + ], + "score": 1.0, + "content": "(Schmidhuber, 2013; Srivastava et al., 2013), which proposes an asymptotically optimal way of selecting", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 264, + 522, + 277 + ], + "spans": [ + { + "bbox": [ + 89, + 264, + 522, + 277 + ], + "score": 1.0, + "content": "tasks from a set of tasks with program search, and use replay buffer to avoid catastrophic forgetting. Florensa", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 88, + 276, + 523, + 289 + ], + "spans": [ + { + "bbox": [ + 88, + 276, + 523, + 289 + ], + "score": 1.0, + "content": "et al. (2017); Held et al. (2017) propose to automatically adjust task difficulty during training. Forestier et al.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 88, + 285, + 523, + 300 + ], + "spans": [ + { + "bbox": [ + 88, + 285, + 523, + 300 + ], + "score": 1.0, + "content": "(2017) study intrinsically motivated goal for robotic learning. Recently, Sukhbaatar et al. (2017) suggest", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 298, + 522, + 309 + ], + "spans": [ + { + "bbox": [ + 89, + 298, + 522, + 309 + ], + "score": 1.0, + "content": "to use self-play between two agents where reward depends on the time of the other agent to complete to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 308, + 522, + 321 + ], + "spans": [ + { + "bbox": [ + 89, + 308, + 522, + 321 + ], + "score": 1.0, + "content": "enable implicit curriculum. Our work is similar to theirs, but we propose to use sample-based competitive", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 88, + 319, + 522, + 332 + ], + "spans": [ + { + "bbox": [ + 88, + 319, + 522, + 332 + ], + "score": 1.0, + "content": "experience replay, which is not only more readily scalable to high-dimension control but also integrates easily", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 88, + 329, + 522, + 343 + ], + "spans": [ + { + "bbox": [ + 88, + 329, + 522, + 343 + ], + "score": 1.0, + "content": "with Hindsight Experience Replay (Andrychowicz et al., 2017). The method of initializing based on a state", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 341, + 523, + 353 + ], + "spans": [ + { + "bbox": [ + 89, + 341, + 523, + 353 + ], + "score": 1.0, + "content": "not sampled from the initial state distribution has been explored in other works. For example, Ivanovic et al.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 352, + 521, + 364 + ], + "spans": [ + { + "bbox": [ + 89, + 352, + 521, + 364 + ], + "score": 1.0, + "content": "(2018) propose to create a backwards curriculum for continuous control tasks through learning a dynamics", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 362, + 522, + 376 + ], + "spans": [ + { + "bbox": [ + 88, + 362, + 522, + 376 + ], + "score": 1.0, + "content": "model. Resnick et al. (2018b) and Salimans & Chen (2018) propose to train policies on Pommerman (Resnick", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 88, + 372, + 522, + 389 + ], + "spans": [ + { + "bbox": [ + 88, + 372, + 522, + 389 + ], + "score": 1.0, + "content": "et al., 2018a) and the Atari game ‘Montezumas Revenge’ by starting each episode from a different point along", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 88, + 383, + 522, + 399 + ], + "spans": [ + { + "bbox": [ + 88, + 383, + 522, + 399 + ], + "score": 1.0, + "content": "a demonstration. Recently, Goyal et al. (2018) and Edwards et al. (2018) propose a learned backtracking", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 395, + 478, + 410 + ], + "spans": [ + { + "bbox": [ + 89, + 395, + 478, + 410 + ], + "score": 1.0, + "content": "model to generate traces that lead to high value states in order to obtain higher sample efficiency.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5, + "bbox_fs": [ + 88, + 232, + 523, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 412, + 522, + 512 + ], + "lines": [ + { + "bbox": [ + 90, + 413, + 522, + 425 + ], + "spans": [ + { + "bbox": [ + 90, + 413, + 522, + 425 + ], + "score": 1.0, + "content": "Experience replay has been introduced in (Lin, 1992) and later was a crucial ingredient in learning to master", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 90, + 424, + 522, + 436 + ], + "spans": [ + { + "bbox": [ + 90, + 424, + 522, + 436 + ], + "score": 1.0, + "content": "Atari games (Mnih et al., 2013; 2015). Wang et al. (2016) propose truncation with bias correction to reduce", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 90, + 435, + 523, + 447 + ], + "spans": [ + { + "bbox": [ + 90, + 435, + 523, + 447 + ], + "score": 1.0, + "content": "variance from using off-policy data in buffer and achieves good performance on continuous and discrete tasks.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 445, + 523, + 459 + ], + "spans": [ + { + "bbox": [ + 89, + 445, + 523, + 459 + ], + "score": 1.0, + "content": "Different approaches have been proposed to incorporate model-free learning with experience replay(Gu et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 88, + 455, + 523, + 471 + ], + "spans": [ + { + "bbox": [ + 88, + 455, + 523, + 471 + ], + "score": 1.0, + "content": "2016; Feng et al., 2019). Schaul et al. (2015) improve experience replay by assigning priorities to transitions in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 89, + 467, + 522, + 481 + ], + "spans": [ + { + "bbox": [ + 89, + 467, + 522, + 481 + ], + "score": 1.0, + "content": "the buffer to efficiently utilize samples. Horgan et al. (2018) further improve experience replay by proposing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "spans": [ + { + "bbox": [ + 89, + 479, + 522, + 491 + ], + "score": 1.0, + "content": "a distributed RL system in which experiences are shared between parallel workers and accumulated into a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 489, + 522, + 502 + ], + "spans": [ + { + "bbox": [ + 89, + 489, + 522, + 502 + ], + "score": 1.0, + "content": "central replay memory and prioritized replay is used to update the policy based on the diverse accumulated", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 502, + 141, + 513 + ], + "spans": [ + { + "bbox": [ + 89, + 502, + 141, + 513 + ], + "score": 1.0, + "content": "experiences.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26, + "bbox_fs": [ + 88, + 413, + 523, + 513 + ] + }, + { + "type": "title", + "bbox": [ + 91, + 527, + 180, + 540 + ], + "lines": [ + { + "bbox": [ + 88, + 526, + 181, + 543 + ], + "spans": [ + { + "bbox": [ + 88, + 526, + 181, + 543 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 91, + 552, + 521, + 651 + ], + "lines": [ + { + "bbox": [ + 89, + 551, + 521, + 565 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 521, + 565 + ], + "score": 1.0, + "content": "We introduce Competitive Experience Replay, a new and general method for encouraging exploration through", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 90, + 564, + 522, + 576 + ], + "spans": [ + { + "bbox": [ + 90, + 564, + 522, + 576 + ], + "score": 1.0, + "content": "implicit curriculum learning in sparse reward settings. We demonstrate an empirical advantage of our", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 90, + 575, + 522, + 587 + ], + "spans": [ + { + "bbox": [ + 90, + 575, + 522, + 587 + ], + "score": 1.0, + "content": "technique when combined with existing methods in several challenging RL tasks. In future work, we aim", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 585, + 521, + 598 + ], + "spans": [ + { + "bbox": [ + 89, + 585, + 521, + 598 + ], + "score": 1.0, + "content": "to investigate richer ways to re-label rewards based on intra-agent samples to further harness multi-agent", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 88, + 595, + 522, + 610 + ], + "spans": [ + { + "bbox": [ + 88, + 595, + 522, + 610 + ], + "score": 1.0, + "content": "competition, it’s interesting to investigate counterfactual inference to promote efficient re-label off-policy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 607, + 521, + 620 + ], + "spans": [ + { + "bbox": [ + 89, + 607, + 521, + 620 + ], + "score": 1.0, + "content": "samples. We hope that this will facilitate the application of our method to more open-end environments with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 618, + 522, + 631 + ], + "score": 1.0, + "content": "even more challenging task structures. In addition, future work will explore integrating our method into", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 630, + 522, + 642 + ], + "spans": [ + { + "bbox": [ + 89, + 630, + 522, + 642 + ], + "score": 1.0, + "content": "approaches more closely related to model-based learning, where adequate exposure to the dynamics of the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 90, + 640, + 206, + 652 + ], + "spans": [ + { + "bbox": [ + 90, + 640, + 206, + 652 + ], + "score": 1.0, + "content": "environment is often crucial.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36, + "bbox_fs": [ + 88, + 551, + 522, + 652 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 95, + 159, + 107 + ], + "lines": [ + { + "bbox": [ + 90, + 96, + 160, + 108 + ], + "spans": [ + { + "bbox": [ + 90, + 96, + 160, + 108 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 89, + 113, + 523, + 147 + ], + "lines": [ + { + "bbox": [ + 88, + 111, + 523, + 127 + ], + "spans": [ + { + "bbox": [ + 88, + 111, + 523, + 127 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 99, + 123, + 522, + 137 + ], + "spans": [ + { + "bbox": [ + 99, + 123, + 522, + 137 + ], + "score": 1.0, + "content": "Josh Tobin, OpenAI Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. In Advances in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 99, + 135, + 353, + 149 + ], + "spans": [ + { + "bbox": [ + 99, + 135, + 353, + 149 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 5048–5058, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 90, + 154, + 523, + 199 + ], + "lines": [ + { + "bbox": [ + 89, + 154, + 523, + 167 + ], + "spans": [ + { + "bbox": [ + 89, + 154, + 523, + 167 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 100, + 165, + 523, + 178 + ], + "spans": [ + { + "bbox": [ + 100, + 165, + 523, + 178 + ], + "score": 1.0, + "content": "Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, Jonas Schneider, Szymon Sidor, Josh To-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 99, + 175, + 523, + 190 + ], + "spans": [ + { + "bbox": [ + 99, + 175, + 523, + 190 + ], + "score": 1.0, + "content": "bin, Peter Welinder, Lilian Weng, and Wojciech Zaremba. Learning dexterous in-hand manipulation.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 99, + 187, + 207, + 200 + ], + "spans": [ + { + "bbox": [ + 99, + 187, + 207, + 200 + ], + "score": 1.0, + "content": "arXiv:1808.00177, 2018a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 90, + 206, + 523, + 240 + ], + "lines": [ + { + "bbox": [ + 89, + 205, + 522, + 219 + ], + "spans": [ + { + "bbox": [ + 89, + 205, + 522, + 219 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 100, + 217, + 522, + 230 + ], + "spans": [ + { + "bbox": [ + 100, + 217, + 522, + 230 + ], + "score": 1.0, + "content": "Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, et al. Learning dexterous in-hand manipulation.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 99, + 228, + 267, + 241 + ], + "spans": [ + { + "bbox": [ + 99, + 228, + 267, + 241 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1808.00177, 2018b.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 90, + 246, + 522, + 281 + ], + "lines": [ + { + "bbox": [ + 88, + 245, + 522, + 261 + ], + "spans": [ + { + "bbox": [ + 88, + 245, + 522, + 261 + ], + "score": 1.0, + "content": "Marc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos. Unifying", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 99, + 258, + 522, + 271 + ], + "spans": [ + { + "bbox": [ + 99, + 258, + 522, + 271 + ], + "score": 1.0, + "content": "count-based exploration and intrinsic motivation. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 98, + 268, + 190, + 281 + ], + "spans": [ + { + "bbox": [ + 98, + 268, + 190, + 281 + ], + "score": 1.0, + "content": "pp. 1471–1479, 2016.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 92, + 287, + 520, + 311 + ], + "lines": [ + { + "bbox": [ + 89, + 286, + 522, + 302 + ], + "spans": [ + { + "bbox": [ + 89, + 286, + 522, + 302 + ], + "score": 1.0, + "content": "Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ Proceedings", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 99, + 299, + 460, + 311 + ], + "spans": [ + { + "bbox": [ + 99, + 299, + 460, + 311 + ], + "score": 1.0, + "content": "of the 26th annual international conference on machine learning, pp. 41–48. ACM, 2009.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 91, + 317, + 522, + 341 + ], + "lines": [ + { + "bbox": [ + 90, + 318, + 521, + 331 + ], + "spans": [ + { + "bbox": [ + 90, + 318, + 521, + 331 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 100, + 329, + 359, + 342 + ], + "spans": [ + { + "bbox": [ + 100, + 329, + 359, + 342 + ], + "score": 1.0, + "content": "Zaremba. Openai gym. arXiv preprint arXiv:1606.01540, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 90, + 347, + 522, + 371 + ], + "lines": [ + { + "bbox": [ + 90, + 348, + 521, + 361 + ], + "spans": [ + { + "bbox": [ + 90, + 348, + 521, + 361 + ], + "score": 1.0, + "content": "Yuri Burda, Harri Edwards, Deepak Pathak, Amos Storkey, Trevor Darrell, and Alexei A Efros. Large-scale", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 99, + 360, + 402, + 371 + ], + "spans": [ + { + "bbox": [ + 99, + 360, + 402, + 371 + ], + "score": 1.0, + "content": "study of curiosity-driven learning. arXiv preprint arXiv:1808.04355, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 88, + 377, + 521, + 401 + ], + "lines": [ + { + "bbox": [ + 90, + 377, + 521, + 390 + ], + "spans": [ + { + "bbox": [ + 90, + 377, + 521, + 390 + ], + "score": 1.0, + "content": "Ashley D Edwards, Laura Downs, and James C Davidson. Forward-backward reinforcement learning. arXiv", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 99, + 389, + 237, + 401 + ], + "spans": [ + { + "bbox": [ + 99, + 389, + 237, + 401 + ], + "score": 1.0, + "content": "preprint arXiv:1803.10227, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 89, + 407, + 521, + 431 + ], + "lines": [ + { + "bbox": [ + 88, + 407, + 523, + 421 + ], + "spans": [ + { + "bbox": [ + 88, + 407, + 523, + 421 + ], + "score": 1.0, + "content": "Jeffrey L Elman. Learning and development in neural networks: The importance of starting small. Cognition,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 100, + 419, + 179, + 431 + ], + "spans": [ + { + "bbox": [ + 100, + 419, + 179, + 431 + ], + "score": 1.0, + "content": "48(1):71–99, 1993.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 90, + 437, + 520, + 461 + ], + "lines": [ + { + "bbox": [ + 90, + 438, + 522, + 451 + ], + "spans": [ + { + "bbox": [ + 90, + 438, + 522, + 451 + ], + "score": 1.0, + "content": "Yihao Feng, Hao Liu, Jian Peng, and Qiang Liu. Shrinkage-based bias-variance trade-off for deep reinforce-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 99, + 449, + 465, + 462 + ], + "spans": [ + { + "bbox": [ + 99, + 449, + 465, + 462 + ], + "score": 1.0, + "content": "ment learning, 2019. URL https://openreview.net/forum?id=S1z9ehAqYX.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 90, + 467, + 520, + 492 + ], + "lines": [ + { + "bbox": [ + 90, + 467, + 522, + 481 + ], + "spans": [ + { + "bbox": [ + 90, + 467, + 522, + 481 + ], + "score": 1.0, + "content": "Carlos Florensa, David Held, Markus Wulfmeier, Michael Zhang, and Pieter Abbeel. Reverse curriculum", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 99, + 479, + 418, + 491 + ], + "spans": [ + { + "bbox": [ + 99, + 479, + 418, + 491 + ], + "score": 1.0, + "content": "generation for reinforcement learning. arXiv preprint arXiv:1707.05300, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 89, + 497, + 520, + 521 + ], + "lines": [ + { + "bbox": [ + 89, + 497, + 521, + 511 + ], + "spans": [ + { + "bbox": [ + 89, + 497, + 521, + 511 + ], + "score": 1.0, + "content": "Sebastien Forestier, Yoan Mollard, and Pierre-Yves Oudeyer. Intrinsically motivated goal exploration ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 99, + 509, + 451, + 522 + ], + "spans": [ + { + "bbox": [ + 99, + 509, + 451, + 522 + ], + "score": 1.0, + "content": "processes with automatic curriculum learning. arXiv preprint arXiv:1708.02190, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 90, + 527, + 520, + 551 + ], + "lines": [ + { + "bbox": [ + 90, + 528, + 522, + 541 + ], + "spans": [ + { + "bbox": [ + 90, + 528, + 522, + 541 + ], + "score": 1.0, + "content": "Justin Fu, John Co-Reyes, and Sergey Levine. Ex2: Exploration with exemplar models for deep reinforcement", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 99, + 539, + 454, + 551 + ], + "spans": [ + { + "bbox": [ + 99, + 539, + 454, + 551 + ], + "score": 1.0, + "content": "learning. In Advances in Neural Information Processing Systems, pp. 2577–2587, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 91, + 557, + 520, + 592 + ], + "lines": [ + { + "bbox": [ + 89, + 557, + 522, + 571 + ], + "spans": [ + { + "bbox": [ + 89, + 557, + 522, + 571 + ], + "score": 1.0, + "content": "Anirudh Goyal, Philemon Brakel, William Fedus, Timothy Lillicrap, Sergey Levine, Hugo Larochelle, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 99, + 569, + 522, + 582 + ], + "spans": [ + { + "bbox": [ + 99, + 569, + 522, + 582 + ], + "score": 1.0, + "content": "Yoshua Bengio. Recall traces: Backtracking models for efficient reinforcement learning. arXiv preprint", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 99, + 580, + 203, + 591 + ], + "spans": [ + { + "bbox": [ + 99, + 580, + 203, + 591 + ], + "score": 1.0, + "content": "arXiv:1804.00379, 2018.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 88, + 598, + 520, + 622 + ], + "lines": [ + { + "bbox": [ + 90, + 598, + 522, + 612 + ], + "spans": [ + { + "bbox": [ + 90, + 598, + 522, + 612 + ], + "score": 1.0, + "content": "Alex Graves, Marc G Bellemare, Jacob Menick, Remi Munos, and Koray Kavukcuoglu. Automated", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 99, + 610, + 428, + 622 + ], + "spans": [ + { + "bbox": [ + 99, + 610, + 428, + 622 + ], + "score": 1.0, + "content": "curriculum learning for neural networks. arXiv preprint arXiv:1704.03003, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 91, + 629, + 518, + 652 + ], + "lines": [ + { + "bbox": [ + 90, + 629, + 520, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 520, + 642 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 99, + 639, + 503, + 653 + ], + "spans": [ + { + "bbox": [ + 99, + 639, + 503, + 653 + ], + "score": 1.0, + "content": "model-based acceleration. In International Conference on Machine Learning, pp. 2829–2838, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 284, + 671, + 294, + 680 + ], + "lines": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "spans": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 95, + 159, + 107 + ], + "lines": [ + { + "bbox": [ + 90, + 96, + 160, + 108 + ], + "spans": [ + { + "bbox": [ + 90, + 96, + 160, + 108 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 89, + 113, + 523, + 147 + ], + "lines": [ + { + "bbox": [ + 88, + 111, + 523, + 127 + ], + "spans": [ + { + "bbox": [ + 88, + 111, + 523, + 127 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 99, + 123, + 522, + 137 + ], + "spans": [ + { + "bbox": [ + 99, + 123, + 522, + 137 + ], + "score": 1.0, + "content": "Josh Tobin, OpenAI Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. In Advances in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 99, + 135, + 353, + 149 + ], + "spans": [ + { + "bbox": [ + 99, + 135, + 353, + 149 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 5048–5058, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 88, + 111, + 523, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 154, + 523, + 199 + ], + "lines": [ + { + "bbox": [ + 89, + 154, + 523, + 167 + ], + "spans": [ + { + "bbox": [ + 89, + 154, + 523, + 167 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 100, + 165, + 523, + 178 + ], + "spans": [ + { + "bbox": [ + 100, + 165, + 523, + 178 + ], + "score": 1.0, + "content": "Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, Jonas Schneider, Szymon Sidor, Josh To-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 99, + 175, + 523, + 190 + ], + "spans": [ + { + "bbox": [ + 99, + 175, + 523, + 190 + ], + "score": 1.0, + "content": "bin, Peter Welinder, Lilian Weng, and Wojciech Zaremba. Learning dexterous in-hand manipulation.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 99, + 187, + 207, + 200 + ], + "spans": [ + { + "bbox": [ + 99, + 187, + 207, + 200 + ], + "score": 1.0, + "content": "arXiv:1808.00177, 2018a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 89, + 154, + 523, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 206, + 523, + 240 + ], + "lines": [ + { + "bbox": [ + 89, + 205, + 522, + 219 + ], + "spans": [ + { + "bbox": [ + 89, + 205, + 522, + 219 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Bowen Baker, Maciek Chociej, Rafal Jozefowicz, Bob McGrew, Jakub Pachocki,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 100, + 217, + 522, + 230 + ], + "spans": [ + { + "bbox": [ + 100, + 217, + 522, + 230 + ], + "score": 1.0, + "content": "Arthur Petron, Matthias Plappert, Glenn Powell, Alex Ray, et al. Learning dexterous in-hand manipulation.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 99, + 228, + 267, + 241 + ], + "spans": [ + { + "bbox": [ + 99, + 228, + 267, + 241 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1808.00177, 2018b.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 89, + 205, + 522, + 241 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 246, + 522, + 281 + ], + "lines": [ + { + "bbox": [ + 88, + 245, + 522, + 261 + ], + "spans": [ + { + "bbox": [ + 88, + 245, + 522, + 261 + ], + "score": 1.0, + "content": "Marc Bellemare, Sriram Srinivasan, Georg Ostrovski, Tom Schaul, David Saxton, and Remi Munos. Unifying", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 99, + 258, + 522, + 271 + ], + "spans": [ + { + "bbox": [ + 99, + 258, + 522, + 271 + ], + "score": 1.0, + "content": "count-based exploration and intrinsic motivation. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 98, + 268, + 190, + 281 + ], + "spans": [ + { + "bbox": [ + 98, + 268, + 190, + 281 + ], + "score": 1.0, + "content": "pp. 1471–1479, 2016.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 88, + 245, + 522, + 281 + ] + }, + { + "type": "text", + "bbox": [ + 92, + 287, + 520, + 311 + ], + "lines": [ + { + "bbox": [ + 89, + 286, + 522, + 302 + ], + "spans": [ + { + "bbox": [ + 89, + 286, + 522, + 302 + ], + "score": 1.0, + "content": "Yoshua Bengio, Jer´ ome Louradour, Ronan Collobert, and Jason Weston. Curriculum learning. In ˆ Proceedings", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 99, + 299, + 460, + 311 + ], + "spans": [ + { + "bbox": [ + 99, + 299, + 460, + 311 + ], + "score": 1.0, + "content": "of the 26th annual international conference on machine learning, pp. 41–48. ACM, 2009.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 89, + 286, + 522, + 311 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 317, + 522, + 341 + ], + "lines": [ + { + "bbox": [ + 90, + 318, + 521, + 331 + ], + "spans": [ + { + "bbox": [ + 90, + 318, + 521, + 331 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 100, + 329, + 359, + 342 + ], + "spans": [ + { + "bbox": [ + 100, + 329, + 359, + 342 + ], + "score": 1.0, + "content": "Zaremba. Openai gym. arXiv preprint arXiv:1606.01540, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 90, + 318, + 521, + 342 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 347, + 522, + 371 + ], + "lines": [ + { + "bbox": [ + 90, + 348, + 521, + 361 + ], + "spans": [ + { + "bbox": [ + 90, + 348, + 521, + 361 + ], + "score": 1.0, + "content": "Yuri Burda, Harri Edwards, Deepak Pathak, Amos Storkey, Trevor Darrell, and Alexei A Efros. Large-scale", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 99, + 360, + 402, + 371 + ], + "spans": [ + { + "bbox": [ + 99, + 360, + 402, + 371 + ], + "score": 1.0, + "content": "study of curiosity-driven learning. arXiv preprint arXiv:1808.04355, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 90, + 348, + 521, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 377, + 521, + 401 + ], + "lines": [ + { + "bbox": [ + 90, + 377, + 521, + 390 + ], + "spans": [ + { + "bbox": [ + 90, + 377, + 521, + 390 + ], + "score": 1.0, + "content": "Ashley D Edwards, Laura Downs, and James C Davidson. Forward-backward reinforcement learning. arXiv", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 99, + 389, + 237, + 401 + ], + "spans": [ + { + "bbox": [ + 99, + 389, + 237, + 401 + ], + "score": 1.0, + "content": "preprint arXiv:1803.10227, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 90, + 377, + 521, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 407, + 521, + 431 + ], + "lines": [ + { + "bbox": [ + 88, + 407, + 523, + 421 + ], + "spans": [ + { + "bbox": [ + 88, + 407, + 523, + 421 + ], + "score": 1.0, + "content": "Jeffrey L Elman. Learning and development in neural networks: The importance of starting small. Cognition,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 100, + 419, + 179, + 431 + ], + "spans": [ + { + "bbox": [ + 100, + 419, + 179, + 431 + ], + "score": 1.0, + "content": "48(1):71–99, 1993.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 88, + 407, + 523, + 431 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 437, + 520, + 461 + ], + "lines": [ + { + "bbox": [ + 90, + 438, + 522, + 451 + ], + "spans": [ + { + "bbox": [ + 90, + 438, + 522, + 451 + ], + "score": 1.0, + "content": "Yihao Feng, Hao Liu, Jian Peng, and Qiang Liu. Shrinkage-based bias-variance trade-off for deep reinforce-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 99, + 449, + 465, + 462 + ], + "spans": [ + { + "bbox": [ + 99, + 449, + 465, + 462 + ], + "score": 1.0, + "content": "ment learning, 2019. URL https://openreview.net/forum?id=S1z9ehAqYX.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 90, + 438, + 522, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 467, + 520, + 492 + ], + "lines": [ + { + "bbox": [ + 90, + 467, + 522, + 481 + ], + "spans": [ + { + "bbox": [ + 90, + 467, + 522, + 481 + ], + "score": 1.0, + "content": "Carlos Florensa, David Held, Markus Wulfmeier, Michael Zhang, and Pieter Abbeel. Reverse curriculum", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 99, + 479, + 418, + 491 + ], + "spans": [ + { + "bbox": [ + 99, + 479, + 418, + 491 + ], + "score": 1.0, + "content": "generation for reinforcement learning. arXiv preprint arXiv:1707.05300, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 90, + 467, + 522, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 497, + 520, + 521 + ], + "lines": [ + { + "bbox": [ + 89, + 497, + 521, + 511 + ], + "spans": [ + { + "bbox": [ + 89, + 497, + 521, + 511 + ], + "score": 1.0, + "content": "Sebastien Forestier, Yoan Mollard, and Pierre-Yves Oudeyer. Intrinsically motivated goal exploration ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 99, + 509, + 451, + 522 + ], + "spans": [ + { + "bbox": [ + 99, + 509, + 451, + 522 + ], + "score": 1.0, + "content": "processes with automatic curriculum learning. arXiv preprint arXiv:1708.02190, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 89, + 497, + 521, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 527, + 520, + 551 + ], + "lines": [ + { + "bbox": [ + 90, + 528, + 522, + 541 + ], + "spans": [ + { + "bbox": [ + 90, + 528, + 522, + 541 + ], + "score": 1.0, + "content": "Justin Fu, John Co-Reyes, and Sergey Levine. Ex2: Exploration with exemplar models for deep reinforcement", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 99, + 539, + 454, + 551 + ], + "spans": [ + { + "bbox": [ + 99, + 539, + 454, + 551 + ], + "score": 1.0, + "content": "learning. In Advances in Neural Information Processing Systems, pp. 2577–2587, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 90, + 528, + 522, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 557, + 520, + 592 + ], + "lines": [ + { + "bbox": [ + 89, + 557, + 522, + 571 + ], + "spans": [ + { + "bbox": [ + 89, + 557, + 522, + 571 + ], + "score": 1.0, + "content": "Anirudh Goyal, Philemon Brakel, William Fedus, Timothy Lillicrap, Sergey Levine, Hugo Larochelle, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 99, + 569, + 522, + 582 + ], + "spans": [ + { + "bbox": [ + 99, + 569, + 522, + 582 + ], + "score": 1.0, + "content": "Yoshua Bengio. Recall traces: Backtracking models for efficient reinforcement learning. arXiv preprint", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 99, + 580, + 203, + 591 + ], + "spans": [ + { + "bbox": [ + 99, + 580, + 203, + 591 + ], + "score": 1.0, + "content": "arXiv:1804.00379, 2018.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 89, + 557, + 522, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 598, + 520, + 622 + ], + "lines": [ + { + "bbox": [ + 90, + 598, + 522, + 612 + ], + "spans": [ + { + "bbox": [ + 90, + 598, + 522, + 612 + ], + "score": 1.0, + "content": "Alex Graves, Marc G Bellemare, Jacob Menick, Remi Munos, and Koray Kavukcuoglu. Automated", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 99, + 610, + 428, + 622 + ], + "spans": [ + { + "bbox": [ + 99, + 610, + 428, + 622 + ], + "score": 1.0, + "content": "curriculum learning for neural networks. arXiv preprint arXiv:1704.03003, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 90, + 598, + 522, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 629, + 518, + 652 + ], + "lines": [ + { + "bbox": [ + 90, + 629, + 520, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 520, + 642 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 99, + 639, + 503, + 653 + ], + "spans": [ + { + "bbox": [ + 99, + 639, + 503, + 653 + ], + "score": 1.0, + "content": "model-based acceleration. In International Conference on Machine Learning, pp. 2829–2838, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 90, + 629, + 520, + 653 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 90, + 95, + 522, + 129 + ], + "lines": [ + { + "bbox": [ + 88, + 93, + 522, + 110 + ], + "spans": [ + { + "bbox": [ + 88, + 93, + 522, + 110 + ], + "score": 1.0, + "content": "Nicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 105, + 523, + 120 + ], + "spans": [ + { + "bbox": [ + 99, + 105, + 523, + 120 + ], + "score": 1.0, + "content": "Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich environments.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 99, + 117, + 263, + 131 + ], + "spans": [ + { + "bbox": [ + 99, + 117, + 263, + 131 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1707.02286, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 88, + 136, + 519, + 160 + ], + "lines": [ + { + "bbox": [ + 89, + 136, + 520, + 150 + ], + "spans": [ + { + "bbox": [ + 89, + 136, + 520, + 150 + ], + "score": 1.0, + "content": "David Held, Xinyang Geng, Carlos Florensa, and Pieter Abbeel. Automatic goal generation for reinforcement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 99, + 147, + 330, + 160 + ], + "spans": [ + { + "bbox": [ + 99, + 147, + 330, + 160 + ], + "score": 1.0, + "content": "learning agents. arXiv preprint arXiv:1705.06366, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 91, + 166, + 519, + 191 + ], + "lines": [ + { + "bbox": [ + 90, + 168, + 521, + 180 + ], + "spans": [ + { + "bbox": [ + 90, + 168, + 521, + 180 + ], + "score": 1.0, + "content": "Dan Horgan, John Quan, David Budden, Gabriel Barth-Maron, Matteo Hessel, Hado Van Hasselt, and David", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 99, + 178, + 459, + 191 + ], + "spans": [ + { + "bbox": [ + 99, + 178, + 459, + 191 + ], + "score": 1.0, + "content": "Silver. Distributed prioritized experience replay. arXiv preprint arXiv:1803.00933, 2018.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 90, + 197, + 521, + 231 + ], + "lines": [ + { + "bbox": [ + 89, + 197, + 521, + 211 + ], + "spans": [ + { + "bbox": [ + 89, + 197, + 521, + 211 + ], + "score": 1.0, + "content": "Rein Houthooft, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel. Vime: Variational", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 99, + 208, + 522, + 222 + ], + "spans": [ + { + "bbox": [ + 99, + 208, + 522, + 222 + ], + "score": 1.0, + "content": "information maximizing exploration. In Advances in Neural Information Processing Systems, pp. 1109–", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 99, + 219, + 149, + 231 + ], + "spans": [ + { + "bbox": [ + 99, + 219, + 149, + 231 + ], + "score": 1.0, + "content": "1117, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 89, + 239, + 521, + 262 + ], + "lines": [ + { + "bbox": [ + 90, + 240, + 520, + 252 + ], + "spans": [ + { + "bbox": [ + 90, + 240, + 520, + 252 + ], + "score": 1.0, + "content": "Boris Ivanovic, James Harrison, Apoorva Sharma, Mo Chen, and Marco Pavone. Barc: Backward reachability", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 100, + 250, + 451, + 263 + ], + "spans": [ + { + "bbox": [ + 100, + 250, + 451, + 263 + ], + "score": 1.0, + "content": "curriculum for robotic reinforcement learning. arXiv preprint arXiv:1806.06161, 2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 91, + 269, + 522, + 304 + ], + "lines": [ + { + "bbox": [ + 89, + 268, + 522, + 283 + ], + "spans": [ + { + "bbox": [ + 89, + 268, + 522, + 283 + ], + "score": 1.0, + "content": "Dmitry Kalashnikov, Alex Irpan, Peter Pastor, Julian Ibarz, Alexander Herzog, Eric Jang, Deirdre Quillen,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 99, + 279, + 522, + 295 + ], + "spans": [ + { + "bbox": [ + 99, + 279, + 522, + 295 + ], + "score": 1.0, + "content": "Ethan Holly, Mrinal Kalakrishnan, Vincent Vanhoucke, et al. Qt-opt: Scalable deep reinforcement learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 99, + 291, + 419, + 304 + ], + "spans": [ + { + "bbox": [ + 99, + 291, + 419, + 304 + ], + "score": 1.0, + "content": "for vision-based robotic manipulation. arXiv preprint arXiv:1806.10293, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 90, + 311, + 522, + 334 + ], + "lines": [ + { + "bbox": [ + 88, + 309, + 522, + 325 + ], + "spans": [ + { + "bbox": [ + 88, + 309, + 522, + 325 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 99, + 322, + 198, + 333 + ], + "spans": [ + { + "bbox": [ + 99, + 322, + 198, + 333 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 90, + 341, + 521, + 375 + ], + "lines": [ + { + "bbox": [ + 90, + 341, + 521, + 355 + ], + "spans": [ + { + "bbox": [ + 90, + 341, + 521, + 355 + ], + "score": 1.0, + "content": "Sergey Levine, Peter Pastor, Alex Krizhevsky, Julian Ibarz, and Deirdre Quillen. Learning hand-eye", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 100, + 353, + 520, + 365 + ], + "spans": [ + { + "bbox": [ + 100, + 353, + 520, + 365 + ], + "score": 1.0, + "content": "coordination for robotic grasping with deep learning and large-scale data collection. The International", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 99, + 363, + 319, + 376 + ], + "spans": [ + { + "bbox": [ + 99, + 363, + 319, + 376 + ], + "score": 1.0, + "content": "Journal of Robotics Research, 37(4-5):421–436, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 90, + 382, + 523, + 417 + ], + "lines": [ + { + "bbox": [ + 89, + 382, + 523, + 396 + ], + "spans": [ + { + "bbox": [ + 89, + 382, + 523, + 396 + ], + "score": 1.0, + "content": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 99, + 393, + 523, + 407 + ], + "spans": [ + { + "bbox": [ + 99, + 393, + 523, + 407 + ], + "score": 1.0, + "content": "and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 100, + 404, + 126, + 416 + ], + "spans": [ + { + "bbox": [ + 100, + 404, + 126, + 416 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 90, + 424, + 521, + 447 + ], + "lines": [ + { + "bbox": [ + 89, + 423, + 521, + 438 + ], + "spans": [ + { + "bbox": [ + 89, + 423, + 521, + 438 + ], + "score": 1.0, + "content": "Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching. Machine", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 100, + 435, + 231, + 447 + ], + "spans": [ + { + "bbox": [ + 100, + 435, + 231, + 447 + ], + "score": 1.0, + "content": "learning, 8(3-4):293–321, 1992.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 90, + 454, + 523, + 488 + ], + "lines": [ + { + "bbox": [ + 90, + 454, + 522, + 468 + ], + "spans": [ + { + "bbox": [ + 90, + 454, + 522, + 468 + ], + "score": 1.0, + "content": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 98, + 464, + 523, + 480 + ], + "spans": [ + { + "bbox": [ + 98, + 464, + 523, + 480 + ], + "score": 1.0, + "content": "mixed cooperative-competitive environments. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 100, + 477, + 175, + 489 + ], + "spans": [ + { + "bbox": [ + 100, + 477, + 175, + 489 + ], + "score": 1.0, + "content": "6379–6390, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 89, + 495, + 521, + 519 + ], + "lines": [ + { + "bbox": [ + 90, + 496, + 522, + 509 + ], + "spans": [ + { + "bbox": [ + 90, + 496, + 522, + 509 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 99, + 507, + 523, + 519 + ], + "spans": [ + { + "bbox": [ + 99, + 507, + 523, + 519 + ], + "score": 1.0, + "content": "Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 90, + 526, + 522, + 561 + ], + "lines": [ + { + "bbox": [ + 90, + 527, + 522, + 539 + ], + "spans": [ + { + "bbox": [ + 90, + 527, + 522, + 539 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 100, + 537, + 521, + 550 + ], + "spans": [ + { + "bbox": [ + 100, + 537, + 521, + 550 + ], + "score": 1.0, + "content": "Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 100, + 549, + 340, + 561 + ], + "spans": [ + { + "bbox": [ + 100, + 549, + 340, + 561 + ], + "score": 1.0, + "content": "deep reinforcement learning. Nature, 518(7540):529, 2015.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 90, + 567, + 522, + 602 + ], + "lines": [ + { + "bbox": [ + 89, + 567, + 522, + 581 + ], + "spans": [ + { + "bbox": [ + 89, + 567, + 522, + 581 + ], + "score": 1.0, + "content": "Andrew Y Ng, Adam Coates, Mark Diel, Varun Ganapathi, Jamie Schulte, Ben Tse, Eric Berger, and Eric", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 99, + 577, + 523, + 594 + ], + "spans": [ + { + "bbox": [ + 99, + 577, + 523, + 594 + ], + "score": 1.0, + "content": "Liang. Autonomous inverted helicopter flight via reinforcement learning. In Experimental Robotics IX, pp.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 99, + 588, + 204, + 604 + ], + "spans": [ + { + "bbox": [ + 99, + 588, + 204, + 604 + ], + "score": 1.0, + "content": "363–372. Springer, 2006.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 88, + 609, + 521, + 632 + ], + "lines": [ + { + "bbox": [ + 89, + 609, + 522, + 622 + ], + "spans": [ + { + "bbox": [ + 89, + 609, + 522, + 622 + ], + "score": 1.0, + "content": "Roland Olsson. Inductive functional programming using incremental program transformation. Artificial", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 100, + 620, + 231, + 633 + ], + "spans": [ + { + "bbox": [ + 100, + 620, + 231, + 633 + ], + "score": 1.0, + "content": "intelligence, 74(1):55–81, 1995.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 90, + 640, + 425, + 652 + ], + "lines": [ + { + "bbox": [ + 89, + 639, + 427, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 639, + 427, + 654 + ], + "score": 1.0, + "content": "OpenAI. Openai five. https://blog.openai.com/openai-five/, 2018.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 284, + 671, + 294, + 680 + ], + "lines": [ + { + "bbox": [ + 282, + 670, + 295, + 684 + ], + "spans": [ + { + "bbox": [ + 282, + 670, + 295, + 684 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 90, + 95, + 522, + 129 + ], + "lines": [ + { + "bbox": [ + 88, + 93, + 522, + 110 + ], + "spans": [ + { + "bbox": [ + 88, + 93, + 522, + 110 + ], + "score": 1.0, + "content": "Nicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 105, + 523, + 120 + ], + "spans": [ + { + "bbox": [ + 99, + 105, + 523, + 120 + ], + "score": 1.0, + "content": "Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich environments.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 99, + 117, + 263, + 131 + ], + "spans": [ + { + "bbox": [ + 99, + 117, + 263, + 131 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1707.02286, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 88, + 93, + 523, + 131 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 136, + 519, + 160 + ], + "lines": [ + { + "bbox": [ + 89, + 136, + 520, + 150 + ], + "spans": [ + { + "bbox": [ + 89, + 136, + 520, + 150 + ], + "score": 1.0, + "content": "David Held, Xinyang Geng, Carlos Florensa, and Pieter Abbeel. Automatic goal generation for reinforcement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 99, + 147, + 330, + 160 + ], + "spans": [ + { + "bbox": [ + 99, + 147, + 330, + 160 + ], + "score": 1.0, + "content": "learning agents. arXiv preprint arXiv:1705.06366, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 89, + 136, + 520, + 160 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 166, + 519, + 191 + ], + "lines": [ + { + "bbox": [ + 90, + 168, + 521, + 180 + ], + "spans": [ + { + "bbox": [ + 90, + 168, + 521, + 180 + ], + "score": 1.0, + "content": "Dan Horgan, John Quan, David Budden, Gabriel Barth-Maron, Matteo Hessel, Hado Van Hasselt, and David", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 99, + 178, + 459, + 191 + ], + "spans": [ + { + "bbox": [ + 99, + 178, + 459, + 191 + ], + "score": 1.0, + "content": "Silver. Distributed prioritized experience replay. arXiv preprint arXiv:1803.00933, 2018.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 90, + 168, + 521, + 191 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 197, + 521, + 231 + ], + "lines": [ + { + "bbox": [ + 89, + 197, + 521, + 211 + ], + "spans": [ + { + "bbox": [ + 89, + 197, + 521, + 211 + ], + "score": 1.0, + "content": "Rein Houthooft, Xi Chen, Yan Duan, John Schulman, Filip De Turck, and Pieter Abbeel. Vime: Variational", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 99, + 208, + 522, + 222 + ], + "spans": [ + { + "bbox": [ + 99, + 208, + 522, + 222 + ], + "score": 1.0, + "content": "information maximizing exploration. In Advances in Neural Information Processing Systems, pp. 1109–", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 99, + 219, + 149, + 231 + ], + "spans": [ + { + "bbox": [ + 99, + 219, + 149, + 231 + ], + "score": 1.0, + "content": "1117, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 89, + 197, + 522, + 231 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 239, + 521, + 262 + ], + "lines": [ + { + "bbox": [ + 90, + 240, + 520, + 252 + ], + "spans": [ + { + "bbox": [ + 90, + 240, + 520, + 252 + ], + "score": 1.0, + "content": "Boris Ivanovic, James Harrison, Apoorva Sharma, Mo Chen, and Marco Pavone. Barc: Backward reachability", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 100, + 250, + 451, + 263 + ], + "spans": [ + { + "bbox": [ + 100, + 250, + 451, + 263 + ], + "score": 1.0, + "content": "curriculum for robotic reinforcement learning. arXiv preprint arXiv:1806.06161, 2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 90, + 240, + 520, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 269, + 522, + 304 + ], + "lines": [ + { + "bbox": [ + 89, + 268, + 522, + 283 + ], + "spans": [ + { + "bbox": [ + 89, + 268, + 522, + 283 + ], + "score": 1.0, + "content": "Dmitry Kalashnikov, Alex Irpan, Peter Pastor, Julian Ibarz, Alexander Herzog, Eric Jang, Deirdre Quillen,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 99, + 279, + 522, + 295 + ], + "spans": [ + { + "bbox": [ + 99, + 279, + 522, + 295 + ], + "score": 1.0, + "content": "Ethan Holly, Mrinal Kalakrishnan, Vincent Vanhoucke, et al. Qt-opt: Scalable deep reinforcement learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 99, + 291, + 419, + 304 + ], + "spans": [ + { + "bbox": [ + 99, + 291, + 419, + 304 + ], + "score": 1.0, + "content": "for vision-based robotic manipulation. arXiv preprint arXiv:1806.10293, 2018.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 89, + 268, + 522, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 311, + 522, + 334 + ], + "lines": [ + { + "bbox": [ + 88, + 309, + 522, + 325 + ], + "spans": [ + { + "bbox": [ + 88, + 309, + 522, + 325 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 99, + 322, + 198, + 333 + ], + "spans": [ + { + "bbox": [ + 99, + 322, + 198, + 333 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 88, + 309, + 522, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 341, + 521, + 375 + ], + "lines": [ + { + "bbox": [ + 90, + 341, + 521, + 355 + ], + "spans": [ + { + "bbox": [ + 90, + 341, + 521, + 355 + ], + "score": 1.0, + "content": "Sergey Levine, Peter Pastor, Alex Krizhevsky, Julian Ibarz, and Deirdre Quillen. Learning hand-eye", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 100, + 353, + 520, + 365 + ], + "spans": [ + { + "bbox": [ + 100, + 353, + 520, + 365 + ], + "score": 1.0, + "content": "coordination for robotic grasping with deep learning and large-scale data collection. The International", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 99, + 363, + 319, + 376 + ], + "spans": [ + { + "bbox": [ + 99, + 363, + 319, + 376 + ], + "score": 1.0, + "content": "Journal of Robotics Research, 37(4-5):421–436, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 90, + 341, + 521, + 376 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 382, + 523, + 417 + ], + "lines": [ + { + "bbox": [ + 89, + 382, + 523, + 396 + ], + "spans": [ + { + "bbox": [ + 89, + 382, + 523, + 396 + ], + "score": 1.0, + "content": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 99, + 393, + 523, + 407 + ], + "spans": [ + { + "bbox": [ + 99, + 393, + 523, + 407 + ], + "score": 1.0, + "content": "and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 100, + 404, + 126, + 416 + ], + "spans": [ + { + "bbox": [ + 100, + 404, + 126, + 416 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 89, + 382, + 523, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 424, + 521, + 447 + ], + "lines": [ + { + "bbox": [ + 89, + 423, + 521, + 438 + ], + "spans": [ + { + "bbox": [ + 89, + 423, + 521, + 438 + ], + "score": 1.0, + "content": "Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching. Machine", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 100, + 435, + 231, + 447 + ], + "spans": [ + { + "bbox": [ + 100, + 435, + 231, + 447 + ], + "score": 1.0, + "content": "learning, 8(3-4):293–321, 1992.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 89, + 423, + 521, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 454, + 523, + 488 + ], + "lines": [ + { + "bbox": [ + 90, + 454, + 522, + 468 + ], + "spans": [ + { + "bbox": [ + 90, + 454, + 522, + 468 + ], + "score": 1.0, + "content": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-critic for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 98, + 464, + 523, + 480 + ], + "spans": [ + { + "bbox": [ + 98, + 464, + 523, + 480 + ], + "score": 1.0, + "content": "mixed cooperative-competitive environments. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 100, + 477, + 175, + 489 + ], + "spans": [ + { + "bbox": [ + 100, + 477, + 175, + 489 + ], + "score": 1.0, + "content": "6379–6390, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 90, + 454, + 523, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 495, + 521, + 519 + ], + "lines": [ + { + "bbox": [ + 90, + 496, + 522, + 509 + ], + "spans": [ + { + "bbox": [ + 90, + 496, + 522, + 509 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 99, + 507, + 523, + 519 + ], + "spans": [ + { + "bbox": [ + 99, + 507, + 523, + 519 + ], + "score": 1.0, + "content": "Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 90, + 496, + 523, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 526, + 522, + 561 + ], + "lines": [ + { + "bbox": [ + 90, + 527, + 522, + 539 + ], + "spans": [ + { + "bbox": [ + 90, + 527, + 522, + 539 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 100, + 537, + 521, + 550 + ], + "spans": [ + { + "bbox": [ + 100, + 537, + 521, + 550 + ], + "score": 1.0, + "content": "Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 100, + 549, + 340, + 561 + ], + "spans": [ + { + "bbox": [ + 100, + 549, + 340, + 561 + ], + "score": 1.0, + "content": "deep reinforcement learning. Nature, 518(7540):529, 2015.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 90, + 527, + 522, + 561 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 567, + 522, + 602 + ], + "lines": [ + { + "bbox": [ + 89, + 567, + 522, + 581 + ], + "spans": [ + { + "bbox": [ + 89, + 567, + 522, + 581 + ], + "score": 1.0, + "content": "Andrew Y Ng, Adam Coates, Mark Diel, Varun Ganapathi, Jamie Schulte, Ben Tse, Eric Berger, and Eric", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 99, + 577, + 523, + 594 + ], + "spans": [ + { + "bbox": [ + 99, + 577, + 523, + 594 + ], + "score": 1.0, + "content": "Liang. Autonomous inverted helicopter flight via reinforcement learning. In Experimental Robotics IX, pp.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 99, + 588, + 204, + 604 + ], + "spans": [ + { + "bbox": [ + 99, + 588, + 204, + 604 + ], + "score": 1.0, + "content": "363–372. Springer, 2006.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 89, + 567, + 523, + 604 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 609, + 521, + 632 + ], + "lines": [ + { + "bbox": [ + 89, + 609, + 522, + 622 + ], + "spans": [ + { + "bbox": [ + 89, + 609, + 522, + 622 + ], + "score": 1.0, + "content": "Roland Olsson. Inductive functional programming using incremental program transformation. Artificial", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 100, + 620, + 231, + 633 + ], + "spans": [ + { + "bbox": [ + 100, + 620, + 231, + 633 + ], + "score": 1.0, + "content": "intelligence, 74(1):55–81, 1995.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 89, + 609, + 522, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 640, + 425, + 652 + ], + "lines": [ + { + "bbox": [ + 89, + 639, + 427, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 639, + 427, + 654 + ], + "score": 1.0, + "content": "OpenAI. Openai five. https://blog.openai.com/openai-five/, 2018.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 89, + 639, + 427, + 654 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 88, + 95, + 521, + 119 + ], + "lines": [ + { + "bbox": [ + 89, + 95, + 520, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 95, + 520, + 108 + ], + "score": 1.0, + "content": "Ian Osband, Charles Blundell, Alexander Pritzel, and Benjamin Van Roy. Deep exploration via bootstrapped", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 106, + 431, + 119 + ], + "spans": [ + { + "bbox": [ + 99, + 106, + 431, + 119 + ], + "score": 1.0, + "content": "dqn. In Advances in neural information processing systems, pp. 4026–4034, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 90, + 126, + 520, + 150 + ], + "lines": [ + { + "bbox": [ + 91, + 127, + 522, + 139 + ], + "spans": [ + { + "bbox": [ + 91, + 127, + 522, + 139 + ], + "score": 1.0, + "content": "Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by self-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 99, + 138, + 512, + 150 + ], + "spans": [ + { + "bbox": [ + 99, + 138, + 512, + 150 + ], + "score": 1.0, + "content": "supervised prediction. In International Conference on Machine Learning (ICML), volume 2017, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 90, + 157, + 524, + 191 + ], + "lines": [ + { + "bbox": [ + 90, + 157, + 521, + 171 + ], + "spans": [ + { + "bbox": [ + 90, + 157, + 521, + 171 + ], + "score": 1.0, + "content": "Matthias Plappert, Rein Houthooft, Prafulla Dhariwal, Szymon Sidor, Richard Y Chen, Xi Chen, Tamim", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 99, + 168, + 522, + 182 + ], + "spans": [ + { + "bbox": [ + 99, + 168, + 522, + 182 + ], + "score": 1.0, + "content": "Asfour, Pieter Abbeel, and Marcin Andrychowicz. Parameter space noise for exploration. arXiv preprint", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 99, + 180, + 203, + 192 + ], + "spans": [ + { + "bbox": [ + 99, + 180, + 203, + 192 + ], + "score": 1.0, + "content": "arXiv:1706.01905, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 90, + 199, + 521, + 234 + ], + "lines": [ + { + "bbox": [ + 89, + 200, + 522, + 212 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 522, + 212 + ], + "score": 1.0, + "content": "Matthias Plappert, Marcin Andrychowicz, Alex Ray, Bob McGrew, Bowen Baker, Glenn Powell, Jonas Schnei-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 99, + 209, + 522, + 226 + ], + "spans": [ + { + "bbox": [ + 99, + 209, + 522, + 226 + ], + "score": 1.0, + "content": "der, Josh Tobin, Maciek Chociej, Peter Welinder, et al. Multi-goal reinforcement learning: Challenging", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 100, + 222, + 455, + 235 + ], + "spans": [ + { + "bbox": [ + 100, + 222, + 455, + 235 + ], + "score": 1.0, + "content": "robotics environments and request for research. arXiv preprint arXiv:1802.09464, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 93, + 241, + 521, + 276 + ], + "lines": [ + { + "bbox": [ + 89, + 241, + 522, + 255 + ], + "spans": [ + { + "bbox": [ + 89, + 241, + 522, + 255 + ], + "score": 1.0, + "content": "Ivaylo Popov, Nicolas Heess, Timothy Lillicrap, Roland Hafner, Gabriel Barth-Maron, Matej Vecerik, Thomas", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 99, + 253, + 522, + 266 + ], + "spans": [ + { + "bbox": [ + 99, + 253, + 522, + 266 + ], + "score": 1.0, + "content": "Lampe, Yuval Tassa, Tom Erez, and Martin Riedmiller. Data-efficient deep reinforcement learning for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 99, + 264, + 363, + 277 + ], + "spans": [ + { + "bbox": [ + 99, + 264, + 363, + 277 + ], + "score": 1.0, + "content": "dexterous manipulation. arXiv preprint arXiv:1704.03073, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 92, + 284, + 522, + 308 + ], + "lines": [ + { + "bbox": [ + 90, + 284, + 522, + 297 + ], + "spans": [ + { + "bbox": [ + 90, + 284, + 522, + 297 + ], + "score": 1.0, + "content": "Cinjon Resnick, Wes Eldridge, David Ha, Denny Britz, Jakob Foerster, Julian Togelius, Kyunghyun Cho, and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 98, + 295, + 484, + 308 + ], + "spans": [ + { + "bbox": [ + 98, + 295, + 484, + 308 + ], + "score": 1.0, + "content": "Joan Bruna. Pommerman: A multi-agent playground. arXiv preprint arXiv:1809.07124, 2018a.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 91, + 315, + 521, + 339 + ], + "lines": [ + { + "bbox": [ + 91, + 316, + 522, + 328 + ], + "spans": [ + { + "bbox": [ + 91, + 316, + 522, + 328 + ], + "score": 1.0, + "content": "Cinjon Resnick, Roberta Raileanu, Sanyam Kapoor, Alex Peysakhovich, Kyunghyun Cho, and Joan Bruna.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 99, + 326, + 436, + 339 + ], + "spans": [ + { + "bbox": [ + 99, + 326, + 436, + 339 + ], + "score": 1.0, + "content": "Backplay:” man muss immer umkehren”. arXiv preprint arXiv:1807.06919, 2018b.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 90, + 346, + 522, + 381 + ], + "lines": [ + { + "bbox": [ + 89, + 344, + 522, + 359 + ], + "spans": [ + { + "bbox": [ + 89, + 344, + 111, + 359 + ], + "score": 1.0, + "content": "Tim", + "type": "text" + }, + { + "bbox": [ + 125, + 345, + 169, + 358 + ], + "score": 1.0, + "content": "Salimans", + "type": "text" + }, + { + "bbox": [ + 183, + 346, + 204, + 358 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 218, + 346, + 256, + 357 + ], + "score": 1.0, + "content": "Richard", + "type": "text" + }, + { + "bbox": [ + 270, + 347, + 300, + 358 + ], + "score": 1.0, + "content": "Chen.", + "type": "text" + }, + { + "bbox": [ + 357, + 345, + 398, + 359 + ], + "score": 1.0, + "content": "Learning", + "type": "text" + }, + { + "bbox": [ + 414, + 348, + 470, + 358 + ], + "score": 1.0, + "content": "montezumas", + "type": "text" + }, + { + "bbox": [ + 484, + 348, + 522, + 359 + ], + "score": 1.0, + "content": "revenge", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 98, + 356, + 522, + 370 + ], + "spans": [ + { + "bbox": [ + 98, + 356, + 124, + 370 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 146, + 359, + 156, + 370 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 177, + 357, + 208, + 370 + ], + "score": 1.0, + "content": "single", + "type": "text" + }, + { + "bbox": [ + 230, + 357, + 295, + 370 + ], + "score": 1.0, + "content": "demonstration.", + "type": "text" + }, + { + "bbox": [ + 375, + 358, + 522, + 370 + ], + "score": 1.0, + "content": "https://blog.openai.com/", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 100, + 368, + 468, + 381 + ], + "spans": [ + { + "bbox": [ + 100, + 368, + 468, + 381 + ], + "score": 1.0, + "content": "learning-montezumas-revenge-from-a-single-demonstration/, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 88, + 388, + 521, + 412 + ], + "lines": [ + { + "bbox": [ + 90, + 388, + 520, + 401 + ], + "spans": [ + { + "bbox": [ + 90, + 388, + 520, + 401 + ], + "score": 1.0, + "content": "Arthur L Samuel. Some studies in machine learning using the game of checkers. IBM Journal of research", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 100, + 400, + 257, + 412 + ], + "spans": [ + { + "bbox": [ + 100, + 400, + 257, + 412 + ], + "score": 1.0, + "content": "and development, 3(3):210–229, 1959.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 88, + 419, + 521, + 443 + ], + "lines": [ + { + "bbox": [ + 89, + 418, + 522, + 434 + ], + "spans": [ + { + "bbox": [ + 89, + 418, + 522, + 434 + ], + "score": 1.0, + "content": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 99, + 431, + 203, + 442 + ], + "spans": [ + { + "bbox": [ + 99, + 431, + 203, + 442 + ], + "score": 1.0, + "content": "arXiv:1511.05952, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 90, + 451, + 522, + 485 + ], + "lines": [ + { + "bbox": [ + 90, + 451, + 520, + 463 + ], + "spans": [ + { + "bbox": [ + 90, + 451, + 520, + 463 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. A possibility for implementing curiosity and boredom in model-building neural¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 100, + 462, + 522, + 474 + ], + "spans": [ + { + "bbox": [ + 100, + 462, + 522, + 474 + ], + "score": 1.0, + "content": "controllers. In Proc. of the international conference on simulation of adaptive behavior: From animals to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 99, + 472, + 217, + 486 + ], + "spans": [ + { + "bbox": [ + 99, + 472, + 217, + 486 + ], + "score": 1.0, + "content": "animats, pp. 222–227, 1991.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 88, + 493, + 521, + 516 + ], + "lines": [ + { + "bbox": [ + 88, + 492, + 522, + 507 + ], + "spans": [ + { + "bbox": [ + 88, + 492, + 522, + 507 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. Powerplay: Training an increasingly general problem solver by continually searching ¨", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 99, + 504, + 419, + 517 + ], + "spans": [ + { + "bbox": [ + 99, + 504, + 419, + 517 + ], + "score": 1.0, + "content": "for the simplest still unsolvable problem. Frontiers in psychology, 4:313, 2013.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 89, + 524, + 520, + 548 + ], + "lines": [ + { + "bbox": [ + 88, + 523, + 522, + 538 + ], + "spans": [ + { + "bbox": [ + 88, + 523, + 522, + 538 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Philipp Moritz, Michael I. Jordan, and Pieter Abbeel. Trust region policy", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 99, + 535, + 387, + 548 + ], + "spans": [ + { + "bbox": [ + 99, + 535, + 387, + 548 + ], + "score": 1.0, + "content": "optimization. In International Conference on Machine Learning, 2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 89, + 555, + 521, + 590 + ], + "lines": [ + { + "bbox": [ + 89, + 555, + 522, + 569 + ], + "spans": [ + { + "bbox": [ + 89, + 555, + 522, + 569 + ], + "score": 1.0, + "content": "John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. High-dimensional contin-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 99, + 566, + 522, + 580 + ], + "spans": [ + { + "bbox": [ + 99, + 566, + 522, + 580 + ], + "score": 1.0, + "content": "uous control using generalized advantage estimation. International Conference of Learning Representations", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 99, + 578, + 157, + 590 + ], + "spans": [ + { + "bbox": [ + 99, + 578, + 157, + 590 + ], + "score": 1.0, + "content": "(ICLR), 2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 87, + 597, + 521, + 621 + ], + "lines": [ + { + "bbox": [ + 88, + 596, + 522, + 611 + ], + "spans": [ + { + "bbox": [ + 88, + 596, + 522, + 611 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimiza-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 99, + 609, + 407, + 621 + ], + "spans": [ + { + "bbox": [ + 99, + 609, + 407, + 621 + ], + "score": 1.0, + "content": "tion algorithms. Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 88, + 628, + 520, + 652 + ], + "lines": [ + { + "bbox": [ + 90, + 628, + 522, + 641 + ], + "spans": [ + { + "bbox": [ + 90, + 628, + 522, + 641 + ], + "score": 1.0, + "content": "David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller. Deterministic", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 99, + 640, + 276, + 652 + ], + "spans": [ + { + "bbox": [ + 99, + 640, + 276, + 652 + ], + "score": 1.0, + "content": "policy gradient algorithms. In ICML, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 284, + 671, + 294, + 680 + ], + "lines": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "spans": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 88, + 95, + 521, + 119 + ], + "lines": [ + { + "bbox": [ + 89, + 95, + 520, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 95, + 520, + 108 + ], + "score": 1.0, + "content": "Ian Osband, Charles Blundell, Alexander Pritzel, and Benjamin Van Roy. Deep exploration via bootstrapped", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 106, + 431, + 119 + ], + "spans": [ + { + "bbox": [ + 99, + 106, + 431, + 119 + ], + "score": 1.0, + "content": "dqn. In Advances in neural information processing systems, pp. 4026–4034, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 89, + 95, + 520, + 119 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 126, + 520, + 150 + ], + "lines": [ + { + "bbox": [ + 91, + 127, + 522, + 139 + ], + "spans": [ + { + "bbox": [ + 91, + 127, + 522, + 139 + ], + "score": 1.0, + "content": "Deepak Pathak, Pulkit Agrawal, Alexei A Efros, and Trevor Darrell. Curiosity-driven exploration by self-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 99, + 138, + 512, + 150 + ], + "spans": [ + { + "bbox": [ + 99, + 138, + 512, + 150 + ], + "score": 1.0, + "content": "supervised prediction. In International Conference on Machine Learning (ICML), volume 2017, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 91, + 127, + 522, + 150 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 157, + 524, + 191 + ], + "lines": [ + { + "bbox": [ + 90, + 157, + 521, + 171 + ], + "spans": [ + { + "bbox": [ + 90, + 157, + 521, + 171 + ], + "score": 1.0, + "content": "Matthias Plappert, Rein Houthooft, Prafulla Dhariwal, Szymon Sidor, Richard Y Chen, Xi Chen, Tamim", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 99, + 168, + 522, + 182 + ], + "spans": [ + { + "bbox": [ + 99, + 168, + 522, + 182 + ], + "score": 1.0, + "content": "Asfour, Pieter Abbeel, and Marcin Andrychowicz. Parameter space noise for exploration. arXiv preprint", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 99, + 180, + 203, + 192 + ], + "spans": [ + { + "bbox": [ + 99, + 180, + 203, + 192 + ], + "score": 1.0, + "content": "arXiv:1706.01905, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 90, + 157, + 522, + 192 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 199, + 521, + 234 + ], + "lines": [ + { + "bbox": [ + 89, + 200, + 522, + 212 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 522, + 212 + ], + "score": 1.0, + "content": "Matthias Plappert, Marcin Andrychowicz, Alex Ray, Bob McGrew, Bowen Baker, Glenn Powell, Jonas Schnei-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 99, + 209, + 522, + 226 + ], + "spans": [ + { + "bbox": [ + 99, + 209, + 522, + 226 + ], + "score": 1.0, + "content": "der, Josh Tobin, Maciek Chociej, Peter Welinder, et al. Multi-goal reinforcement learning: Challenging", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 100, + 222, + 455, + 235 + ], + "spans": [ + { + "bbox": [ + 100, + 222, + 455, + 235 + ], + "score": 1.0, + "content": "robotics environments and request for research. arXiv preprint arXiv:1802.09464, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 89, + 200, + 522, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 93, + 241, + 521, + 276 + ], + "lines": [ + { + "bbox": [ + 89, + 241, + 522, + 255 + ], + "spans": [ + { + "bbox": [ + 89, + 241, + 522, + 255 + ], + "score": 1.0, + "content": "Ivaylo Popov, Nicolas Heess, Timothy Lillicrap, Roland Hafner, Gabriel Barth-Maron, Matej Vecerik, Thomas", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 99, + 253, + 522, + 266 + ], + "spans": [ + { + "bbox": [ + 99, + 253, + 522, + 266 + ], + "score": 1.0, + "content": "Lampe, Yuval Tassa, Tom Erez, and Martin Riedmiller. Data-efficient deep reinforcement learning for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 99, + 264, + 363, + 277 + ], + "spans": [ + { + "bbox": [ + 99, + 264, + 363, + 277 + ], + "score": 1.0, + "content": "dexterous manipulation. arXiv preprint arXiv:1704.03073, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 89, + 241, + 522, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 92, + 284, + 522, + 308 + ], + "lines": [ + { + "bbox": [ + 90, + 284, + 522, + 297 + ], + "spans": [ + { + "bbox": [ + 90, + 284, + 522, + 297 + ], + "score": 1.0, + "content": "Cinjon Resnick, Wes Eldridge, David Ha, Denny Britz, Jakob Foerster, Julian Togelius, Kyunghyun Cho, and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 98, + 295, + 484, + 308 + ], + "spans": [ + { + "bbox": [ + 98, + 295, + 484, + 308 + ], + "score": 1.0, + "content": "Joan Bruna. Pommerman: A multi-agent playground. arXiv preprint arXiv:1809.07124, 2018a.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 90, + 284, + 522, + 308 + ] + }, + { + "type": "text", + "bbox": [ + 91, + 315, + 521, + 339 + ], + "lines": [ + { + "bbox": [ + 91, + 316, + 522, + 328 + ], + "spans": [ + { + "bbox": [ + 91, + 316, + 522, + 328 + ], + "score": 1.0, + "content": "Cinjon Resnick, Roberta Raileanu, Sanyam Kapoor, Alex Peysakhovich, Kyunghyun Cho, and Joan Bruna.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 99, + 326, + 436, + 339 + ], + "spans": [ + { + "bbox": [ + 99, + 326, + 436, + 339 + ], + "score": 1.0, + "content": "Backplay:” man muss immer umkehren”. arXiv preprint arXiv:1807.06919, 2018b.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 91, + 316, + 522, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 346, + 522, + 381 + ], + "lines": [ + { + "bbox": [ + 89, + 344, + 522, + 359 + ], + "spans": [ + { + "bbox": [ + 89, + 344, + 111, + 359 + ], + "score": 1.0, + "content": "Tim", + "type": "text" + }, + { + "bbox": [ + 125, + 345, + 169, + 358 + ], + "score": 1.0, + "content": "Salimans", + "type": "text" + }, + { + "bbox": [ + 183, + 346, + 204, + 358 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 218, + 346, + 256, + 357 + ], + "score": 1.0, + "content": "Richard", + "type": "text" + }, + { + "bbox": [ + 270, + 347, + 300, + 358 + ], + "score": 1.0, + "content": "Chen.", + "type": "text" + }, + { + "bbox": [ + 357, + 345, + 398, + 359 + ], + "score": 1.0, + "content": "Learning", + "type": "text" + }, + { + "bbox": [ + 414, + 348, + 470, + 358 + ], + "score": 1.0, + "content": "montezumas", + "type": "text" + }, + { + "bbox": [ + 484, + 348, + 522, + 359 + ], + "score": 1.0, + "content": "revenge", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 98, + 356, + 522, + 370 + ], + "spans": [ + { + "bbox": [ + 98, + 356, + 124, + 370 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 146, + 359, + 156, + 370 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 177, + 357, + 208, + 370 + ], + "score": 1.0, + "content": "single", + "type": "text" + }, + { + "bbox": [ + 230, + 357, + 295, + 370 + ], + "score": 1.0, + "content": "demonstration.", + "type": "text" + }, + { + "bbox": [ + 375, + 358, + 522, + 370 + ], + "score": 1.0, + "content": "https://blog.openai.com/", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 100, + 368, + 468, + 381 + ], + "spans": [ + { + "bbox": [ + 100, + 368, + 468, + 381 + ], + "score": 1.0, + "content": "learning-montezumas-revenge-from-a-single-demonstration/, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 89, + 344, + 522, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 388, + 521, + 412 + ], + "lines": [ + { + "bbox": [ + 90, + 388, + 520, + 401 + ], + "spans": [ + { + "bbox": [ + 90, + 388, + 520, + 401 + ], + "score": 1.0, + "content": "Arthur L Samuel. Some studies in machine learning using the game of checkers. IBM Journal of research", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 100, + 400, + 257, + 412 + ], + "spans": [ + { + "bbox": [ + 100, + 400, + 257, + 412 + ], + "score": 1.0, + "content": "and development, 3(3):210–229, 1959.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 90, + 388, + 520, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 419, + 521, + 443 + ], + "lines": [ + { + "bbox": [ + 89, + 418, + 522, + 434 + ], + "spans": [ + { + "bbox": [ + 89, + 418, + 522, + 434 + ], + "score": 1.0, + "content": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 99, + 431, + 203, + 442 + ], + "spans": [ + { + "bbox": [ + 99, + 431, + 203, + 442 + ], + "score": 1.0, + "content": "arXiv:1511.05952, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 89, + 418, + 522, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 451, + 522, + 485 + ], + "lines": [ + { + "bbox": [ + 90, + 451, + 520, + 463 + ], + "spans": [ + { + "bbox": [ + 90, + 451, + 520, + 463 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. A possibility for implementing curiosity and boredom in model-building neural¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 100, + 462, + 522, + 474 + ], + "spans": [ + { + "bbox": [ + 100, + 462, + 522, + 474 + ], + "score": 1.0, + "content": "controllers. In Proc. of the international conference on simulation of adaptive behavior: From animals to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 99, + 472, + 217, + 486 + ], + "spans": [ + { + "bbox": [ + 99, + 472, + 217, + 486 + ], + "score": 1.0, + "content": "animats, pp. 222–227, 1991.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 90, + 451, + 522, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 493, + 521, + 516 + ], + "lines": [ + { + "bbox": [ + 88, + 492, + 522, + 507 + ], + "spans": [ + { + "bbox": [ + 88, + 492, + 522, + 507 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. Powerplay: Training an increasingly general problem solver by continually searching ¨", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 99, + 504, + 419, + 517 + ], + "spans": [ + { + "bbox": [ + 99, + 504, + 419, + 517 + ], + "score": 1.0, + "content": "for the simplest still unsolvable problem. Frontiers in psychology, 4:313, 2013.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 88, + 492, + 522, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 524, + 520, + 548 + ], + "lines": [ + { + "bbox": [ + 88, + 523, + 522, + 538 + ], + "spans": [ + { + "bbox": [ + 88, + 523, + 522, + 538 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Philipp Moritz, Michael I. Jordan, and Pieter Abbeel. Trust region policy", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 99, + 535, + 387, + 548 + ], + "spans": [ + { + "bbox": [ + 99, + 535, + 387, + 548 + ], + "score": 1.0, + "content": "optimization. In International Conference on Machine Learning, 2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 88, + 523, + 522, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 555, + 521, + 590 + ], + "lines": [ + { + "bbox": [ + 89, + 555, + 522, + 569 + ], + "spans": [ + { + "bbox": [ + 89, + 555, + 522, + 569 + ], + "score": 1.0, + "content": "John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. High-dimensional contin-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 99, + 566, + 522, + 580 + ], + "spans": [ + { + "bbox": [ + 99, + 566, + 522, + 580 + ], + "score": 1.0, + "content": "uous control using generalized advantage estimation. International Conference of Learning Representations", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 99, + 578, + 157, + 590 + ], + "spans": [ + { + "bbox": [ + 99, + 578, + 157, + 590 + ], + "score": 1.0, + "content": "(ICLR), 2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 89, + 555, + 522, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 87, + 597, + 521, + 621 + ], + "lines": [ + { + "bbox": [ + 88, + 596, + 522, + 611 + ], + "spans": [ + { + "bbox": [ + 88, + 596, + 522, + 611 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimiza-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 99, + 609, + 407, + 621 + ], + "spans": [ + { + "bbox": [ + 99, + 609, + 407, + 621 + ], + "score": 1.0, + "content": "tion algorithms. Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 88, + 596, + 522, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 628, + 520, + 652 + ], + "lines": [ + { + "bbox": [ + 90, + 628, + 522, + 641 + ], + "spans": [ + { + "bbox": [ + 90, + 628, + 522, + 641 + ], + "score": 1.0, + "content": "David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller. Deterministic", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 99, + 640, + 276, + 652 + ], + "spans": [ + { + "bbox": [ + 99, + 640, + 276, + 652 + ], + "score": 1.0, + "content": "policy gradient algorithms. In ICML, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 90, + 628, + 522, + 652 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 90, + 95, + 521, + 129 + ], + "lines": [ + { + "bbox": [ + 90, + 95, + 521, + 109 + ], + "spans": [ + { + "bbox": [ + 90, + 95, + 521, + 109 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 105, + 521, + 120 + ], + "spans": [ + { + "bbox": [ + 99, + 105, + 521, + 120 + ], + "score": 1.0, + "content": "Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 100, + 118, + 415, + 130 + ], + "spans": [ + { + "bbox": [ + 100, + 118, + 415, + 130 + ], + "score": 1.0, + "content": "with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 90, + 136, + 519, + 170 + ], + "lines": [ + { + "bbox": [ + 90, + 136, + 522, + 149 + ], + "spans": [ + { + "bbox": [ + 90, + 136, + 522, + 149 + ], + "score": 1.0, + "content": "David Silver, Thomas Hubert, Julian Schrittwieser, Ioannis Antonoglou, Matthew Lai, Arthur Guez, Marc", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 98, + 146, + 522, + 161 + ], + "spans": [ + { + "bbox": [ + 98, + 146, + 522, + 161 + ], + "score": 1.0, + "content": "Lanctot, Laurent Sifre, Dharshan Kumaran, Thore Graepel, et al. Mastering chess and shogi by self-play", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 100, + 159, + 460, + 171 + ], + "spans": [ + { + "bbox": [ + 100, + 159, + 460, + 171 + ], + "score": 1.0, + "content": "with a general reinforcement learning algorithm. arXiv preprint arXiv:1712.01815, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 88, + 177, + 520, + 200 + ], + "lines": [ + { + "bbox": [ + 88, + 176, + 521, + 191 + ], + "spans": [ + { + "bbox": [ + 88, + 176, + 521, + 191 + ], + "score": 1.0, + "content": "Rupesh Kumar Srivastava, Bas R Steunebrink, and Jurgen Schmidhuber. First experiments with powerplay.¨", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 99, + 188, + 250, + 200 + ], + "spans": [ + { + "bbox": [ + 99, + 188, + 250, + 200 + ], + "score": 1.0, + "content": "Neural Networks, 41:130–136, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 90, + 207, + 520, + 230 + ], + "lines": [ + { + "bbox": [ + 90, + 208, + 522, + 219 + ], + "spans": [ + { + "bbox": [ + 90, + 208, + 522, + 219 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Zeming Lin, Ilya Kostrikov, Gabriel Synnaeve, Arthur Szlam, and Rob Fergus. Intrinsic", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 100, + 218, + 509, + 231 + ], + "spans": [ + { + "bbox": [ + 100, + 218, + 509, + 231 + ], + "score": 1.0, + "content": "motivation and automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 90, + 236, + 498, + 249 + ], + "lines": [ + { + "bbox": [ + 90, + 236, + 497, + 250 + ], + "spans": [ + { + "bbox": [ + 90, + 236, + 497, + 250 + ], + "score": 1.0, + "content": "Richard S Sutton, Andrew G Barto, et al. Reinforcement learning: An introduction. MIT press, 1998.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 90, + 255, + 520, + 290 + ], + "lines": [ + { + "bbox": [ + 88, + 254, + 522, + 269 + ], + "spans": [ + { + "bbox": [ + 88, + 254, + 522, + 269 + ], + "score": 1.0, + "content": "Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, OpenAI Xi Chen, Yan Duan, John Schulman, Filip", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 100, + 268, + 522, + 279 + ], + "spans": [ + { + "bbox": [ + 100, + 268, + 522, + 279 + ], + "score": 1.0, + "content": "DeTurck, and Pieter Abbeel. # exploration: A study of count-based exploration for deep reinforcement", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 100, + 278, + 454, + 290 + ], + "spans": [ + { + "bbox": [ + 100, + 278, + 454, + 290 + ], + "score": 1.0, + "content": "learning. In Advances in Neural Information Processing Systems, pp. 2753–2762, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 89, + 296, + 521, + 319 + ], + "lines": [ + { + "bbox": [ + 89, + 295, + 523, + 311 + ], + "spans": [ + { + "bbox": [ + 89, + 295, + 523, + 311 + ], + "score": 1.0, + "content": "Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3):58–68,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 97, + 306, + 126, + 321 + ], + "spans": [ + { + "bbox": [ + 97, + 306, + 126, + 321 + ], + "score": 1.0, + "content": "1995.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 90, + 326, + 522, + 360 + ], + "lines": [ + { + "bbox": [ + 90, + 326, + 522, + 339 + ], + "spans": [ + { + "bbox": [ + 90, + 326, + 522, + 339 + ], + "score": 1.0, + "content": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 100, + 338, + 523, + 350 + ], + "spans": [ + { + "bbox": [ + 100, + 338, + 523, + 350 + ], + "score": 1.0, + "content": "Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026–5033. IEEE,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 99, + 348, + 126, + 361 + ], + "spans": [ + { + "bbox": [ + 99, + 348, + 126, + 361 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 92, + 367, + 521, + 390 + ], + "lines": [ + { + "bbox": [ + 90, + 367, + 521, + 380 + ], + "spans": [ + { + "bbox": [ + 90, + 367, + 521, + 380 + ], + "score": 1.0, + "content": "Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and Nando", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 100, + 379, + 516, + 391 + ], + "spans": [ + { + "bbox": [ + 100, + 379, + 516, + 391 + ], + "score": 1.0, + "content": "de Freitas. Sample efficient actor-critic with experience replay. arXiv preprint arXiv:1611.01224, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 284, + 671, + 294, + 680 + ], + "lines": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "spans": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 90, + 95, + 521, + 129 + ], + "lines": [ + { + "bbox": [ + 90, + 95, + 521, + 109 + ], + "spans": [ + { + "bbox": [ + 90, + 95, + 521, + 109 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 105, + 521, + 120 + ], + "spans": [ + { + "bbox": [ + 99, + 105, + 521, + 120 + ], + "score": 1.0, + "content": "Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 100, + 118, + 415, + 130 + ], + "spans": [ + { + "bbox": [ + 100, + 118, + 415, + 130 + ], + "score": 1.0, + "content": "with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 90, + 95, + 521, + 130 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 136, + 519, + 170 + ], + "lines": [ + { + "bbox": [ + 90, + 136, + 522, + 149 + ], + "spans": [ + { + "bbox": [ + 90, + 136, + 522, + 149 + ], + "score": 1.0, + "content": "David Silver, Thomas Hubert, Julian Schrittwieser, Ioannis Antonoglou, Matthew Lai, Arthur Guez, Marc", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 98, + 146, + 522, + 161 + ], + "spans": [ + { + "bbox": [ + 98, + 146, + 522, + 161 + ], + "score": 1.0, + "content": "Lanctot, Laurent Sifre, Dharshan Kumaran, Thore Graepel, et al. Mastering chess and shogi by self-play", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 100, + 159, + 460, + 171 + ], + "spans": [ + { + "bbox": [ + 100, + 159, + 460, + 171 + ], + "score": 1.0, + "content": "with a general reinforcement learning algorithm. arXiv preprint arXiv:1712.01815, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 90, + 136, + 522, + 171 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 177, + 520, + 200 + ], + "lines": [ + { + "bbox": [ + 88, + 176, + 521, + 191 + ], + "spans": [ + { + "bbox": [ + 88, + 176, + 521, + 191 + ], + "score": 1.0, + "content": "Rupesh Kumar Srivastava, Bas R Steunebrink, and Jurgen Schmidhuber. First experiments with powerplay.¨", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 99, + 188, + 250, + 200 + ], + "spans": [ + { + "bbox": [ + 99, + 188, + 250, + 200 + ], + "score": 1.0, + "content": "Neural Networks, 41:130–136, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 88, + 176, + 521, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 207, + 520, + 230 + ], + "lines": [ + { + "bbox": [ + 90, + 208, + 522, + 219 + ], + "spans": [ + { + "bbox": [ + 90, + 208, + 522, + 219 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Zeming Lin, Ilya Kostrikov, Gabriel Synnaeve, Arthur Szlam, and Rob Fergus. Intrinsic", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 100, + 218, + 509, + 231 + ], + "spans": [ + { + "bbox": [ + 100, + 218, + 509, + 231 + ], + "score": 1.0, + "content": "motivation and automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 90, + 208, + 522, + 231 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 236, + 498, + 249 + ], + "lines": [ + { + "bbox": [ + 90, + 236, + 497, + 250 + ], + "spans": [ + { + "bbox": [ + 90, + 236, + 497, + 250 + ], + "score": 1.0, + "content": "Richard S Sutton, Andrew G Barto, et al. Reinforcement learning: An introduction. MIT press, 1998.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 90, + 236, + 497, + 250 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 255, + 520, + 290 + ], + "lines": [ + { + "bbox": [ + 88, + 254, + 522, + 269 + ], + "spans": [ + { + "bbox": [ + 88, + 254, + 522, + 269 + ], + "score": 1.0, + "content": "Haoran Tang, Rein Houthooft, Davis Foote, Adam Stooke, OpenAI Xi Chen, Yan Duan, John Schulman, Filip", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 100, + 268, + 522, + 279 + ], + "spans": [ + { + "bbox": [ + 100, + 268, + 522, + 279 + ], + "score": 1.0, + "content": "DeTurck, and Pieter Abbeel. # exploration: A study of count-based exploration for deep reinforcement", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 100, + 278, + 454, + 290 + ], + "spans": [ + { + "bbox": [ + 100, + 278, + 454, + 290 + ], + "score": 1.0, + "content": "learning. In Advances in Neural Information Processing Systems, pp. 2753–2762, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 88, + 254, + 522, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 296, + 521, + 319 + ], + "lines": [ + { + "bbox": [ + 89, + 295, + 523, + 311 + ], + "spans": [ + { + "bbox": [ + 89, + 295, + 523, + 311 + ], + "score": 1.0, + "content": "Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3):58–68,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 97, + 306, + 126, + 321 + ], + "spans": [ + { + "bbox": [ + 97, + 306, + 126, + 321 + ], + "score": 1.0, + "content": "1995.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 89, + 295, + 523, + 321 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 326, + 522, + 360 + ], + "lines": [ + { + "bbox": [ + 90, + 326, + 522, + 339 + ], + "spans": [ + { + "bbox": [ + 90, + 326, + 522, + 339 + ], + "score": 1.0, + "content": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 100, + 338, + 523, + 350 + ], + "spans": [ + { + "bbox": [ + 100, + 338, + 523, + 350 + ], + "score": 1.0, + "content": "Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026–5033. IEEE,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 99, + 348, + 126, + 361 + ], + "spans": [ + { + "bbox": [ + 99, + 348, + 126, + 361 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 90, + 326, + 523, + 361 + ] + }, + { + "type": "text", + "bbox": [ + 92, + 367, + 521, + 390 + ], + "lines": [ + { + "bbox": [ + 90, + 367, + 521, + 380 + ], + "spans": [ + { + "bbox": [ + 90, + 367, + 521, + 380 + ], + "score": 1.0, + "content": "Ziyu Wang, Victor Bapst, Nicolas Heess, Volodymyr Mnih, Remi Munos, Koray Kavukcuoglu, and Nando", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 100, + 379, + 516, + 391 + ], + "spans": [ + { + "bbox": [ + 100, + 379, + 516, + 391 + ], + "score": 1.0, + "content": "de Freitas. Sample efficient actor-critic with experience replay. arXiv preprint arXiv:1611.01224, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 90, + 367, + 521, + 391 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 95, + 178, + 107 + ], + "lines": [ + { + "bbox": [ + 90, + 93, + 179, + 110 + ], + "spans": [ + { + "bbox": [ + 90, + 93, + 179, + 110 + ], + "score": 1.0, + "content": "A ALGORITHM", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 90, + 119, + 349, + 132 + ], + "lines": [ + { + "bbox": [ + 90, + 118, + 350, + 133 + ], + "spans": [ + { + "bbox": [ + 90, + 118, + 350, + 133 + ], + "score": 1.0, + "content": "We summarize the algorithm for HER with CER in Algorithm 1.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 89, + 144, + 509, + 489 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 89, + 144, + 509, + 489 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 144, + 509, + 489 + ], + "spans": [ + { + "bbox": [ + 89, + 144, + 509, + 489 + ], + "score": 0.915, + "html": "
Algorithm1HER with CER
Initialize a random process N for action exploration,max episode length to L Set CER to ind-CER or int-CER
for episode= 1 to M do
Receive initial state S A
Receive a goal rA for this episode
Initialize episode buffer buffer A
for t=1to L do
select action aA = μe(sA) +Nt w.r.t. the current policy and exploration Execute actions αA and observe reward rA and new state s'A
Store (sA,aA,gA,rA,SA') in buffer A
SA↑SA
end for
Receive initial state SB or Receive initial state SB, where SB is a state sampled from buffer A
Receive a goal rB for this episode Initialize episode buffer buffer B
for t=1 to L do
select action aB = μe(sB)+Nt w.r.t. the current policy and exploration
Execute actions αB and observe reward rB and new state s'B
Store (sB,aB,gB,rB,SB') in bufferB
SB↑SB
end for
ConcatenatebuferA and bufferg and store ({si}=1,{ai}T=1,{g}T=1,{ri}=1,{s'i}T=1) in replay buffer D
// Optimization based on off-policysamples
fork=1 toKdo // Relabelling off-policy samples
", + "type": "table", + "image_path": "41c030bb667512b63e645f4439dd94c158536b6e1285dc124280366913476cd0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 89, + 144, + 509, + 259.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 89, + 259.0, + 509, + 374.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 89, + 374.0, + 509, + 489.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 91, + 513, + 236, + 526 + ], + "lines": [ + { + "bbox": [ + 88, + 513, + 237, + 528 + ], + "spans": [ + { + "bbox": [ + 88, + 513, + 237, + 528 + ], + "score": 1.0, + "content": "B ENVIRONMENT DETAILS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 90, + 538, + 522, + 616 + ], + "lines": [ + { + "bbox": [ + 88, + 536, + 523, + 554 + ], + "spans": [ + { + "bbox": [ + 88, + 536, + 523, + 554 + ], + "score": 1.0, + "content": "Robotic control environments The robotic control environments shown in Figure 7 are part of challenging", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 89, + 548, + 522, + 563 + ], + "spans": [ + { + "bbox": [ + 89, + 548, + 522, + 563 + ], + "score": 1.0, + "content": "continuous robotics control suite (Plappert et al., 2018) integrated in OpenAI Gym (Brockman et al., 2016)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 560, + 522, + 574 + ], + "spans": [ + { + "bbox": [ + 89, + 560, + 522, + 574 + ], + "score": 1.0, + "content": "and based on Mujoco simulation enginge (Todorov et al., 2012). The Fetch environments are based on the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 572, + 522, + 584 + ], + "spans": [ + { + "bbox": [ + 89, + 572, + 522, + 584 + ], + "score": 1.0, + "content": "7-DoF Fetch robotics arm, which has a two-fingered parallel gripper. The Hand environments are based on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 582, + 522, + 596 + ], + "spans": [ + { + "bbox": [ + 89, + 582, + 522, + 596 + ], + "score": 1.0, + "content": "the Shadow Dexterous Hand, which is an anthropomorphic robotic hand with 24 degrees of freedom. In all", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 593, + 521, + 606 + ], + "spans": [ + { + "bbox": [ + 89, + 593, + 507, + 606 + ], + "score": 1.0, + "content": "tasks, rewards are sparse and binary: the agent obtains a reward of 0 if the goal has been achieved and", + "type": "text" + }, + { + "bbox": [ + 507, + 594, + 521, + 604 + ], + "score": 0.69, + "content": "- 1", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 604, + 350, + 617 + ], + "spans": [ + { + "bbox": [ + 89, + 604, + 350, + 617 + ], + "score": 1.0, + "content": "otherwise. For more details please refer to Plappert et al. (2018).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 90, + 629, + 520, + 651 + ], + "lines": [ + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "score": 1.0, + "content": "Ant maze environments We also construct two maze environments with the re-settable property, rendered", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 639, + 522, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 639, + 522, + 653 + ], + "score": 1.0, + "content": "in Figure 1, in which walls are placed to construct ”U” or ”S” shaped maze. At the beginning of each episode,", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 51 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 284, + 671, + 294, + 680 + ], + "lines": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "spans": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 91, + 95, + 178, + 107 + ], + "lines": [ + { + "bbox": [ + 90, + 93, + 179, + 110 + ], + "spans": [ + { + "bbox": [ + 90, + 93, + 179, + 110 + ], + "score": 1.0, + "content": "A ALGORITHM", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 90, + 119, + 349, + 132 + ], + "lines": [ + { + "bbox": [ + 90, + 118, + 350, + 133 + ], + "spans": [ + { + "bbox": [ + 90, + 118, + 350, + 133 + ], + "score": 1.0, + "content": "We summarize the algorithm for HER with CER in Algorithm 1.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 90, + 118, + 350, + 133 + ] + }, + { + "type": "table", + "bbox": [ + 89, + 144, + 509, + 489 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 89, + 144, + 509, + 489 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 89, + 144, + 509, + 489 + ], + "spans": [ + { + "bbox": [ + 89, + 144, + 509, + 489 + ], + "score": 0.915, + "html": "
Algorithm1HER with CER
Initialize a random process N for action exploration,max episode length to L Set CER to ind-CER or int-CER
for episode= 1 to M do
Receive initial state S A
Receive a goal rA for this episode
Initialize episode buffer buffer A
for t=1to L do
select action aA = μe(sA) +Nt w.r.t. the current policy and exploration Execute actions αA and observe reward rA and new state s'A
Store (sA,aA,gA,rA,SA') in buffer A
SA↑SA
end for
Receive initial state SB or Receive initial state SB, where SB is a state sampled from buffer A
Receive a goal rB for this episode Initialize episode buffer buffer B
for t=1 to L do
select action aB = μe(sB)+Nt w.r.t. the current policy and exploration
Execute actions αB and observe reward rB and new state s'B
Store (sB,aB,gB,rB,SB') in bufferB
SB↑SB
end for
ConcatenatebuferA and bufferg and store ({si}=1,{ai}T=1,{g}T=1,{ri}=1,{s'i}T=1) in replay buffer D
// Optimization based on off-policysamples
fork=1 toKdo // Relabelling off-policy samples
", + "type": "table", + "image_path": "41c030bb667512b63e645f4439dd94c158536b6e1285dc124280366913476cd0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 89, + 144, + 509, + 259.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 89, + 259.0, + 509, + 374.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 89, + 374.0, + 509, + 489.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 91, + 513, + 236, + 526 + ], + "lines": [ + { + "bbox": [ + 88, + 513, + 237, + 528 + ], + "spans": [ + { + "bbox": [ + 88, + 513, + 237, + 528 + ], + "score": 1.0, + "content": "B ENVIRONMENT DETAILS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 90, + 538, + 522, + 616 + ], + "lines": [ + { + "bbox": [ + 88, + 536, + 523, + 554 + ], + "spans": [ + { + "bbox": [ + 88, + 536, + 523, + 554 + ], + "score": 1.0, + "content": "Robotic control environments The robotic control environments shown in Figure 7 are part of challenging", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 89, + 548, + 522, + 563 + ], + "spans": [ + { + "bbox": [ + 89, + 548, + 522, + 563 + ], + "score": 1.0, + "content": "continuous robotics control suite (Plappert et al., 2018) integrated in OpenAI Gym (Brockman et al., 2016)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 560, + 522, + 574 + ], + "spans": [ + { + "bbox": [ + 89, + 560, + 522, + 574 + ], + "score": 1.0, + "content": "and based on Mujoco simulation enginge (Todorov et al., 2012). The Fetch environments are based on the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 572, + 522, + 584 + ], + "spans": [ + { + "bbox": [ + 89, + 572, + 522, + 584 + ], + "score": 1.0, + "content": "7-DoF Fetch robotics arm, which has a two-fingered parallel gripper. The Hand environments are based on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 582, + 522, + 596 + ], + "spans": [ + { + "bbox": [ + 89, + 582, + 522, + 596 + ], + "score": 1.0, + "content": "the Shadow Dexterous Hand, which is an anthropomorphic robotic hand with 24 degrees of freedom. In all", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 593, + 521, + 606 + ], + "spans": [ + { + "bbox": [ + 89, + 593, + 507, + 606 + ], + "score": 1.0, + "content": "tasks, rewards are sparse and binary: the agent obtains a reward of 0 if the goal has been achieved and", + "type": "text" + }, + { + "bbox": [ + 507, + 594, + 521, + 604 + ], + "score": 0.69, + "content": "- 1", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 604, + 350, + 617 + ], + "spans": [ + { + "bbox": [ + 89, + 604, + 350, + 617 + ], + "score": 1.0, + "content": "otherwise. For more details please refer to Plappert et al. (2018).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9, + "bbox_fs": [ + 88, + 536, + 523, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 629, + 520, + 651 + ], + "lines": [ + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "spans": [ + { + "bbox": [ + 90, + 629, + 522, + 642 + ], + "score": 1.0, + "content": "Ant maze environments We also construct two maze environments with the re-settable property, rendered", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 639, + 522, + 653 + ], + "spans": [ + { + "bbox": [ + 89, + 639, + 522, + 653 + ], + "score": 1.0, + "content": "in Figure 1, in which walls are placed to construct ”U” or ”S” shaped maze. At the beginning of each episode,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 90, + 342, + 521, + 354 + ], + "spans": [ + { + "bbox": [ + 90, + 342, + 254, + 354 + ], + "score": 1.0, + "content": "the agent is always initialized at position", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 255, + 342, + 277, + 354 + ], + "score": 0.89, + "content": "( 0 , 0 )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 277, + 342, + 521, + 354 + ], + "score": 1.0, + "content": ", and can move in any direction as long as it is not obstructed", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 89, + 352, + 522, + 366 + ], + "spans": [ + { + "bbox": [ + 89, + 352, + 156, + 366 + ], + "score": 1.0, + "content": "by a wall. The", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 156, + 354, + 167, + 363 + ], + "score": 0.43, + "content": "\\mathbf { X } ^ { - }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 168, + 352, + 448, + 366 + ], + "score": 1.0, + "content": "and y-axis locations of the target ball are sampled uniformly from", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 448, + 352, + 481, + 365 + ], + "score": 0.34, + "content": "[ - 5 , 2 0 ]", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 482, + 352, + 485, + 366 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 485, + 352, + 518, + 365 + ], + "score": 0.25, + "content": "[ - 5 , 2 0 ]", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 519, + 352, + 522, + 366 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 364, + 142, + 377 + ], + "spans": [ + { + "bbox": [ + 89, + 364, + 142, + 377 + ], + "score": 1.0, + "content": "respectively.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 13.5, + "bbox_fs": [ + 89, + 629, + 522, + 653 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 97, + 93, + 512, + 308 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 97, + 93, + 512, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 97, + 93, + 512, + 308 + ], + "spans": [ + { + "bbox": [ + 97, + 93, + 512, + 308 + ], + "score": 0.977, + "type": "image", + "image_path": "18ec610471e417495297d3ada254ce66e758df5b2463d05d5b9be2f597a0bd37.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 97, + 93, + 512, + 164.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 97, + 164.66666666666669, + 512, + 236.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 97, + 236.33333333333337, + 512, + 308.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 184, + 311, + 425, + 322 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 185, + 309, + 426, + 324 + ], + "spans": [ + { + "bbox": [ + 185, + 309, + 426, + 324 + ], + "score": 1.0, + "content": "Figure 7: Robotics control environments used in our experiments", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 90, + 341, + 522, + 375 + ], + "lines": [ + { + "bbox": [ + 90, + 342, + 521, + 354 + ], + "spans": [ + { + "bbox": [ + 90, + 342, + 254, + 354 + ], + "score": 1.0, + "content": "the agent is always initialized at position", + "type": "text" + }, + { + "bbox": [ + 255, + 342, + 277, + 354 + ], + "score": 0.89, + "content": "( 0 , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 342, + 521, + 354 + ], + "score": 1.0, + "content": ", and can move in any direction as long as it is not obstructed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 89, + 352, + 522, + 366 + ], + "spans": [ + { + "bbox": [ + 89, + 352, + 156, + 366 + ], + "score": 1.0, + "content": "by a wall. The", + "type": "text" + }, + { + "bbox": [ + 156, + 354, + 167, + 363 + ], + "score": 0.43, + "content": "\\mathbf { X } ^ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 352, + 448, + 366 + ], + "score": 1.0, + "content": "and y-axis locations of the target ball are sampled uniformly from", + "type": "text" + }, + { + "bbox": [ + 448, + 352, + 481, + 365 + ], + "score": 0.34, + "content": "[ - 5 , 2 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 352, + 485, + 366 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 485, + 352, + 518, + 365 + ], + "score": 0.25, + "content": "[ - 5 , 2 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 519, + 352, + 522, + 366 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 364, + 142, + 377 + ], + "spans": [ + { + "bbox": [ + 89, + 364, + 142, + 377 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 90, + 392, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 89, + 389, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 89, + 389, + 506, + 405 + ], + "score": 1.0, + "content": "C COMPETITIVE EXPERIENCE REPLAY WITH DIFFERENT ADVERSARIAL AGENTS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 137, + 419, + 463, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 419, + 463, + 581 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 419, + 463, + 581 + ], + "spans": [ + { + "bbox": [ + 137, + 419, + 463, + 581 + ], + "score": 0.975, + "type": "image", + "image_path": "d5cc5dff820ac51df2323423b6c4f33228df28e6347716f00a1bea69f7c54c77.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 137, + 419, + 463, + 473.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 137, + 473.0, + 463, + 527.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 137, + 527.0, + 463, + 581.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 91, + 585, + 521, + 615 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 90, + 584, + 521, + 596 + ], + "spans": [ + { + "bbox": [ + 90, + 584, + 521, + 596 + ], + "score": 1.0, + "content": "Figure 8: Performance on FetchSlide (top) and HandManipulatePenFull (bottom) for different batch-size multipliers", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 90, + 595, + 521, + 606 + ], + "spans": [ + { + "bbox": [ + 90, + 595, + 265, + 606 + ], + "score": 1.0, + "content": "when training using HER (left columns) or HER", + "type": "text" + }, + { + "bbox": [ + 266, + 596, + 272, + 604 + ], + "score": 0.44, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 595, + 521, + 606 + ], + "score": 1.0, + "content": "CER (middle, right columns). Middle plots show the performance of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 604, + 375, + 617 + ], + "spans": [ + { + "bbox": [ + 89, + 604, + 112, + 617 + ], + "score": 1.0, + "content": "agent", + "type": "text" + }, + { + "bbox": [ + 112, + 605, + 120, + 614 + ], + "score": 0.65, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 604, + 281, + 617 + ], + "score": 1.0, + "content": "and, in the right plots, performance of agent", + "type": "text" + }, + { + "bbox": [ + 281, + 605, + 290, + 614 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 604, + 375, + 617 + ], + "score": 1.0, + "content": "is shown for reference.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 91, + 618, + 522, + 652 + ], + "lines": [ + { + "bbox": [ + 88, + 616, + 522, + 632 + ], + "spans": [ + { + "bbox": [ + 88, + 616, + 522, + 632 + ], + "score": 1.0, + "content": "As Andrychowicz et al. (2017) and Andrychowicz et al. (2018a) observe (and we also observe), performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 88, + 627, + 522, + 644 + ], + "spans": [ + { + "bbox": [ + 88, + 627, + 471, + 644 + ], + "score": 1.0, + "content": "depends on the batch size. We leverage this observation to tune the relative strengths of Agents", + "type": "text" + }, + { + "bbox": [ + 472, + 630, + 480, + 639 + ], + "score": 0.71, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 627, + 498, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 499, + 630, + 508, + 639 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 508, + 627, + 522, + 644 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 640, + 344, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 344, + 654 + ], + "score": 1.0, + "content": "separately manipulating the batch sizes used for updating each.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 276, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 284, + 671, + 294, + 680 + ], + "lines": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "spans": [ + { + "bbox": [ + 282, + 670, + 296, + 684 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 97, + 93, + 512, + 308 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 97, + 93, + 512, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 97, + 93, + 512, + 308 + ], + "spans": [ + { + "bbox": [ + 97, + 93, + 512, + 308 + ], + "score": 0.977, + "type": "image", + "image_path": "18ec610471e417495297d3ada254ce66e758df5b2463d05d5b9be2f597a0bd37.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 97, + 93, + 512, + 164.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 97, + 164.66666666666669, + 512, + 236.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 97, + 236.33333333333337, + 512, + 308.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 184, + 311, + 425, + 322 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 185, + 309, + 426, + 324 + ], + "spans": [ + { + "bbox": [ + 185, + 309, + 426, + 324 + ], + "score": 1.0, + "content": "Figure 7: Robotics control environments used in our experiments", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 90, + 341, + 522, + 375 + ], + "lines": [], + "index": 5, + "bbox_fs": [ + 89, + 342, + 522, + 377 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 90, + 392, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 89, + 389, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 89, + 389, + 506, + 405 + ], + "score": 1.0, + "content": "C COMPETITIVE EXPERIENCE REPLAY WITH DIFFERENT ADVERSARIAL AGENTS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 137, + 419, + 463, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 419, + 463, + 581 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 419, + 463, + 581 + ], + "spans": [ + { + "bbox": [ + 137, + 419, + 463, + 581 + ], + "score": 0.975, + "type": "image", + "image_path": "d5cc5dff820ac51df2323423b6c4f33228df28e6347716f00a1bea69f7c54c77.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 137, + 419, + 463, + 473.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 137, + 473.0, + 463, + 527.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 137, + 527.0, + 463, + 581.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 91, + 585, + 521, + 615 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 90, + 584, + 521, + 596 + ], + "spans": [ + { + "bbox": [ + 90, + 584, + 521, + 596 + ], + "score": 1.0, + "content": "Figure 8: Performance on FetchSlide (top) and HandManipulatePenFull (bottom) for different batch-size multipliers", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 90, + 595, + 521, + 606 + ], + "spans": [ + { + "bbox": [ + 90, + 595, + 265, + 606 + ], + "score": 1.0, + "content": "when training using HER (left columns) or HER", + "type": "text" + }, + { + "bbox": [ + 266, + 596, + 272, + 604 + ], + "score": 0.44, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 595, + 521, + 606 + ], + "score": 1.0, + "content": "CER (middle, right columns). Middle plots show the performance of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 604, + 375, + 617 + ], + "spans": [ + { + "bbox": [ + 89, + 604, + 112, + 617 + ], + "score": 1.0, + "content": "agent", + "type": "text" + }, + { + "bbox": [ + 112, + 605, + 120, + 614 + ], + "score": 0.65, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 604, + 281, + 617 + ], + "score": 1.0, + "content": "and, in the right plots, performance of agent", + "type": "text" + }, + { + "bbox": [ + 281, + 605, + 290, + 614 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 604, + 375, + 617 + ], + "score": 1.0, + "content": "is shown for reference.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 91, + 618, + 522, + 652 + ], + "lines": [ + { + "bbox": [ + 88, + 616, + 522, + 632 + ], + "spans": [ + { + "bbox": [ + 88, + 616, + 522, + 632 + ], + "score": 1.0, + "content": "As Andrychowicz et al. (2017) and Andrychowicz et al. (2018a) observe (and we also observe), performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 88, + 627, + 522, + 644 + ], + "spans": [ + { + "bbox": [ + 88, + 627, + 471, + 644 + ], + "score": 1.0, + "content": "depends on the batch size. We leverage this observation to tune the relative strengths of Agents", + "type": "text" + }, + { + "bbox": [ + 472, + 630, + 480, + 639 + ], + "score": 0.71, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 627, + 498, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 499, + 630, + 508, + 639 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 508, + 627, + 522, + 644 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 640, + 344, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 640, + 344, + 654 + ], + "score": 1.0, + "content": "separately manipulating the batch sizes used for updating each.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 88, + 616, + 522, + 654 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 90, + 95, + 522, + 184 + ], + "lines": [ + { + "bbox": [ + 89, + 96, + 522, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 96, + 522, + 108 + ], + "score": 1.0, + "content": "For simplicity, we control the batch size by changing the number of MPI workers devoted to a particular", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 90, + 107, + 522, + 119 + ], + "spans": [ + { + "bbox": [ + 90, + 107, + 522, + 119 + ], + "score": 1.0, + "content": "update. Each MPI worker computes the gradients for a batch size of 256; averaging the gradients from each", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 90, + 118, + 520, + 129 + ], + "spans": [ + { + "bbox": [ + 90, + 118, + 268, + 129 + ], + "score": 1.0, + "content": "worker results in an effective batch size of", + "type": "text" + }, + { + "bbox": [ + 268, + 118, + 303, + 128 + ], + "score": 0.9, + "content": "N * 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 118, + 484, + 129 + ], + "score": 1.0, + "content": ". For our single-agent baselines, we choose", + "type": "text" + }, + { + "bbox": [ + 485, + 118, + 520, + 128 + ], + "score": 0.89, + "content": "N = 3 0", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 128, + 522, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 128, + 267, + 140 + ], + "score": 1.0, + "content": "workers, and, when using CER, a default of", + "type": "text" + }, + { + "bbox": [ + 267, + 129, + 300, + 139 + ], + "score": 0.9, + "content": "N = 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 128, + 336, + 140 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 336, + 129, + 345, + 138 + ], + "score": 0.73, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 128, + 363, + 140 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 129, + 372, + 139 + ], + "score": 0.77, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 128, + 443, + 140 + ], + "score": 1.0, + "content": "In the following,", + "type": "text" + }, + { + "bbox": [ + 443, + 129, + 471, + 140 + ], + "score": 0.67, + "content": "A x B y", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 128, + 522, + 140 + ], + "score": 1.0, + "content": "denotes, for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 139, + 523, + 152 + ], + "spans": [ + { + "bbox": [ + 89, + 139, + 114, + 152 + ], + "score": 1.0, + "content": "agent", + "type": "text" + }, + { + "bbox": [ + 115, + 140, + 123, + 150 + ], + "score": 0.61, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 139, + 127, + 152 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 127, + 140, + 156, + 150 + ], + "score": 0.89, + "content": "N = x", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 139, + 215, + 152 + ], + "score": 1.0, + "content": "and, for agent", + "type": "text" + }, + { + "bbox": [ + 216, + 140, + 225, + 150 + ], + "score": 0.61, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 139, + 228, + 152 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 140, + 257, + 151 + ], + "score": 0.88, + "content": "N = y", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 139, + 523, + 152 + ], + "score": 1.0, + "content": ". These results suggest that, while a sufficiently large batch size is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 89, + 150, + 522, + 162 + ], + "spans": [ + { + "bbox": [ + 89, + 150, + 522, + 162 + ], + "score": 1.0, + "content": "important for achieving the best performance, the optimal configuration occurs when the batch sizes used for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 161, + 522, + 174 + ], + "spans": [ + { + "bbox": [ + 89, + 161, + 522, + 174 + ], + "score": 1.0, + "content": "the two agents are balanced. Interestingly, we observe that batch size imbalance adversely effects both agents", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 90, + 173, + 173, + 185 + ], + "spans": [ + { + "bbox": [ + 90, + 173, + 173, + 185 + ], + "score": 1.0, + "content": "trained during CER.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 91, + 200, + 251, + 213 + ], + "lines": [ + { + "bbox": [ + 89, + 199, + 253, + 215 + ], + "spans": [ + { + "bbox": [ + 89, + 199, + 253, + 215 + ], + "score": 1.0, + "content": "D IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 91, + 225, + 522, + 291 + ], + "lines": [ + { + "bbox": [ + 89, + 225, + 522, + 237 + ], + "spans": [ + { + "bbox": [ + 89, + 225, + 522, + 237 + ], + "score": 1.0, + "content": "In the code for HER (Andrychowicz et al., 2017), the authors use MPI to increase the batch size. MPI is used", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 235, + 522, + 248 + ], + "spans": [ + { + "bbox": [ + 89, + 235, + 522, + 248 + ], + "score": 1.0, + "content": "here to run rollouts in parallel and average gradients over all MPI workers. We found that MPI is crucial for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 247, + 523, + 260 + ], + "spans": [ + { + "bbox": [ + 89, + 247, + 523, + 260 + ], + "score": 1.0, + "content": "good performance, since training for longer time with a smaller batch size gives sub-optimal performance.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 257, + 523, + 271 + ], + "spans": [ + { + "bbox": [ + 89, + 257, + 523, + 271 + ], + "score": 1.0, + "content": "This is consistent with the authors’ findings in their code that having a much larger batch size helps a lot.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 268, + 522, + 281 + ], + "spans": [ + { + "bbox": [ + 89, + 268, + 522, + 281 + ], + "score": 1.0, + "content": "For each experiment, we provide the per-worker batch sizes in Table 1; note that the effective batch size is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 279, + 274, + 292 + ], + "spans": [ + { + "bbox": [ + 89, + 279, + 259, + 292 + ], + "score": 1.0, + "content": "multiplied by the number of MPI workers", + "type": "text" + }, + { + "bbox": [ + 259, + 281, + 269, + 289 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 279, + 274, + 292 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 90, + 296, + 522, + 352 + ], + "lines": [ + { + "bbox": [ + 89, + 297, + 523, + 309 + ], + "spans": [ + { + "bbox": [ + 89, + 297, + 214, + 309 + ], + "score": 1.0, + "content": "In our implementation, we do", + "type": "text" + }, + { + "bbox": [ + 214, + 297, + 225, + 307 + ], + "score": 0.79, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 297, + 523, + 309 + ], + "score": 1.0, + "content": "rollouts in parallel for each agent and have separate optimizers for each.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 306, + 522, + 320 + ], + "spans": [ + { + "bbox": [ + 89, + 306, + 330, + 320 + ], + "score": 1.0, + "content": "We found that periodically resetting the parameters of agent", + "type": "text" + }, + { + "bbox": [ + 331, + 308, + 340, + 317 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 306, + 488, + 320 + ], + "score": 1.0, + "content": "in early stage of training helps agent", + "type": "text" + }, + { + "bbox": [ + 489, + 308, + 497, + 317 + ], + "score": 0.61, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 306, + 522, + 320 + ], + "score": 1.0, + "content": "more", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 319, + 521, + 331 + ], + "spans": [ + { + "bbox": [ + 89, + 319, + 521, + 331 + ], + "score": 1.0, + "content": "consistently reach a high level of performance. This resetting helps to strike an optimal balance between the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 328, + 523, + 342 + ], + "spans": [ + { + "bbox": [ + 89, + 328, + 277, + 342 + ], + "score": 1.0, + "content": "influences of HER and CER in training agent", + "type": "text" + }, + { + "bbox": [ + 277, + 330, + 286, + 339 + ], + "score": 0.64, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 328, + 523, + 342 + ], + "score": 1.0, + "content": ". We also add L2 regularization, following the practice of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 341, + 203, + 353 + ], + "spans": [ + { + "bbox": [ + 89, + 341, + 203, + 353 + ], + "score": 1.0, + "content": "Andrychowicz et al. (2017).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 90, + 357, + 522, + 391 + ], + "lines": [ + { + "bbox": [ + 89, + 357, + 522, + 370 + ], + "spans": [ + { + "bbox": [ + 89, + 357, + 457, + 370 + ], + "score": 1.0, + "content": "For the experiments with neural networks, all parameters are randomly initialized from", + "type": "text" + }, + { + "bbox": [ + 457, + 357, + 498, + 370 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 0 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 357, + 522, + 370 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 368, + 523, + 381 + ], + "spans": [ + { + "bbox": [ + 89, + 368, + 523, + 381 + ], + "score": 1.0, + "content": "use networks with three layers of hidden layer size 256 and Adam (Kingma & Ba, 2014) for optimization.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 379, + 490, + 393 + ], + "spans": [ + { + "bbox": [ + 89, + 379, + 490, + 393 + ], + "score": 1.0, + "content": "Presented results are averaged over 5 random seeds. We summarize the hyperparameters in Table 1.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 168, + 401, + 440, + 585 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 168, + 401, + 440, + 585 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 401, + 440, + 585 + ], + "spans": [ + { + "bbox": [ + 168, + 401, + 440, + 585 + ], + "score": 0.982, + "html": "
Hyperparametername'U'AntMaze'S'AntMazeFetchControlHandControl
Buffer size1E51E61E61E6
Batch size128128256256
Max steps ofepisode5010050100
Reset epochs2255
Max reset epochs10102030
Total epochs50100100/50200
ActorLearning rate0.00040.00040.0010.001
CriticLearning rate0.00040.00040.0010.001
ActionL2 regularization0.010.011.001.00
Polyak0.950.950.950.95
", + "type": "table", + "image_path": "12721f8289fc6e8305dc6c8ba83c8d9e44f50e66bde71016c6b12f52add3bb27.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 168, + 401, + 440, + 462.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 168, + 462.3333333333333, + 440, + 523.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 168, + 523.6666666666666, + 440, + 585.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 207, + 594, + 403, + 605 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 207, + 594, + 404, + 606 + ], + "spans": [ + { + "bbox": [ + 207, + 594, + 404, + 606 + ], + "score": 1.0, + "content": "Table 1: Hyperparameter values used in experiments.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 25.0 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 91, + 40, + 277, + 50 + ], + "lines": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "spans": [ + { + "bbox": [ + 90, + 39, + 277, + 52 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 284, + 671, + 294, + 680 + ], + "lines": [ + { + "bbox": [ + 282, + 670, + 297, + 684 + ], + "spans": [ + { + "bbox": [ + 282, + 670, + 297, + 684 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 90, + 95, + 522, + 184 + ], + "lines": [ + { + "bbox": [ + 89, + 96, + 522, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 96, + 522, + 108 + ], + "score": 1.0, + "content": "For simplicity, we control the batch size by changing the number of MPI workers devoted to a particular", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 90, + 107, + 522, + 119 + ], + "spans": [ + { + "bbox": [ + 90, + 107, + 522, + 119 + ], + "score": 1.0, + "content": "update. Each MPI worker computes the gradients for a batch size of 256; averaging the gradients from each", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 90, + 118, + 520, + 129 + ], + "spans": [ + { + "bbox": [ + 90, + 118, + 268, + 129 + ], + "score": 1.0, + "content": "worker results in an effective batch size of", + "type": "text" + }, + { + "bbox": [ + 268, + 118, + 303, + 128 + ], + "score": 0.9, + "content": "N * 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 118, + 484, + 129 + ], + "score": 1.0, + "content": ". For our single-agent baselines, we choose", + "type": "text" + }, + { + "bbox": [ + 485, + 118, + 520, + 128 + ], + "score": 0.89, + "content": "N = 3 0", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 128, + 522, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 128, + 267, + 140 + ], + "score": 1.0, + "content": "workers, and, when using CER, a default of", + "type": "text" + }, + { + "bbox": [ + 267, + 129, + 300, + 139 + ], + "score": 0.9, + "content": "N = 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 128, + 336, + 140 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 336, + 129, + 345, + 138 + ], + "score": 0.73, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 128, + 363, + 140 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 129, + 372, + 139 + ], + "score": 0.77, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 128, + 443, + 140 + ], + "score": 1.0, + "content": "In the following,", + "type": "text" + }, + { + "bbox": [ + 443, + 129, + 471, + 140 + ], + "score": 0.67, + "content": "A x B y", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 128, + 522, + 140 + ], + "score": 1.0, + "content": "denotes, for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 139, + 523, + 152 + ], + "spans": [ + { + "bbox": [ + 89, + 139, + 114, + 152 + ], + "score": 1.0, + "content": "agent", + "type": "text" + }, + { + "bbox": [ + 115, + 140, + 123, + 150 + ], + "score": 0.61, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 139, + 127, + 152 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 127, + 140, + 156, + 150 + ], + "score": 0.89, + "content": "N = x", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 139, + 215, + 152 + ], + "score": 1.0, + "content": "and, for agent", + "type": "text" + }, + { + "bbox": [ + 216, + 140, + 225, + 150 + ], + "score": 0.61, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 139, + 228, + 152 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 228, + 140, + 257, + 151 + ], + "score": 0.88, + "content": "N = y", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 139, + 523, + 152 + ], + "score": 1.0, + "content": ". These results suggest that, while a sufficiently large batch size is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 89, + 150, + 522, + 162 + ], + "spans": [ + { + "bbox": [ + 89, + 150, + 522, + 162 + ], + "score": 1.0, + "content": "important for achieving the best performance, the optimal configuration occurs when the batch sizes used for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 161, + 522, + 174 + ], + "spans": [ + { + "bbox": [ + 89, + 161, + 522, + 174 + ], + "score": 1.0, + "content": "the two agents are balanced. Interestingly, we observe that batch size imbalance adversely effects both agents", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 90, + 173, + 173, + 185 + ], + "spans": [ + { + "bbox": [ + 90, + 173, + 173, + 185 + ], + "score": 1.0, + "content": "trained during CER.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 89, + 96, + 523, + 185 + ] + }, + { + "type": "title", + "bbox": [ + 91, + 200, + 251, + 213 + ], + "lines": [ + { + "bbox": [ + 89, + 199, + 253, + 215 + ], + "spans": [ + { + "bbox": [ + 89, + 199, + 253, + 215 + ], + "score": 1.0, + "content": "D IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 91, + 225, + 522, + 291 + ], + "lines": [ + { + "bbox": [ + 89, + 225, + 522, + 237 + ], + "spans": [ + { + "bbox": [ + 89, + 225, + 522, + 237 + ], + "score": 1.0, + "content": "In the code for HER (Andrychowicz et al., 2017), the authors use MPI to increase the batch size. MPI is used", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 235, + 522, + 248 + ], + "spans": [ + { + "bbox": [ + 89, + 235, + 522, + 248 + ], + "score": 1.0, + "content": "here to run rollouts in parallel and average gradients over all MPI workers. We found that MPI is crucial for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 247, + 523, + 260 + ], + "spans": [ + { + "bbox": [ + 89, + 247, + 523, + 260 + ], + "score": 1.0, + "content": "good performance, since training for longer time with a smaller batch size gives sub-optimal performance.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 257, + 523, + 271 + ], + "spans": [ + { + "bbox": [ + 89, + 257, + 523, + 271 + ], + "score": 1.0, + "content": "This is consistent with the authors’ findings in their code that having a much larger batch size helps a lot.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 268, + 522, + 281 + ], + "spans": [ + { + "bbox": [ + 89, + 268, + 522, + 281 + ], + "score": 1.0, + "content": "For each experiment, we provide the per-worker batch sizes in Table 1; note that the effective batch size is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 279, + 274, + 292 + ], + "spans": [ + { + "bbox": [ + 89, + 279, + 259, + 292 + ], + "score": 1.0, + "content": "multiplied by the number of MPI workers", + "type": "text" + }, + { + "bbox": [ + 259, + 281, + 269, + 289 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 279, + 274, + 292 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5, + "bbox_fs": [ + 89, + 225, + 523, + 292 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 296, + 522, + 352 + ], + "lines": [ + { + "bbox": [ + 89, + 297, + 523, + 309 + ], + "spans": [ + { + "bbox": [ + 89, + 297, + 214, + 309 + ], + "score": 1.0, + "content": "In our implementation, we do", + "type": "text" + }, + { + "bbox": [ + 214, + 297, + 225, + 307 + ], + "score": 0.79, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 297, + 523, + 309 + ], + "score": 1.0, + "content": "rollouts in parallel for each agent and have separate optimizers for each.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 306, + 522, + 320 + ], + "spans": [ + { + "bbox": [ + 89, + 306, + 330, + 320 + ], + "score": 1.0, + "content": "We found that periodically resetting the parameters of agent", + "type": "text" + }, + { + "bbox": [ + 331, + 308, + 340, + 317 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 306, + 488, + 320 + ], + "score": 1.0, + "content": "in early stage of training helps agent", + "type": "text" + }, + { + "bbox": [ + 489, + 308, + 497, + 317 + ], + "score": 0.61, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 306, + 522, + 320 + ], + "score": 1.0, + "content": "more", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 319, + 521, + 331 + ], + "spans": [ + { + "bbox": [ + 89, + 319, + 521, + 331 + ], + "score": 1.0, + "content": "consistently reach a high level of performance. This resetting helps to strike an optimal balance between the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 328, + 523, + 342 + ], + "spans": [ + { + "bbox": [ + 89, + 328, + 277, + 342 + ], + "score": 1.0, + "content": "influences of HER and CER in training agent", + "type": "text" + }, + { + "bbox": [ + 277, + 330, + 286, + 339 + ], + "score": 0.64, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 328, + 523, + 342 + ], + "score": 1.0, + "content": ". We also add L2 regularization, following the practice of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 341, + 203, + 353 + ], + "spans": [ + { + "bbox": [ + 89, + 341, + 203, + 353 + ], + "score": 1.0, + "content": "Andrychowicz et al. (2017).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 89, + 297, + 523, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 357, + 522, + 391 + ], + "lines": [ + { + "bbox": [ + 89, + 357, + 522, + 370 + ], + "spans": [ + { + "bbox": [ + 89, + 357, + 457, + 370 + ], + "score": 1.0, + "content": "For the experiments with neural networks, all parameters are randomly initialized from", + "type": "text" + }, + { + "bbox": [ + 457, + 357, + 498, + 370 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 0 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 357, + 522, + 370 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 368, + 523, + 381 + ], + "spans": [ + { + "bbox": [ + 89, + 368, + 523, + 381 + ], + "score": 1.0, + "content": "use networks with three layers of hidden layer size 256 and Adam (Kingma & Ba, 2014) for optimization.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 379, + 490, + 393 + ], + "spans": [ + { + "bbox": [ + 89, + 379, + 490, + 393 + ], + "score": 1.0, + "content": "Presented results are averaged over 5 random seeds. We summarize the hyperparameters in Table 1.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 89, + 357, + 523, + 393 + ] + }, + { + "type": "table", + "bbox": [ + 168, + 401, + 440, + 585 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 168, + 401, + 440, + 585 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 401, + 440, + 585 + ], + "spans": [ + { + "bbox": [ + 168, + 401, + 440, + 585 + ], + "score": 0.982, + "html": "
Hyperparametername'U'AntMaze'S'AntMazeFetchControlHandControl
Buffer size1E51E61E61E6
Batch size128128256256
Max steps ofepisode5010050100
Reset epochs2255
Max reset epochs10102030
Total epochs50100100/50200
ActorLearning rate0.00040.00040.0010.001
CriticLearning rate0.00040.00040.0010.001
ActionL2 regularization0.010.011.001.00
Polyak0.950.950.950.95
", + "type": "table", + "image_path": "12721f8289fc6e8305dc6c8ba83c8d9e44f50e66bde71016c6b12f52add3bb27.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 168, + 401, + 440, + 462.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 168, + 462.3333333333333, + 440, + 523.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 168, + 523.6666666666666, + 440, + 585.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 207, + 594, + 403, + 605 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 207, + 594, + 404, + 606 + ], + "spans": [ + { + "bbox": [ + 207, + 594, + 404, + 606 + ], + "score": 1.0, + "content": "Table 1: Hyperparameter values used in experiments.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 25.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/Sklsm20ctX/Sklsm20ctX_model.json b/parse/train/Sklsm20ctX/Sklsm20ctX_model.json new file mode 100644 index 0000000000000000000000000000000000000000..4786627a8bfe0677014c363ef119aa0c6b32450f --- /dev/null +++ b/parse/train/Sklsm20ctX/Sklsm20ctX_model.json @@ -0,0 +1,21533 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 353, + 629, + 1348, + 629, + 1348, + 1146, + 353, + 1146 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 253, + 1410, + 1449, + 1410, + 1449, + 1655, + 253, + 1655 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 254, + 1272, + 1448, + 1272, + 1448, + 1394, + 254, + 1394 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 254, + 1671, + 1448, + 1671, + 1448, + 1763, + 254, + 1763 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 276, + 356, + 1240, + 356, + 1240, + 482, + 276, + 482 + ], + "score": 0.961 + }, + { + "category_id": 0, + "poly": [ + 254, + 261, + 982, + 261, + 982, + 303, + 254, + 303 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 285, + 1783, + 1045, + 1783, + 1045, + 1810, + 285, + 1810 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 257, + 1204, + 529, + 1204, + 529, + 1238, + 257, + 1238 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 253, + 112, + 770, + 112, + 770, + 141, + 253, + 141 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 772, + 561, + 927, + 561, + 927, + 595, + 772, + 595 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 796, + 1866, + 811, + 1866, + 811, + 1889, + 796, + 1889 + ], + "score": 0.77 + }, + { + "category_id": 13, + "poly": [ + 251, + 1472, + 292, + 1472, + 292, + 1503, + 251, + 1503 + ], + "score": 0.51, + "latex": "\\mathrm { N g }" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 256.0, + 986.0, + 256.0, + 986.0, + 316.0, + 251.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1779.0, + 1046.0, + 1779.0, + 1046.0, + 1811.0, + 286.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1199.0, + 534.0, + 1199.0, + 534.0, + 1245.0, + 249.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 109.0, + 772.0, + 109.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 560.0, + 932.0, + 560.0, + 932.0, + 598.0, + 769.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1865.0, + 814.0, + 1865.0, + 814.0, + 1895.0, + 795.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 630.0, + 1351.0, + 630.0, + 1351.0, + 665.0, + 349.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 658.0, + 1351.0, + 658.0, + 1351.0, + 696.0, + 348.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 694.0, + 1349.0, + 694.0, + 1349.0, + 722.0, + 350.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 721.0, + 1351.0, + 721.0, + 1351.0, + 756.0, + 349.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 751.0, + 1351.0, + 751.0, + 1351.0, + 787.0, + 349.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 782.0, + 1351.0, + 782.0, + 1351.0, + 817.0, + 349.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 810.0, + 1351.0, + 810.0, + 1351.0, + 848.0, + 348.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 843.0, + 1351.0, + 843.0, + 1351.0, + 878.0, + 349.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 875.0, + 1350.0, + 875.0, + 1350.0, + 907.0, + 350.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 902.0, + 1349.0, + 902.0, + 1349.0, + 940.0, + 348.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 933.0, + 1349.0, + 933.0, + 1349.0, + 968.0, + 349.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 965.0, + 1352.0, + 965.0, + 1352.0, + 1000.0, + 349.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 993.0, + 1351.0, + 993.0, + 1351.0, + 1030.0, + 348.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1024.0, + 1351.0, + 1024.0, + 1351.0, + 1061.0, + 348.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1056.0, + 1352.0, + 1056.0, + 1352.0, + 1092.0, + 349.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1084.0, + 1352.0, + 1084.0, + 1352.0, + 1121.0, + 348.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1120.0, + 556.0, + 1120.0, + 556.0, + 1149.0, + 351.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1411.0, + 1449.0, + 1411.0, + 1449.0, + 1445.0, + 250.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1438.0, + 1453.0, + 1438.0, + 1453.0, + 1479.0, + 248.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1470.0, + 1450.0, + 1470.0, + 1450.0, + 1507.0, + 293.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1503.0, + 1449.0, + 1503.0, + 1449.0, + 1537.0, + 249.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1531.0, + 1450.0, + 1531.0, + 1450.0, + 1569.0, + 248.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1561.0, + 1452.0, + 1561.0, + 1452.0, + 1600.0, + 248.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1590.0, + 1449.0, + 1590.0, + 1449.0, + 1631.0, + 248.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1623.0, + 1114.0, + 1623.0, + 1114.0, + 1661.0, + 249.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1271.0, + 1451.0, + 1271.0, + 1451.0, + 1309.0, + 248.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1301.0, + 1452.0, + 1301.0, + 1452.0, + 1339.0, + 247.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1333.0, + 1452.0, + 1333.0, + 1452.0, + 1366.0, + 248.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1364.0, + 580.0, + 1364.0, + 580.0, + 1398.0, + 250.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1669.0, + 1449.0, + 1669.0, + 1449.0, + 1708.0, + 249.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1696.0, + 1451.0, + 1696.0, + 1451.0, + 1741.0, + 247.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1729.0, + 1393.0, + 1729.0, + 1393.0, + 1768.0, + 247.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 351.0, + 975.0, + 351.0, + 975.0, + 397.0, + 270.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 386.0, + 505.0, + 386.0, + 505.0, + 419.0, + 274.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 420.0, + 469.0, + 420.0, + 469.0, + 451.0, + 274.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 273.0, + 446.0, + 1242.0, + 446.0, + 1242.0, + 486.0, + 273.0, + 486.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 253, + 266, + 1449, + 266, + 1449, + 694, + 253, + 694 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 252, + 708, + 1449, + 708, + 1449, + 985, + 252, + 985 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 252, + 1506, + 1450, + 1506, + 1450, + 1722, + 252, + 1722 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 253, + 1306, + 1448, + 1306, + 1448, + 1492, + 253, + 1492 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 253, + 1109, + 1449, + 1109, + 1449, + 1203, + 253, + 1203 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 613, + 1742, + 1081, + 1742, + 1081, + 1819, + 613, + 1819 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 254, + 113, + 770, + 113, + 770, + 141, + 254, + 141 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 255, + 1036, + 512, + 1036, + 512, + 1072, + 255, + 1072 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 255, + 1247, + 869, + 1247, + 869, + 1279, + 255, + 1279 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1411, + 1767, + 1445, + 1767, + 1445, + 1796, + 1411, + 1796 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 796, + 1865, + 814, + 1865, + 814, + 1889, + 796, + 1889 + ], + "score": 0.804 + }, + { + "category_id": 14, + "poly": [ + 613, + 1742, + 1083, + 1742, + 1083, + 1820, + 613, + 1820 + ], + "score": 0.94, + "latex": "r _ { t } = r _ { g } ( s _ { t } , a _ { t } , g ) = { \\left\\{ \\begin{array} { l l } { 0 , { \\mathrm { i f } } \\ | s _ { t } - g | < \\delta } \\\\ { - 1 , { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 590, + 1430, + 685, + 1430, + 685, + 1463, + 590, + 1463 + ], + "score": 0.93, + "latex": "r ( s _ { t } , a _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 253, + 1429, + 365, + 1429, + 365, + 1463, + 253, + 1463 + ], + "score": 0.93, + "latex": "T ( s ^ { \\prime } | \\bar { s } , a )" + }, + { + "category_id": 13, + "poly": [ + 934, + 1569, + 1024, + 1569, + 1024, + 1602, + 934, + 1602 + ], + "score": 0.93, + "latex": "p ( s _ { 0 } , g )" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1537, + 1269, + 1537, + 1269, + 1571, + 1019, + 1571 + ], + "score": 0.91, + "latex": "r _ { g } : S \\times A \\times G \\to R" + }, + { + "category_id": 13, + "poly": [ + 823, + 1539, + 898, + 1539, + 898, + 1570, + 823, + 1570 + ], + "score": 0.91, + "latex": "g \\in G" + }, + { + "category_id": 13, + "poly": [ + 672, + 1629, + 855, + 1629, + 855, + 1658, + 672, + 1658 + ], + "score": 0.91, + "latex": "\\pi : S \\times G \\to A" + }, + { + "category_id": 13, + "poly": [ + 457, + 1401, + 530, + 1401, + 530, + 1428, + 457, + 1428 + ], + "score": 0.9, + "latex": "a \\in A" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1369, + 1445, + 1369, + 1445, + 1398, + 1376, + 1398 + ], + "score": 0.89, + "latex": "s \\in S" + }, + { + "category_id": 13, + "poly": [ + 339, + 1467, + 364, + 1467, + 364, + 1491, + 339, + 1491 + ], + "score": 0.85, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1299, + 1434, + 1326, + 1434, + 1326, + 1460, + 1299, + 1460 + ], + "score": 0.83, + "latex": "a _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1630, + 1307, + 1630, + 1307, + 1657, + 1282, + 1657 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 361, + 1661, + 382, + 1661, + 382, + 1687, + 361, + 1687 + ], + "score": 0.81, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 351, + 634, + 376, + 634, + 376, + 660, + 351, + 660 + ], + "score": 0.77, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1420, + 451, + 1446, + 451, + 1446, + 477, + 1420, + 477 + ], + "score": 0.76, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 320, + 664, + 343, + 664, + 343, + 690, + 320, + 690 + ], + "score": 0.75, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1604, + 1227, + 1604, + 1227, + 1627, + 1207, + 1627 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1188, + 421, + 1212, + 421, + 1212, + 447, + 1188, + 447 + ], + "score": 0.67, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1195, + 451, + 1236, + 451, + 1236, + 480, + 1195, + 480 + ], + "score": 0.66, + "latex": "( B )" + }, + { + "category_id": 13, + "poly": [ + 699, + 482, + 723, + 482, + 723, + 508, + 699, + 508 + ], + "score": 0.47, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 613, + 390, + 685, + 390, + 685, + 420, + 613, + 420 + ], + "score": 0.29, + "latex": "( C E R )" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 110.0, + 771.0, + 110.0, + 771.0, + 145.0, + 250.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1031.0, + 516.0, + 1031.0, + 516.0, + 1080.0, + 246.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1247.0, + 875.0, + 1247.0, + 875.0, + 1283.0, + 250.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1862.0, + 817.0, + 1862.0, + 817.0, + 1897.0, + 793.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 263.0, + 1450.0, + 263.0, + 1450.0, + 307.0, + 245.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 296.0, + 1450.0, + 296.0, + 1450.0, + 334.0, + 248.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 329.0, + 1450.0, + 329.0, + 1450.0, + 363.0, + 248.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 359.0, + 1450.0, + 359.0, + 1450.0, + 393.0, + 250.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 386.0, + 612.0, + 386.0, + 612.0, + 426.0, + 249.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 386.0, + 1452.0, + 386.0, + 1452.0, + 426.0, + 686.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 421.0, + 1187.0, + 421.0, + 1187.0, + 455.0, + 250.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 421.0, + 1449.0, + 421.0, + 1449.0, + 455.0, + 1213.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 450.0, + 1194.0, + 450.0, + 1194.0, + 484.0, + 249.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 450.0, + 1419.0, + 450.0, + 1419.0, + 484.0, + 1237.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 479.0, + 698.0, + 479.0, + 698.0, + 517.0, + 246.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 479.0, + 1450.0, + 479.0, + 1450.0, + 517.0, + 724.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 509.0, + 1452.0, + 509.0, + 1452.0, + 547.0, + 249.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 540.0, + 1452.0, + 540.0, + 1452.0, + 579.0, + 249.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 569.0, + 1453.0, + 569.0, + 1453.0, + 608.0, + 248.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 602.0, + 1450.0, + 602.0, + 1450.0, + 637.0, + 248.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 633.0, + 350.0, + 633.0, + 350.0, + 667.0, + 250.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 633.0, + 1450.0, + 633.0, + 1450.0, + 667.0, + 377.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 662.0, + 319.0, + 662.0, + 319.0, + 700.0, + 247.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 662.0, + 497.0, + 662.0, + 497.0, + 700.0, + 344.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 708.0, + 1450.0, + 708.0, + 1450.0, + 743.0, + 249.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 737.0, + 1450.0, + 737.0, + 1450.0, + 777.0, + 247.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 769.0, + 1452.0, + 769.0, + 1452.0, + 806.0, + 249.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 801.0, + 1453.0, + 801.0, + 1453.0, + 837.0, + 249.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 829.0, + 1450.0, + 829.0, + 1450.0, + 867.0, + 247.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 862.0, + 1448.0, + 862.0, + 1448.0, + 895.0, + 252.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 892.0, + 1448.0, + 892.0, + 1448.0, + 925.0, + 249.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 922.0, + 1450.0, + 922.0, + 1450.0, + 958.0, + 249.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 951.0, + 845.0, + 951.0, + 845.0, + 989.0, + 249.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1507.0, + 1451.0, + 1507.0, + 1451.0, + 1542.0, + 249.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1535.0, + 822.0, + 1535.0, + 822.0, + 1574.0, + 248.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1535.0, + 1018.0, + 1535.0, + 1018.0, + 1574.0, + 899.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1535.0, + 1451.0, + 1535.0, + 1451.0, + 1574.0, + 1270.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1566.0, + 933.0, + 1566.0, + 933.0, + 1606.0, + 248.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1566.0, + 1451.0, + 1566.0, + 1451.0, + 1606.0, + 1025.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1597.0, + 1206.0, + 1597.0, + 1206.0, + 1637.0, + 248.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1597.0, + 1451.0, + 1597.0, + 1451.0, + 1637.0, + 1228.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1625.0, + 671.0, + 1625.0, + 671.0, + 1666.0, + 247.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1625.0, + 1281.0, + 1625.0, + 1281.0, + 1666.0, + 856.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1625.0, + 1453.0, + 1625.0, + 1453.0, + 1666.0, + 1308.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1655.0, + 360.0, + 1655.0, + 360.0, + 1697.0, + 247.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1655.0, + 1455.0, + 1655.0, + 1455.0, + 1697.0, + 383.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1686.0, + 904.0, + 1686.0, + 904.0, + 1727.0, + 247.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1305.0, + 1451.0, + 1305.0, + 1451.0, + 1342.0, + 248.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1338.0, + 1451.0, + 1338.0, + 1451.0, + 1372.0, + 248.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1367.0, + 1375.0, + 1367.0, + 1375.0, + 1403.0, + 249.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1446.0, + 1367.0, + 1449.0, + 1367.0, + 1449.0, + 1403.0, + 1446.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1398.0, + 456.0, + 1398.0, + 456.0, + 1435.0, + 248.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1398.0, + 1449.0, + 1398.0, + 1449.0, + 1435.0, + 531.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1425.0, + 252.0, + 1425.0, + 252.0, + 1467.0, + 246.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1425.0, + 589.0, + 1425.0, + 589.0, + 1467.0, + 366.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1425.0, + 1298.0, + 1425.0, + 1298.0, + 1467.0, + 686.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1425.0, + 1452.0, + 1425.0, + 1452.0, + 1467.0, + 1327.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1459.0, + 338.0, + 1459.0, + 338.0, + 1496.0, + 247.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1459.0, + 376.0, + 1459.0, + 376.0, + 1496.0, + 365.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1111.0, + 1448.0, + 1111.0, + 1448.0, + 1144.0, + 252.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1139.0, + 1449.0, + 1139.0, + 1449.0, + 1177.0, + 250.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1168.0, + 742.0, + 1168.0, + 742.0, + 1209.0, + 249.0, + 1209.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 252, + 839, + 1450, + 839, + 1450, + 1209, + 252, + 1209 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 252, + 1473, + 1449, + 1473, + 1449, + 1816, + 252, + 1816 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 252, + 1287, + 1450, + 1287, + 1450, + 1382, + 252, + 1382 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 251, + 519, + 1450, + 519, + 1450, + 618, + 251, + 618 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 252, + 343, + 1450, + 343, + 1450, + 437, + 252, + 437 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 598, + 629, + 1102, + 629, + 1102, + 669, + 598, + 669 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 249, + 265, + 1451, + 265, + 1451, + 329, + 249, + 329 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 250, + 681, + 1460, + 681, + 1460, + 749, + 250, + 749 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 612, + 451, + 1090, + 451, + 1090, + 492, + 612, + 492 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 253, + 111, + 770, + 111, + 770, + 142, + 253, + 142 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 255, + 783, + 555, + 783, + 555, + 816, + 255, + 816 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 256, + 1417, + 711, + 1417, + 711, + 1450, + 256, + 1450 + ], + "score": 0.912 + }, + { + "category_id": 9, + "poly": [ + 1411, + 1225, + 1445, + 1225, + 1445, + 1256, + 1411, + 1256 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1411, + 633, + 1444, + 633, + 1444, + 663, + 1411, + 663 + ], + "score": 0.873 + }, + { + "category_id": 8, + "poly": [ + 585, + 1221, + 1115, + 1221, + 1115, + 1263, + 585, + 1263 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 796, + 1865, + 814, + 1865, + 814, + 1890, + 796, + 1890 + ], + "score": 0.786 + }, + { + "category_id": 13, + "poly": [ + 1228, + 933, + 1340, + 933, + 1340, + 967, + 1228, + 967 + ], + "score": 0.93, + "latex": "Q ( s , a , g )" + }, + { + "category_id": 13, + "poly": [ + 1012, + 933, + 1092, + 933, + 1092, + 966, + 1012, + 966 + ], + "score": 0.93, + "latex": "\\mu ( s , g )" + }, + { + "category_id": 13, + "poly": [ + 253, + 1024, + 505, + 1024, + 505, + 1058, + 253, + 1058 + ], + "score": 0.92, + "latex": "a \\sim \\mu ( s , g ) + N ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 253, + 375, + 381, + 375, + 381, + 409, + 253, + 409 + ], + "score": 0.92, + "latex": "\\pi _ { \\boldsymbol { \\theta } } ( a | [ s , g ] )" + }, + { + "category_id": 13, + "poly": [ + 450, + 268, + 537, + 268, + 537, + 301, + 450, + 301 + ], + "score": 0.92, + "latex": "| s _ { t } - g |" + }, + { + "category_id": 13, + "poly": [ + 852, + 552, + 1116, + 552, + 1116, + 588, + 852, + 588 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } [ \\cdot ]" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1780, + 1237, + 1780, + 1237, + 1810, + 1058, + 1810 + ], + "score": 0.92, + "latex": "1 \\leq t \\leq T - 1" + }, + { + "category_id": 13, + "poly": [ + 1197, + 586, + 1252, + 586, + 1252, + 619, + 1197, + 619 + ], + "score": 0.92, + "latex": "J ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 633, + 1115, + 1026, + 1115, + 1026, + 1149, + 633, + 1149 + ], + "score": 0.91, + "latex": "y _ { t } = r _ { t } + \\bar { \\gamma } Q ( s _ { t + 1 } , \\bar { \\mu } ( s _ { t + 1 } , g _ { t } ) , g _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 254, + 1114, + 550, + 1114, + 550, + 1149, + 254, + 1149 + ], + "score": 0.91, + "latex": "\\mathbf { \\bar { \\boldsymbol { L } } } = \\mathbb { E } ( Q ( s _ { t } , a _ { t } , g _ { t } ) - y _ { t } ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 325, + 519, + 676, + 519, + 676, + 556, + 325, + 556 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\rho _ { \\pi } ( s ) = \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } \\mathrm { P r } ( s _ { t } = s ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 325, + 555, + 434, + 555, + 434, + 586, + 325, + 586 + ], + "score": 0.91, + "latex": "\\gamma \\in [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 843, + 1147, + 1158, + 1147, + 1158, + 1180, + 843, + 1180 + ], + "score": 0.9, + "latex": "J ( \\theta ) = - \\mathbb { E } _ { s } Q ( s , \\mu ( s , g ) , g )" + }, + { + "category_id": 13, + "poly": [ + 1239, + 552, + 1298, + 552, + 1298, + 586, + 1239, + 586 + ], + "score": 0.9, + "latex": "\\mathbb { E } _ { \\pi } [ \\cdot ]" + }, + { + "category_id": 14, + "poly": [ + 608, + 449, + 1087, + 449, + 1087, + 490, + 608, + 490 + ], + "score": 0.9, + "latex": "J ( \\theta ) = \\mathbb { E } _ { s \\sim \\rho _ { \\pi } , a \\sim \\pi ( a | s , g ) , g \\sim G } \\left[ r _ { g } ( s , a , g ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 1059, + 1025, + 1273, + 1025, + 1273, + 1058, + 1059, + 1058 + ], + "score": 0.9, + "latex": "\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 467, + 375, + 524, + 375, + 524, + 408, + 467, + 408 + ], + "score": 0.9, + "latex": "[ s , g ]" + }, + { + "category_id": 14, + "poly": [ + 596, + 629, + 1100, + 629, + 1100, + 667, + 596, + 667 + ], + "score": 0.89, + "latex": "\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } _ { \\pi } \\left[ \\nabla _ { \\theta } \\log \\pi ( a | s , g ) Q ^ { \\pi } ( s , a , g ) \\right] ," + }, + { + "category_id": 14, + "poly": [ + 583, + 1221, + 1117, + 1221, + 1117, + 1262, + 583, + 1262 + ], + "score": 0.88, + "latex": "\\nabla _ { \\theta } J ( \\theta ) = \\mathbb { E } [ \\nabla _ { \\theta } \\mu ( s , g ) \\nabla _ { a } Q ( s , a , g ) | _ { a = \\mu ( s , g ) } ] ." + }, + { + "category_id": 13, + "poly": [ + 329, + 682, + 993, + 682, + 993, + 721, + 329, + 721 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { Q ^ { \\pi } ( s , a , g ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 1 } ^ { \\infty } \\gamma ^ { t - 1 } r _ { g } ( s _ { t } , a _ { t } , g ) | s _ { 1 } = s , a _ { 1 } = a \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 941, + 1785, + 967, + 1785, + 967, + 1810, + 941, + 1810 + ], + "score": 0.86, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 715, + 1295, + 741, + 1295, + 741, + 1320, + 715, + 1320 + ], + "score": 0.85, + "latex": "y _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1058, + 378, + 1075, + 378, + 1075, + 403, + 1058, + 403 + ], + "score": 0.82, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 558, + 1087, + 580, + 1087, + 580, + 1113, + 558, + 1113 + ], + "score": 0.82, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 517, + 408, + 535, + 408, + 535, + 432, + 517, + 432 + ], + "score": 0.82, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 324, + 273, + 343, + 273, + 343, + 300, + 324, + 300 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 831, + 269, + 847, + 269, + 847, + 295, + 831, + 295 + ], + "score": 0.79, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 981, + 724, + 998, + 724, + 998, + 748, + 981, + 748 + ], + "score": 0.79, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 471, + 723, + 491, + 723, + 491, + 742, + 471, + 742 + ], + "score": 0.79, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 844, + 724, + 860, + 724, + 860, + 743, + 844, + 743 + ], + "score": 0.77, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 736, + 724, + 754, + 724, + 754, + 742, + 736, + 742 + ], + "score": 0.77, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 983, + 381, + 1000, + 381, + 1000, + 407, + 983, + 407 + ], + "score": 0.77, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 863, + 381, + 880, + 381, + 880, + 403, + 863, + 403 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 249, + 1777, + 768, + 1777, + 768, + 1815, + 249, + 1815 + ], + "score": 0.73, + "latex": "( \\{ s ^ { i } \\} _ { i = 1 } ^ { T } , \\{ \\stackrel { \\smile } { g ^ { i } } \\} _ { i = 1 } ^ { T } , \\{ a ^ { i } \\} _ { i = 1 } ^ { T } , \\{ r ^ { i } \\} _ { i = 1 } ^ { T } , \\{ s ^ { \\prime i } \\} _ { i = 1 } ^ { T } \\big )" + }, + { + "category_id": 13, + "poly": [ + 251, + 1777, + 450, + 1777, + 450, + 1815, + 251, + 1815 + ], + "score": 0.43, + "latex": "( \\{ s ^ { i } \\} _ { i = 1 } ^ { T } , \\{ { \\breve { g ^ { i } } } \\} _ { i = 1 } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 461, + 1777, + 551, + 1777, + 551, + 1814, + 461, + 1814 + ], + "score": 0.28, + "latex": "\\langle a ^ { i } \\} _ { i = 1 } ^ { T }" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 109.0, + 772.0, + 109.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 781.0, + 560.0, + 781.0, + 560.0, + 818.0, + 248.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1417.0, + 716.0, + 1417.0, + 716.0, + 1452.0, + 250.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1863.0, + 815.0, + 1863.0, + 815.0, + 1894.0, + 794.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 840.0, + 1451.0, + 840.0, + 1451.0, + 876.0, + 247.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 873.0, + 1450.0, + 873.0, + 1450.0, + 907.0, + 251.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 901.0, + 1450.0, + 901.0, + 1450.0, + 937.0, + 248.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 932.0, + 1011.0, + 932.0, + 1011.0, + 973.0, + 247.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 932.0, + 1227.0, + 932.0, + 1227.0, + 973.0, + 1093.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 932.0, + 1455.0, + 932.0, + 1455.0, + 973.0, + 1341.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 963.0, + 1451.0, + 963.0, + 1451.0, + 999.0, + 247.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 993.0, + 1451.0, + 993.0, + 1451.0, + 1031.0, + 248.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1023.0, + 252.0, + 1023.0, + 252.0, + 1064.0, + 247.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1023.0, + 1058.0, + 1023.0, + 1058.0, + 1064.0, + 506.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1023.0, + 1453.0, + 1023.0, + 1453.0, + 1064.0, + 1274.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1053.0, + 1451.0, + 1053.0, + 1451.0, + 1089.0, + 247.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1084.0, + 557.0, + 1084.0, + 557.0, + 1121.0, + 248.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1084.0, + 1450.0, + 1084.0, + 1450.0, + 1121.0, + 581.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1113.0, + 253.0, + 1113.0, + 253.0, + 1155.0, + 248.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1113.0, + 632.0, + 1113.0, + 632.0, + 1155.0, + 551.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1113.0, + 1451.0, + 1113.0, + 1451.0, + 1155.0, + 1027.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1144.0, + 842.0, + 1144.0, + 842.0, + 1186.0, + 247.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1144.0, + 1451.0, + 1144.0, + 1451.0, + 1186.0, + 1159.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1176.0, + 768.0, + 1176.0, + 768.0, + 1214.0, + 248.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1474.0, + 1452.0, + 1474.0, + 1452.0, + 1513.0, + 249.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1506.0, + 1449.0, + 1506.0, + 1449.0, + 1541.0, + 249.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1531.0, + 1450.0, + 1531.0, + 1450.0, + 1573.0, + 247.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1563.0, + 1450.0, + 1563.0, + 1450.0, + 1604.0, + 247.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1596.0, + 1450.0, + 1596.0, + 1450.0, + 1631.0, + 249.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1628.0, + 1450.0, + 1628.0, + 1450.0, + 1662.0, + 248.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1656.0, + 1450.0, + 1656.0, + 1450.0, + 1694.0, + 248.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1689.0, + 1450.0, + 1689.0, + 1450.0, + 1723.0, + 249.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1715.0, + 1454.0, + 1715.0, + 1454.0, + 1755.0, + 245.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1747.0, + 1449.0, + 1747.0, + 1449.0, + 1784.0, + 248.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1772.0, + 248.0, + 1772.0, + 248.0, + 1819.0, + 245.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1772.0, + 940.0, + 1772.0, + 940.0, + 1819.0, + 769.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1772.0, + 1057.0, + 1772.0, + 1057.0, + 1819.0, + 968.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1772.0, + 1452.0, + 1772.0, + 1452.0, + 1819.0, + 1238.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1287.0, + 714.0, + 1287.0, + 714.0, + 1325.0, + 249.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1287.0, + 1450.0, + 1287.0, + 1450.0, + 1325.0, + 742.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1319.0, + 1451.0, + 1319.0, + 1451.0, + 1353.0, + 251.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1348.0, + 399.0, + 1348.0, + 399.0, + 1383.0, + 251.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 244.0, + 513.0, + 324.0, + 513.0, + 324.0, + 564.0, + 244.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 513.0, + 1455.0, + 513.0, + 1455.0, + 564.0, + 677.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 549.0, + 324.0, + 549.0, + 324.0, + 596.0, + 246.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 549.0, + 851.0, + 549.0, + 851.0, + 596.0, + 435.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 549.0, + 1238.0, + 549.0, + 1238.0, + 596.0, + 1117.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 549.0, + 1455.0, + 549.0, + 1455.0, + 596.0, + 1299.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 583.0, + 1196.0, + 583.0, + 1196.0, + 623.0, + 248.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 583.0, + 1453.0, + 583.0, + 1453.0, + 623.0, + 1253.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 338.0, + 1454.0, + 338.0, + 1454.0, + 384.0, + 247.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 375.0, + 466.0, + 375.0, + 466.0, + 413.0, + 382.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 375.0, + 862.0, + 375.0, + 862.0, + 413.0, + 525.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 375.0, + 982.0, + 375.0, + 982.0, + 413.0, + 881.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 375.0, + 1057.0, + 375.0, + 1057.0, + 413.0, + 1001.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 375.0, + 1451.0, + 375.0, + 1451.0, + 413.0, + 1076.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 404.0, + 516.0, + 404.0, + 516.0, + 443.0, + 249.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 404.0, + 1181.0, + 404.0, + 1181.0, + 443.0, + 536.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 264.0, + 323.0, + 264.0, + 323.0, + 302.0, + 249.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 264.0, + 449.0, + 264.0, + 449.0, + 302.0, + 344.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 264.0, + 830.0, + 264.0, + 830.0, + 302.0, + 538.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 264.0, + 1451.0, + 264.0, + 1451.0, + 302.0, + 848.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 296.0, + 510.0, + 296.0, + 510.0, + 332.0, + 249.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 670.0, + 328.0, + 670.0, + 328.0, + 732.0, + 242.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 670.0, + 1457.0, + 670.0, + 1457.0, + 732.0, + 994.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 715.0, + 470.0, + 715.0, + 470.0, + 752.0, + 249.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 715.0, + 735.0, + 715.0, + 735.0, + 752.0, + 492.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 715.0, + 843.0, + 715.0, + 843.0, + 752.0, + 755.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 715.0, + 980.0, + 715.0, + 980.0, + 752.0, + 861.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 715.0, + 1011.0, + 715.0, + 1011.0, + 752.0, + 999.0, + 752.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 252, + 746, + 1451, + 746, + 1451, + 993, + 252, + 993 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 252, + 1273, + 1449, + 1273, + 1449, + 1535, + 252, + 1535 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 252, + 1007, + 1450, + 1007, + 1450, + 1264, + 252, + 1264 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 254, + 1687, + 1448, + 1687, + 1448, + 1812, + 254, + 1812 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 253, + 1548, + 1447, + 1548, + 1447, + 1673, + 253, + 1673 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 616, + 351, + 1078, + 351, + 1078, + 428, + 616, + 428 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 255, + 564, + 1447, + 564, + 1447, + 628, + 255, + 628 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 246, + 264, + 1453, + 264, + 1453, + 331, + 246, + 331 + ], + "score": 0.938 + }, + { + "category_id": 2, + "poly": [ + 253, + 111, + 770, + 111, + 770, + 142, + 253, + 142 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 253, + 482, + 436, + 482, + 436, + 519, + 253, + 519 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 256, + 684, + 741, + 684, + 741, + 716, + 256, + 716 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1410, + 375, + 1446, + 375, + 1446, + 406, + 1410, + 406 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 795, + 1866, + 812, + 1866, + 812, + 1889, + 795, + 1889 + ], + "score": 0.779 + }, + { + "category_id": 13, + "poly": [ + 1167, + 1336, + 1332, + 1336, + 1332, + 1376, + 1167, + 1376 + ], + "score": 0.94, + "latex": "| s _ { A } ^ { i } - s _ { B } ^ { j } | < \\delta" + }, + { + "category_id": 14, + "poly": [ + 617, + 350, + 1077, + 350, + 1077, + 429, + 617, + 429 + ], + "score": 0.93, + "latex": "r _ { t } ^ { \\prime } = r _ { g } ( s _ { t } , s _ { k } ) = \\left\\{ { 0 , \\mathrm { i f } | s _ { t } - s _ { k } | < \\delta , \\atop { - 1 , \\mathrm { o t h e r w i s e . } } } \\right." + }, + { + "category_id": 13, + "poly": [ + 832, + 1336, + 868, + 1336, + 868, + 1375, + 832, + 1375 + ], + "score": 0.92, + "latex": "s _ { B } ^ { j }" + }, + { + "category_id": 13, + "poly": [ + 561, + 268, + 732, + 268, + 732, + 298, + 561, + 298 + ], + "score": 0.92, + "latex": "t + 1 \\leq k \\leq T" + }, + { + "category_id": 13, + "poly": [ + 434, + 1372, + 515, + 1372, + 515, + 1408, + 434, + 1408 + ], + "score": 0.91, + "latex": "r _ { A } ^ { i } - 1" + }, + { + "category_id": 13, + "poly": [ + 1230, + 272, + 1448, + 272, + 1448, + 301, + 1230, + 301 + ], + "score": 0.91, + "latex": "\\left( s _ { t } , a _ { t } , s _ { k } , r _ { t } ^ { \\prime } , s _ { t + 1 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 981, + 267, + 1196, + 267, + 1196, + 302, + 981, + 302 + ], + "score": 0.9, + "latex": "\\left( { { s _ { t } } , { a _ { t } } , { g _ { t } } , { r _ { t } } , { s _ { t + 1 } } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 342, + 1372, + 375, + 1372, + 375, + 1409, + 342, + 1409 + ], + "score": 0.89, + "latex": "r _ { A } ^ { i }" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1304, + 1417, + 1304, + 1417, + 1339, + 1383, + 1339 + ], + "score": 0.89, + "latex": "s _ { A } ^ { i }" + }, + { + "category_id": 13, + "poly": [ + 509, + 298, + 534, + 298, + 534, + 331, + 509, + 331 + ], + "score": 0.88, + "latex": "r _ { t } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 471, + 1074, + 509, + 1074, + 509, + 1101, + 471, + 1101 + ], + "score": 0.88, + "latex": "\\pi _ { B }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1013, + 969, + 1013, + 969, + 1040, + 932, + 1040 + ], + "score": 0.88, + "latex": "\\pi _ { B }" + }, + { + "category_id": 13, + "poly": [ + 377, + 1074, + 415, + 1074, + 415, + 1101, + 377, + 1101 + ], + "score": 0.87, + "latex": "\\pi _ { A }" + }, + { + "category_id": 13, + "poly": [ + 1145, + 1614, + 1182, + 1614, + 1182, + 1642, + 1145, + 1642 + ], + "score": 0.87, + "latex": "\\pi _ { A }" + }, + { + "category_id": 13, + "poly": [ + 845, + 1014, + 881, + 1014, + 881, + 1040, + 845, + 1040 + ], + "score": 0.87, + "latex": "\\pi _ { A }" + }, + { + "category_id": 13, + "poly": [ + 315, + 1135, + 352, + 1135, + 352, + 1162, + 315, + 1162 + ], + "score": 0.87, + "latex": "\\pi _ { A }" + }, + { + "category_id": 13, + "poly": [ + 529, + 1136, + 567, + 1136, + 567, + 1161, + 529, + 1161 + ], + "score": 0.86, + "latex": "\\pi _ { B }" + }, + { + "category_id": 13, + "poly": [ + 806, + 1477, + 843, + 1477, + 843, + 1503, + 806, + 1503 + ], + "score": 0.86, + "latex": "\\pi _ { A }" + }, + { + "category_id": 13, + "poly": [ + 452, + 273, + 481, + 273, + 481, + 298, + 452, + 298 + ], + "score": 0.85, + "latex": "s _ { k }" + }, + { + "category_id": 13, + "poly": [ + 253, + 1222, + 808, + 1222, + 808, + 1263, + 253, + 1263 + ], + "score": 0.85, + "latex": "\\{ ( s _ { A } ^ { i } , a _ { A } ^ { i } , g _ { A } ^ { i } , r _ { A } ^ { i } , s ^ { \\prime } { } ^ { i } _ { A } ) , ( s _ { B } ^ { i } , a _ { B } ^ { i } , g _ { B } ^ { i } , r _ { B } ^ { i } , s ^ { \\prime } { } ^ { i } _ { B } ) \\} _ { i = 1 } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 561, + 1412, + 599, + 1412, + 599, + 1442, + 561, + 1442 + ], + "score": 0.85, + "latex": "+ 1" + }, + { + "category_id": 13, + "poly": [ + 420, + 1616, + 458, + 1616, + 458, + 1642, + 420, + 1642 + ], + "score": 0.84, + "latex": "\\pi _ { B }" + }, + { + "category_id": 13, + "poly": [ + 521, + 1306, + 546, + 1306, + 546, + 1332, + 521, + 1332 + ], + "score": 0.81, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1161, + 1306, + 1186, + 1306, + 1186, + 1332, + 1161, + 1332 + ], + "score": 0.8, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1407, + 1556, + 1445, + 1556, + 1445, + 1580, + 1407, + 1580 + ], + "score": 0.8, + "latex": "\\pi _ { B }" + }, + { + "category_id": 13, + "poly": [ + 745, + 1342, + 771, + 1342, + 771, + 1370, + 745, + 1370 + ], + "score": 0.79, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 480, + 1408, + 514, + 1408, + 514, + 1445, + 480, + 1445 + ], + "score": 0.79, + "latex": "r _ { B } ^ { j }" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1276, + 1407, + 1276, + 1407, + 1302, + 1383, + 1302 + ], + "score": 0.78, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1420, + 1162, + 1446, + 1162, + 1446, + 1189, + 1420, + 1189 + ], + "score": 0.78, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1443, + 1090, + 1443, + 1090, + 1469, + 1065, + 1469 + ], + "score": 0.76, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 893, + 1231, + 921, + 1231, + 921, + 1256, + 893, + 1256 + ], + "score": 0.75, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1333, + 1132, + 1359, + 1132, + 1359, + 1158, + 1333, + 1158 + ], + "score": 0.74, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1299, + 1306, + 1323, + 1306, + 1323, + 1332, + 1299, + 1332 + ], + "score": 0.73, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 896, + 1412, + 921, + 1412, + 921, + 1440, + 896, + 1440 + ], + "score": 0.72, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 444, + 1411, + 469, + 1411, + 469, + 1440, + 444, + 1440 + ], + "score": 0.65, + "latex": "B" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 109.0, + 772.0, + 109.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 477.0, + 441.0, + 477.0, + 441.0, + 527.0, + 246.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 682.0, + 746.0, + 682.0, + 746.0, + 718.0, + 250.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1863.0, + 816.0, + 1863.0, + 816.0, + 1895.0, + 793.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 749.0, + 1450.0, + 749.0, + 1450.0, + 783.0, + 251.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 779.0, + 1452.0, + 779.0, + 1452.0, + 814.0, + 248.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 809.0, + 1452.0, + 809.0, + 1452.0, + 842.0, + 249.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 837.0, + 1454.0, + 837.0, + 1454.0, + 876.0, + 247.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 870.0, + 1452.0, + 870.0, + 1452.0, + 907.0, + 248.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 901.0, + 1450.0, + 901.0, + 1450.0, + 935.0, + 249.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 926.0, + 1452.0, + 926.0, + 1452.0, + 971.0, + 245.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 960.0, + 552.0, + 960.0, + 552.0, + 998.0, + 248.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1274.0, + 1382.0, + 1274.0, + 1382.0, + 1309.0, + 249.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1408.0, + 1274.0, + 1449.0, + 1274.0, + 1449.0, + 1309.0, + 1408.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1301.0, + 520.0, + 1301.0, + 520.0, + 1342.0, + 248.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1301.0, + 1160.0, + 1301.0, + 1160.0, + 1342.0, + 547.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1301.0, + 1298.0, + 1301.0, + 1298.0, + 1342.0, + 1187.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1301.0, + 1382.0, + 1301.0, + 1382.0, + 1342.0, + 1324.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1418.0, + 1301.0, + 1452.0, + 1301.0, + 1452.0, + 1342.0, + 1418.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1338.0, + 744.0, + 1338.0, + 744.0, + 1381.0, + 247.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1338.0, + 831.0, + 1338.0, + 831.0, + 1381.0, + 772.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1338.0, + 1166.0, + 1338.0, + 1166.0, + 1381.0, + 869.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1338.0, + 1454.0, + 1338.0, + 1454.0, + 1381.0, + 1333.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1370.0, + 341.0, + 1370.0, + 341.0, + 1414.0, + 248.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1370.0, + 433.0, + 1370.0, + 433.0, + 1414.0, + 376.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1370.0, + 1452.0, + 1370.0, + 1452.0, + 1414.0, + 516.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1407.0, + 443.0, + 1407.0, + 443.0, + 1451.0, + 247.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1407.0, + 479.0, + 1407.0, + 479.0, + 1451.0, + 470.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1407.0, + 560.0, + 1407.0, + 560.0, + 1451.0, + 515.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1407.0, + 895.0, + 1407.0, + 895.0, + 1451.0, + 600.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1407.0, + 1452.0, + 1407.0, + 1452.0, + 1451.0, + 922.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1439.0, + 1064.0, + 1439.0, + 1064.0, + 1479.0, + 248.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1439.0, + 1450.0, + 1439.0, + 1450.0, + 1479.0, + 1091.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1469.0, + 805.0, + 1469.0, + 805.0, + 1510.0, + 247.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1469.0, + 1450.0, + 1469.0, + 1450.0, + 1510.0, + 844.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1502.0, + 676.0, + 1502.0, + 676.0, + 1540.0, + 247.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1007.0, + 844.0, + 1007.0, + 844.0, + 1046.0, + 248.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1007.0, + 931.0, + 1007.0, + 931.0, + 1046.0, + 882.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1007.0, + 1453.0, + 1007.0, + 1453.0, + 1046.0, + 970.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1039.0, + 1450.0, + 1039.0, + 1450.0, + 1074.0, + 251.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1067.0, + 376.0, + 1067.0, + 376.0, + 1106.0, + 248.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1067.0, + 470.0, + 1067.0, + 470.0, + 1106.0, + 416.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1067.0, + 1454.0, + 1067.0, + 1454.0, + 1106.0, + 510.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1101.0, + 1450.0, + 1101.0, + 1450.0, + 1135.0, + 248.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1128.0, + 314.0, + 1128.0, + 314.0, + 1166.0, + 248.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1128.0, + 528.0, + 1128.0, + 528.0, + 1166.0, + 353.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1128.0, + 1332.0, + 1128.0, + 1332.0, + 1166.0, + 568.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1128.0, + 1450.0, + 1128.0, + 1450.0, + 1166.0, + 1360.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1159.0, + 1419.0, + 1159.0, + 1419.0, + 1197.0, + 247.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1447.0, + 1159.0, + 1451.0, + 1159.0, + 1451.0, + 1197.0, + 1447.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1191.0, + 1451.0, + 1191.0, + 1451.0, + 1226.0, + 249.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1222.0, + 252.0, + 1222.0, + 252.0, + 1268.0, + 248.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1222.0, + 892.0, + 1222.0, + 892.0, + 1268.0, + 809.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1222.0, + 1247.0, + 1222.0, + 1247.0, + 1268.0, + 922.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1688.0, + 1449.0, + 1688.0, + 1449.0, + 1723.0, + 251.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1717.0, + 1451.0, + 1717.0, + 1451.0, + 1754.0, + 249.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1749.0, + 1448.0, + 1749.0, + 1448.0, + 1785.0, + 250.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1773.0, + 742.0, + 1773.0, + 742.0, + 1819.0, + 247.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1544.0, + 1406.0, + 1544.0, + 1406.0, + 1588.0, + 248.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1446.0, + 1544.0, + 1449.0, + 1544.0, + 1449.0, + 1588.0, + 1446.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1580.0, + 1450.0, + 1580.0, + 1450.0, + 1615.0, + 249.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1610.0, + 419.0, + 1610.0, + 419.0, + 1646.0, + 250.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1610.0, + 1144.0, + 1610.0, + 1144.0, + 1646.0, + 459.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1610.0, + 1450.0, + 1610.0, + 1450.0, + 1646.0, + 1183.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1641.0, + 1225.0, + 1641.0, + 1225.0, + 1677.0, + 250.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 563.0, + 1453.0, + 563.0, + 1453.0, + 601.0, + 248.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 595.0, + 1241.0, + 595.0, + 1241.0, + 631.0, + 248.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 261.0, + 451.0, + 261.0, + 451.0, + 305.0, + 246.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 261.0, + 560.0, + 261.0, + 560.0, + 305.0, + 482.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 261.0, + 980.0, + 261.0, + 980.0, + 305.0, + 733.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 261.0, + 1229.0, + 261.0, + 1229.0, + 305.0, + 1197.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 295.0, + 508.0, + 295.0, + 508.0, + 333.0, + 249.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 295.0, + 546.0, + 295.0, + 546.0, + 333.0, + 535.0, + 333.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 253, + 1687, + 1448, + 1687, + 1448, + 1812, + 253, + 1812 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 251, + 431, + 1448, + 431, + 1448, + 557, + 251, + 557 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 252, + 322, + 1449, + 322, + 1449, + 418, + 252, + 418 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 254, + 924, + 1447, + 924, + 1447, + 1049, + 254, + 1049 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 270, + 1169, + 1423, + 1169, + 1423, + 1440, + 270, + 1440 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 252, + 1458, + 1448, + 1458, + 1448, + 1572, + 252, + 1572 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 250, + 842, + 1450, + 842, + 1450, + 912, + 250, + 912 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 514, + 666, + 1180, + 666, + 1180, + 708, + 514, + 708 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 365, + 773, + 1329, + 773, + 1329, + 827, + 365, + 827 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 570, + 570, + 1126, + 570, + 1126, + 609, + 570, + 609 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 253, + 111, + 770, + 111, + 770, + 142, + 253, + 142 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 248, + 620, + 1027, + 620, + 1027, + 656, + 248, + 656 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 264, + 721, + 1398, + 721, + 1398, + 756, + 264, + 756 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 254, + 1093, + 496, + 1093, + 496, + 1126, + 254, + 1126 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1411, + 574, + 1445, + 574, + 1445, + 604, + 1411, + 604 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1411, + 671, + 1445, + 671, + 1445, + 701, + 1411, + 701 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 255, + 1632, + 1202, + 1632, + 1202, + 1663, + 255, + 1663 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1411, + 782, + 1445, + 782, + 1445, + 813, + 1411, + 813 + ], + "score": 0.868 + }, + { + "category_id": 0, + "poly": [ + 253, + 268, + 873, + 268, + 873, + 299, + 253, + 299 + ], + "score": 0.826 + }, + { + "category_id": 2, + "poly": [ + 796, + 1865, + 813, + 1865, + 813, + 1889, + 796, + 1889 + ], + "score": 0.792 + }, + { + "category_id": 13, + "poly": [ + 1071, + 523, + 1234, + 523, + 1234, + 557, + 1071, + 557 + ], + "score": 0.93, + "latex": "\\bar { J ( \\theta _ { i } ) } = \\mathbb { E } [ R _ { i } ]" + }, + { + "category_id": 13, + "poly": [ + 557, + 620, + 770, + 620, + 770, + 656, + 557, + 656 + ], + "score": 0.93, + "latex": "{ \\pmb \\mu } = \\{ \\mu _ { 1 } , . . . , \\mu _ { N } \\}" + }, + { + "category_id": 13, + "poly": [ + 1151, + 432, + 1354, + 432, + 1354, + 466, + 1151, + 466 + ], + "score": 0.92, + "latex": "\\pmb { \\theta } = \\{ \\theta _ { 1 } , \\dots , \\theta _ { N } \\}" + }, + { + "category_id": 13, + "poly": [ + 325, + 843, + 551, + 843, + 551, + 880, + 325, + 880 + ], + "score": 0.92, + "latex": "\\pmb { \\mu } ^ { \\prime } = \\{ \\pmb { \\mu } _ { \\theta _ { 1 } ^ { \\prime } } , . . . , \\pmb { \\mu } _ { \\theta _ { N } ^ { \\prime } } \\}" + }, + { + "category_id": 13, + "poly": [ + 399, + 493, + 587, + 493, + 587, + 526, + 399, + 526 + ], + "score": 0.92, + "latex": "\\mathbf { s } = [ s _ { 1 } , \\ldots , s _ { N } ]" + }, + { + "category_id": 13, + "poly": [ + 829, + 463, + 1026, + 463, + 1026, + 495, + 829, + 495 + ], + "score": 0.92, + "latex": "\\mathbf { g } = [ \\boldsymbol { g } _ { 1 } , \\dots , \\boldsymbol { g } _ { N } ]" + }, + { + "category_id": 13, + "poly": [ + 434, + 878, + 680, + 878, + 680, + 912, + 434, + 912 + ], + "score": 0.92, + "latex": "\\mathbf { \\dot { \\theta } } _ { i } ^ { \\prime } \\gets \\tau \\dot { \\theta } _ { i } + ( 1 - \\tau ) \\theta _ { i } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 905, + 494, + 1100, + 494, + 1100, + 526, + 905, + 526 + ], + "score": 0.92, + "latex": "\\mathbf { a } = [ a _ { 1 } , \\ldots , a _ { N } ]" + }, + { + "category_id": 13, + "poly": [ + 672, + 722, + 711, + 722, + 711, + 757, + 672, + 757 + ], + "score": 0.91, + "latex": "Q _ { i } ^ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 252, + 462, + 466, + 462, + 466, + 497, + 252, + 497 + ], + "score": 0.91, + "latex": "\\pmb { \\pi } = \\{ \\bar { \\pi } _ { 1 } , . . . , \\bar { \\pi } _ { N } \\}" + }, + { + "category_id": 14, + "poly": [ + 367, + 769, + 1330, + 769, + 1330, + 827, + 367, + 827 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathcal { L } ( \\theta _ { i } ) = \\mathbb { E } _ { { \\mathbf s } , { \\mathbf a } , { \\mathbf r } , { \\mathbf s } ^ { \\prime } } [ ( Q _ { i } ^ { \\mu } ( { \\mathbf s } , { \\mathbf a } , { \\mathbf g } ) - y ) ^ { 2 } ] , \\quad y = r _ { i } + \\gamma Q _ { i } ^ { \\mu ^ { \\prime } } ( { \\mathbf s } ^ { \\prime } , a _ { 1 } ^ { \\prime } , \\dots , a _ { N } ^ { \\prime } , { \\mathbf g } ) \\big | _ { a _ { j } ^ { \\prime } = \\mu _ { j } ^ { \\prime } ( s _ { j } ) } , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 521, + 666, + 1177, + 666, + 1177, + 707, + 521, + 707 + ], + "score": 0.89, + "latex": "\\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\mu } } [ \\nabla _ { \\theta _ { i } } \\mu _ { i } ( s _ { i } , g _ { i } ) \\nabla _ { a _ { i } } Q _ { i } ^ { \\pmb { \\mu } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) | _ { a _ { i } = \\mu _ { i } ( s _ { i } , g _ { i } ) } ] ," + }, + { + "category_id": 14, + "poly": [ + 571, + 569, + 1127, + 569, + 1127, + 608, + 571, + 608 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\nabla _ { \\theta _ { i } } J ( \\theta _ { i } ) = \\mathbb { E } _ { \\pmb { \\pi } } [ \\nabla _ { \\theta _ { i } } \\log \\pi _ { i } ( a _ { i } | s _ { i } , g _ { i } ) Q _ { i } ^ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { g } ) ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1123, + 844, + 1148, + 844, + 1148, + 877, + 1123, + 877 + ], + "score": 0.89, + "latex": "\\theta _ { i } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 684, + 434, + 712, + 434, + 712, + 459, + 684, + 459 + ], + "score": 0.83, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 765, + 883, + 784, + 883, + 784, + 906, + 765, + 906 + ], + "score": 0.79, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1232, + 727, + 1244, + 727, + 1244, + 751, + 1232, + 751 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 980, + 1544, + 1001, + 1544, + 1001, + 1567, + 980, + 1567 + ], + "score": 0.64, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1046, + 528, + 1057, + 528, + 1057, + 551, + 1046, + 551 + ], + "score": 0.62, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1719, + 1293, + 1719, + 1293, + 1748, + 1261, + 1748 + ], + "score": 0.32, + "latex": "\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }" + }, + { + "category_id": 13, + "poly": [ + 779, + 1460, + 808, + 1460, + 808, + 1486, + 779, + 1486 + ], + "score": 0.26, + "latex": "\\mathbf { \\vec { \\nabla } } S \\mathbf { \\vec { \\nabla } }" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1173.0, + 431.0, + 1173.0, + 431.0, + 1202.0, + 353.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1173.0, + 1018.0, + 1173.0, + 1018.0, + 1202.0, + 945.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1173.0, + 1333.0, + 1173.0, + 1333.0, + 1205.0, + 1260.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1191.0, + 1111.0, + 1191.0, + 1111.0, + 1449.0, + 853.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 264.0, + 1209.0, + 512.0, + 1209.0, + 512.0, + 1444.0, + 264.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1217.0, + 1234.0, + 1217.0, + 1234.0, + 1235.0, + 1205.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1230.0, + 1241.0, + 1230.0, + 1241.0, + 1248.0, + 1207.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1243.0, + 1237.0, + 1243.0, + 1237.0, + 1261.0, + 1204.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1253.0, + 560.0, + 1253.0, + 560.0, + 1389.0, + 530.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1256.0, + 1151.0, + 1256.0, + 1151.0, + 1390.0, + 1122.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1256.0, + 1277.0, + 1256.0, + 1277.0, + 1272.0, + 1204.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1268.0, + 1277.0, + 1268.0, + 1277.0, + 1285.0, + 1205.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1281.0, + 1250.0, + 1281.0, + 1250.0, + 1298.0, + 1207.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1294.0, + 1249.0, + 1294.0, + 1249.0, + 1311.0, + 1205.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1338.0, + 575.0, + 1338.0, + 575.0, + 1350.0, + 562.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1335.0, + 827.0, + 1335.0, + 827.0, + 1368.0, + 731.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1381.0, + 576.0, + 1381.0, + 576.0, + 1391.0, + 563.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1429.0, + 629.0, + 1429.0, + 629.0, + 1438.0, + 617.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1429.0, + 679.0, + 1429.0, + 679.0, + 1438.0, + 669.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1429.0, + 781.0, + 1429.0, + 781.0, + 1438.0, + 769.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1431.0, + 1220.0, + 1431.0, + 1220.0, + 1440.0, + 1208.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1431.0, + 1269.0, + 1431.0, + 1269.0, + 1440.0, + 1259.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1429.0, + 1319.0, + 1429.0, + 1319.0, + 1440.0, + 1307.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1431.0, + 1369.0, + 1431.0, + 1369.0, + 1440.0, + 1357.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1427.0, + 1422.0, + 1427.0, + 1422.0, + 1441.0, + 1403.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.75, + 1175.5, + 720.75, + 1175.5, + 720.75, + 1201.5, + 649.75, + 1201.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1265.5, + 417.0, + 1265.5, + 417.0, + 1277.5, + 400.0, + 1277.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.25, + 1365.5, + 825.25, + 1365.5, + 825.25, + 1387.5, + 775.25, + 1387.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1456.0, + 778.0, + 1456.0, + 778.0, + 1494.0, + 249.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1456.0, + 1449.0, + 1456.0, + 1449.0, + 1494.0, + 809.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1488.0, + 1448.0, + 1488.0, + 1448.0, + 1518.0, + 251.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1514.0, + 1449.0, + 1514.0, + 1449.0, + 1547.0, + 249.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1542.0, + 979.0, + 1542.0, + 979.0, + 1575.0, + 249.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1542.0, + 1013.0, + 1542.0, + 1013.0, + 1575.0, + 1002.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 109.0, + 772.0, + 109.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1092.0, + 498.0, + 1092.0, + 498.0, + 1131.0, + 249.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1629.0, + 1208.0, + 1629.0, + 1208.0, + 1667.0, + 249.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 266.0, + 875.0, + 266.0, + 875.0, + 302.0, + 249.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1862.0, + 816.0, + 1862.0, + 816.0, + 1897.0, + 794.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1686.0, + 1451.0, + 1686.0, + 1451.0, + 1726.0, + 249.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1719.0, + 1260.0, + 1719.0, + 1260.0, + 1754.0, + 250.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1719.0, + 1451.0, + 1719.0, + 1451.0, + 1754.0, + 1294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1747.0, + 1449.0, + 1747.0, + 1449.0, + 1786.0, + 249.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1779.0, + 1449.0, + 1779.0, + 1449.0, + 1814.0, + 249.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 428.0, + 683.0, + 428.0, + 683.0, + 467.0, + 248.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 428.0, + 1150.0, + 428.0, + 1150.0, + 467.0, + 713.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 428.0, + 1451.0, + 428.0, + 1451.0, + 467.0, + 1355.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 244.0, + 459.0, + 251.0, + 459.0, + 251.0, + 502.0, + 244.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 459.0, + 828.0, + 459.0, + 828.0, + 502.0, + 467.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 459.0, + 1453.0, + 459.0, + 1453.0, + 502.0, + 1027.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 490.0, + 398.0, + 490.0, + 398.0, + 529.0, + 250.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 490.0, + 904.0, + 490.0, + 904.0, + 529.0, + 588.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 490.0, + 1452.0, + 490.0, + 1452.0, + 529.0, + 1101.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 521.0, + 1045.0, + 521.0, + 1045.0, + 560.0, + 250.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 521.0, + 1070.0, + 521.0, + 1070.0, + 560.0, + 1058.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 521.0, + 1276.0, + 521.0, + 1276.0, + 560.0, + 1235.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 322.0, + 1454.0, + 322.0, + 1454.0, + 360.0, + 248.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 353.0, + 1449.0, + 353.0, + 1449.0, + 390.0, + 248.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 383.0, + 797.0, + 383.0, + 797.0, + 422.0, + 249.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 923.0, + 1449.0, + 923.0, + 1449.0, + 958.0, + 250.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 951.0, + 1451.0, + 951.0, + 1451.0, + 994.0, + 247.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 986.0, + 1450.0, + 986.0, + 1450.0, + 1022.0, + 250.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1016.0, + 403.0, + 1016.0, + 403.0, + 1053.0, + 248.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 838.0, + 324.0, + 838.0, + 324.0, + 882.0, + 247.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 838.0, + 1122.0, + 838.0, + 1122.0, + 882.0, + 552.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 838.0, + 1450.0, + 838.0, + 1450.0, + 882.0, + 1149.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 877.0, + 433.0, + 877.0, + 433.0, + 914.0, + 250.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 877.0, + 764.0, + 877.0, + 764.0, + 914.0, + 681.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 877.0, + 1046.0, + 877.0, + 1046.0, + 914.0, + 785.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 617.0, + 556.0, + 617.0, + 556.0, + 660.0, + 249.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 617.0, + 1030.0, + 617.0, + 1030.0, + 660.0, + 771.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 720.0, + 671.0, + 720.0, + 671.0, + 760.0, + 259.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 720.0, + 1231.0, + 720.0, + 1231.0, + 760.0, + 712.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 720.0, + 1406.0, + 720.0, + 1406.0, + 760.0, + 1245.0, + 760.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 253, + 375, + 1450, + 375, + 1450, + 801, + 253, + 801 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 252, + 817, + 1449, + 817, + 1449, + 1091, + 252, + 1091 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 253, + 1565, + 1449, + 1565, + 1449, + 1811, + 253, + 1811 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 254, + 267, + 1448, + 267, + 1448, + 359, + 254, + 359 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 272, + 1126, + 1443, + 1126, + 1443, + 1388, + 272, + 1388 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 249, + 1397, + 1442, + 1397, + 1442, + 1454, + 249, + 1454 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 254, + 113, + 770, + 113, + 770, + 141, + 254, + 141 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 255, + 1511, + 1016, + 1511, + 1016, + 1540, + 255, + 1540 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 796, + 1866, + 814, + 1866, + 814, + 1889, + 796, + 1889 + ], + "score": 0.795 + }, + { + "category_id": 13, + "poly": [ + 253, + 268, + 291, + 268, + 291, + 297, + 253, + 297 + ], + "score": 0.58, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 401, + 1426, + 423, + 1426, + 423, + 1451, + 401, + 1451 + ], + "score": 0.35, + "latex": "\\mathrm { X }" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1127.0, + 458.0, + 1127.0, + 458.0, + 1155.0, + 368.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1131.0, + 802.0, + 1131.0, + 802.0, + 1151.0, + 617.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1129.0, + 1043.0, + 1129.0, + 1043.0, + 1154.0, + 970.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1129.0, + 1326.0, + 1129.0, + 1326.0, + 1154.0, + 1256.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1163.0, + 1378.0, + 1163.0, + 1378.0, + 1185.0, + 1334.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1180.0, + 1419.0, + 1180.0, + 1419.0, + 1204.0, + 1334.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1199.0, + 1418.0, + 1199.0, + 1418.0, + 1223.0, + 1333.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1219.0, + 1376.0, + 1219.0, + 1376.0, + 1242.0, + 1334.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1249.0, + 934.0, + 1249.0, + 934.0, + 1260.0, + 924.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1238.0, + 1375.0, + 1238.0, + 1375.0, + 1261.0, + 1334.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1375.0, + 447.0, + 1375.0, + 447.0, + 1385.0, + 435.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1376.0, + 497.0, + 1376.0, + 497.0, + 1385.0, + 485.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1375.0, + 626.0, + 1375.0, + 626.0, + 1385.0, + 614.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1373.0, + 659.0, + 1373.0, + 659.0, + 1386.0, + 642.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1375.0, + 688.0, + 1375.0, + 688.0, + 1385.0, + 673.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1374.0, + 722.0, + 1374.0, + 722.0, + 1386.0, + 701.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1375.0, + 752.0, + 1375.0, + 752.0, + 1385.0, + 734.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1374.0, + 785.0, + 1374.0, + 785.0, + 1386.0, + 763.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1375.0, + 812.0, + 1375.0, + 812.0, + 1385.0, + 795.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1375.0, + 842.0, + 1375.0, + 842.0, + 1385.0, + 827.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1375.0, + 937.0, + 1375.0, + 937.0, + 1385.0, + 926.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1376.0, + 987.0, + 1376.0, + 987.0, + 1385.0, + 977.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1375.0, + 1038.0, + 1375.0, + 1038.0, + 1385.0, + 1027.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1376.0, + 1284.0, + 1376.0, + 1284.0, + 1385.0, + 1273.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1375.0, + 1334.0, + 1375.0, + 1334.0, + 1385.0, + 1322.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1422.0, + 1374.0, + 1435.0, + 1374.0, + 1435.0, + 1385.0, + 1422.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1395.0, + 1448.0, + 1395.0, + 1448.0, + 1429.0, + 250.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1424.0, + 400.0, + 1424.0, + 400.0, + 1455.0, + 250.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1424.0, + 1074.0, + 1424.0, + 1074.0, + 1455.0, + 424.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 110.0, + 771.0, + 110.0, + 771.0, + 145.0, + 250.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1507.0, + 1020.0, + 1507.0, + 1020.0, + 1545.0, + 249.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1864.0, + 816.0, + 1864.0, + 816.0, + 1895.0, + 795.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 376.0, + 1450.0, + 376.0, + 1450.0, + 410.0, + 250.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 406.0, + 1454.0, + 406.0, + 1454.0, + 440.0, + 250.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 429.0, + 1453.0, + 429.0, + 1453.0, + 476.0, + 246.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 467.0, + 1454.0, + 467.0, + 1454.0, + 502.0, + 249.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 493.0, + 1454.0, + 493.0, + 1454.0, + 533.0, + 248.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 526.0, + 1454.0, + 526.0, + 1454.0, + 563.0, + 248.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 556.0, + 1455.0, + 556.0, + 1455.0, + 595.0, + 248.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 584.0, + 1453.0, + 584.0, + 1453.0, + 629.0, + 246.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 618.0, + 1451.0, + 618.0, + 1451.0, + 654.0, + 248.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 648.0, + 1453.0, + 648.0, + 1453.0, + 685.0, + 246.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 680.0, + 1450.0, + 680.0, + 1450.0, + 714.0, + 249.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 709.0, + 1454.0, + 709.0, + 1454.0, + 747.0, + 248.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 739.0, + 1447.0, + 739.0, + 1447.0, + 773.0, + 249.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 769.0, + 783.0, + 769.0, + 783.0, + 806.0, + 248.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 815.0, + 1450.0, + 815.0, + 1450.0, + 853.0, + 247.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 846.0, + 1450.0, + 846.0, + 1450.0, + 884.0, + 247.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 877.0, + 1452.0, + 877.0, + 1452.0, + 912.0, + 247.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 910.0, + 1452.0, + 910.0, + 1452.0, + 942.0, + 249.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 941.0, + 1449.0, + 941.0, + 1449.0, + 973.0, + 249.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 970.0, + 1450.0, + 970.0, + 1450.0, + 1005.0, + 248.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 999.0, + 1452.0, + 999.0, + 1452.0, + 1036.0, + 248.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1028.0, + 1449.0, + 1028.0, + 1449.0, + 1066.0, + 248.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1063.0, + 475.0, + 1063.0, + 475.0, + 1093.0, + 248.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1562.0, + 1452.0, + 1562.0, + 1452.0, + 1603.0, + 248.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1595.0, + 1453.0, + 1595.0, + 1453.0, + 1631.0, + 246.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1627.0, + 1452.0, + 1627.0, + 1452.0, + 1661.0, + 248.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1654.0, + 1453.0, + 1654.0, + 1453.0, + 1693.0, + 248.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1687.0, + 1454.0, + 1687.0, + 1454.0, + 1724.0, + 248.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1719.0, + 1452.0, + 1719.0, + 1452.0, + 1753.0, + 249.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1747.0, + 1453.0, + 1747.0, + 1453.0, + 1784.0, + 246.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1780.0, + 1449.0, + 1780.0, + 1449.0, + 1814.0, + 249.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 263.0, + 1451.0, + 263.0, + 1451.0, + 303.0, + 292.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 297.0, + 1449.0, + 297.0, + 1449.0, + 334.0, + 251.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 329.0, + 1060.0, + 329.0, + 1060.0, + 363.0, + 250.0, + 363.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 252, + 1534, + 1449, + 1534, + 1449, + 1812, + 252, + 1812 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 253, + 1135, + 1449, + 1135, + 1449, + 1441, + 253, + 1441 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 281, + 260, + 1404, + 260, + 1404, + 1039, + 281, + 1039 + ], + "score": 0.977 + }, + { + "category_id": 4, + "poly": [ + 249, + 1049, + 1445, + 1049, + 1445, + 1106, + 249, + 1106 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 253, + 113, + 770, + 113, + 770, + 140, + 253, + 140 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 255, + 1478, + 545, + 1478, + 545, + 1509, + 255, + 1509 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 797, + 1865, + 812, + 1865, + 812, + 1888, + 797, + 1888 + ], + "score": 0.779 + }, + { + "category_id": 13, + "poly": [ + 1245, + 1564, + 1335, + 1564, + 1335, + 1602, + 1245, + 1602 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\phi = \\frac { N } { M } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 994, + 1785, + 1018, + 1785, + 1018, + 1807, + 994, + 1807 + ], + "score": 0.83, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 699, + 1786, + 720, + 1786, + 720, + 1806, + 699, + 1806 + ], + "score": 0.81, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 860, + 1537, + 886, + 1537, + 886, + 1563, + 860, + 1563 + ], + "score": 0.81, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 792, + 1598, + 825, + 1598, + 825, + 1624, + 792, + 1624 + ], + "score": 0.8, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 782, + 1537, + 807, + 1537, + 807, + 1563, + 782, + 1563 + ], + "score": 0.79, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1417, + 1567, + 1446, + 1567, + 1446, + 1594, + 1417, + 1594 + ], + "score": 0.76, + "latex": "N" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 265.0, + 500.0, + 265.0, + 500.0, + 291.0, + 357.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 268.0, + 758.0, + 268.0, + 758.0, + 290.0, + 675.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 268.0, + 1041.0, + 268.0, + 1041.0, + 290.0, + 950.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 267.0, + 1316.0, + 267.0, + 1316.0, + 291.0, + 1234.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 297.0, + 330.0, + 297.0, + 330.0, + 307.0, + 319.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 310.0, + 1362.0, + 310.0, + 1362.0, + 327.0, + 1333.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 330.0, + 318.0, + 330.0, + 318.0, + 463.0, + 288.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 340.0, + 1155.0, + 340.0, + 1155.0, + 346.0, + 1148.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 419.0, + 1156.0, + 419.0, + 1156.0, + 429.0, + 1147.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 426.0, + 471.0, + 426.0, + 471.0, + 452.0, + 418.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 457.0, + 330.0, + 457.0, + 330.0, + 467.0, + 319.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 452.0, + 562.0, + 452.0, + 562.0, + 476.0, + 418.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 457.0, + 1157.0, + 457.0, + 1157.0, + 468.0, + 1146.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 503.0, + 381.0, + 503.0, + 381.0, + 515.0, + 370.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 502.0, + 432.0, + 502.0, + 432.0, + 517.0, + 416.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 502.0, + 481.0, + 502.0, + 481.0, + 517.0, + 465.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 502.0, + 529.0, + 502.0, + 529.0, + 517.0, + 513.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 502.0, + 575.0, + 502.0, + 575.0, + 515.0, + 564.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 502.0, + 655.0, + 502.0, + 655.0, + 517.0, + 640.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 502.0, + 704.0, + 502.0, + 704.0, + 517.0, + 688.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 502.0, + 752.0, + 502.0, + 752.0, + 517.0, + 737.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 502.0, + 800.0, + 502.0, + 800.0, + 517.0, + 785.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 502.0, + 846.0, + 502.0, + 846.0, + 515.0, + 835.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 502.0, + 933.0, + 502.0, + 933.0, + 517.0, + 918.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 502.0, + 983.0, + 502.0, + 983.0, + 517.0, + 966.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 502.0, + 1031.0, + 502.0, + 1031.0, + 517.0, + 1014.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 502.0, + 1079.0, + 502.0, + 1079.0, + 517.0, + 1063.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 501.0, + 1127.0, + 501.0, + 1127.0, + 516.0, + 1111.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 503.0, + 1195.0, + 503.0, + 1195.0, + 515.0, + 1183.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 502.0, + 1227.0, + 502.0, + 1227.0, + 516.0, + 1211.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 502.0, + 1257.0, + 502.0, + 1257.0, + 516.0, + 1240.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 502.0, + 1288.0, + 502.0, + 1288.0, + 516.0, + 1268.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 502.0, + 1318.0, + 502.0, + 1318.0, + 516.0, + 1297.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 502.0, + 1347.0, + 502.0, + 1347.0, + 516.0, + 1327.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 502.0, + 1378.0, + 502.0, + 1378.0, + 516.0, + 1356.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 501.0, + 1404.0, + 501.0, + 1404.0, + 516.0, + 1385.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 532.0, + 472.0, + 532.0, + 472.0, + 552.0, + 386.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 531.0, + 812.0, + 531.0, + 812.0, + 555.0, + 625.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 531.0, + 1085.0, + 531.0, + 1085.0, + 555.0, + 909.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 531.0, + 1370.0, + 531.0, + 1370.0, + 555.0, + 1180.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 561.0, + 325.0, + 561.0, + 325.0, + 571.0, + 313.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 562.0, + 600.0, + 562.0, + 600.0, + 571.0, + 590.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 562.0, + 881.0, + 562.0, + 881.0, + 572.0, + 869.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 593.0, + 311.0, + 593.0, + 311.0, + 724.0, + 282.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 601.0, + 881.0, + 601.0, + 881.0, + 612.0, + 868.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 602.0, + 1156.0, + 602.0, + 1156.0, + 611.0, + 1146.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 631.0, + 972.0, + 631.0, + 972.0, + 642.0, + 964.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 667.0, + 753.0, + 667.0, + 753.0, + 678.0, + 742.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 681.0, + 323.0, + 681.0, + 323.0, + 691.0, + 311.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 684.0, + 839.0, + 684.0, + 839.0, + 698.0, + 809.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 681.0, + 879.0, + 681.0, + 879.0, + 691.0, + 868.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 721.0, + 321.0, + 721.0, + 321.0, + 731.0, + 310.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 721.0, + 879.0, + 721.0, + 879.0, + 731.0, + 868.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 767.0, + 376.0, + 767.0, + 376.0, + 778.0, + 363.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 764.0, + 426.0, + 764.0, + 426.0, + 779.0, + 409.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 767.0, + 472.0, + 767.0, + 472.0, + 778.0, + 459.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 764.0, + 521.0, + 764.0, + 521.0, + 779.0, + 506.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 763.0, + 570.0, + 763.0, + 570.0, + 778.0, + 555.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 763.0, + 640.0, + 763.0, + 640.0, + 778.0, + 625.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 764.0, + 671.0, + 764.0, + 671.0, + 778.0, + 654.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 767.0, + 699.0, + 767.0, + 699.0, + 777.0, + 686.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 764.0, + 733.0, + 764.0, + 733.0, + 779.0, + 711.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 763.0, + 764.0, + 763.0, + 764.0, + 781.0, + 737.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 763.0, + 793.0, + 763.0, + 793.0, + 781.0, + 767.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 764.0, + 821.0, + 764.0, + 821.0, + 778.0, + 798.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 763.0, + 848.0, + 763.0, + 848.0, + 778.0, + 827.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 766.0, + 919.0, + 766.0, + 919.0, + 779.0, + 902.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 766.0, + 948.0, + 766.0, + 948.0, + 779.0, + 932.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 764.0, + 979.0, + 764.0, + 979.0, + 778.0, + 962.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 764.0, + 1011.0, + 764.0, + 1011.0, + 779.0, + 989.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 764.0, + 1040.0, + 764.0, + 1040.0, + 779.0, + 1018.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 764.0, + 1068.0, + 764.0, + 1068.0, + 779.0, + 1049.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 764.0, + 1099.0, + 764.0, + 1099.0, + 779.0, + 1078.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 763.0, + 1127.0, + 763.0, + 1127.0, + 778.0, + 1105.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 761.0, + 1157.0, + 761.0, + 1157.0, + 769.0, + 1146.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 764.0, + 1227.0, + 764.0, + 1227.0, + 779.0, + 1209.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 767.0, + 1255.0, + 767.0, + 1255.0, + 777.0, + 1243.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 766.0, + 1288.0, + 766.0, + 1288.0, + 779.0, + 1268.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 764.0, + 1318.0, + 764.0, + 1318.0, + 779.0, + 1297.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 764.0, + 1347.0, + 764.0, + 1347.0, + 778.0, + 1325.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 764.0, + 1378.0, + 764.0, + 1378.0, + 778.0, + 1356.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 763.0, + 1404.0, + 763.0, + 1404.0, + 778.0, + 1385.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 792.0, + 537.0, + 792.0, + 537.0, + 816.0, + 321.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 789.0, + 846.0, + 789.0, + 846.0, + 818.0, + 588.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 791.0, + 1094.0, + 791.0, + 1094.0, + 817.0, + 900.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 793.0, + 1395.0, + 793.0, + 1395.0, + 817.0, + 1156.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 823.0, + 325.0, + 823.0, + 325.0, + 832.0, + 314.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 823.0, + 600.0, + 823.0, + 600.0, + 833.0, + 590.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 823.0, + 881.0, + 823.0, + 881.0, + 832.0, + 871.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 853.0, + 310.0, + 853.0, + 310.0, + 985.0, + 281.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 852.0, + 674.0, + 852.0, + 674.0, + 863.0, + 665.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 863.0, + 881.0, + 863.0, + 881.0, + 872.0, + 868.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 902.0, + 879.0, + 902.0, + 879.0, + 912.0, + 868.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 883.0, + 1208.0, + 883.0, + 1208.0, + 928.0, + 1176.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 942.0, + 881.0, + 942.0, + 881.0, + 952.0, + 868.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 916.0, + 1204.0, + 916.0, + 1204.0, + 951.0, + 1188.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 982.0, + 324.0, + 982.0, + 324.0, + 992.0, + 313.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 982.0, + 881.0, + 982.0, + 881.0, + 992.0, + 868.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 982.0, + 1157.0, + 982.0, + 1157.0, + 992.0, + 1147.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1025.0, + 362.0, + 1025.0, + 362.0, + 1040.0, + 346.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1025.0, + 392.0, + 1025.0, + 392.0, + 1040.0, + 375.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1025.0, + 421.0, + 1025.0, + 421.0, + 1040.0, + 406.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1025.0, + 453.0, + 1025.0, + 453.0, + 1040.0, + 434.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1025.0, + 482.0, + 1025.0, + 482.0, + 1040.0, + 462.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1025.0, + 513.0, + 1025.0, + 513.0, + 1040.0, + 492.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1025.0, + 542.0, + 1025.0, + 542.0, + 1040.0, + 520.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1025.0, + 570.0, + 1025.0, + 570.0, + 1040.0, + 551.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1025.0, + 640.0, + 1025.0, + 640.0, + 1040.0, + 625.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1025.0, + 671.0, + 1025.0, + 671.0, + 1040.0, + 653.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1025.0, + 700.0, + 1025.0, + 700.0, + 1040.0, + 685.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1025.0, + 732.0, + 1025.0, + 732.0, + 1040.0, + 711.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1025.0, + 761.0, + 1025.0, + 761.0, + 1040.0, + 739.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1025.0, + 792.0, + 1025.0, + 792.0, + 1040.0, + 770.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1024.0, + 822.0, + 1024.0, + 822.0, + 1042.0, + 797.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1024.0, + 848.0, + 1024.0, + 848.0, + 1039.0, + 828.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1025.0, + 919.0, + 1025.0, + 919.0, + 1040.0, + 902.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1025.0, + 948.0, + 1025.0, + 948.0, + 1040.0, + 932.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1025.0, + 979.0, + 1025.0, + 979.0, + 1040.0, + 964.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1025.0, + 1009.0, + 1025.0, + 1009.0, + 1040.0, + 990.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1025.0, + 1039.0, + 1025.0, + 1039.0, + 1040.0, + 1018.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1025.0, + 1069.0, + 1025.0, + 1069.0, + 1040.0, + 1049.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1025.0, + 1099.0, + 1025.0, + 1099.0, + 1040.0, + 1078.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1025.0, + 1127.0, + 1025.0, + 1127.0, + 1040.0, + 1106.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1023.0, + 1155.0, + 1023.0, + 1155.0, + 1029.0, + 1148.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1025.0, + 1197.0, + 1025.0, + 1197.0, + 1040.0, + 1180.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1025.0, + 1227.0, + 1025.0, + 1227.0, + 1040.0, + 1209.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1025.0, + 1257.0, + 1025.0, + 1257.0, + 1040.0, + 1240.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1025.0, + 1288.0, + 1025.0, + 1288.0, + 1040.0, + 1268.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1025.0, + 1318.0, + 1025.0, + 1318.0, + 1040.0, + 1297.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1025.0, + 1347.0, + 1025.0, + 1347.0, + 1040.0, + 1327.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1025.0, + 1378.0, + 1025.0, + 1378.0, + 1040.0, + 1356.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 1025.0, + 1404.0, + 1025.0, + 1404.0, + 1040.0, + 1385.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.75, + 641.5, + 881.75, + 641.5, + 881.75, + 650.5, + 863.75, + 650.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.25, + 646.0, + 967.25, + 646.0, + 967.25, + 664.0, + 923.25, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.75, + 678.5, + 945.75, + 678.5, + 945.75, + 691.5, + 894.75, + 691.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 683.0, + 1220.0, + 683.0, + 1220.0, + 692.0, + 1189.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 700.0, + 726.0, + 700.0, + 726.0, + 715.5, + 683.0, + 715.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 719.5, + 1155.0, + 719.5, + 1155.0, + 730.5, + 1148.0, + 730.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 764.5, + 1200.0, + 764.5, + 1200.0, + 778.5, + 1178.0, + 778.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 861.0, + 666.0, + 861.0, + 666.0, + 880.0, + 663.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 854.0, + 1253.0, + 854.0, + 1253.0, + 871.5, + 1186.0, + 871.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 946.5, + 667.0, + 946.5, + 667.0, + 956.0, + 604.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1046.0, + 1449.0, + 1046.0, + 1449.0, + 1080.0, + 250.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1075.0, + 1367.0, + 1075.0, + 1367.0, + 1108.0, + 248.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 110.0, + 772.0, + 110.0, + 772.0, + 144.0, + 251.0, + 144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1476.0, + 549.0, + 1476.0, + 549.0, + 1512.0, + 250.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1862.0, + 816.0, + 1862.0, + 816.0, + 1897.0, + 794.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1535.0, + 781.0, + 1535.0, + 781.0, + 1632.0, + 237.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1535.0, + 859.0, + 1535.0, + 859.0, + 1632.0, + 826.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1535.0, + 1244.0, + 1535.0, + 1244.0, + 1632.0, + 887.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1535.0, + 1416.0, + 1535.0, + 1416.0, + 1632.0, + 1336.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1447.0, + 1535.0, + 1461.0, + 1535.0, + 1461.0, + 1632.0, + 1447.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1626.0, + 1450.0, + 1626.0, + 1450.0, + 1662.0, + 247.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1659.0, + 1449.0, + 1659.0, + 1449.0, + 1691.0, + 249.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1687.0, + 1452.0, + 1687.0, + 1452.0, + 1724.0, + 248.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1716.0, + 1450.0, + 1716.0, + 1450.0, + 1756.0, + 247.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1748.0, + 1452.0, + 1748.0, + 1452.0, + 1787.0, + 248.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1778.0, + 698.0, + 1778.0, + 698.0, + 1816.0, + 248.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1778.0, + 993.0, + 1778.0, + 993.0, + 1816.0, + 721.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1778.0, + 1454.0, + 1778.0, + 1454.0, + 1816.0, + 1019.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1136.0, + 1450.0, + 1136.0, + 1450.0, + 1171.0, + 249.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1165.0, + 1450.0, + 1165.0, + 1450.0, + 1201.0, + 249.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1198.0, + 1449.0, + 1198.0, + 1449.0, + 1229.0, + 250.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1226.0, + 1450.0, + 1226.0, + 1450.0, + 1261.0, + 249.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1253.0, + 1453.0, + 1253.0, + 1453.0, + 1295.0, + 246.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1287.0, + 1450.0, + 1287.0, + 1450.0, + 1322.0, + 249.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1316.0, + 1450.0, + 1316.0, + 1450.0, + 1354.0, + 246.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1349.0, + 1449.0, + 1349.0, + 1449.0, + 1384.0, + 249.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1380.0, + 1449.0, + 1380.0, + 1449.0, + 1415.0, + 250.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1408.0, + 638.0, + 1408.0, + 638.0, + 1446.0, + 248.0, + 1446.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 252, + 1256, + 1449, + 1256, + 1449, + 1592, + 252, + 1592 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 255, + 1718, + 1451, + 1718, + 1451, + 1811, + 255, + 1811 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 253, + 1148, + 1449, + 1148, + 1449, + 1240, + 253, + 1240 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 259, + 583, + 1443, + 583, + 1443, + 996, + 259, + 996 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 273, + 264, + 1427, + 264, + 1427, + 487, + 273, + 487 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 249, + 1004, + 1443, + 1004, + 1443, + 1089, + 249, + 1089 + ], + "score": 0.95 + }, + { + "category_id": 4, + "poly": [ + 254, + 495, + 1448, + 495, + 1448, + 579, + 254, + 579 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 256, + 1644, + 541, + 1644, + 541, + 1679, + 256, + 1679 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 253, + 113, + 770, + 113, + 770, + 141, + 253, + 141 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 796, + 1866, + 813, + 1866, + 813, + 1889, + 796, + 1889 + ], + "score": 0.777 + }, + { + "category_id": 13, + "poly": [ + 909, + 1150, + 934, + 1150, + 934, + 1176, + 909, + 1176 + ], + "score": 0.77, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1061, + 497, + 1084, + 497, + 1084, + 521, + 1061, + 521 + ], + "score": 0.76, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 842, + 1180, + 866, + 1180, + 866, + 1206, + 842, + 1206 + ], + "score": 0.75, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 867, + 1211, + 891, + 1211, + 891, + 1237, + 867, + 1237 + ], + "score": 0.68, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 993, + 497, + 1015, + 497, + 1015, + 521, + 993, + 521 + ], + "score": 0.61, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 251, + 1409, + 381, + 1409, + 381, + 1439, + 251, + 1439 + ], + "score": 0.37, + "latex": "\\mathrm { I C M + H E R }" + }, + { + "category_id": 13, + "poly": [ + 865, + 1472, + 882, + 1472, + 882, + 1496, + 865, + 1496 + ], + "score": 0.33, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 886, + 552, + 908, + 552, + 908, + 576, + 886, + 576 + ], + "score": 0.3, + "latex": "\\mathrm { X }" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 586.0, + 399.0, + 586.0, + 399.0, + 608.0, + 344.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 586.0, + 622.0, + 586.0, + 622.0, + 609.0, + 579.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 586.0, + 854.0, + 586.0, + 854.0, + 609.0, + 812.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 586.0, + 1094.0, + 586.0, + 1094.0, + 609.0, + 1032.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 586.0, + 1324.0, + 586.0, + 1324.0, + 609.0, + 1262.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 652.0, + 645.0, + 652.0, + 645.0, + 687.0, + 545.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 648.0, + 898.0, + 648.0, + 898.0, + 688.0, + 772.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 644.0, + 1130.0, + 644.0, + 1130.0, + 691.0, + 1000.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 645.0, + 1335.0, + 645.0, + 1335.0, + 689.0, + 1232.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 725.0, + 1307.0, + 725.0, + 1307.0, + 748.0, + 1259.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 787.0, + 476.0, + 787.0, + 476.0, + 803.0, + 360.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 842.0, + 435.0, + 842.0, + 435.0, + 903.0, + 328.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 860.0, + 1266.0, + 860.0, + 1266.0, + 870.0, + 1254.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 874.0, + 618.0, + 874.0, + 618.0, + 883.0, + 608.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 874.0, + 848.0, + 874.0, + 848.0, + 883.0, + 838.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 872.0, + 1085.0, + 872.0, + 1085.0, + 886.0, + 1056.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 874.0, + 1266.0, + 874.0, + 1266.0, + 883.0, + 1244.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 874.0, + 1308.0, + 874.0, + 1308.0, + 883.0, + 1276.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 278.0, + 1366.0, + 278.0, + 1366.0, + 302.0, + 1341.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 302.0, + 1365.0, + 302.0, + 1365.0, + 326.0, + 1342.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 317.0, + 300.0, + 317.0, + 300.0, + 423.0, + 275.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 325.0, + 591.0, + 325.0, + 591.0, + 426.0, + 561.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 317.0, + 876.0, + 317.0, + 876.0, + 425.0, + 851.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 325.0, + 1167.0, + 325.0, + 1167.0, + 426.0, + 1137.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 325.0, + 1413.0, + 325.0, + 1413.0, + 355.0, + 1340.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 352.0, + 1413.0, + 352.0, + 1413.0, + 381.0, + 1339.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 427.0, + 889.0, + 427.0, + 889.0, + 437.0, + 879.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 473.0, + 365.0, + 473.0, + 365.0, + 484.0, + 354.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 474.0, + 414.0, + 474.0, + 414.0, + 484.0, + 402.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 474.0, + 462.0, + 474.0, + 462.0, + 484.0, + 450.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 474.0, + 510.0, + 474.0, + 510.0, + 484.0, + 500.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 473.0, + 557.0, + 473.0, + 557.0, + 484.0, + 547.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 471.0, + 658.0, + 471.0, + 658.0, + 487.0, + 641.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 474.0, + 704.0, + 474.0, + 704.0, + 484.0, + 691.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 471.0, + 753.0, + 471.0, + 753.0, + 485.0, + 736.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 474.0, + 800.0, + 474.0, + 800.0, + 484.0, + 787.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 474.0, + 847.0, + 474.0, + 847.0, + 484.0, + 837.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 474.0, + 943.0, + 474.0, + 943.0, + 484.0, + 931.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 474.0, + 990.0, + 474.0, + 990.0, + 485.0, + 978.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 474.0, + 1038.0, + 474.0, + 1038.0, + 484.0, + 1026.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 471.0, + 1135.0, + 471.0, + 1135.0, + 484.0, + 1123.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 474.0, + 1231.0, + 474.0, + 1231.0, + 484.0, + 1218.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 471.0, + 1281.0, + 471.0, + 1281.0, + 487.0, + 1264.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 471.0, + 1329.0, + 471.0, + 1329.0, + 487.0, + 1314.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 474.0, + 1376.0, + 474.0, + 1376.0, + 485.0, + 1363.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1410.0, + 470.0, + 1426.0, + 470.0, + 1426.0, + 485.0, + 1410.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.75, + 453.0, + 630.75, + 453.0, + 630.75, + 467.0, + 600.75, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1003.0, + 1449.0, + 1003.0, + 1449.0, + 1035.0, + 252.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1029.0, + 1447.0, + 1029.0, + 1447.0, + 1067.0, + 248.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1058.0, + 674.0, + 1058.0, + 674.0, + 1091.0, + 249.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 491.0, + 992.0, + 491.0, + 992.0, + 528.0, + 249.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 491.0, + 1060.0, + 491.0, + 1060.0, + 528.0, + 1016.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 491.0, + 1451.0, + 491.0, + 1451.0, + 528.0, + 1085.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 523.0, + 1451.0, + 523.0, + 1451.0, + 554.0, + 251.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 549.0, + 885.0, + 549.0, + 885.0, + 580.0, + 251.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 549.0, + 1133.0, + 549.0, + 1133.0, + 580.0, + 909.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1641.0, + 548.0, + 1641.0, + 548.0, + 1685.0, + 248.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 110.0, + 772.0, + 110.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1863.0, + 815.0, + 1863.0, + 815.0, + 1893.0, + 794.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1255.0, + 1450.0, + 1255.0, + 1450.0, + 1292.0, + 247.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1284.0, + 1450.0, + 1284.0, + 1450.0, + 1323.0, + 247.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1316.0, + 1450.0, + 1316.0, + 1450.0, + 1355.0, + 248.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1346.0, + 1453.0, + 1346.0, + 1453.0, + 1384.0, + 247.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1376.0, + 1452.0, + 1376.0, + 1452.0, + 1413.0, + 247.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1405.0, + 250.0, + 1405.0, + 250.0, + 1446.0, + 247.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1405.0, + 1452.0, + 1405.0, + 1452.0, + 1446.0, + 382.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1439.0, + 1450.0, + 1439.0, + 1450.0, + 1473.0, + 249.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1466.0, + 864.0, + 1466.0, + 864.0, + 1507.0, + 247.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1466.0, + 1450.0, + 1466.0, + 1450.0, + 1507.0, + 883.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1496.0, + 1450.0, + 1496.0, + 1450.0, + 1537.0, + 247.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1529.0, + 1450.0, + 1529.0, + 1450.0, + 1567.0, + 248.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1560.0, + 1281.0, + 1560.0, + 1281.0, + 1596.0, + 247.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1716.0, + 1451.0, + 1716.0, + 1451.0, + 1754.0, + 251.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1748.0, + 1450.0, + 1748.0, + 1450.0, + 1786.0, + 251.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1778.0, + 933.0, + 1778.0, + 933.0, + 1816.0, + 250.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1146.0, + 908.0, + 1146.0, + 908.0, + 1185.0, + 249.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1146.0, + 1449.0, + 1146.0, + 1449.0, + 1185.0, + 935.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1179.0, + 841.0, + 1179.0, + 841.0, + 1212.0, + 252.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1179.0, + 1448.0, + 1179.0, + 1448.0, + 1212.0, + 867.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1210.0, + 866.0, + 1210.0, + 866.0, + 1244.0, + 250.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1210.0, + 1288.0, + 1210.0, + 1288.0, + 1244.0, + 892.0, + 1244.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 253, + 1534, + 1449, + 1534, + 1449, + 1811, + 253, + 1811 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 252, + 643, + 1449, + 643, + 1449, + 1132, + 252, + 1132 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 253, + 1147, + 1450, + 1147, + 1450, + 1423, + 253, + 1423 + ], + "score": 0.983 + }, + { + "category_id": 4, + "poly": [ + 250, + 505, + 1450, + 505, + 1450, + 590, + 250, + 590 + ], + "score": 0.954 + }, + { + "category_id": 3, + "poly": [ + 288, + 251, + 1410, + 251, + 1410, + 496, + 288, + 496 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 254, + 1465, + 500, + 1465, + 500, + 1502, + 254, + 1502 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 253, + 113, + 769, + 113, + 769, + 140, + 253, + 140 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 796, + 1866, + 813, + 1866, + 813, + 1888, + 796, + 1888 + ], + "score": 0.792 + }, + { + "category_id": 13, + "poly": [ + 575, + 562, + 690, + 562, + 690, + 588, + 575, + 588 + ], + "score": 0.3, + "latex": "_ \\mathrm { C E R + H E R }" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 501.0, + 1450.0, + 501.0, + 1450.0, + 540.0, + 249.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 527.0, + 1454.0, + 527.0, + 1454.0, + 571.0, + 247.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 561.0, + 574.0, + 561.0, + 574.0, + 592.0, + 250.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 561.0, + 700.0, + 561.0, + 700.0, + 592.0, + 691.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 270.0, + 505.0, + 270.0, + 505.0, + 291.0, + 317.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 270.0, + 780.0, + 270.0, + 780.0, + 291.0, + 583.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 270.0, + 1059.0, + 270.0, + 1059.0, + 291.0, + 848.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 268.0, + 1334.0, + 268.0, + 1334.0, + 294.0, + 1115.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 303.0, + 528.0, + 303.0, + 528.0, + 482.0, + 305.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 399.0, + 741.0, + 399.0, + 741.0, + 438.0, + 631.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 305.0, + 1102.0, + 305.0, + 1102.0, + 480.0, + 868.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 326.0, + 1315.0, + 326.0, + 1315.0, + 473.0, + 1111.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 323.0, + 751.0, + 323.0, + 751.0, + 408.0, + 615.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1462.0, + 504.0, + 1462.0, + 504.0, + 1510.0, + 247.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 110.0, + 772.0, + 110.0, + 772.0, + 144.0, + 251.0, + 144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1864.0, + 815.0, + 1864.0, + 815.0, + 1894.0, + 794.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1532.0, + 1449.0, + 1532.0, + 1449.0, + 1570.0, + 248.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1568.0, + 1452.0, + 1568.0, + 1452.0, + 1601.0, + 250.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1598.0, + 1450.0, + 1598.0, + 1450.0, + 1631.0, + 250.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1627.0, + 1449.0, + 1627.0, + 1449.0, + 1663.0, + 249.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1654.0, + 1450.0, + 1654.0, + 1450.0, + 1696.0, + 246.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1688.0, + 1449.0, + 1688.0, + 1449.0, + 1724.0, + 248.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1718.0, + 1450.0, + 1718.0, + 1450.0, + 1755.0, + 248.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1750.0, + 1450.0, + 1750.0, + 1450.0, + 1786.0, + 249.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1780.0, + 574.0, + 1780.0, + 574.0, + 1813.0, + 250.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 646.0, + 1449.0, + 646.0, + 1449.0, + 678.0, + 252.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 671.0, + 1450.0, + 671.0, + 1450.0, + 711.0, + 247.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 701.0, + 1452.0, + 701.0, + 1452.0, + 746.0, + 245.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 735.0, + 1452.0, + 735.0, + 1452.0, + 772.0, + 248.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 767.0, + 1454.0, + 767.0, + 1454.0, + 803.0, + 247.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 793.0, + 1454.0, + 793.0, + 1454.0, + 835.0, + 245.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 828.0, + 1450.0, + 828.0, + 1450.0, + 861.0, + 249.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 857.0, + 1450.0, + 857.0, + 1450.0, + 894.0, + 248.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 888.0, + 1450.0, + 888.0, + 1450.0, + 923.0, + 247.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 916.0, + 1450.0, + 916.0, + 1450.0, + 955.0, + 247.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 949.0, + 1453.0, + 949.0, + 1453.0, + 982.0, + 249.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 980.0, + 1448.0, + 980.0, + 1448.0, + 1012.0, + 249.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1007.0, + 1452.0, + 1007.0, + 1452.0, + 1045.0, + 247.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1035.0, + 1452.0, + 1035.0, + 1452.0, + 1081.0, + 245.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1065.0, + 1452.0, + 1065.0, + 1452.0, + 1110.0, + 245.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1098.0, + 1330.0, + 1098.0, + 1330.0, + 1139.0, + 248.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1148.0, + 1451.0, + 1148.0, + 1451.0, + 1181.0, + 252.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1179.0, + 1450.0, + 1179.0, + 1450.0, + 1212.0, + 250.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1209.0, + 1454.0, + 1209.0, + 1454.0, + 1242.0, + 250.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1237.0, + 1454.0, + 1237.0, + 1454.0, + 1275.0, + 248.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1265.0, + 1454.0, + 1265.0, + 1454.0, + 1309.0, + 246.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1298.0, + 1450.0, + 1298.0, + 1450.0, + 1337.0, + 248.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1332.0, + 1451.0, + 1332.0, + 1451.0, + 1365.0, + 249.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1361.0, + 1451.0, + 1361.0, + 1451.0, + 1397.0, + 248.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1395.0, + 394.0, + 1395.0, + 394.0, + 1426.0, + 249.0, + 1426.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 253, + 112, + 770, + 112, + 770, + 142, + 253, + 142 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 790, + 1865, + 819, + 1865, + 819, + 1890, + 790, + 1890 + ], + "score": 0.812 + }, + { + "category_id": 0, + "poly": [ + 254, + 264, + 444, + 264, + 444, + 299, + 254, + 299 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 248, + 316, + 1453, + 316, + 1453, + 410, + 248, + 410 + ], + "score": 0.72 + }, + { + "category_id": 1, + "poly": [ + 251, + 1299, + 1447, + 1299, + 1447, + 1367, + 251, + 1367 + ], + "score": 0.675 + }, + { + "category_id": 1, + "poly": [ + 249, + 1383, + 1445, + 1383, + 1445, + 1449, + 249, + 1449 + ], + "score": 0.67 + }, + { + "category_id": 1, + "poly": [ + 250, + 1466, + 1446, + 1466, + 1446, + 1533, + 250, + 1533 + ], + "score": 0.668 + }, + { + "category_id": 1, + "poly": [ + 252, + 428, + 1453, + 428, + 1453, + 553, + 252, + 553 + ], + "score": 0.644 + }, + { + "category_id": 1, + "poly": [ + 246, + 1049, + 1449, + 1049, + 1449, + 1114, + 246, + 1114 + ], + "score": 0.635 + }, + { + "category_id": 1, + "poly": [ + 253, + 883, + 1450, + 883, + 1450, + 948, + 253, + 948 + ], + "score": 0.634 + }, + { + "category_id": 1, + "poly": [ + 249, + 1133, + 1449, + 1133, + 1449, + 1199, + 249, + 1199 + ], + "score": 0.633 + }, + { + "category_id": 1, + "poly": [ + 250, + 1216, + 1447, + 1216, + 1447, + 1283, + 250, + 1283 + ], + "score": 0.632 + }, + { + "category_id": 1, + "poly": [ + 251, + 966, + 1450, + 966, + 1450, + 1033, + 251, + 1033 + ], + "score": 0.612 + }, + { + "category_id": 1, + "poly": [ + 253, + 1549, + 1445, + 1549, + 1445, + 1645, + 253, + 1645 + ], + "score": 0.594 + }, + { + "category_id": 1, + "poly": [ + 257, + 799, + 1445, + 799, + 1445, + 866, + 257, + 866 + ], + "score": 0.585 + }, + { + "category_id": 1, + "poly": [ + 245, + 1663, + 1447, + 1663, + 1447, + 1729, + 245, + 1729 + ], + "score": 0.556 + }, + { + "category_id": 1, + "poly": [ + 252, + 573, + 1453, + 573, + 1453, + 667, + 252, + 667 + ], + "score": 0.555 + }, + { + "category_id": 1, + "poly": [ + 253, + 1748, + 1439, + 1748, + 1439, + 1812, + 253, + 1812 + ], + "score": 0.545 + }, + { + "category_id": 1, + "poly": [ + 252, + 686, + 1452, + 686, + 1452, + 781, + 252, + 781 + ], + "score": 0.437 + }, + { + "category_id": 1, + "poly": [ + 254, + 264, + 444, + 264, + 444, + 299, + 254, + 299 + ], + "score": 0.093 + }, + { + "category_id": 15, + "poly": [ + 251.0, + 110.0, + 772.0, + 110.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1862.0, + 824.0, + 1862.0, + 824.0, + 1900.0, + 786.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 267.0, + 445.0, + 267.0, + 445.0, + 300.0, + 252.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 311.0, + 1454.0, + 311.0, + 1454.0, + 355.0, + 247.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 343.0, + 1450.0, + 343.0, + 1450.0, + 383.0, + 276.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 377.0, + 981.0, + 377.0, + 981.0, + 415.0, + 275.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1298.0, + 1450.0, + 1298.0, + 1450.0, + 1337.0, + 250.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1333.0, + 1163.0, + 1333.0, + 1163.0, + 1366.0, + 277.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1382.0, + 1449.0, + 1382.0, + 1449.0, + 1421.0, + 249.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 1415.0, + 1253.0, + 1415.0, + 1253.0, + 1450.0, + 276.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1467.0, + 1450.0, + 1467.0, + 1450.0, + 1503.0, + 250.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1498.0, + 1262.0, + 1498.0, + 1262.0, + 1533.0, + 277.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 430.0, + 1453.0, + 430.0, + 1453.0, + 465.0, + 249.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 460.0, + 1453.0, + 460.0, + 1453.0, + 495.0, + 278.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 488.0, + 1453.0, + 488.0, + 1453.0, + 528.0, + 275.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 521.0, + 577.0, + 521.0, + 577.0, + 557.0, + 277.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1049.0, + 1449.0, + 1049.0, + 1449.0, + 1085.0, + 250.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 1083.0, + 661.0, + 1083.0, + 661.0, + 1114.0, + 275.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 885.0, + 1449.0, + 885.0, + 1449.0, + 921.0, + 250.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 914.0, + 999.0, + 914.0, + 999.0, + 950.0, + 279.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1131.0, + 1454.0, + 1131.0, + 1454.0, + 1172.0, + 246.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1165.0, + 498.0, + 1165.0, + 498.0, + 1198.0, + 278.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1217.0, + 1451.0, + 1217.0, + 1451.0, + 1253.0, + 251.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1248.0, + 1293.0, + 1248.0, + 1293.0, + 1285.0, + 277.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 967.0, + 1449.0, + 967.0, + 1449.0, + 1003.0, + 252.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1000.0, + 1118.0, + 1000.0, + 1118.0, + 1033.0, + 277.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1549.0, + 1452.0, + 1549.0, + 1452.0, + 1587.0, + 249.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1581.0, + 1451.0, + 1581.0, + 1451.0, + 1618.0, + 277.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1613.0, + 565.0, + 1613.0, + 565.0, + 1642.0, + 277.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 796.0, + 1451.0, + 796.0, + 1451.0, + 839.0, + 249.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 831.0, + 1280.0, + 831.0, + 1280.0, + 866.0, + 277.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1662.0, + 1450.0, + 1662.0, + 1450.0, + 1700.0, + 251.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 1696.0, + 1190.0, + 1696.0, + 1190.0, + 1730.0, + 276.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 572.0, + 1451.0, + 572.0, + 1451.0, + 609.0, + 249.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 603.0, + 1452.0, + 603.0, + 1452.0, + 641.0, + 278.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 634.0, + 744.0, + 634.0, + 744.0, + 670.0, + 276.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1748.0, + 1445.0, + 1748.0, + 1445.0, + 1784.0, + 251.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 1776.0, + 1399.0, + 1776.0, + 1399.0, + 1815.0, + 275.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 682.0, + 1452.0, + 682.0, + 1452.0, + 727.0, + 247.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 717.0, + 1452.0, + 717.0, + 1452.0, + 755.0, + 276.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 273.0, + 746.0, + 530.0, + 746.0, + 530.0, + 783.0, + 273.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 267.0, + 445.0, + 267.0, + 445.0, + 300.0, + 252.0, + 300.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 253, + 112, + 770, + 112, + 770, + 142, + 253, + 142 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 790, + 1865, + 817, + 1865, + 817, + 1890, + 790, + 1890 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 251, + 1178, + 1449, + 1178, + 1449, + 1244, + 251, + 1244 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 252, + 1063, + 1453, + 1063, + 1453, + 1159, + 252, + 1159 + ], + "score": 0.685 + }, + { + "category_id": 1, + "poly": [ + 251, + 948, + 1449, + 948, + 1449, + 1044, + 251, + 1044 + ], + "score": 0.669 + }, + { + "category_id": 1, + "poly": [ + 250, + 1263, + 1453, + 1263, + 1453, + 1358, + 250, + 1358 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 248, + 1377, + 1449, + 1377, + 1449, + 1444, + 248, + 1444 + ], + "score": 0.655 + }, + { + "category_id": 1, + "poly": [ + 253, + 748, + 1451, + 748, + 1451, + 845, + 253, + 845 + ], + "score": 0.653 + }, + { + "category_id": 1, + "poly": [ + 252, + 1462, + 1452, + 1462, + 1452, + 1559, + 252, + 1559 + ], + "score": 0.641 + }, + { + "category_id": 1, + "poly": [ + 252, + 864, + 1450, + 864, + 1450, + 929, + 252, + 929 + ], + "score": 0.62 + }, + { + "category_id": 1, + "poly": [ + 253, + 463, + 1443, + 463, + 1443, + 531, + 253, + 531 + ], + "score": 0.601 + }, + { + "category_id": 1, + "poly": [ + 246, + 380, + 1442, + 380, + 1442, + 445, + 246, + 445 + ], + "score": 0.595 + }, + { + "category_id": 1, + "poly": [ + 245, + 1693, + 1448, + 1693, + 1448, + 1758, + 245, + 1758 + ], + "score": 0.592 + }, + { + "category_id": 1, + "poly": [ + 248, + 664, + 1448, + 664, + 1448, + 730, + 248, + 730 + ], + "score": 0.585 + }, + { + "category_id": 1, + "poly": [ + 250, + 1779, + 1183, + 1779, + 1183, + 1813, + 250, + 1813 + ], + "score": 0.558 + }, + { + "category_id": 1, + "poly": [ + 250, + 1577, + 1451, + 1577, + 1451, + 1673, + 250, + 1673 + ], + "score": 0.549 + }, + { + "category_id": 1, + "poly": [ + 251, + 266, + 1452, + 266, + 1452, + 361, + 251, + 361 + ], + "score": 0.469 + }, + { + "category_id": 1, + "poly": [ + 250, + 549, + 1449, + 549, + 1449, + 644, + 250, + 644 + ], + "score": 0.422 + }, + { + "category_id": 15, + "poly": [ + 251.0, + 110.0, + 772.0, + 110.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1862.0, + 822.0, + 1862.0, + 822.0, + 1902.0, + 786.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1176.0, + 1449.0, + 1176.0, + 1449.0, + 1217.0, + 248.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1211.0, + 642.0, + 1211.0, + 642.0, + 1243.0, + 278.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1062.0, + 1453.0, + 1062.0, + 1453.0, + 1102.0, + 248.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1094.0, + 1453.0, + 1094.0, + 1453.0, + 1132.0, + 277.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1123.0, + 350.0, + 1123.0, + 350.0, + 1158.0, + 278.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 949.0, + 1449.0, + 949.0, + 1449.0, + 987.0, + 251.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 982.0, + 1446.0, + 982.0, + 1446.0, + 1016.0, + 278.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1011.0, + 888.0, + 1011.0, + 888.0, + 1045.0, + 277.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1263.0, + 1450.0, + 1263.0, + 1450.0, + 1301.0, + 250.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 273.0, + 1291.0, + 1454.0, + 1291.0, + 1454.0, + 1335.0, + 273.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1326.0, + 488.0, + 1326.0, + 488.0, + 1359.0, + 279.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1379.0, + 1450.0, + 1379.0, + 1450.0, + 1416.0, + 252.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 1409.0, + 1454.0, + 1409.0, + 1454.0, + 1444.0, + 275.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 747.0, + 1452.0, + 747.0, + 1452.0, + 787.0, + 248.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 777.0, + 1451.0, + 777.0, + 1451.0, + 820.0, + 275.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 809.0, + 1164.0, + 809.0, + 1164.0, + 846.0, + 276.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1464.0, + 1451.0, + 1464.0, + 1451.0, + 1498.0, + 252.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1493.0, + 1449.0, + 1493.0, + 1449.0, + 1530.0, + 278.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1525.0, + 947.0, + 1525.0, + 947.0, + 1560.0, + 279.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 860.0, + 1451.0, + 860.0, + 1451.0, + 903.0, + 247.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 897.0, + 552.0, + 897.0, + 552.0, + 927.0, + 276.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 467.0, + 1449.0, + 467.0, + 1449.0, + 500.0, + 251.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 496.0, + 1275.0, + 496.0, + 1275.0, + 531.0, + 277.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 380.0, + 1447.0, + 380.0, + 1447.0, + 418.0, + 249.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 411.0, + 917.0, + 411.0, + 917.0, + 446.0, + 277.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1693.0, + 1450.0, + 1693.0, + 1450.0, + 1729.0, + 249.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1724.0, + 643.0, + 1724.0, + 643.0, + 1760.0, + 278.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 667.0, + 1447.0, + 667.0, + 1447.0, + 700.0, + 251.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 696.0, + 1253.0, + 696.0, + 1253.0, + 732.0, + 279.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1776.0, + 1187.0, + 1776.0, + 1187.0, + 1817.0, + 249.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1576.0, + 1450.0, + 1576.0, + 1450.0, + 1616.0, + 249.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 1605.0, + 1455.0, + 1605.0, + 1455.0, + 1651.0, + 275.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 1636.0, + 567.0, + 1636.0, + 567.0, + 1679.0, + 276.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 260.0, + 1451.0, + 260.0, + 1451.0, + 306.0, + 247.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 294.0, + 1453.0, + 294.0, + 1453.0, + 335.0, + 277.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 327.0, + 731.0, + 327.0, + 731.0, + 365.0, + 277.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 549.0, + 1449.0, + 549.0, + 1449.0, + 587.0, + 249.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 580.0, + 1452.0, + 580.0, + 1452.0, + 618.0, + 277.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 610.0, + 415.0, + 610.0, + 415.0, + 644.0, + 277.0, + 644.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 254, + 112, + 770, + 112, + 770, + 142, + 254, + 142 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 790, + 1865, + 819, + 1865, + 819, + 1890, + 790, + 1890 + ], + "score": 0.813 + }, + { + "category_id": 1, + "poly": [ + 247, + 1080, + 1449, + 1080, + 1449, + 1145, + 247, + 1145 + ], + "score": 0.81 + }, + { + "category_id": 1, + "poly": [ + 252, + 962, + 1452, + 962, + 1452, + 1059, + 252, + 1059 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 246, + 1166, + 1449, + 1166, + 1449, + 1232, + 246, + 1232 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 247, + 1371, + 1448, + 1371, + 1448, + 1436, + 247, + 1436 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 252, + 1253, + 1451, + 1253, + 1451, + 1349, + 252, + 1349 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 254, + 876, + 1449, + 876, + 1449, + 942, + 254, + 942 + ], + "score": 0.695 + }, + { + "category_id": 1, + "poly": [ + 249, + 1456, + 1447, + 1456, + 1447, + 1523, + 249, + 1523 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 257, + 789, + 1450, + 789, + 1450, + 857, + 257, + 857 + ], + "score": 0.659 + }, + { + "category_id": 1, + "poly": [ + 259, + 672, + 1448, + 672, + 1448, + 769, + 259, + 769 + ], + "score": 0.622 + }, + { + "category_id": 1, + "poly": [ + 248, + 1543, + 1449, + 1543, + 1449, + 1639, + 248, + 1639 + ], + "score": 0.616 + }, + { + "category_id": 1, + "poly": [ + 252, + 555, + 1448, + 555, + 1448, + 652, + 252, + 652 + ], + "score": 0.612 + }, + { + "category_id": 1, + "poly": [ + 250, + 350, + 1446, + 350, + 1446, + 418, + 250, + 418 + ], + "score": 0.59 + }, + { + "category_id": 1, + "poly": [ + 247, + 265, + 1449, + 265, + 1449, + 331, + 247, + 331 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 247, + 1747, + 1447, + 1747, + 1447, + 1812, + 247, + 1812 + ], + "score": 0.544 + }, + { + "category_id": 1, + "poly": [ + 243, + 1660, + 1448, + 1660, + 1448, + 1726, + 243, + 1726 + ], + "score": 0.539 + }, + { + "category_id": 1, + "poly": [ + 251, + 437, + 1456, + 437, + 1456, + 533, + 251, + 533 + ], + "score": 0.293 + }, + { + "category_id": 15, + "poly": [ + 250.0, + 110.0, + 772.0, + 110.0, + 772.0, + 145.0, + 250.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1862.0, + 824.0, + 1862.0, + 824.0, + 1901.0, + 786.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1079.0, + 1447.0, + 1079.0, + 1447.0, + 1115.0, + 250.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1113.0, + 714.0, + 1113.0, + 714.0, + 1145.0, + 278.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 958.0, + 311.0, + 958.0, + 311.0, + 998.0, + 249.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 961.0, + 470.0, + 961.0, + 470.0, + 997.0, + 349.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 962.0, + 569.0, + 962.0, + 569.0, + 997.0, + 509.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 962.0, + 713.0, + 962.0, + 713.0, + 994.0, + 606.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 964.0, + 834.0, + 964.0, + 834.0, + 997.0, + 752.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 961.0, + 1108.0, + 961.0, + 1108.0, + 999.0, + 993.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 967.0, + 1306.0, + 967.0, + 1306.0, + 996.0, + 1151.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 967.0, + 1452.0, + 967.0, + 1452.0, + 999.0, + 1346.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 991.0, + 347.0, + 991.0, + 347.0, + 1029.0, + 274.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 999.0, + 435.0, + 999.0, + 435.0, + 1028.0, + 408.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 993.0, + 580.0, + 993.0, + 580.0, + 1030.0, + 494.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 994.0, + 821.0, + 994.0, + 821.0, + 1029.0, + 641.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 997.0, + 1451.0, + 997.0, + 1451.0, + 1028.0, + 1044.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1024.0, + 1302.0, + 1024.0, + 1302.0, + 1059.0, + 278.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1163.0, + 1452.0, + 1163.0, + 1452.0, + 1206.0, + 248.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1198.0, + 566.0, + 1198.0, + 566.0, + 1229.0, + 277.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1367.0, + 1451.0, + 1367.0, + 1451.0, + 1411.0, + 247.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1401.0, + 1165.0, + 1401.0, + 1165.0, + 1437.0, + 277.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1254.0, + 1447.0, + 1254.0, + 1447.0, + 1287.0, + 251.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 1286.0, + 1450.0, + 1286.0, + 1450.0, + 1319.0, + 279.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 1313.0, + 604.0, + 1313.0, + 604.0, + 1350.0, + 275.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 253.0, + 879.0, + 1452.0, + 879.0, + 1452.0, + 912.0, + 253.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 908.0, + 1212.0, + 908.0, + 1212.0, + 944.0, + 277.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1453.0, + 1450.0, + 1453.0, + 1450.0, + 1496.0, + 246.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1488.0, + 1076.0, + 1488.0, + 1076.0, + 1523.0, + 277.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 790.0, + 1450.0, + 790.0, + 1450.0, + 827.0, + 251.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 822.0, + 1346.0, + 822.0, + 1346.0, + 858.0, + 274.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 671.0, + 1450.0, + 671.0, + 1450.0, + 711.0, + 249.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 704.0, + 1450.0, + 704.0, + 1450.0, + 739.0, + 276.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 735.0, + 1009.0, + 735.0, + 1009.0, + 770.0, + 277.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1544.0, + 1452.0, + 1544.0, + 1452.0, + 1582.0, + 249.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1574.0, + 1450.0, + 1574.0, + 1450.0, + 1612.0, + 277.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1606.0, + 438.0, + 1606.0, + 438.0, + 1640.0, + 277.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 557.0, + 1451.0, + 557.0, + 1451.0, + 591.0, + 249.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 583.0, + 1451.0, + 583.0, + 1451.0, + 628.0, + 276.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 618.0, + 1264.0, + 618.0, + 1264.0, + 653.0, + 278.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 253.0, + 354.0, + 1450.0, + 354.0, + 1450.0, + 387.0, + 253.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 384.0, + 1423.0, + 384.0, + 1423.0, + 418.0, + 276.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 266.0, + 1447.0, + 266.0, + 1447.0, + 301.0, + 249.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 297.0, + 1199.0, + 297.0, + 1199.0, + 332.0, + 277.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1747.0, + 1451.0, + 1747.0, + 1451.0, + 1783.0, + 250.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 1780.0, + 768.0, + 1780.0, + 768.0, + 1813.0, + 275.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1658.0, + 1452.0, + 1658.0, + 1452.0, + 1698.0, + 247.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 1692.0, + 1131.0, + 1692.0, + 1131.0, + 1727.0, + 276.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 438.0, + 1449.0, + 438.0, + 1449.0, + 476.0, + 250.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 467.0, + 1450.0, + 467.0, + 1450.0, + 508.0, + 276.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 500.0, + 565.0, + 500.0, + 565.0, + 534.0, + 277.0, + 534.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 254, + 112, + 770, + 112, + 770, + 142, + 254, + 142 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 790, + 1865, + 818, + 1865, + 818, + 1890, + 790, + 1890 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 257, + 1020, + 1449, + 1020, + 1449, + 1086, + 257, + 1086 + ], + "score": 0.723 + }, + { + "category_id": 1, + "poly": [ + 249, + 824, + 1448, + 824, + 1448, + 888, + 249, + 888 + ], + "score": 0.625 + }, + { + "category_id": 1, + "poly": [ + 250, + 710, + 1445, + 710, + 1445, + 807, + 250, + 807 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 250, + 658, + 1385, + 658, + 1385, + 694, + 250, + 694 + ], + "score": 0.523 + }, + { + "category_id": 1, + "poly": [ + 251, + 575, + 1446, + 575, + 1446, + 641, + 251, + 641 + ], + "score": 0.523 + }, + { + "category_id": 1, + "poly": [ + 247, + 492, + 1445, + 492, + 1445, + 556, + 247, + 556 + ], + "score": 0.507 + }, + { + "category_id": 1, + "poly": [ + 250, + 378, + 1444, + 378, + 1444, + 474, + 250, + 474 + ], + "score": 0.492 + }, + { + "category_id": 1, + "poly": [ + 251, + 907, + 1450, + 907, + 1450, + 1000, + 251, + 1000 + ], + "score": 0.44 + }, + { + "category_id": 1, + "poly": [ + 252, + 266, + 1449, + 266, + 1449, + 361, + 252, + 361 + ], + "score": 0.384 + }, + { + "category_id": 15, + "poly": [ + 250.0, + 110.0, + 772.0, + 110.0, + 772.0, + 145.0, + 250.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1862.0, + 823.0, + 1862.0, + 823.0, + 1900.0, + 786.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1021.0, + 1449.0, + 1021.0, + 1449.0, + 1057.0, + 251.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1054.0, + 1436.0, + 1054.0, + 1436.0, + 1087.0, + 278.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 821.0, + 1453.0, + 821.0, + 1453.0, + 864.0, + 248.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 272.0, + 852.0, + 352.0, + 852.0, + 352.0, + 892.0, + 272.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 708.0, + 1451.0, + 708.0, + 1451.0, + 749.0, + 247.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 745.0, + 1450.0, + 745.0, + 1450.0, + 776.0, + 278.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 773.0, + 1263.0, + 773.0, + 1263.0, + 808.0, + 278.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 658.0, + 1381.0, + 658.0, + 1381.0, + 697.0, + 250.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 578.0, + 1450.0, + 578.0, + 1450.0, + 611.0, + 252.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 607.0, + 1415.0, + 607.0, + 1415.0, + 643.0, + 278.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 489.0, + 1449.0, + 489.0, + 1449.0, + 532.0, + 247.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 524.0, + 697.0, + 524.0, + 697.0, + 556.0, + 277.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 379.0, + 1450.0, + 379.0, + 1450.0, + 414.0, + 250.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 406.0, + 1450.0, + 406.0, + 1450.0, + 449.0, + 274.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 442.0, + 1278.0, + 442.0, + 1278.0, + 476.0, + 278.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 907.0, + 1450.0, + 907.0, + 1450.0, + 944.0, + 250.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 940.0, + 1453.0, + 940.0, + 1453.0, + 973.0, + 278.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 969.0, + 351.0, + 969.0, + 351.0, + 1005.0, + 277.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 265.0, + 1449.0, + 265.0, + 1449.0, + 303.0, + 251.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 276.0, + 292.0, + 1449.0, + 292.0, + 1449.0, + 336.0, + 276.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 329.0, + 1153.0, + 329.0, + 1153.0, + 362.0, + 279.0, + 362.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 252, + 1497, + 1450, + 1497, + 1450, + 1712, + 252, + 1712 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 250, + 1749, + 1447, + 1749, + 1447, + 1811, + 250, + 1811 + ], + "score": 0.938 + }, + { + "category_id": 5, + "poly": [ + 248, + 401, + 1415, + 401, + 1415, + 1360, + 248, + 1360 + ], + "score": 0.915, + "html": "
Algorithm1HER with CER
Initialize a random process N for action exploration,max episode length to L Set CER to ind-CER or int-CER
for episode= 1 to M do
Receive initial state S A
Receive a goal rA for this episode
Initialize episode buffer buffer A
for t=1to L do
select action aA = μe(sA) +Nt w.r.t. the current policy and exploration Execute actions αA and observe reward rA and new state s'A
Store (sA,aA,gA,rA,SA') in buffer A
SA↑SA
end for
Receive initial state SB or Receive initial state SB, where SB is a state sampled from buffer A
Receive a goal rB for this episode Initialize episode buffer buffer B
for t=1 to L do
select action aB = μe(sB)+Nt w.r.t. the current policy and exploration
Execute actions αB and observe reward rB and new state s'B
Store (sB,aB,gB,rB,SB') in bufferB
SB↑SB
end for
ConcatenatebuferA and bufferg and store ({si}=1,{ai}T=1,{g}T=1,{ri}=1,{s'i}T=1) in replay buffer D
// Optimization based on off-policysamples
fork=1 toKdo // Relabelling off-policy samples
" + }, + { + "category_id": 0, + "poly": [ + 254, + 1427, + 656, + 1427, + 656, + 1462, + 254, + 1462 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 254, + 112, + 770, + 112, + 770, + 142, + 254, + 142 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 252, + 333, + 970, + 333, + 970, + 367, + 252, + 367 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 790, + 1865, + 818, + 1865, + 818, + 1890, + 790, + 1890 + ], + "score": 0.822 + }, + { + "category_id": 0, + "poly": [ + 253, + 264, + 495, + 264, + 495, + 299, + 253, + 299 + ], + "score": 0.801 + }, + { + "category_id": 0, + "poly": [ + 253, + 403, + 561, + 403, + 561, + 434, + 253, + 434 + ], + "score": 0.4 + }, + { + "category_id": 13, + "poly": [ + 760, + 1127, + 952, + 1127, + 952, + 1162, + 760, + 1162 + ], + "score": 0.92, + "latex": "( { \\bf s } ^ { j } , { \\bf a } ^ { j } , { \\bf g } ^ { j } , { \\bf r } ^ { j } , { \\bf s } ^ { \\prime j } )" + }, + { + "category_id": 13, + "poly": [ + 466, + 883, + 679, + 883, + 679, + 913, + 466, + 913 + ], + "score": 0.92, + "latex": "a _ { B } = \\pmb { \\mu } _ { \\theta _ { i } } ( s _ { B } ) + \\mathcal { N } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 465, + 634, + 677, + 634, + 677, + 664, + 465, + 664 + ], + "score": 0.91, + "latex": "a _ { A } = \\pmb { \\mu } _ { \\theta _ { i } } ( s _ { A } ) + \\mathcal { N } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1077, + 408, + 1077, + 408, + 1102, + 345, + 1102 + ], + "score": 0.9, + "latex": "{ \\bf k } = 1" + }, + { + "category_id": 13, + "poly": [ + 345, + 856, + 405, + 856, + 405, + 880, + 345, + 880 + ], + "score": 0.89, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 345, + 607, + 405, + 607, + 405, + 632, + 345, + 632 + ], + "score": 0.89, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 913, + 910, + 944, + 910, + 944, + 939, + 913, + 939 + ], + "score": 0.88, + "latex": "s _ { B } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 911, + 661, + 941, + 661, + 941, + 690, + 911, + 690 + ], + "score": 0.87, + "latex": "s _ { A } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 336, + 717, + 435, + 717, + 435, + 746, + 336, + 746 + ], + "score": 0.86, + "latex": "s _ { A } s _ { A } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 336, + 966, + 437, + 966, + 437, + 994, + 336, + 994 + ], + "score": 0.86, + "latex": "s _ { B } s _ { B } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 735, + 914, + 767, + 914, + 767, + 937, + 735, + 937 + ], + "score": 0.85, + "latex": "r _ { B }" + }, + { + "category_id": 13, + "poly": [ + 735, + 665, + 765, + 665, + 765, + 688, + 735, + 688 + ], + "score": 0.85, + "latex": "r _ { A }" + }, + { + "category_id": 13, + "poly": [ + 499, + 916, + 531, + 916, + 531, + 937, + 499, + 937 + ], + "score": 0.85, + "latex": "a _ { B }" + }, + { + "category_id": 13, + "poly": [ + 398, + 496, + 444, + 496, + 444, + 520, + 398, + 520 + ], + "score": 0.84, + "latex": "= 1" + }, + { + "category_id": 13, + "poly": [ + 499, + 667, + 531, + 667, + 531, + 688, + 499, + 688 + ], + "score": 0.83, + "latex": "a _ { A }" + }, + { + "category_id": 13, + "poly": [ + 396, + 689, + 614, + 689, + 614, + 718, + 396, + 718 + ], + "score": 0.83, + "latex": "\\left( s _ { A } , a _ { A } , g _ { A } , r _ { A } , s _ { A } ^ { \\prime } \\right)" + }, + { + "category_id": 13, + "poly": [ + 774, + 778, + 805, + 778, + 805, + 799, + 774, + 799 + ], + "score": 0.83, + "latex": "s _ { B }" + }, + { + "category_id": 13, + "poly": [ + 883, + 777, + 915, + 777, + 915, + 799, + 883, + 799 + ], + "score": 0.83, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 510, + 778, + 541, + 778, + 541, + 799, + 510, + 799 + ], + "score": 0.83, + "latex": "s _ { B }" + }, + { + "category_id": 13, + "poly": [ + 459, + 555, + 490, + 555, + 490, + 578, + 459, + 578 + ], + "score": 0.82, + "latex": "r _ { A }" + }, + { + "category_id": 13, + "poly": [ + 437, + 1077, + 463, + 1077, + 463, + 1101, + 437, + 1101 + ], + "score": 0.82, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 460, + 804, + 491, + 804, + 491, + 826, + 460, + 826 + ], + "score": 0.81, + "latex": "r _ { B }" + }, + { + "category_id": 13, + "poly": [ + 649, + 1133, + 669, + 1133, + 669, + 1157, + 649, + 1157 + ], + "score": 0.81, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 555, + 440, + 583, + 440, + 583, + 465, + 555, + 465 + ], + "score": 0.77, + "latex": "\\mathcal { N }" + }, + { + "category_id": 13, + "poly": [ + 396, + 939, + 618, + 939, + 618, + 967, + 396, + 967 + ], + "score": 0.77, + "latex": "\\left( s _ { B } , a _ { B } , g _ { B } , r _ { B } , s _ { B } ^ { \\prime } \\right)" + }, + { + "category_id": 13, + "poly": [ + 510, + 528, + 540, + 528, + 540, + 550, + 510, + 550 + ], + "score": 0.75, + "latex": "s _ { A }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1216, + 497, + 1216, + 497, + 1242, + 433, + 1242 + ], + "score": 0.74, + "latex": "i = A" + }, + { + "category_id": 13, + "poly": [ + 433, + 856, + 454, + 856, + 454, + 880, + 433, + 880 + ], + "score": 0.74, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 433, + 607, + 454, + 607, + 454, + 630, + 433, + 630 + ], + "score": 0.73, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1132, + 1034, + 1132, + 1034, + 1157, + 1010, + 1157 + ], + "score": 0.72, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1022, + 1407, + 1022, + 1407, + 1045, + 1383, + 1045 + ], + "score": 0.7, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 743, + 1016, + 1220, + 1016, + 1220, + 1052, + 743, + 1052 + ], + "score": 0.69, + "latex": "( \\{ \\mathbf { s } ^ { \\mathbf { i } } \\} _ { i = 1 } ^ { T } , \\{ \\mathbf { a } ^ { \\mathbf { i } } \\} _ { i = 1 } ^ { T } , \\{ \\mathbf { g } ^ { \\mathbf { i } } \\} _ { i = 1 } ^ { T } , \\{ \\mathbf { r } ^ { \\mathbf { i } } \\} _ { i = 1 } ^ { T } , \\{ \\mathbf { s } ^ { \\prime i } \\} _ { i = 1 } ^ { T } )" + }, + { + "category_id": 13, + "poly": [ + 1411, + 1652, + 1449, + 1652, + 1449, + 1680, + 1411, + 1680 + ], + "score": 0.69, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 473, + 496, + 503, + 496, + 503, + 520, + 473, + 520 + ], + "score": 0.67, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 507, + 1216, + 530, + 1216, + 530, + 1241, + 507, + 1241 + ], + "score": 0.59, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 561, + 1022, + 639, + 1022, + 639, + 1052, + 561, + 1052 + ], + "score": 0.51, + "latex": "b u f f e r _ { B }" + }, + { + "category_id": 13, + "poly": [ + 599, + 582, + 628, + 582, + 628, + 609, + 599, + 609 + ], + "score": 0.5, + "latex": "x _ { A }" + }, + { + "category_id": 13, + "poly": [ + 692, + 693, + 721, + 693, + 721, + 720, + 692, + 720 + ], + "score": 0.47, + "latex": "x _ { A }" + }, + { + "category_id": 13, + "poly": [ + 935, + 1016, + 1019, + 1016, + 1019, + 1052, + 935, + 1052 + ], + "score": 0.43, + "latex": "\\{ \\mathbf { g } ^ { \\mathbf { i } } \\} _ { i = 1 } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1040, + 441, + 1061, + 441, + 1061, + 465, + 1040, + 465 + ], + "score": 0.42, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 437, + 1022, + 515, + 1022, + 515, + 1052, + 437, + 1052 + ], + "score": 0.38, + "latex": "b u f f e r _ { A }" + }, + { + "category_id": 13, + "poly": [ + 697, + 941, + 726, + 941, + 726, + 969, + 697, + 969 + ], + "score": 0.38, + "latex": "\\boldsymbol { r } _ { B }" + }, + { + "category_id": 13, + "poly": [ + 598, + 830, + 629, + 830, + 629, + 858, + 598, + 858 + ], + "score": 0.3, + "latex": "\\mathbf { \\boldsymbol { { r } } } _ { B }" + }, + { + "category_id": 13, + "poly": [ + 551, + 828, + 629, + 828, + 629, + 858, + 551, + 858 + ], + "score": 0.28, + "latex": "b u f f e r _ { B }" + }, + { + "category_id": 13, + "poly": [ + 648, + 939, + 727, + 939, + 727, + 969, + 648, + 969 + ], + "score": 0.28, + "latex": "b u f f e r _ { B }" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1425.0, + 660.0, + 1425.0, + 660.0, + 1469.0, + 247.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 110.0, + 772.0, + 110.0, + 772.0, + 145.0, + 250.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1862.0, + 824.0, + 1862.0, + 824.0, + 1901.0, + 786.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 261.0, + 498.0, + 261.0, + 498.0, + 306.0, + 250.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 400.0, + 565.0, + 400.0, + 565.0, + 437.0, + 250.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1489.0, + 1453.0, + 1489.0, + 1453.0, + 1540.0, + 247.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1524.0, + 1450.0, + 1524.0, + 1450.0, + 1564.0, + 248.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1558.0, + 1451.0, + 1558.0, + 1451.0, + 1597.0, + 248.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1589.0, + 1451.0, + 1589.0, + 1451.0, + 1624.0, + 248.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1617.0, + 1451.0, + 1617.0, + 1451.0, + 1657.0, + 248.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1649.0, + 1410.0, + 1649.0, + 1410.0, + 1685.0, + 249.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1679.0, + 973.0, + 1679.0, + 973.0, + 1714.0, + 249.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1748.0, + 1451.0, + 1748.0, + 1451.0, + 1784.0, + 251.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1777.0, + 1452.0, + 1777.0, + 1452.0, + 1815.0, + 249.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 330.0, + 974.0, + 330.0, + 974.0, + 371.0, + 250.0, + 371.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 270, + 261, + 1424, + 261, + 1424, + 857, + 270, + 857 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 383, + 1165, + 1288, + 1165, + 1288, + 1615, + 383, + 1615 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 252, + 949, + 1452, + 949, + 1452, + 1043, + 252, + 1043 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 253, + 1625, + 1448, + 1625, + 1448, + 1711, + 253, + 1711 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 254, + 1718, + 1450, + 1718, + 1450, + 1812, + 254, + 1812 + ], + "score": 0.943 + }, + { + "category_id": 4, + "poly": [ + 513, + 866, + 1181, + 866, + 1181, + 895, + 513, + 895 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 253, + 113, + 769, + 113, + 769, + 141, + 253, + 141 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 790, + 1866, + 818, + 1866, + 818, + 1890, + 790, + 1890 + ], + "score": 0.839 + }, + { + "category_id": 0, + "poly": [ + 251, + 1089, + 1400, + 1089, + 1400, + 1122, + 251, + 1122 + ], + "score": 0.479 + }, + { + "category_id": 4, + "poly": [ + 251, + 1089, + 1400, + 1089, + 1400, + 1122, + 251, + 1122 + ], + "score": 0.317 + }, + { + "category_id": 13, + "poly": [ + 709, + 950, + 771, + 950, + 771, + 984, + 709, + 984 + ], + "score": 0.89, + "latex": "( 0 , 0 )" + }, + { + "category_id": 13, + "poly": [ + 783, + 1683, + 806, + 1683, + 806, + 1707, + 783, + 1707 + ], + "score": 0.8, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1387, + 1751, + 1412, + 1751, + 1412, + 1777, + 1387, + 1777 + ], + "score": 0.79, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1751, + 1336, + 1751, + 1336, + 1777, + 1312, + 1777 + ], + "score": 0.71, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 313, + 1683, + 335, + 1683, + 335, + 1707, + 313, + 1707 + ], + "score": 0.65, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 739, + 1657, + 756, + 1657, + 756, + 1679, + 739, + 1679 + ], + "score": 0.44, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 435, + 984, + 466, + 984, + 466, + 1009, + 435, + 1009 + ], + "score": 0.43, + "latex": "\\mathbf { X } ^ { - }" + }, + { + "category_id": 13, + "poly": [ + 1246, + 980, + 1338, + 980, + 1338, + 1014, + 1246, + 1014 + ], + "score": 0.34, + "latex": "[ - 5 , 2 0 ]" + }, + { + "category_id": 13, + "poly": [ + 1349, + 980, + 1441, + 980, + 1441, + 1014, + 1349, + 1014 + ], + "score": 0.25, + "latex": "[ - 5 , 2 0 ]" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 269.0, + 479.0, + 269.0, + 479.0, + 293.0, + 330.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 270.0, + 771.0, + 270.0, + 771.0, + 290.0, + 626.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 267.0, + 1039.0, + 267.0, + 1039.0, + 292.0, + 949.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 270.0, + 1368.0, + 270.0, + 1368.0, + 290.0, + 1210.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 373.0, + 965.0, + 373.0, + 965.0, + 382.0, + 949.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 404.0, + 965.0, + 404.0, + 965.0, + 417.0, + 955.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 454.0, + 688.0, + 454.0, + 688.0, + 464.0, + 677.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 565.0, + 479.0, + 565.0, + 479.0, + 596.0, + 330.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 573.0, + 742.0, + 573.0, + 742.0, + 594.0, + 656.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 571.0, + 1034.0, + 571.0, + 1034.0, + 591.0, + 954.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 570.0, + 1330.0, + 570.0, + 1330.0, + 592.0, + 1246.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 733.0, + 447.0, + 733.0, + 447.0, + 742.0, + 437.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.25, + 329.0, + 1262.25, + 329.0, + 1262.25, + 401.5, + 1211.25, + 401.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 380.5, + 746.0, + 380.5, + 746.0, + 535.0, + 636.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 411.0, + 1051.0, + 411.0, + 1051.0, + 486.0, + 959.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 397.5, + 1328.0, + 397.5, + 1328.0, + 450.5, + 1305.0, + 450.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 629.5, + 430.0, + 629.5, + 430.0, + 648.0, + 374.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1191.0, + 411.0, + 1191.0, + 411.0, + 1325.0, + 381.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1249.0, + 423.0, + 1249.0, + 423.0, + 1258.0, + 415.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1249.0, + 733.0, + 1249.0, + 733.0, + 1258.0, + 722.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1249.0, + 1042.0, + 1249.0, + 1042.0, + 1257.0, + 1031.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1288.0, + 423.0, + 1288.0, + 423.0, + 1298.0, + 414.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1288.0, + 733.0, + 1288.0, + 733.0, + 1298.0, + 722.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1295.0, + 598.0, + 1295.0, + 598.0, + 1314.0, + 564.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1295.0, + 833.0, + 1295.0, + 833.0, + 1315.0, + 802.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1297.0, + 1233.0, + 1297.0, + 1233.0, + 1318.0, + 1149.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1311.0, + 619.0, + 1311.0, + 619.0, + 1329.0, + 564.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1311.0, + 927.0, + 1311.0, + 927.0, + 1328.0, + 802.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1316.0, + 1242.0, + 1316.0, + 1242.0, + 1336.0, + 1149.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1328.0, + 423.0, + 1328.0, + 423.0, + 1336.0, + 415.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1326.0, + 624.0, + 1326.0, + 624.0, + 1344.0, + 564.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1327.0, + 735.0, + 1327.0, + 735.0, + 1338.0, + 721.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1326.0, + 932.0, + 1326.0, + 932.0, + 1343.0, + 803.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1329.0, + 1043.0, + 1329.0, + 1043.0, + 1336.0, + 1032.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1340.0, + 625.0, + 1340.0, + 625.0, + 1358.0, + 564.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1337.0, + 934.0, + 1337.0, + 934.0, + 1359.0, + 801.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1335.0, + 1242.0, + 1335.0, + 1242.0, + 1356.0, + 1149.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1373.0, + 462.0, + 1373.0, + 462.0, + 1386.0, + 449.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1373.0, + 492.0, + 1373.0, + 492.0, + 1386.0, + 477.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1373.0, + 521.0, + 1373.0, + 521.0, + 1386.0, + 508.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1373.0, + 553.0, + 1373.0, + 553.0, + 1386.0, + 536.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1373.0, + 582.0, + 1373.0, + 582.0, + 1386.0, + 565.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1373.0, + 613.0, + 1373.0, + 613.0, + 1386.0, + 595.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1373.0, + 642.0, + 1373.0, + 642.0, + 1386.0, + 624.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 1373.0, + 671.0, + 1373.0, + 671.0, + 1385.0, + 654.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1373.0, + 772.0, + 1373.0, + 772.0, + 1385.0, + 758.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1373.0, + 801.0, + 1373.0, + 801.0, + 1386.0, + 787.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1373.0, + 830.0, + 1373.0, + 830.0, + 1386.0, + 817.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1371.0, + 864.0, + 1371.0, + 864.0, + 1387.0, + 844.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1373.0, + 892.0, + 1373.0, + 892.0, + 1386.0, + 874.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1373.0, + 921.0, + 1373.0, + 921.0, + 1386.0, + 904.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1373.0, + 951.0, + 1373.0, + 951.0, + 1386.0, + 933.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1373.0, + 979.0, + 1373.0, + 979.0, + 1385.0, + 963.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1373.0, + 1079.0, + 1373.0, + 1079.0, + 1386.0, + 1067.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1373.0, + 1110.0, + 1373.0, + 1110.0, + 1385.0, + 1096.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1373.0, + 1139.0, + 1373.0, + 1139.0, + 1385.0, + 1125.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1371.0, + 1173.0, + 1371.0, + 1173.0, + 1387.0, + 1153.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1373.0, + 1201.0, + 1373.0, + 1201.0, + 1386.0, + 1183.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1373.0, + 1230.0, + 1373.0, + 1230.0, + 1386.0, + 1212.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1373.0, + 1259.0, + 1373.0, + 1259.0, + 1385.0, + 1243.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1373.0, + 1289.0, + 1373.0, + 1289.0, + 1385.0, + 1272.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1401.0, + 423.0, + 1401.0, + 423.0, + 1408.0, + 415.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1401.0, + 733.0, + 1401.0, + 733.0, + 1408.0, + 723.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1420.0, + 412.0, + 1420.0, + 412.0, + 1554.0, + 381.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1439.0, + 423.0, + 1439.0, + 423.0, + 1448.0, + 415.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1437.0, + 735.0, + 1437.0, + 735.0, + 1450.0, + 720.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1439.0, + 1043.0, + 1439.0, + 1043.0, + 1448.0, + 1030.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1446.0, + 598.0, + 1446.0, + 598.0, + 1464.0, + 563.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1446.0, + 834.0, + 1446.0, + 834.0, + 1464.0, + 802.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1447.0, + 1233.0, + 1447.0, + 1233.0, + 1468.0, + 1149.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1460.0, + 625.0, + 1460.0, + 625.0, + 1493.0, + 564.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1477.0, + 734.0, + 1477.0, + 734.0, + 1490.0, + 721.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1461.0, + 932.0, + 1461.0, + 932.0, + 1491.0, + 803.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1478.0, + 1044.0, + 1478.0, + 1044.0, + 1490.0, + 1030.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1464.0, + 1243.0, + 1464.0, + 1243.0, + 1488.0, + 1147.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1490.0, + 625.0, + 1490.0, + 625.0, + 1507.0, + 563.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1490.0, + 933.0, + 1490.0, + 933.0, + 1507.0, + 803.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1486.0, + 1242.0, + 1486.0, + 1242.0, + 1506.0, + 1149.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1520.0, + 423.0, + 1520.0, + 423.0, + 1527.0, + 415.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1518.0, + 734.0, + 1518.0, + 734.0, + 1530.0, + 720.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1518.0, + 1044.0, + 1518.0, + 1044.0, + 1530.0, + 1029.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1559.0, + 424.0, + 1559.0, + 424.0, + 1568.0, + 414.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1558.0, + 734.0, + 1558.0, + 734.0, + 1569.0, + 720.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1558.0, + 1044.0, + 1558.0, + 1044.0, + 1569.0, + 1030.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1598.0, + 732.0, + 1598.0, + 732.0, + 1606.0, + 723.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1603.0, + 463.0, + 1603.0, + 463.0, + 1616.0, + 448.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1603.0, + 492.0, + 1603.0, + 492.0, + 1616.0, + 477.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1603.0, + 522.0, + 1603.0, + 522.0, + 1616.0, + 508.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1603.0, + 553.0, + 1603.0, + 553.0, + 1616.0, + 536.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1603.0, + 583.0, + 1603.0, + 583.0, + 1616.0, + 565.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1604.0, + 613.0, + 1604.0, + 613.0, + 1616.0, + 595.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1603.0, + 642.0, + 1603.0, + 642.0, + 1616.0, + 625.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 1603.0, + 671.0, + 1603.0, + 671.0, + 1616.0, + 654.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1603.0, + 772.0, + 1603.0, + 772.0, + 1616.0, + 757.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1603.0, + 801.0, + 1603.0, + 801.0, + 1616.0, + 787.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1604.0, + 830.0, + 1604.0, + 830.0, + 1616.0, + 817.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1604.0, + 863.0, + 1604.0, + 863.0, + 1616.0, + 845.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1604.0, + 892.0, + 1604.0, + 892.0, + 1616.0, + 874.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1604.0, + 921.0, + 1604.0, + 921.0, + 1616.0, + 904.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1604.0, + 952.0, + 1604.0, + 952.0, + 1615.0, + 933.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1603.0, + 979.0, + 1603.0, + 979.0, + 1615.0, + 962.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1603.0, + 1080.0, + 1603.0, + 1080.0, + 1616.0, + 1067.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1603.0, + 1110.0, + 1603.0, + 1110.0, + 1616.0, + 1096.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1603.0, + 1139.0, + 1603.0, + 1139.0, + 1616.0, + 1125.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1604.0, + 1172.0, + 1604.0, + 1172.0, + 1616.0, + 1154.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1603.0, + 1201.0, + 1603.0, + 1201.0, + 1616.0, + 1183.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1603.0, + 1230.0, + 1603.0, + 1230.0, + 1616.0, + 1212.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1604.0, + 1259.0, + 1604.0, + 1259.0, + 1616.0, + 1243.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1604.0, + 1288.0, + 1604.0, + 1288.0, + 1616.0, + 1272.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1624.0, + 1448.0, + 1624.0, + 1448.0, + 1656.0, + 252.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1653.0, + 738.0, + 1653.0, + 738.0, + 1685.0, + 250.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1653.0, + 1449.0, + 1653.0, + 1449.0, + 1685.0, + 757.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1680.0, + 312.0, + 1680.0, + 312.0, + 1716.0, + 249.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1680.0, + 782.0, + 1680.0, + 782.0, + 1716.0, + 336.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1680.0, + 1043.0, + 1680.0, + 1043.0, + 1716.0, + 807.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 860.0, + 1185.0, + 860.0, + 1185.0, + 900.0, + 514.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 110.0, + 772.0, + 110.0, + 772.0, + 145.0, + 251.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1862.0, + 823.0, + 1862.0, + 823.0, + 1900.0, + 786.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1083.0, + 1406.0, + 1083.0, + 1406.0, + 1126.0, + 249.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1083.0, + 1406.0, + 1083.0, + 1406.0, + 1126.0, + 249.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 951.0, + 708.0, + 951.0, + 708.0, + 984.0, + 252.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 951.0, + 1449.0, + 951.0, + 1449.0, + 984.0, + 772.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 979.0, + 434.0, + 979.0, + 434.0, + 1017.0, + 249.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 979.0, + 1245.0, + 979.0, + 1245.0, + 1017.0, + 467.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 979.0, + 1348.0, + 979.0, + 1348.0, + 1017.0, + 1339.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1442.0, + 979.0, + 1451.0, + 979.0, + 1451.0, + 1017.0, + 1442.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1013.0, + 396.0, + 1013.0, + 396.0, + 1048.0, + 249.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1712.0, + 1451.0, + 1712.0, + 1451.0, + 1757.0, + 247.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1744.0, + 1311.0, + 1744.0, + 1311.0, + 1789.0, + 247.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1744.0, + 1386.0, + 1744.0, + 1386.0, + 1789.0, + 1337.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1413.0, + 1744.0, + 1450.0, + 1744.0, + 1450.0, + 1789.0, + 1413.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1779.0, + 957.0, + 1779.0, + 957.0, + 1817.0, + 249.0, + 1817.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 468, + 1115, + 1223, + 1115, + 1223, + 1627, + 468, + 1627 + ], + "score": 0.982, + "html": "
Hyperparametername'U'AntMaze'S'AntMazeFetchControlHandControl
Buffer size1E51E61E61E6
Batch size128128256256
Max steps ofepisode5010050100
Reset epochs2255
Max reset epochs10102030
Total epochs50100100/50200
ActorLearning rate0.00040.00040.0010.001
CriticLearning rate0.00040.00040.0010.001
ActionL2 regularization0.010.011.001.00
Polyak0.950.950.950.95
" + }, + { + "category_id": 1, + "poly": [ + 252, + 265, + 1450, + 265, + 1450, + 512, + 252, + 512 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 253, + 625, + 1450, + 625, + 1450, + 809, + 253, + 809 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 252, + 824, + 1450, + 824, + 1450, + 979, + 252, + 979 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 252, + 993, + 1451, + 993, + 1451, + 1088, + 252, + 1088 + ], + "score": 0.97 + }, + { + "category_id": 2, + "poly": [ + 254, + 113, + 770, + 113, + 770, + 141, + 254, + 141 + ], + "score": 0.912 + }, + { + "category_id": 6, + "poly": [ + 575, + 1652, + 1122, + 1652, + 1122, + 1683, + 575, + 1683 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 255, + 557, + 699, + 557, + 699, + 592, + 255, + 592 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 790, + 1866, + 819, + 1866, + 819, + 1890, + 790, + 1890 + ], + "score": 0.85 + }, + { + "category_id": 13, + "poly": [ + 1272, + 993, + 1384, + 993, + 1384, + 1028, + 1272, + 1028 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( 0 , 0 . 2 )" + }, + { + "category_id": 13, + "poly": [ + 746, + 329, + 844, + 329, + 844, + 357, + 746, + 357 + ], + "score": 0.9, + "latex": "N * 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 743, + 360, + 836, + 360, + 836, + 387, + 743, + 387 + ], + "score": 0.9, + "latex": "N = 1 5" + }, + { + "category_id": 13, + "poly": [ + 1348, + 328, + 1447, + 328, + 1447, + 357, + 1348, + 357 + ], + "score": 0.89, + "latex": "N = 3 0" + }, + { + "category_id": 13, + "poly": [ + 354, + 389, + 436, + 389, + 436, + 417, + 354, + 417 + ], + "score": 0.89, + "latex": "N = x" + }, + { + "category_id": 13, + "poly": [ + 635, + 389, + 716, + 389, + 716, + 421, + 635, + 421 + ], + "score": 0.88, + "latex": "N = y" + }, + { + "category_id": 13, + "poly": [ + 722, + 782, + 749, + 782, + 749, + 805, + 722, + 805 + ], + "score": 0.81, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 920, + 857, + 946, + 857, + 946, + 883, + 920, + 883 + ], + "score": 0.8, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 596, + 827, + 625, + 827, + 625, + 853, + 596, + 853 + ], + "score": 0.79, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1011, + 360, + 1036, + 360, + 1036, + 387, + 1011, + 387 + ], + "score": 0.77, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 936, + 360, + 960, + 360, + 960, + 386, + 936, + 386 + ], + "score": 0.73, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1232, + 359, + 1309, + 359, + 1309, + 390, + 1232, + 390 + ], + "score": 0.67, + "latex": "A x B y" + }, + { + "category_id": 13, + "poly": [ + 772, + 918, + 795, + 918, + 795, + 944, + 772, + 944 + ], + "score": 0.64, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 320, + 390, + 343, + 390, + 343, + 417, + 320, + 417 + ], + "score": 0.61, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 600, + 390, + 625, + 390, + 625, + 417, + 600, + 417 + ], + "score": 0.61, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1359, + 857, + 1382, + 857, + 1382, + 883, + 1359, + 883 + ], + "score": 0.61, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 888, + 1188, + 939, + 1188, + 939, + 1213, + 888, + 1213 + ], + "score": 0.42, + "latex": "\\overline { { 1 E 6 } }" + }, + { + "category_id": 13, + "poly": [ + 1016, + 1189, + 1067, + 1189, + 1067, + 1213, + 1016, + 1213 + ], + "score": 0.35, + "latex": "1 E 6" + }, + { + "category_id": 13, + "poly": [ + 751, + 1188, + 801, + 1188, + 801, + 1213, + 751, + 1213 + ], + "score": 0.29, + "latex": "\\overline { { 1 E 5 } }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1189, + 1186, + 1189, + 1186, + 1213, + 1135, + 1213 + ], + "score": 0.25, + "latex": "1 E 6" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 110.0, + 771.0, + 110.0, + 771.0, + 145.0, + 250.0, + 145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1650.0, + 1123.0, + 1650.0, + 1123.0, + 1686.0, + 577.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 555.0, + 703.0, + 555.0, + 703.0, + 599.0, + 248.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1862.0, + 825.0, + 1862.0, + 825.0, + 1900.0, + 786.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 268.0, + 1450.0, + 268.0, + 1450.0, + 302.0, + 249.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 298.0, + 1450.0, + 298.0, + 1450.0, + 332.0, + 251.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 330.0, + 745.0, + 330.0, + 745.0, + 360.0, + 251.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 330.0, + 1347.0, + 330.0, + 1347.0, + 360.0, + 845.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 357.0, + 742.0, + 357.0, + 742.0, + 391.0, + 249.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 357.0, + 935.0, + 357.0, + 935.0, + 391.0, + 837.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 357.0, + 1010.0, + 357.0, + 1010.0, + 391.0, + 961.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 357.0, + 1231.0, + 357.0, + 1231.0, + 391.0, + 1037.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 357.0, + 1451.0, + 357.0, + 1451.0, + 391.0, + 1310.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 387.0, + 319.0, + 387.0, + 319.0, + 424.0, + 248.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 387.0, + 353.0, + 387.0, + 353.0, + 424.0, + 344.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 387.0, + 599.0, + 387.0, + 599.0, + 424.0, + 437.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 387.0, + 634.0, + 387.0, + 634.0, + 424.0, + 626.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 387.0, + 1453.0, + 387.0, + 1453.0, + 424.0, + 717.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 418.0, + 1450.0, + 418.0, + 1450.0, + 452.0, + 249.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 448.0, + 1450.0, + 448.0, + 1450.0, + 486.0, + 249.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 481.0, + 482.0, + 481.0, + 482.0, + 516.0, + 251.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 627.0, + 1450.0, + 627.0, + 1450.0, + 659.0, + 249.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 655.0, + 1451.0, + 655.0, + 1451.0, + 690.0, + 248.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 688.0, + 1453.0, + 688.0, + 1453.0, + 723.0, + 249.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 716.0, + 1453.0, + 716.0, + 1453.0, + 753.0, + 249.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 747.0, + 1451.0, + 747.0, + 1451.0, + 783.0, + 249.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 777.0, + 721.0, + 777.0, + 721.0, + 812.0, + 249.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 777.0, + 762.0, + 777.0, + 762.0, + 812.0, + 750.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 826.0, + 595.0, + 826.0, + 595.0, + 859.0, + 249.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 826.0, + 1453.0, + 826.0, + 1453.0, + 859.0, + 626.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 852.0, + 919.0, + 852.0, + 919.0, + 891.0, + 248.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 852.0, + 1358.0, + 852.0, + 1358.0, + 891.0, + 947.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 852.0, + 1451.0, + 852.0, + 1451.0, + 891.0, + 1383.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 887.0, + 1449.0, + 887.0, + 1449.0, + 920.0, + 249.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 913.0, + 771.0, + 913.0, + 771.0, + 952.0, + 248.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 913.0, + 1453.0, + 913.0, + 1453.0, + 952.0, + 796.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 948.0, + 566.0, + 948.0, + 566.0, + 981.0, + 249.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 992.0, + 1271.0, + 992.0, + 1271.0, + 1030.0, + 249.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 992.0, + 1450.0, + 992.0, + 1450.0, + 1030.0, + 1385.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1024.0, + 1454.0, + 1024.0, + 1454.0, + 1060.0, + 248.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1054.0, + 1362.0, + 1054.0, + 1362.0, + 1092.0, + 249.0, + 1092.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/TScOKQW67Mj/TScOKQW67Mj.md b/parse/train/TScOKQW67Mj/TScOKQW67Mj.md new file mode 100644 index 0000000000000000000000000000000000000000..92ec65bbaa74fdd0dd577cbc733f4ccb8e339ec9 --- /dev/null +++ b/parse/train/TScOKQW67Mj/TScOKQW67Mj.md @@ -0,0 +1,401 @@ +# Efficient Softmax Approximation for Deep Neural Networks with Attention Mechanism + +Anonymous Author(s) +Affiliation +Address +email + +# Abstract + +1 There has been a rapid advance of custom hardware (HW) for accelerating the +2 inference speed of deep neural networks (DNNs). Previously, the softmax layer +3 was not a main concern of DNN accelerating HW, because its portion is relatively +4 small in multi-layer perceptron or convolutional neural networks. However,as the +5 attention mechanisms are widely used in various modern DNNs,a cost-efficient +6 implementation of softmax layer is becoming very important. In this paper, we +7 propose two methods to approximate softmax computation,which are based on +8 the usage of LookUp Tables (LUTs). The required size of LUT is quite small +9 (about 7Oo Bytes) because ranges of numerators and denominators of softmax are +10 stable if normalization is applied to the input. We have validated the proposed +11 technique over different AI tasks (object detection,machine translation, speech +12 recognition, semantic equivalence) and DNN models (DETR,Transformer, BERT) +13 by a variety of benchmarks (COCO17, WMT14, WMT17, GLUE). We showed +14 that 8-bit approximation allows to obtain acceptable accuracy loss below $1 . 0 \%$ + +# 151Introduction + +16 After Vaswani et al. had introduced Transformer model in [27] for machine translation task, the +17 attention based architecture became popular firstly in Natural Language Processng (NLP) appli +18 cations, e.g.: speech recognition [16], [21], [9]; summarization [7]; language understanding [5], +19 [33],[15],[18]; and video captioning [3]. Recently attention-based models are used in even wider +20 practical areas including Computer Vision (CV) tasks for object detection [2]; image transformation +21 [26]; image classification [6]; and even symbolic integration and solving diferential equations [14]. +22 Despite the attractiveness of transformer-based models, its direct implementation into the platform +23 with constrained computational power (e.g., mobile SoC,edge devices)1 is very challnging due to +24 big memory footprint and latency. + +Therefore, model compresson techniques such as quantization,and distillation are needed for those models. Many approaches have been introduced on quantizing matrix multiplication of transformer architecture.For example,in [22] it was used second order Hessian information, what allows to significantly compress the size of the model up to $1 3 \times$ times,while maintaining at most $2 . 3 \%$ of performance degradation (for the case of ultra-low precision 2-bits quantization). In [35] it was used a quantization-aware training during the fine-tuning phase of BERT, what allows to compress BERT model by $4 \times$ (with 8-bit quantization) with minimal accuracy loss (less than $1 \%$ ). In[1], a machine language translation model was quantized by 8-bit, while maintaining less than $0 . 5 \%$ drop + +33 in accuracy. Moreover, in [2O] it was shown that 8-bit quantized models provide the same or even +34 higher accuracy as the full-precision models. Most of the above methods consider the quantization of +35 matrix multiplications operations only. However,as it is shown in [4],[24] in modern DNNs with +36 attention mechanism (e.g., Transformer, BERT, GPT-x) the softmax function is also used intensively, +37 especially at the longer sequence lengths,so it is necessary to optimize its for performance. +38 In this paper we propose methods for efficient computation of the softmax layer at the HW accelerator. +39 The method is based on piece-wise-constant approximation and usage of LUTs. To the best of our +40 knowledge,it is the first paper where softmax quantization of the models with attention mechanism is +41 tested and verified on a variety of AI tasks.In Section 2 we show why our research is important and +42 valuable.In Section 3 we consider the drawbacks of existed softmax approximation methods in the +43 perspective of HW accelerator, and summarize the differentiation of our methods from the previous +44 arts.In Section 4 we describe the details of the proposed methods. Section 5 shows the experimental +45 validation over different models and datasets, and Section 6 concludes the paper. + +# 162 Background and motivation + +47 Modern GPUs are powerful, but big, expensive, and power-hungry. Therefore, alternative HW +48 accelerators (e.g., NPU) for on-device inference are under active development by diferent vendors, +49 especially for Federated Learning and Edge computing. However, such devices mostly are focused on +50 the acceleration of matrix multiplication operations,and do not include means to compute complex +51 activation functions. Typically,in such devices the data is sent outside of the accelerator to compute +52 activations on host CPU.For example,according to the guidelines of Coral (TM),a softmax layer of +53 DNN model in Edge TPU have to be run on host CPU ², what is acceptable for traditional CV tasks +54 (which are typically uni-directional, have minimum dependencies, and softmax layer is located at the +55 end of the computational graph of DNN model), however is very inefficient for NLP tasks (which are +56 typically more complicated with a lot of dependencies and active employment of softmax layer in the +57 middle of DNN model). In opposite to traditional logic-centric approach, some researches are trying +58 to perform computation closer to the memory (so called memory-centric approach). For example +59 in [23], there is shown a DRAM-based AI accelerator. This approach allows significantly speed-up +60 the overall computation process, but for the computation of the activations the data should also be +61 moved to host processor, what is an even bigger issue in the DRAM environment. +62 The Eq.(1) from [27] describes how attention is computed in the model. This particular form, +63 named "scaled dot-product attention" takes the matrix multiplication product of queries and keys +64 of $\mathbf { R } ^ { N \times L \times H }$ as input forthesoftmaxlayer where $N$ means number of heads, $L$ means sequence +65 length and $H$ means hidden size for the case where batch size equals to 1. In other words, performing +66 $( N ^ { \mathbf { \bar { \nu } } } \times L \times L )$ softmax operations is required per one attention. Furthermore,encoder in typical +67 transformer consists of six multi-head attentions which means $6 \times ( N \times L \times L )$ operation is required +68 for encoder solely. Assuming the number of heads is 8 and sequence length is 128, it already takes +69 786,432 operations for softmax of the transformer encoder. This overhead increases as number of +70 heads and sequence length increases which is typical case for high-performing models. + +$$ +A t t e n t i o n ( Q , K , V ) = S o f t m a x \left( \frac { Q K ^ { T } } { \sqrt { d _ { K } } } \right) V +$$ + +71 For example, it requires performing $1 2 \times ( 1 2 \times 1 2 8 \times 1 2 8 ) = 2 , 3 5 9 , 2 9 6$ softmax operations for +72 one sample inference for typical BERT configuration [5] over sequence of length 128. In the case +73 when HW accelerator is used for matrix multiplication only, and activation to be computed at the +74 CPU (what is common case for HW accelerators, optimized for CNN-models), the huge amount of +75 data must be moved between CPU and the accelerator. Such data movement negatively impacts on +76 the overallcomputation time and power consumption, which can be critical for on-device inference. +77 Therefore, HW accelerator must be able to compute softmax layer without CPU involvement. + +# 78 3Related work and key contributions + +'9The common equation to compute softmax function over the input $x$ is a fraction as shown below: + +$$ +\sigma ( x _ { i } ) = \frac { e ^ { x _ { i } } } { \Sigma e ^ { x _ { i } } } = \frac { e ^ { x _ { i } - m a x ( x ) } } { \Sigma e ^ { x _ { i } - m a x ( x ) } } +$$ + +80 There are different ways to implement it. For example, some approaches straightforwardly compute +81 the numerator and denominator firstly,and then a division operation is performed. In such case the +82 HW accelerator should contain a divider, what requires additional HW costs and can also cause +83 performance degradation, if divider is not fully pipe-lined. +84 In [25] it is proposed to use basic-split calculation method, which allows to split the exponentiation +85 calculation of the softmax into several specific basics which are implemented by LUT (ROM). It +86 allows to simplify the complexity of hardware and signal propagation delay. However, to recover +87 the whole computed value of exponent some additional multiplications are needed. Moreover, to +88 obtain the final value of softmax the division is stillused. In [30] it is proposed to add threshold +89 layers to accelerate the training speed and replace the Euler's base value with a dynamic base value +90 to improve the network accuracy. Such approach allowed to save up to $15 \%$ of training model +91 convergence time and also increase by 3 to $5 \%$ the average accuracy. But during the computation +92 of softmax the divider is still used. In [17] the combination of LUT and multi-segment polynomial +93 fiting have been used to compute exponential operations of integer and fractional parts in separate. +94 In addition, they adopt radix-4 Booth-Wallce based multiplier for computing the whole value +95 of exponent,and modified shift-compare divider for computation of the final value of softmax. +96 To avoid big area costs for traditional divider, the authors in [8] propose to reduce the operand +97 bit-width,and approximate exponential and division operations with cost-effective addition and +98 bit shifts operations. In their design they have approximated the division operation in Eq. (2) by +99 replacing the denominator with closest $\dot { 2 } ^ { b }$ value, where $b$ is some integer constant. Then division +100 is implemented just as simple bit shifts operation. In [24] it is proposed to replace the base as +101 $e ^ { x } \to 2 ^ { x }$ , then all computations are more hardware-friendly, however the division operation is still +102 required. Also, to restore accuracy a fine-tuning of the model is needed, what is not applicable +103 for post-training quantization paradigm. Although the methods described above are decreasing the +104 hardware complexity of softmax computation they all still rely on the division operation. +105 To avoid division operation at all, some other solutions apply the logarithmic transformation to +106 the original softmax function,and thus substitute costly division operation by subtraction of the +107 logarithm. In [34], for example, it is proposed to use a logarithmic operation implemented as a LUT +108 and a subtractor to replace the division operation, what allows to further decrease the complexity of +109 hardware,as well critical path of the whole design. In [10] simplified version of Integral Stochastic +110 Computation is used in order to build FSM-based exponentiation. Division operation is substituted +111 by LUT-based logarithmic operation and subtraction, similarly to [34]. In [31] the authors are further +112 developing the method proposed in [34], by applying mathematical transformations and linear fitting. +113 After optimization,their final design includes only shift operations,leading one detector, and adders. +114 Finally, there are some extreme approximation cases represented in [13] and [28], where logarithmic +115 computation and subtraction are skipped at all. +116 Despite its atractiveness,logarithmic transformation approach can be used only in the cases when +117 softmax layer is the last layer in DNN and its functionality is simply“scoring”among the candidates +118 for classification tasks. However,if softmax layer is used inside of computational graph of DNN (e.g., +119 DNNs with attention-mechanism) then error caused by quantizations will be accumulated drastically, +120 directly impacting on the final accuracy.For example,in Table 1 there is shown the averaged accuracy +121 drop for DETR models caused by a softmax approximation in uint8 precision by some prior arts. +122 As it can be seen from the Table 1,a straightforward usage of Eq.(2) from [31] causes big accuracy +123 drop,and even after applying some improvements to the original method (shown as case Eq. $( 2 ) +$ ), +124 the accuracy drop is still high ( $2 \%$ to $19 \%$ ).For more details of the prior arts experiments please refer +125 to Appendix A.1. However, if for the same conditions we use the method proposed in Section 4.1, we +126 can see that accuracy drop reduced by $\times 4$ to $\times 2 0$ times,and it is below $0 . 5 \%$ for plain DETR models +127 (no DC5 dilation at the last stage). +128 The work presented in this paper has focused on the development of methods for efficient computation +129 of softmax layer during the inference at the edge devices, what usually have limited computational +130 power and suffer from constraints of the bandwidth. +131 Previous works for HW accelerator of softmax layer are focused on the logic-centric approach and +132used dedicated hardware for its implementation. In such case the utilization of hardware is low, +133 performance can be slower, and no reconfigurability is provided. In our paper we have used an +134 alternative memory-centric approximate computing approach. It keeps accuracy loss small, while +135 allws computing softmax operation with no divider. The size of the required memory (i.e., LUT) is +136 reasonably small and can be reconfigured on demand. +137 The methods proposed in the paper contribute to building the alternative concept of hardware +138 architecture to accelerate essential operations for AI applications, especially for on-device inference. +139 To summarize,we have three-fold difference from the previous works: + +Table 1: Averaged accuracy drop by different methods over DETR models (Average Precision), $\%$ + +
METHODDETR (R50)DETR+DC5(R50)DETR (R101)DETR+DC5(R101)
EQ.(2) IN [31]7.2019.3010.2525.37
EQ.(2)+ IN [31]2.5012.935.3818.85
SECTION 4.10.332.920.222.73
+ +· Applicability of our methods to DNN with attention mechanism is experimentally proven over variety of the models for different AI applications.All previous methods were used only for the cases when softmax is the last layer in DNN,and is used for“scoring". +No divider is needed to fully implement the method. Moreover, for 2D LUT method even multiplier is not needed.Thus, hardware overhead is minimal,and is almost free if used in the DRAM-based AI accelerator. Our solutions utilize integer precision, what makes it compatible with traditional HW accelerators used for matrix multiplication,and simplify the integration of methods into full system (all prior methods are based on a fixed point precision). + +# 1494 Proposed methods + +150 In this paper we use memory-centric approach to build the accelerator for softmax computation +151 in hardware platform with limited resources. We propose two LUT-based methods for efficient +152 computation,which provide high performance and do not require a divider. The details of the +153 methods are described below and appropriate software models are shown in Appendix A.2. + +# 4.1Normalization of reciprocal exponentiation + +In this subsection we consider the method,which is based on the normalization of reciprocal exponentiation, and hereafter we call it REXP for short. + +157The original reciprocal exponentiation method was proposed in [28], where they used the inverse I58way of max-normalization and the reciprocal of exponential function as below: + +$$ +\sigma ^ { * } ( x _ { i } ) = \frac { 1 } { e ^ { m a x ( x ) - x _ { i } } } +$$ + +159And thus,the final value of softmax can be obtained by reading from a simple LUT-table. Content of +160LUT is computed as shown below: + +$$ +L U T _ { 1 / e } [ i ] = \left\lfloor \frac { 1 } { e ^ { i } } \cdot ( 2 ^ { w } - 1 ) \right\rceil , \forall i = 0 , 1 , . . . , x _ { q } + 1 +$$ + +161where $w$ is a number of bits for quantization, and $x _ { q } = \lceil l n ( 2 ^ { w } - 1 ) \rceil$ is an efficient quantization +162boundary. + +63In addition to very low computational complexity, this method has other desired properties [28]: + +· bounded and stable ( $\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } } \in ( 0 , 1 ] )$ · and nonlinear $\begin{array} { r } { ( \frac { 1 } { e ^ { \alpha x } } \ne \alpha \frac { 1 } { e ^ { x } } ) } \end{array}$ ) + +167 But due to its aggressive approximation nature, it can be applied only to simple CV tasks, and if +168 used for attention-based DNN models causes the explosion of accuracy drop (see Appendix A.1 for +169 details). Thus,in this paper we further develop that method to be applicable for wider class of DNN +170 models. +171 During our initial investigations,we have noticed that method described in Eq.( 3) is just scaled +172 version of real softmax. So, we proposed to normalize it with some probability density function +173 (PDF) scale,such that $\textstyle { \int } P D F = { \mathrm { \hat { 1 } } }$ . However, if used straight-forwardly, it would need to involve a +174 division operation, what is strongly un-desirable for devices with constrained computational power. +175 Therefore, instead of dividing, we propose to substitute division by multiplication with some PDF +176 normalizing constant as below: + +$$ +\sigma ( x _ { i } ) = \frac { \sigma ^ { * } ( x _ { i } ) } { P D F n o r m } \sigma ^ { * } ( x _ { i } ) \cdot \alpha +$$ + +177where $\alpha = e ^ { - l n \left( \Sigma \sigma ^ { \ast } \left( x _ { i } \right) \right) }$ is PDF normalizing constant. + +178Then final equation to compute softmax approximation by proposed REXP method is shown below: + +$$ +\sigma ( x _ { i } ) = \frac { e ^ { - l n \left( \Sigma \sigma ^ { * } \left( x _ { i } \right) \right) } } { e ^ { m a x \left( x \right) - x _ { i } } } = \frac { 1 } { e ^ { m a x \left( x \right) - x _ { i } } } \cdot e ^ { - l n \left( \Sigma \sigma ^ { * } \left( x _ { i } \right) \right) } +$$ + +179 Thus, to compute the softmax value it requires just two LUTs of considerably small size, where +180 content of the first LUT is computed accordingly to Eq.(4), and the second LUT values can be +181computed as below: + +$$ +L U T _ { \alpha } [ j ] = \left\lfloor \frac { 1 } { j } \cdot ( 2 ^ { w } - 1 ) \right\rceil , \forall j = 0 , 1 , . . . , x _ { s } - 1 +$$ + +182where $j = \Sigma \sigma ^ { * } ( x _ { i } )$ $x _ { s }$ is selected quantization boundary, and $L U T _ { \alpha } [ x _ { s } ] = 0$ + +# ;4.22-Dimensional LUT + +184 In this subsection we propose another method which is based on the substitution of a division +185 operation in Eq.(2) by 2-Dimensional (2D) LUT to speed-up and simplify the computation, while +186 maintaining accuracy even for attention-based DNN models. Hereafter we willrefer to this method +187 as 2D LUT. +188 For this purpose,we have started with the estimation of distributions of $e ^ { x }$ and $\Sigma e ^ { x }$ terms for typical +189 inference runs. Our investigation showed that if max-based normalization is applied to the input +190 values (i.e., $x ( x - \operatorname* { m a x } ( { \bar { x } } ) ) )$ , the distribution of $e ^ { x }$ is stable within range $e ^ { x } \in ( 0 , 1 ]$ regardless of +191 the input values, and range of $\Sigma e ^ { x }$ term depends on the length of the input $x$ . Thus, it allows us to +192 have stable computation even within small size of LUT. + +Generic architecture and concept of the proposed method for efcient softmax implementation as 2D LUT is shown in Figure 1. There are two LUTs used: 1D LUT for approximation of $e ^ { x }$ values, and 2D LUT for storing softmax output values dependent on the values of numerator $e ^ { x }$ (used as the 1-st index in the table),and denominator $\Sigma e ^ { x }$ (used as the 2-nd index) of Eq.(2). As it can be seen from Figure 1(right),to calculate the indexes for corresponded value in 2D LUT table, only most-significant bits (MSB)are needed. Thus,the simplest hardware realization can be done within wiring only (when MSB bits are directly connected to the appropriate address selectors)3. Also, the proposed method can be easily modified to the case where,1-st index of 2D LUT table is calculated not from $e ^ { x }$ but directly from input $x$ . In such case there is no need to store intermediate values of $e ^ { x }$ + +While the content of 1D LUT for approximation of $e ^ { x }$ values is straightforward, 2D LUT contains the family of linear approximations where each row contains the softmax output scaled according tc + +![](images/a2d0098d330c6217878fa160f5e6520aff0c5f2421a8b03dd2beb0f03f404954.jpg) +Figure 1: Generic concept of the proposed 2D LUT method (left). Reading softmax output value from pre-computed 2D LUT(right). Computational flow consists from two steps: a) obtaining of $e _ { i } ^ { x }$ values by reading from 1D LUT and accumulation of $\Sigma e ^ { x }$ term, b) obtaining $\sigma ( x _ { i } )$ values by reading from 2D LUT. + +204 $\Sigma e ^ { x }$ term as shown in Eq.(8). The indexes of LUT are computed according to Eq.(9) and Eq.(10), $w$ +205means the number of bits for the value in selected precision. + +$$ +L U T _ { \sigma } [ i ] [ j ] = \left\lfloor \frac { i \cdot s c a l e _ { e ^ { x } } } { j \cdot s c a l e _ { \Sigma } } \cdot ( 2 ^ { w } - 1 ) \right\rceil +$$ + +206where + +$$ +i = 0 , . . . , \left\lfloor \frac { m a x ( e ^ { x } ) } { s c a l e _ { e ^ { x } } } \right\rceil +$$ + +$$ +j = 1 , . . . , \left\lfloor \frac { m a x ( \Sigma e ^ { x } ) } { s c a l e _ { \Sigma } } \right\rceil +$$ + +207 Since $x \to ( x - \operatorname* { m a x } ( x ) )$ normalization was used, so $m a x ( e ^ { x } ) = 1 . 0$ ,Therefore, $s c a l e _ { e ^ { x } }$ factor +208 allows to define the number of columns in LUT to make it small enough for practical applications. In +209 our experiment we have selected $s c a l e _ { e ^ { x } } = 0 . 1$ for all precisions,what allows us to reduce the size +210 of LUT significantly (i.e., $i = 0 , . . . , 1 0$ for all versions of $L U T _ { \sigma }$ ). The value of $m a x ( \Sigma e ^ { x } )$ depends +211 on the distribution of input values. Our experiments showed that $m a x ( \Sigma e ^ { x } ) = 6 0$ is big enough for +212 the tested NLP applications.We also selected $s c a l e _ { \Sigma } = 1 . 0$ for simplicity of the computations. Thus, +213 finally, those parameters give us $L U T _ { \sigma }$ of typical size $1 1 \times 6 0$ + +# :145Experimental validation + +To validate the proposed methods and check how well they generalize we have conducted several experiments with different models (DETR,Transformer,and BERT) for diferent applications (object detection, machine translation,sentiment analysis,and semantic equivalence) over variety of datasets. In all those experiments we have used available pre-trained models, where we applied dynamic posttraining quantization (hereafter we referred to quantized models as PTQ-D) 4. Then we substituted a conventional softmax layer in quantized models with the LUT-based computation as described in Section 4. We did not consider any retraining or fine-tuning of the models after quantization, and the same off-line generated LUTs were used among all models. Our code allows to select LUTs with different precision from int16 down to uint2, what allows to analyze the sensitivity of the model to softmax approximation even for ultra-low 2-bits quantization. The details of experiments are described below,and results are summarized in Figure 2, Figure 3,and Table 2 .For more details please refer to Table 6,and Table 7 in Appendix.As it can be seen from figures, proposed LUT-based softmax computation methods maintain accuracy drop below $1 . 0 \%$ down to 8-bit quantization for all NLP and DETR (no DC5) models. + +# 5.1 Object detection + +For our first experiments we have used DEtection TRansofmer (DETR) models for object detection [2], with available pre-trained models 5.As it can be seen from Table 6, we were able to reproduce the same results for original FP32 reference model over COCO dataset. We have used the same IoU metric by Average Precision (AP) as in Table 1 in [2]. Then we run a bunch of experiments to check how accuracy of object detection willbe decreased due to PTQ-D quantization and LUT-based approximation as proposed in REXP method (see Section 4.1). Table 5 in Appendix shows the LUTs size for several pre-selected cases in int16 and uint8 precision. There are three cases selected which are different in the size of $L U T _ { \alpha }$ : it is $1 \times 2 5 6$ for case 1, $1 \times 3 2 0$ for case 2,and $1 \times 5 1 2$ for case 3. + +Analysis of Figure 2 shows that accuracy drop caused by application of softmax approximation is small $( < 1 \% )$ and acceptable for plain DETR models (no DC5 used). Bigger accuracy drop for $+ \mathrm { D C } 5$ cases is caused by the bigger size of self-atentions of the encoder (see details in Section 5.3). We expect that increasing size ofLUTs will help to solve this issue. The behavior of average recall values is similar to average precision values. + +![](images/18032ac4c37b6c2eb1a06638b0da073beea2c546e17d030f4ad490a25ab947a5.jpg) +Figure 2: DETR averaged accuracy drop of PTQ-D models with softmax approximations Vs. original FP32 models: average precision (left) and average recall(right). As it can be seen from the figure, for DETR models without dilation at the last stage (no DC5) the accuracy drop for all cases is below $1 \%$ and shows very similar behavior. + +# 2435.2 NLP tasks + +Next, we have validated the proposed methods by experimenting with several NLP tasks. Similarly, to DETR case,Table 8 in Appendix shows the LUTs size for several pre-selected cases for those experiments. In Table 2 below there are accumulated values from the experiments with NLP models. The bold values in the table shows highest values per model per method after applying quantization and softmax approximation. As it follows from the analysis of experiment results,about 7Oo Bytes for 2D LUT method, and up to 50 Bytes for REXP method would be enough for practical applications. + +# 5.2.1Machine Translation + +Among NLP tasks we have started with machine translation.For our experiments we have used transofmer-base model for En-Ge translation [12] from OpenNMT library, with available pre-trained model 6,configured to replicate the results from original paper. To avoid dependency of the evaluation results on the selected tokenization scheme,we have used spm_decode 7to detokenize the output of translation,and then applied multi - bleu.perl script 8 to calculate BLEU score. + +Table 2: Experimental validation over different NLP models and datasets + +
PRECISIONTRANSFORMERBERT
2D LUTREXP2D LUTREXP
WMT 2014WMT 2017WMT 2014WMT 2017SST-2MRPCSST-2MRPC
FP32(BLEU) 26.98(BLEU) 28.09(BLEU) 26.98(BLEU) 28.09(%) 92.32(F1) 90.19(%) 92.32(F1) 90.19
PTQ-D26.8627.9526.8627.9591.7489.5391.7489.53
INT1626.8728.0226.8927.6491.6389.5091.7489.26
UINT826.7627.926.827.6691.6389.3591.1789.34
UINT426.2627.4326.6828.0291.4088.0191.1788.77
UINT224.4225.0625.2925.8689.2256.6791.6386.12
+ +256 Thus,as it can be seen from Table 2, we were able to reproduce the same BLEU score for FP32 +257 reference model as in original model. Then we run several experiments to check how accuracy of +258 the translation wil be changed due to LUT-based quantization in different precisions,and we can +259 confirm that down up to 8-bit quantization the deviation of BLEU score from reference is small for +260 both datasets $( < 0 . { \bar { 5 } } \% )$ . Also, if we consider impact of the proposed methods only, then we can +261 see that accuracy drop is much smaller, and sometimes even recovers vs. PTQ-D quantization (see +262 Figure 3 (right)). + +![](images/e3fbfc3ced46fcebe16d429cac63ce9d30373f76281f3704a14ef61faf0c4aae.jpg) +Figure 3: Accuracy drop for NLP experiments: PTQ-D models $^ +$ softmax approximations vs. FP32 models (left),and PTQ-D models $^ +$ softmax approximations vs. plain PTQ-D models (right). As it can be seen from the figure,down to uint8 precision the accuracy drop for all cases is below $1 \%$ and shows very similar behavior. This confirm very good generalization of the proposed method over different models and applications. + +# 5.2.2Sentiment analysis + +To extend the variety of NLP applications,we also tested the same LUTs with BERT model [5]. We have used sentiment analysis task from GLUE benchmark [29] to test the model. We have used huggingface library 9,and trained the model with the hyper-parameters described in 10. The results of our experiments showed, that similarly to machine translation, the impact of proposed method (softmax layer approximation by LUTs) is smallr vs. accuracy drop caused by PTQ-D quantization (see Figure 3). + +# 5.2.3Semantic equivalence + +For semantic equivalence test we used The Microsoft Research Paraphrase Corpus (MRPC) 11 in GLUE benchmark.As the classes are imbalanced ( $6 8 \%$ positive, $32 \%$ negative), we follow the + +273 common practice and used F1 score as a metric. We have used huggingface library and followed +274 the guidelines from PyTorch tutorial 12 to obtain PTQ-D quantized model. Then,similarly to previous +275 tests we have substituted a conventional softmax layer with the proposed LUT-based methods. The +276 results of our experiments showed the similar trend with sentiment analysis test. + +# 2775.3 Ablation study of DETR models experiment + +As it is stated in [2],to increase the feature resolution for smallobjects,a dilation to the last stage of the backbone was added ( $+ \mathrm { D C } 5$ cases of DETR models). This modification increases the cost in the self-attentions of the encoder, leading to an overall $\times 2$ increase in computational cost. Such changes also reflect on the properties of softmax factors. In Figure 4 there are shown the histogram of $\Sigma e ^ { x }$ values distributions for the first 2OO tensors of DETR model run for bins $= 5 0$ $\mathtt { r a n g e } = ( 0 , 5 0 0 )$ As it can be seen from the figure, the distribution of DETR $+ \mathrm { D C } 5$ (R50) variant is more right-tailed, due to the bigger number of high-magnitude values. This causes the bigger accuracy drop when LUT-based quantization method is used, due to the lack of the discrepancy for those values. Thus, for such models (DETR with added dilation at the last stage) the accuracy of object detection after application of the proposed method can be limited. However, as we can see from Figure 2) increasing of the size of $L U { \bar { T } } _ { \alpha }$ from 256 Bytes to 512 Bytes allows to decrease the accuracy drop from $9 \%$ to $3 \%$ for $\mathrm { D E T R + D C } 5$ (R101) unit8 case. Thus, we expect that further increasing the size of LUTs will help to obtain even more accurate results for DETR models with dilation. + +![](images/2450ef698b17c3ee11267e5b440cbba24aa7840aadfa0ceacde0176d198accc9.jpg) +Figure 4: Histogram of $\Sigma e ^ { x }$ values distributions for DETR model variants: plain DETR (R5O) (left), and with dilation I $) \mathrm { E T R } { + } \mathrm { D C } 5$ (R50) (right). Red dot line represents the average of the all values per one run of the inference of DETR model. It is clearly seen from the figure that distribution of DETR $+ \mathrm { D C } 5$ (R50) variant is more flat, having more high-magnitude values. This causes the bigger accuracy drop for the quantized model due to lack of the discrepancy for those values. + +# 2916Conclusion + +In this paper two alternative methods for efficient softmax computation for DNN models with atention mechanism are proposed. The methods are memory-centric in contrast to known logiccentric approach and are based on the usage ofLUTs for reading of the pre-computed values, instead of the direct computation. Thus,it allows to build the HW accelerator without usage of costly and power-hungry divider. In turn, it allows to decrease the power consumption and latency of the whole inference,what is crucial for edge computing. All results obtained in the paper were validated over different AI tasks (object detection, machine translation, sentiment analysis, and semantic equivalence) and models (DETR,Transformer, BERT) by variety of benchmarks (COCO2017, WMT14, WMT17, GLUE), showing acceptable accuracy and good generalization of the proposed methods. + +References +[1] Aishwarya Bhandare, Vamsi Sripathi, Deepthi Karkada, Vivek Menon, Sun Choi, Kushal Datta, and Vikram Saletore.Eficient 8-bit quantization of transformer neural machine language translation model. CoRR,abs/1906.00532,2019. +[2] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to-end object detection with transformers, 2020. +[3] Ming Chen, Yingming_Li, Zhongfei Zhang, and Siyu_Huang. Tvt: Two-view transformer network for video captioning. In Jun Zhu and Ichiro Takeuchi, editors, Proceedings of The l0th Asian Conference on Machine Learning, volume 95 of Proceedings of Machine Learning Research, pages 847-862. PMLR,14-16 Nov 2018. +[4] Jacek Czaja, Michal Galus, Tomasz Patejko,and Jian Tang. Softmax optimizations for intel xeon processor-based platforms. CoRR,abs/1904.12380,2019. +[5] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: pre-training of deep bidirectional transformers for language understanding. CoRR,abs/1810.04805, 2018. +[6] Alexey Dosovitskiy,Lucas Beyer,Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Mathias Minderer, Georg Heigold, Sylvain Gely, Jakob Uszkoreit,and Neil Houlsby.An image is worth 16x16 words: Transformers for image recognition at scale,2020. +[7] Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Botom-up abstractive summarization. In Proceedings of the2O18 Conference on Empirical Methods in Natural Language Processing, pages 4098-4109,2018. +[8] Xue Geng, Jie Lin, Bin Zhao, Anmin Kong, Mohamed M. Sabry Aly, and Vijay Chandrasekhar. Hardware-aware softmax approximation for deep neural networks. In C.V. Jawahar, Hongdong Li, Greg Mori,and Konrad Schindler, editors, Computer Vision- ACCV 2018, pages 107-12, Cham, 2019. Springer International Publishing. +[9] Yanzhang He, Tara N. Sainath, Rohit Prabhavalkar, Ian McGraw, Raziel Alvarez, Ding Zhao, David Rybach, Anjuli Kannan, Yonghui Wu, Ruoming Pang, Qiao Liang, Deepti Bhatia, Yuan Shangguan, Bo Li, Golan Pundak, Khe Chai Sim, Tom Bagby, Shuo yiin Chang, Kanishka Rao, and Alexander Gruenstein. Streaming end-to-end speech recognition for mobile devices,2018. +[10] R. Hu, B. Tian, S. Yin,and S. Wei. Efcient hardware architecture of softmax layer in deep neural network. In2018 IEEE23rd International Conference on Digital Signal Procesing (DSP), pages 1-5, Nov 2018. +[11] Andrey Ignatov, Radu Timofte, Wilim Chou, Ke Wang, Max Wu, Tim Hartley,and Luc Van Gool.AI benchmark: Running deep neural networks on android smartphones. CoRR, abs/1810.01109,2018. +[12] Guillume Klein, Yoon Kim, Yuntian Deng, Jean Senellart, and Alexander M. Rush. OpenNMT: Open-source toolkit for neural machine translation. In Proc. ACL, 2017. +[13] Ioannis Kouretas and Vassilis Paliouras. Hardware implementation of a softmax-like function for deep learning. Technologies, 8(3), 2020. +[14] Guillaume Lample and Frangois Charton. Deep learning for symbolic mathematics. CoRR, abs/1912.01412, 2019. +[15] Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Soricut. Albert: A lite bert for self-supervised learning of language representations, 2019. +[16] Bo Li, Shuo yiin Chang,Tara N. Sainath,Ruoming Pang, Yanzhang He, Trevor Strohman, and Yonghui Wu. Towards fast and accurate streaming end-to-end asr, 2020. +[17] Z. Li, H. Li, X. Jiang, B. Chen, Y. Zhang, and G. Du.Efficient fpga implementation of softmax function for dnn applications. In 2018 12th IEEE International Conference on Anticounterfeiting, Security, and Identification (ASID), pages 212-216, Nov 2018. +50[18] Yinhan Liu,Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettemoyer, and Veselin Stoyanov. Roberta: A robustly optimized BERT pretraining approach. CoRR, abs/1907.11692, 2019. +53[19] M. G. Sarwar Murshed, Christopher Murphy, Daqing Hou, Nazar Khan, Ganesh Ananthanarayanan, and Faraz Hussain. Machine learning at the network edge: A survey, 2019. +55[20] Gabriele Prato,Ella Charlaix,and Mehdi Rezagholizadeh.Fully quantized transformer for improved translation, 2019. [21] Tara N. Sainath, Yanzhang He, Bo Li, Arun Narayanan,Ruoming Pang, Antoine Bruguier, Shuo yiin Chang, Wei Li, Raziel Alvarez, Zhifeng Chen, Chung-Cheng Chiu, David Garcia, Alex Gruenstein, Ke Hu, Minho Jin, Anjuli Kannan, Qiao Liang, Ian McGraw, Cal Peyser, Rohit Prabhavalkar, Golan Pundak, David Rybach, Yuan Shangguan, Yash Sheth, Trevor Strohman, Mirko Visontai, Yonghui Wu, Yu Zhang,and Ding Zhao. A streaming on-device end-to-end model surpassing server-side conventional model quality and latency, 2020. +63[22] Sheng Shen, Zhen Dong, Jiayu Ye, Linjian Ma, Zhewei Yao,Amir Gholami, Michael W. Mahoney,and Kurt Keutzer. Q-bert: Hessian based ultra low precision quantization of bert, 2019. [23] Hyunsung Shin, Dongyoung Kim, Eunhyeok Park, Sungho Park, Yongsik Park, and Sungjoo Yoo. Mcdram: Low latency and energy-effcient matrix computations in dram. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, 37(11):2613-2622, 2018. +70[24] Jacob R. Stevens, Rangharajan Venkatesan, Steve Dai, Brucek Khailany,and Anand Raghunathan. Softermax: Hardware/software co-design of an eficient softmax for transformers. CoRR,abs/2103.09301,2021. [25] Q. Sun, Z. Di,Z. Lv, F. Song, Q. Xiang, Q. Feng, Y. Fan, X. Yu,and W. Wang. A high speed softmax vlsi architecture based on basic-split. In 2018 14th IEEE International Conference on Solid-State and Integrated Circuit Technology (ICSICT), pages 1-3, Oct 2018. [26] Hugo Touvron,Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers distillation through attention, 2021. +78[27] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit,Llion Jones,Aidan N. Gomez, Lukasz Kaiser, and Ilia Polosukhin. Attention is all you need. CoRR,abs/1706.03762, 2017. [28] Ihor Vasyltsov and Wooseok Chang. Lightweight Approximation of Softmax Layer for On-Device Inference. Springer International Publishing, 2021. +82[29] Alex Wang,Amanpreet Singh, Julian Michael,Felix Hil,Omer Levy,and Samuel R. Bowman. GLUE: A multi-task benchmark and analysis platform for natural language understanding. CoRR,abs/1804.07461,2018. +85[30] K. Wang, Y. Huang, Y. Ho,and W. Fang. A customized convolutional neural network design using improved softmax layer for real-time human emotion recognition. In 2019 IEEE International Conference on Artificial Intelligence Circuits and Systems (AICAS), pages 102-106, March 2019. +89[31] M. Wang,S.Lu,D. Zhu, J.Lin,and Z. Wang. A high-speed and low-complexity architecture for softmax function in deep learning. In 2O18 IEEE Asia Pacific Conference on Circuits and Systems (APCCAS), pages 223-226, Oct 2018. +92[32] Siqi Wang,Anuj Pathania,and Tulika Mitra. Neural network inference on mobile socs. IEEE Design Test, page 1-1,2020. +94[33] Zhilin_ Yang, Zihang Dai, Yiming Yang, Jaime G. Carbonell,Ruslan Salakhutdinov, and Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding. CoRR, abs/1906.08237,2019. +[34] B. Yuan. Efcient hardware architecture of softmax layer in deep neural network. In 2016 29th IEEE International System-on-Chip Conference (SOCC), pages 323-326, Sep.2016. +[35] Ofir Zafrir, Guy Boudoukh,Peter Izsak,and Moshe Wasserblat. Q8bert: Quantized 8bit bert, 2019. +[36] Xingzhou Zhang, Yifan Wang, Sidi Lu,Liangkai Liu, Lanyu Xu,and Weisong Shi. Openei: An open framework for edge intelligence. CoRR,abs/1906.01864,2019. + +# Checklist + +1. For all authors.. + +(a) Do the main claims made in the abstract and introduction accurately reflect the paper's contributions and scope?[Yes] See also Section 3,where key contributions were listed. +(b) Did you describe the limitations of your work?[Yes] See Section 5.3. +(c) Did you discuss any potential negative societal impacts of your work? [N/A] +(d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes] We read the ethics review guidelines and confirm that content of our paper is not related to any ethics issue, since it is focused on the optimization of computations. + +2. If you are including theoretical results... + +(a) Did you state the full set of assumptions of all theoretical results? [N/A] (b) Did you include complete proofs of all theoretical results? [N/A] + +3. If you ran experiments... + +(a) Did you include the code,data,and instructions needed to reproduce the main experimental results (either in the supplemental material or as a URL)? [Yes] See supplemental materials. +(b) Did you specify all the training details (e.g., data splits,hyperparameters, how they were chosen)? [N/A] In our paper we do not consider any training, or fine-tuning. We focus on the inference only. +(c) Did you report error bars (e.g., with respect to the random seed after running experiments multiple times)? [N/A] Since we did not do any training, we did not need to run experiment multiple times (inference output is deterministic). +(d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs, internal cluster, or cloud provider)? [N/A] Since we did not do any training, it is not related to our work. + +4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets.. + +(a) If your work uses existing assets, did you cite the creators?[Yes] Al used assets are cited either as a reference,or by direct URL link in the footnote,or in the body of the paper. +(b) Did you mention the license of the assets? [Yes] The license of the used assets are noticed either in the appropriate reference,or direct URL link of asset. +(c) Did you include any new assets either in the supplemental material or as a URL? [Yes] Some code and generated LUTs to reproduce our results are provided in supplemental materials. +(d) Did you discuss whether and how consent was obtained from people whose data you're using/curating? [N/A] +(e) Did you discuss whether the data you are using/curating contains personally identifiable information or offensive content? [N/A] + +5. If you used crowdsourcing or conducted research with human subjects... + +(a) Did you include the full text of instructions given to participants and screenshots, if applicable? [N/A] +(b) Did you describe any potential participant risks,with links to Institutional Review Board (IRB) approvals,if applicable? [N/A] +(c) Did you include the estimated hourly wage paid to participants and the total amount spent on participant compensation? [N/A] \ No newline at end of file diff --git a/parse/train/TScOKQW67Mj/TScOKQW67Mj_content_list.json b/parse/train/TScOKQW67Mj/TScOKQW67Mj_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..c3adc6cdec5d4b8c623822bf3006b35550a8c535 --- /dev/null +++ b/parse/train/TScOKQW67Mj/TScOKQW67Mj_content_list.json @@ -0,0 +1,1132 @@ +[ + { + "type": "text", + "text": "Efficient Softmax Approximation for Deep Neural Networks with Attention Mechanism ", + "text_level": 1, + "bbox": [ + 196, + 122, + 805, + 171 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous Author(s) \nAffiliation \nAddress \nemail ", + "bbox": [ + 423, + 222, + 580, + 276 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 464, + 314, + 537, + 330 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 There has been a rapid advance of custom hardware (HW) for accelerating the \n2 inference speed of deep neural networks (DNNs). Previously, the softmax layer \n3 was not a main concern of DNN accelerating HW, because its portion is relatively \n4 small in multi-layer perceptron or convolutional neural networks. However,as the \n5 attention mechanisms are widely used in various modern DNNs,a cost-efficient \n6 implementation of softmax layer is becoming very important. In this paper, we \n7 propose two methods to approximate softmax computation,which are based on \n8 the usage of LookUp Tables (LUTs). The required size of LUT is quite small \n9 (about 7Oo Bytes) because ranges of numerators and denominators of softmax are \n10 stable if normalization is applied to the input. We have validated the proposed \n11 technique over different AI tasks (object detection,machine translation, speech \n12 recognition, semantic equivalence) and DNN models (DETR,Transformer, BERT) \n13 by a variety of benchmarks (COCO17, WMT14, WMT17, GLUE). We showed \n14 that 8-bit approximation allows to obtain acceptable accuracy loss below $1 . 0 \\%$ ", + "bbox": [ + 148, + 344, + 767, + 540 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "151Introduction ", + "text_level": 1, + "bbox": [ + 148, + 565, + 312, + 582 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "16 After Vaswani et al. had introduced Transformer model in [27] for machine translation task, the \n17 attention based architecture became popular firstly in Natural Language Processng (NLP) appli \n18 cations, e.g.: speech recognition [16], [21], [9]; summarization [7]; language understanding [5], \n19 [33],[15],[18]; and video captioning [3]. Recently attention-based models are used in even wider \n20 practical areas including Computer Vision (CV) tasks for object detection [2]; image transformation \n21 [26]; image classification [6]; and even symbolic integration and solving diferential equations [14]. \n22 Despite the attractiveness of transformer-based models, its direct implementation into the platform \n23 with constrained computational power (e.g., mobile SoC,edge devices)1 is very challnging due to \n24 big memory footprint and latency. ", + "bbox": [ + 147, + 597, + 826, + 722 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Therefore, model compresson techniques such as quantization,and distillation are needed for those models. Many approaches have been introduced on quantizing matrix multiplication of transformer architecture.For example,in [22] it was used second order Hessian information, what allows to significantly compress the size of the model up to $1 3 \\times$ times,while maintaining at most $2 . 3 \\%$ of performance degradation (for the case of ultra-low precision 2-bits quantization). In [35] it was used a quantization-aware training during the fine-tuning phase of BERT, what allows to compress BERT model by $4 \\times$ (with 8-bit quantization) with minimal accuracy loss (less than $1 \\%$ ). In[1], a machine language translation model was quantized by 8-bit, while maintaining less than $0 . 5 \\%$ drop ", + "bbox": [ + 171, + 728, + 826, + 839 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "33 in accuracy. Moreover, in [2O] it was shown that 8-bit quantized models provide the same or even \n34 higher accuracy as the full-precision models. Most of the above methods consider the quantization of \n35 matrix multiplications operations only. However,as it is shown in [4],[24] in modern DNNs with \n36 attention mechanism (e.g., Transformer, BERT, GPT-x) the softmax function is also used intensively, \n37 especially at the longer sequence lengths,so it is necessary to optimize its for performance. \n38 In this paper we propose methods for efficient computation of the softmax layer at the HW accelerator. \n39 The method is based on piece-wise-constant approximation and usage of LUTs. To the best of our \n40 knowledge,it is the first paper where softmax quantization of the models with attention mechanism is \n41 tested and verified on a variety of AI tasks.In Section 2 we show why our research is important and \n42 valuable.In Section 3 we consider the drawbacks of existed softmax approximation methods in the \n43 perspective of HW accelerator, and summarize the differentiation of our methods from the previous \n44 arts.In Section 4 we describe the details of the proposed methods. Section 5 shows the experimental \n45 validation over different models and datasets, and Section 6 concludes the paper. ", + "bbox": [ + 147, + 90, + 826, + 161 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 147, + 167, + 826, + 279 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "162 Background and motivation ", + "text_level": 1, + "bbox": [ + 151, + 296, + 441, + 314 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "47 Modern GPUs are powerful, but big, expensive, and power-hungry. Therefore, alternative HW \n48 accelerators (e.g., NPU) for on-device inference are under active development by diferent vendors, \n49 especially for Federated Learning and Edge computing. However, such devices mostly are focused on \n50 the acceleration of matrix multiplication operations,and do not include means to compute complex \n51 activation functions. Typically,in such devices the data is sent outside of the accelerator to compute \n52 activations on host CPU.For example,according to the guidelines of Coral (TM),a softmax layer of \n53 DNN model in Edge TPU have to be run on host CPU ², what is acceptable for traditional CV tasks \n54 (which are typically uni-directional, have minimum dependencies, and softmax layer is located at the \n55 end of the computational graph of DNN model), however is very inefficient for NLP tasks (which are \n56 typically more complicated with a lot of dependencies and active employment of softmax layer in the \n57 middle of DNN model). In opposite to traditional logic-centric approach, some researches are trying \n58 to perform computation closer to the memory (so called memory-centric approach). For example \n59 in [23], there is shown a DRAM-based AI accelerator. This approach allows significantly speed-up \n60 the overall computation process, but for the computation of the activations the data should also be \n61 moved to host processor, what is an even bigger issue in the DRAM environment. \n62 The Eq.(1) from [27] describes how attention is computed in the model. This particular form, \n63 named \"scaled dot-product attention\" takes the matrix multiplication product of queries and keys \n64 of $\\mathbf { R } ^ { N \\times L \\times H }$ as input forthesoftmaxlayer where $N$ means number of heads, $L$ means sequence \n65 length and $H$ means hidden size for the case where batch size equals to 1. In other words, performing \n66 $( N ^ { \\mathbf { \\bar { \\nu } } } \\times L \\times L )$ softmax operations is required per one attention. Furthermore,encoder in typical \n67 transformer consists of six multi-head attentions which means $6 \\times ( N \\times L \\times L )$ operation is required \n68 for encoder solely. Assuming the number of heads is 8 and sequence length is 128, it already takes \n69 786,432 operations for softmax of the transformer encoder. This overhead increases as number of \n70 heads and sequence length increases which is typical case for high-performing models. ", + "bbox": [ + 145, + 328, + 826, + 535 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 145, + 541, + 826, + 669 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/2181d68a11352a1504787146df9a48b0cf9ff24ed9fa565eb281c5e574c5f139.jpg", + "text": "$$\nA t t e n t i o n ( Q , K , V ) = S o f t m a x \\left( \\frac { Q K ^ { T } } { \\sqrt { d _ { K } } } \\right) V\n$$", + "text_format": "latex", + "bbox": [ + 343, + 684, + 658, + 719 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "71 For example, it requires performing $1 2 \\times ( 1 2 \\times 1 2 8 \\times 1 2 8 ) = 2 , 3 5 9 , 2 9 6$ softmax operations for \n72 one sample inference for typical BERT configuration [5] over sequence of length 128. In the case \n73 when HW accelerator is used for matrix multiplication only, and activation to be computed at the \n74 CPU (what is common case for HW accelerators, optimized for CNN-models), the huge amount of \n75 data must be moved between CPU and the accelerator. Such data movement negatively impacts on \n76 the overallcomputation time and power consumption, which can be critical for on-device inference. \n77 Therefore, HW accelerator must be able to compute softmax layer without CPU involvement. ", + "bbox": [ + 147, + 727, + 826, + 825 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "78 3Related work and key contributions ", + "text_level": 1, + "bbox": [ + 147, + 844, + 506, + 861 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "'9The common equation to compute softmax function over the input $x$ is a fraction as shown below: ", + "bbox": [ + 151, + 875, + 815, + 890 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/3ef719ad199ed10bb386f869d510c72f28f844604126e4dc885e5655f56702ff.jpg", + "text": "$$\n\\sigma ( x _ { i } ) = \\frac { e ^ { x _ { i } } } { \\Sigma e ^ { x _ { i } } } = \\frac { e ^ { x _ { i } - m a x ( x ) } } { \\Sigma e ^ { x _ { i } - m a x ( x ) } }\n$$", + "text_format": "latex", + "bbox": [ + 393, + 103, + 604, + 136 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "80 There are different ways to implement it. For example, some approaches straightforwardly compute \n81 the numerator and denominator firstly,and then a division operation is performed. In such case the \n82 HW accelerator should contain a divider, what requires additional HW costs and can also cause \n83 performance degradation, if divider is not fully pipe-lined. \n84 In [25] it is proposed to use basic-split calculation method, which allows to split the exponentiation \n85 calculation of the softmax into several specific basics which are implemented by LUT (ROM). It \n86 allows to simplify the complexity of hardware and signal propagation delay. However, to recover \n87 the whole computed value of exponent some additional multiplications are needed. Moreover, to \n88 obtain the final value of softmax the division is stillused. In [30] it is proposed to add threshold \n89 layers to accelerate the training speed and replace the Euler's base value with a dynamic base value \n90 to improve the network accuracy. Such approach allowed to save up to $15 \\%$ of training model \n91 convergence time and also increase by 3 to $5 \\%$ the average accuracy. But during the computation \n92 of softmax the divider is still used. In [17] the combination of LUT and multi-segment polynomial \n93 fiting have been used to compute exponential operations of integer and fractional parts in separate. \n94 In addition, they adopt radix-4 Booth-Wallce based multiplier for computing the whole value \n95 of exponent,and modified shift-compare divider for computation of the final value of softmax. \n96 To avoid big area costs for traditional divider, the authors in [8] propose to reduce the operand \n97 bit-width,and approximate exponential and division operations with cost-effective addition and \n98 bit shifts operations. In their design they have approximated the division operation in Eq. (2) by \n99 replacing the denominator with closest $\\dot { 2 } ^ { b }$ value, where $b$ is some integer constant. Then division \n100 is implemented just as simple bit shifts operation. In [24] it is proposed to replace the base as \n101 $e ^ { x } \\to 2 ^ { x }$ , then all computations are more hardware-friendly, however the division operation is still \n102 required. Also, to restore accuracy a fine-tuning of the model is needed, what is not applicable \n103 for post-training quantization paradigm. Although the methods described above are decreasing the \n104 hardware complexity of softmax computation they all still rely on the division operation. \n105 To avoid division operation at all, some other solutions apply the logarithmic transformation to \n106 the original softmax function,and thus substitute costly division operation by subtraction of the \n107 logarithm. In [34], for example, it is proposed to use a logarithmic operation implemented as a LUT \n108 and a subtractor to replace the division operation, what allows to further decrease the complexity of \n109 hardware,as well critical path of the whole design. In [10] simplified version of Integral Stochastic \n110 Computation is used in order to build FSM-based exponentiation. Division operation is substituted \n111 by LUT-based logarithmic operation and subtraction, similarly to [34]. In [31] the authors are further \n112 developing the method proposed in [34], by applying mathematical transformations and linear fitting. \n113 After optimization,their final design includes only shift operations,leading one detector, and adders. \n114 Finally, there are some extreme approximation cases represented in [13] and [28], where logarithmic \n115 computation and subtraction are skipped at all. \n116 Despite its atractiveness,logarithmic transformation approach can be used only in the cases when \n117 softmax layer is the last layer in DNN and its functionality is simply“scoring”among the candidates \n118 for classification tasks. However,if softmax layer is used inside of computational graph of DNN (e.g., \n119 DNNs with attention-mechanism) then error caused by quantizations will be accumulated drastically, \n120 directly impacting on the final accuracy.For example,in Table 1 there is shown the averaged accuracy \n121 drop for DETR models caused by a softmax approximation in uint8 precision by some prior arts. \n122 As it can be seen from the Table 1,a straightforward usage of Eq.(2) from [31] causes big accuracy \n123 drop,and even after applying some improvements to the original method (shown as case Eq. $( 2 ) +$ ), \n124 the accuracy drop is still high ( $2 \\%$ to $19 \\%$ ).For more details of the prior arts experiments please refer \n125 to Appendix A.1. However, if for the same conditions we use the method proposed in Section 4.1, we \n126 can see that accuracy drop reduced by $\\times 4$ to $\\times 2 0$ times,and it is below $0 . 5 \\%$ for plain DETR models \n127 (no DC5 dilation at the last stage). \n128 The work presented in this paper has focused on the development of methods for efficient computation \n129 of softmax layer during the inference at the edge devices, what usually have limited computational \n130 power and suffer from constraints of the bandwidth. \n131 Previous works for HW accelerator of softmax layer are focused on the logic-centric approach and \n132used dedicated hardware for its implementation. In such case the utilization of hardware is low, \n133 performance can be slower, and no reconfigurability is provided. In our paper we have used an \n134 alternative memory-centric approximate computing approach. It keeps accuracy loss small, while \n135 allws computing softmax operation with no divider. The size of the required memory (i.e., LUT) is \n136 reasonably small and can be reconfigured on demand. \n137 The methods proposed in the paper contribute to building the alternative concept of hardware \n138 architecture to accelerate essential operations for AI applications, especially for on-device inference. \n139 To summarize,we have three-fold difference from the previous works: ", + "bbox": [ + 147, + 146, + 825, + 202 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 143, + 207, + 826, + 500 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 140, + 505, + 826, + 657 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 662, + 828, + 830 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 835, + 828, + 877 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 143, + 883, + 826, + 912 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/4cfd48b9db0746072b72af0de68b39ab4016c8d335b1958b155742ab3f026d99.jpg", + "table_caption": [ + "Table 1: Averaged accuracy drop by different methods over DETR models (Average Precision), $\\%$ " + ], + "table_footnote": [], + "table_body": "
METHODDETR (R50)DETR+DC5(R50)DETR (R101)DETR+DC5(R101)
EQ.(2) IN [31]7.2019.3010.2525.37
EQ.(2)+ IN [31]2.5012.935.3818.85
SECTION 4.10.332.920.222.73
", + "bbox": [ + 186, + 116, + 810, + 189 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 222, + 826, + 279 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 143, + 284, + 826, + 327 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "· Applicability of our methods to DNN with attention mechanism is experimentally proven over variety of the models for different AI applications.All previous methods were used only for the cases when softmax is the last layer in DNN,and is used for“scoring\". \nNo divider is needed to fully implement the method. Moreover, for 2D LUT method even multiplier is not needed.Thus, hardware overhead is minimal,and is almost free if used in the DRAM-based AI accelerator. Our solutions utilize integer precision, what makes it compatible with traditional HW accelerators used for matrix multiplication,and simplify the integration of methods into full system (all prior methods are based on a fixed point precision). ", + "bbox": [ + 215, + 337, + 826, + 476 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "1494 Proposed methods ", + "text_level": 1, + "bbox": [ + 143, + 494, + 361, + 512 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "150 In this paper we use memory-centric approach to build the accelerator for softmax computation \n151 in hardware platform with limited resources. We propose two LUT-based methods for efficient \n152 computation,which provide high performance and do not require a divider. The details of the \n153 methods are described below and appropriate software models are shown in Appendix A.2. ", + "bbox": [ + 142, + 526, + 826, + 583 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1Normalization of reciprocal exponentiation ", + "text_level": 1, + "bbox": [ + 168, + 599, + 513, + 614 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this subsection we consider the method,which is based on the normalization of reciprocal exponentiation, and hereafter we call it REXP for short. ", + "bbox": [ + 169, + 626, + 825, + 654 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "157The original reciprocal exponentiation method was proposed in [28], where they used the inverse I58way of max-normalization and the reciprocal of exponential function as below: ", + "bbox": [ + 145, + 660, + 828, + 689 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/07a3724823bcd540052ed15c8c366ca29e6a1843d56d7cce4940e24c70fd634b.jpg", + "text": "$$\n\\sigma ^ { * } ( x _ { i } ) = \\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } }\n$$", + "text_format": "latex", + "bbox": [ + 424, + 705, + 575, + 736 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "159And thus,the final value of softmax can be obtained by reading from a simple LUT-table. Content of \n160LUT is computed as shown below: ", + "bbox": [ + 137, + 746, + 830, + 775 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/67339367399355818951e439e4b03006b2efddb824fe5ef4573766f2b7054a4c.jpg", + "text": "$$\nL U T _ { 1 / e } [ i ] = \\left\\lfloor \\frac { 1 } { e ^ { i } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall i = 0 , 1 , . . . , x _ { q } + 1\n$$", + "text_format": "latex", + "bbox": [ + 328, + 791, + 671, + 827 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "161where $w$ is a number of bits for quantization, and $x _ { q } = \\lceil l n ( 2 ^ { w } - 1 ) \\rceil$ is an efficient quantization \n162boundary. ", + "bbox": [ + 145, + 837, + 830, + 866 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "63In addition to very low computational complexity, this method has other desired properties [28]: ", + "bbox": [ + 147, + 871, + 803, + 887 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "· bounded and stable ( $\\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } } \\in ( 0 , 1 ] )$ · and nonlinear $\\begin{array} { r } { ( \\frac { 1 } { e ^ { \\alpha x } } \\ne \\alpha \\frac { 1 } { e ^ { x } } ) } \\end{array}$ ) ", + "bbox": [ + 215, + 89, + 504, + 130 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "167 But due to its aggressive approximation nature, it can be applied only to simple CV tasks, and if \n168 used for attention-based DNN models causes the explosion of accuracy drop (see Appendix A.1 for \n169 details). Thus,in this paper we further develop that method to be applicable for wider class of DNN \n170 models. \n171 During our initial investigations,we have noticed that method described in Eq.( 3) is just scaled \n172 version of real softmax. So, we proposed to normalize it with some probability density function \n173 (PDF) scale,such that $\\textstyle { \\int } P D F = { \\mathrm { \\hat { 1 } } }$ . However, if used straight-forwardly, it would need to involve a \n174 division operation, what is strongly un-desirable for devices with constrained computational power. \n175 Therefore, instead of dividing, we propose to substitute division by multiplication with some PDF \n176 normalizing constant as below: ", + "bbox": [ + 142, + 138, + 828, + 194 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 200, + 826, + 285 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/63b875463223072a756a88240fbb3c990bbfc1acb164be1af730b837f1c16e7d.jpg", + "text": "$$\n\\sigma ( x _ { i } ) = \\frac { \\sigma ^ { * } ( x _ { i } ) } { P D F n o r m } \\sigma ^ { * } ( x _ { i } ) \\cdot \\alpha\n$$", + "text_format": "latex", + "bbox": [ + 380, + 299, + 619, + 332 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "177where $\\alpha = e ^ { - l n \\left( \\Sigma \\sigma ^ { \\ast } \\left( x _ { i } \\right) \\right) }$ is PDF normalizing constant. ", + "bbox": [ + 142, + 339, + 534, + 356 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "178Then final equation to compute softmax approximation by proposed REXP method is shown below: ", + "bbox": [ + 142, + 362, + 828, + 378 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d68cc2e28b1b9e274d28ca88c036e9bccaecefb85e19b46d45c093abfa0373c1.jpg", + "text": "$$\n\\sigma ( x _ { i } ) = \\frac { e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) } } { e ^ { m a x \\left( x \\right) - x _ { i } } } = \\frac { 1 } { e ^ { m a x \\left( x \\right) - x _ { i } } } \\cdot e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) }\n$$", + "text_format": "latex", + "bbox": [ + 321, + 392, + 676, + 426 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "179 Thus, to compute the softmax value it requires just two LUTs of considerably small size, where \n180 content of the first LUT is computed accordingly to Eq.(4), and the second LUT values can be \n181computed as below: ", + "bbox": [ + 142, + 434, + 826, + 477 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/3e7f965619c868b1860965c878110bc5f1bab3dc23c1ef22b1ae8806227859a2.jpg", + "text": "$$\nL U T _ { \\alpha } [ j ] = \\left\\lfloor \\frac { 1 } { j } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall j = 0 , 1 , . . . , x _ { s } - 1\n$$", + "text_format": "latex", + "bbox": [ + 334, + 491, + 665, + 527 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "182where $j = \\Sigma \\sigma ^ { * } ( x _ { i } )$ $x _ { s }$ is selected quantization boundary, and $L U T _ { \\alpha } [ x _ { s } ] = 0$ ", + "bbox": [ + 145, + 535, + 689, + 551 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": ";4.22-Dimensional LUT ", + "text_level": 1, + "bbox": [ + 156, + 565, + 351, + 582 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "184 In this subsection we propose another method which is based on the substitution of a division \n185 operation in Eq.(2) by 2-Dimensional (2D) LUT to speed-up and simplify the computation, while \n186 maintaining accuracy even for attention-based DNN models. Hereafter we willrefer to this method \n187 as 2D LUT. \n188 For this purpose,we have started with the estimation of distributions of $e ^ { x }$ and $\\Sigma e ^ { x }$ terms for typical \n189 inference runs. Our investigation showed that if max-based normalization is applied to the input \n190 values (i.e., $x ( x - \\operatorname* { m a x } ( { \\bar { x } } ) ) )$ , the distribution of $e ^ { x }$ is stable within range $e ^ { x } \\in ( 0 , 1 ]$ regardless of \n191 the input values, and range of $\\Sigma e ^ { x }$ term depends on the length of the input $x$ . Thus, it allows us to \n192 have stable computation even within small size of LUT. ", + "bbox": [ + 142, + 590, + 826, + 647 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 654, + 826, + 723 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Generic architecture and concept of the proposed method for efcient softmax implementation as 2D LUT is shown in Figure 1. There are two LUTs used: 1D LUT for approximation of $e ^ { x }$ values, and 2D LUT for storing softmax output values dependent on the values of numerator $e ^ { x }$ (used as the 1-st index in the table),and denominator $\\Sigma e ^ { x }$ (used as the 2-nd index) of Eq.(2). As it can be seen from Figure 1(right),to calculate the indexes for corresponded value in 2D LUT table, only most-significant bits (MSB)are needed. Thus,the simplest hardware realization can be done within wiring only (when MSB bits are directly connected to the appropriate address selectors)3. Also, the proposed method can be easily modified to the case where,1-st index of 2D LUT table is calculated not from $e ^ { x }$ but directly from input $x$ . In such case there is no need to store intermediate values of $e ^ { x }$ ", + "bbox": [ + 161, + 729, + 826, + 854 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "While the content of 1D LUT for approximation of $e ^ { x }$ values is straightforward, 2D LUT contains the family of linear approximations where each row contains the softmax output scaled according tc ", + "bbox": [ + 158, + 861, + 821, + 888 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/a2d0098d330c6217878fa160f5e6520aff0c5f2421a8b03dd2beb0f03f404954.jpg", + "image_caption": [ + "Figure 1: Generic concept of the proposed 2D LUT method (left). Reading softmax output value from pre-computed 2D LUT(right). Computational flow consists from two steps: a) obtaining of $e _ { i } ^ { x }$ values by reading from 1D LUT and accumulation of $\\Sigma e ^ { x }$ term, b) obtaining $\\sigma ( x _ { i } )$ values by reading from 2D LUT. " + ], + "image_footnote": [], + "bbox": [ + 171, + 90, + 823, + 280 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "204 $\\Sigma e ^ { x }$ term as shown in Eq.(8). The indexes of LUT are computed according to Eq.(9) and Eq.(10), $w$ \n205means the number of bits for the value in selected precision. ", + "bbox": [ + 138, + 392, + 825, + 422 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/3eeb6aa7e389a3166d9eb880eac8e3c7c21890d6008716eb8a28ac7dc995876d.jpg", + "text": "$$\nL U T _ { \\sigma } [ i ] [ j ] = \\left\\lfloor \\frac { i \\cdot s c a l e _ { e ^ { x } } } { j \\cdot s c a l e _ { \\Sigma } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil\n$$", + "text_format": "latex", + "bbox": [ + 369, + 438, + 630, + 473 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "206where ", + "bbox": [ + 140, + 483, + 217, + 497 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/fd92bf06428cd0ba128ceffac2f7b143f36c94a058964482dce4b6205b8af4d2.jpg", + "text": "$$\ni = 0 , . . . , \\left\\lfloor \\frac { m a x ( e ^ { x } ) } { s c a l e _ { e ^ { x } } } \\right\\rceil\n$$", + "text_format": "latex", + "bbox": [ + 423, + 493, + 575, + 529 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/780a766770dcd8458dab8aa7254aaca93fb9a45f81584481cc5375bc6ed8a884.jpg", + "text": "$$\nj = 1 , . . . , \\left\\lfloor \\frac { m a x ( \\Sigma e ^ { x } ) } { s c a l e _ { \\Sigma } } \\right\\rceil\n$$", + "text_format": "latex", + "bbox": [ + 416, + 540, + 583, + 575 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "207 Since $x \\to ( x - \\operatorname* { m a x } ( x ) )$ normalization was used, so $m a x ( e ^ { x } ) = 1 . 0$ ,Therefore, $s c a l e _ { e ^ { x } }$ factor \n208 allows to define the number of columns in LUT to make it small enough for practical applications. In \n209 our experiment we have selected $s c a l e _ { e ^ { x } } = 0 . 1$ for all precisions,what allows us to reduce the size \n210 of LUT significantly (i.e., $i = 0 , . . . , 1 0$ for all versions of $L U T _ { \\sigma }$ ). The value of $m a x ( \\Sigma e ^ { x } )$ depends \n211 on the distribution of input values. Our experiments showed that $m a x ( \\Sigma e ^ { x } ) = 6 0$ is big enough for \n212 the tested NLP applications.We also selected $s c a l e _ { \\Sigma } = 1 . 0$ for simplicity of the computations. Thus, \n213 finally, those parameters give us $L U T _ { \\sigma }$ of typical size $1 1 \\times 6 0$ ", + "bbox": [ + 140, + 585, + 826, + 684 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": ":145Experimental validation ", + "text_level": 1, + "bbox": [ + 147, + 703, + 408, + 720 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To validate the proposed methods and check how well they generalize we have conducted several experiments with different models (DETR,Transformer,and BERT) for diferent applications (object detection, machine translation,sentiment analysis,and semantic equivalence) over variety of datasets. In all those experiments we have used available pre-trained models, where we applied dynamic posttraining quantization (hereafter we referred to quantized models as PTQ-D) 4. Then we substituted a conventional softmax layer in quantized models with the LUT-based computation as described in Section 4. We did not consider any retraining or fine-tuning of the models after quantization, and the same off-line generated LUTs were used among all models. Our code allows to select LUTs with different precision from int16 down to uint2, what allows to analyze the sensitivity of the model to softmax approximation even for ultra-low 2-bits quantization. The details of experiments are described below,and results are summarized in Figure 2, Figure 3,and Table 2 .For more details please refer to Table 6,and Table 7 in Appendix.As it can be seen from figures, proposed LUT-based softmax computation methods maintain accuracy drop below $1 . 0 \\%$ down to 8-bit quantization for all NLP and DETR (no DC5) models. ", + "bbox": [ + 171, + 734, + 826, + 887 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 165, + 90, + 825, + 133 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1 Object detection ", + "text_level": 1, + "bbox": [ + 173, + 150, + 328, + 164 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For our first experiments we have used DEtection TRansofmer (DETR) models for object detection [2], with available pre-trained models 5.As it can be seen from Table 6, we were able to reproduce the same results for original FP32 reference model over COCO dataset. We have used the same IoU metric by Average Precision (AP) as in Table 1 in [2]. Then we run a bunch of experiments to check how accuracy of object detection willbe decreased due to PTQ-D quantization and LUT-based approximation as proposed in REXP method (see Section 4.1). Table 5 in Appendix shows the LUTs size for several pre-selected cases in int16 and uint8 precision. There are three cases selected which are different in the size of $L U T _ { \\alpha }$ : it is $1 \\times 2 5 6$ for case 1, $1 \\times 3 2 0$ for case 2,and $1 \\times 5 1 2$ for case 3. ", + "bbox": [ + 173, + 174, + 826, + 286 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Analysis of Figure 2 shows that accuracy drop caused by application of softmax approximation is small $( < 1 \\% )$ and acceptable for plain DETR models (no DC5 used). Bigger accuracy drop for $+ \\mathrm { D C } 5$ cases is caused by the bigger size of self-atentions of the encoder (see details in Section 5.3). We expect that increasing size ofLUTs will help to solve this issue. The behavior of average recall values is similar to average precision values. ", + "bbox": [ + 173, + 292, + 826, + 362 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/18032ac4c37b6c2eb1a06638b0da073beea2c546e17d030f4ad490a25ab947a5.jpg", + "image_caption": [ + "Figure 2: DETR averaged accuracy drop of PTQ-D models with softmax approximations Vs. original FP32 models: average precision (left) and average recall(right). As it can be seen from the figure, for DETR models without dilation at the last stage (no DC5) the accuracy drop for all cases is below $1 \\%$ and shows very similar behavior. " + ], + "image_footnote": [], + "bbox": [ + 184, + 391, + 792, + 531 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "2435.2 NLP tasks ", + "text_level": 1, + "bbox": [ + 145, + 631, + 284, + 645 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Next, we have validated the proposed methods by experimenting with several NLP tasks. Similarly, to DETR case,Table 8 in Appendix shows the LUTs size for several pre-selected cases for those experiments. In Table 2 below there are accumulated values from the experiments with NLP models. The bold values in the table shows highest values per model per method after applying quantization and softmax approximation. As it follows from the analysis of experiment results,about 7Oo Bytes for 2D LUT method, and up to 50 Bytes for REXP method would be enough for practical applications. ", + "bbox": [ + 173, + 656, + 826, + 741 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2.1Machine Translation ", + "text_level": 1, + "bbox": [ + 174, + 753, + 370, + 768 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Among NLP tasks we have started with machine translation.For our experiments we have used transofmer-base model for En-Ge translation [12] from OpenNMT library, with available pre-trained model 6,configured to replicate the results from original paper. To avoid dependency of the evaluation results on the selected tokenization scheme,we have used spm_decode 7to detokenize the output of translation,and then applied multi - bleu.perl script 8 to calculate BLEU score. ", + "bbox": [ + 174, + 777, + 826, + 848 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/6bf2f1e1e7866cae718c8f6238665f93e6a3f031263848f929f44aedbeb5fb88.jpg", + "table_caption": [ + "Table 2: Experimental validation over different NLP models and datasets " + ], + "table_footnote": [], + "table_body": "
PRECISIONTRANSFORMERBERT
2D LUTREXP2D LUTREXP
WMT 2014WMT 2017WMT 2014WMT 2017SST-2MRPCSST-2MRPC
FP32(BLEU) 26.98(BLEU) 28.09(BLEU) 26.98(BLEU) 28.09(%) 92.32(F1) 90.19(%) 92.32(F1) 90.19
PTQ-D26.8627.9526.8627.9591.7489.5391.7489.53
INT1626.8728.0226.8927.6491.6389.5091.7489.26
UINT826.7627.926.827.6691.6389.3591.1789.34
UINT426.2627.4326.6828.0291.4088.0191.1788.77
UINT224.4225.0625.2925.8689.2256.6791.6386.12
", + "bbox": [ + 184, + 116, + 812, + 277 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "256 Thus,as it can be seen from Table 2, we were able to reproduce the same BLEU score for FP32 \n257 reference model as in original model. Then we run several experiments to check how accuracy of \n258 the translation wil be changed due to LUT-based quantization in different precisions,and we can \n259 confirm that down up to 8-bit quantization the deviation of BLEU score from reference is small for \n260 both datasets $( < 0 . { \\bar { 5 } } \\% )$ . Also, if we consider impact of the proposed methods only, then we can \n261 see that accuracy drop is much smaller, and sometimes even recovers vs. PTQ-D quantization (see \n262 Figure 3 (right)). ", + "bbox": [ + 140, + 309, + 826, + 406 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/e3fbfc3ced46fcebe16d429cac63ce9d30373f76281f3704a14ef61faf0c4aae.jpg", + "image_caption": [ + "Figure 3: Accuracy drop for NLP experiments: PTQ-D models $^ +$ softmax approximations vs. FP32 models (left),and PTQ-D models $^ +$ softmax approximations vs. plain PTQ-D models (right). As it can be seen from the figure,down to uint8 precision the accuracy drop for all cases is below $1 \\%$ and shows very similar behavior. This confirm very good generalization of the proposed method over different models and applications. " + ], + "image_footnote": [], + "bbox": [ + 194, + 435, + 790, + 583 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2.2Sentiment analysis ", + "text_level": 1, + "bbox": [ + 173, + 688, + 354, + 702 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To extend the variety of NLP applications,we also tested the same LUTs with BERT model [5]. We have used sentiment analysis task from GLUE benchmark [29] to test the model. We have used huggingface library 9,and trained the model with the hyper-parameters described in 10. The results of our experiments showed, that similarly to machine translation, the impact of proposed method (softmax layer approximation by LUTs) is smallr vs. accuracy drop caused by PTQ-D quantization (see Figure 3). ", + "bbox": [ + 173, + 710, + 826, + 795 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2.3Semantic equivalence ", + "text_level": 1, + "bbox": [ + 174, + 809, + 375, + 824 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For semantic equivalence test we used The Microsoft Research Paraphrase Corpus (MRPC) 11 in GLUE benchmark.As the classes are imbalanced ( $6 8 \\%$ positive, $32 \\%$ negative), we follow the ", + "bbox": [ + 165, + 833, + 823, + 861 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "273 common practice and used F1 score as a metric. We have used huggingface library and followed \n274 the guidelines from PyTorch tutorial 12 to obtain PTQ-D quantized model. Then,similarly to previous \n275 tests we have substituted a conventional softmax layer with the proposed LUT-based methods. The \n276 results of our experiments showed the similar trend with sentiment analysis test. ", + "bbox": [ + 142, + 92, + 826, + 147 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "2775.3 Ablation study of DETR models experiment ", + "text_level": 1, + "bbox": [ + 142, + 172, + 519, + 189 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "As it is stated in [2],to increase the feature resolution for smallobjects,a dilation to the last stage of the backbone was added ( $+ \\mathrm { D C } 5$ cases of DETR models). This modification increases the cost in the self-attentions of the encoder, leading to an overall $\\times 2$ increase in computational cost. Such changes also reflect on the properties of softmax factors. In Figure 4 there are shown the histogram of $\\Sigma e ^ { x }$ values distributions for the first 2OO tensors of DETR model run for bins $= 5 0$ $\\mathtt { r a n g e } = ( 0 , 5 0 0 )$ As it can be seen from the figure, the distribution of DETR $+ \\mathrm { D C } 5$ (R50) variant is more right-tailed, due to the bigger number of high-magnitude values. This causes the bigger accuracy drop when LUT-based quantization method is used, due to the lack of the discrepancy for those values. Thus, for such models (DETR with added dilation at the last stage) the accuracy of object detection after application of the proposed method can be limited. However, as we can see from Figure 2) increasing of the size of $L U { \\bar { T } } _ { \\alpha }$ from 256 Bytes to 512 Bytes allows to decrease the accuracy drop from $9 \\%$ to $3 \\%$ for $\\mathrm { D E T R + D C } 5$ (R101) unit8 case. Thus, we expect that further increasing the size of LUTs will help to obtain even more accurate results for DETR models with dilation. ", + "bbox": [ + 140, + 203, + 828, + 383 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/2450ef698b17c3ee11267e5b440cbba24aa7840aadfa0ceacde0176d198accc9.jpg", + "image_caption": [ + "Figure 4: Histogram of $\\Sigma e ^ { x }$ values distributions for DETR model variants: plain DETR (R5O) (left), and with dilation I $) \\mathrm { E T R } { + } \\mathrm { D C } 5$ (R50) (right). Red dot line represents the average of the all values per one run of the inference of DETR model. It is clearly seen from the figure that distribution of DETR $+ \\mathrm { D C } 5$ (R50) variant is more flat, having more high-magnitude values. This causes the bigger accuracy drop for the quantized model due to lack of the discrepancy for those values. " + ], + "image_footnote": [], + "bbox": [ + 192, + 419, + 790, + 561 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "2916Conclusion ", + "text_level": 1, + "bbox": [ + 142, + 698, + 299, + 714 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper two alternative methods for efficient softmax computation for DNN models with atention mechanism are proposed. The methods are memory-centric in contrast to known logiccentric approach and are based on the usage ofLUTs for reading of the pre-computed values, instead of the direct computation. Thus,it allows to build the HW accelerator without usage of costly and power-hungry divider. In turn, it allows to decrease the power consumption and latency of the whole inference,what is crucial for edge computing. All results obtained in the paper were validated over different AI tasks (object detection, machine translation, sentiment analysis, and semantic equivalence) and models (DETR,Transformer, BERT) by variety of benchmarks (COCO2017, WMT14, WMT17, GLUE), showing acceptable accuracy and good generalization of the proposed methods. ", + "bbox": [ + 173, + 734, + 826, + 873 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "References \n[1] Aishwarya Bhandare, Vamsi Sripathi, Deepthi Karkada, Vivek Menon, Sun Choi, Kushal Datta, and Vikram Saletore.Eficient 8-bit quantization of transformer neural machine language translation model. CoRR,abs/1906.00532,2019. \n[2] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to-end object detection with transformers, 2020. \n[3] Ming Chen, Yingming_Li, Zhongfei Zhang, and Siyu_Huang. Tvt: Two-view transformer network for video captioning. In Jun Zhu and Ichiro Takeuchi, editors, Proceedings of The l0th Asian Conference on Machine Learning, volume 95 of Proceedings of Machine Learning Research, pages 847-862. PMLR,14-16 Nov 2018. \n[4] Jacek Czaja, Michal Galus, Tomasz Patejko,and Jian Tang. Softmax optimizations for intel xeon processor-based platforms. CoRR,abs/1904.12380,2019. \n[5] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: pre-training of deep bidirectional transformers for language understanding. CoRR,abs/1810.04805, 2018. \n[6] Alexey Dosovitskiy,Lucas Beyer,Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Mathias Minderer, Georg Heigold, Sylvain Gely, Jakob Uszkoreit,and Neil Houlsby.An image is worth 16x16 words: Transformers for image recognition at scale,2020. \n[7] Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Botom-up abstractive summarization. In Proceedings of the2O18 Conference on Empirical Methods in Natural Language Processing, pages 4098-4109,2018. \n[8] Xue Geng, Jie Lin, Bin Zhao, Anmin Kong, Mohamed M. Sabry Aly, and Vijay Chandrasekhar. Hardware-aware softmax approximation for deep neural networks. In C.V. Jawahar, Hongdong Li, Greg Mori,and Konrad Schindler, editors, Computer Vision- ACCV 2018, pages 107-12, Cham, 2019. Springer International Publishing. \n[9] Yanzhang He, Tara N. Sainath, Rohit Prabhavalkar, Ian McGraw, Raziel Alvarez, Ding Zhao, David Rybach, Anjuli Kannan, Yonghui Wu, Ruoming Pang, Qiao Liang, Deepti Bhatia, Yuan Shangguan, Bo Li, Golan Pundak, Khe Chai Sim, Tom Bagby, Shuo yiin Chang, Kanishka Rao, and Alexander Gruenstein. Streaming end-to-end speech recognition for mobile devices,2018. \n[10] R. Hu, B. Tian, S. Yin,and S. Wei. Efcient hardware architecture of softmax layer in deep neural network. In2018 IEEE23rd International Conference on Digital Signal Procesing (DSP), pages 1-5, Nov 2018. \n[11] Andrey Ignatov, Radu Timofte, Wilim Chou, Ke Wang, Max Wu, Tim Hartley,and Luc Van Gool.AI benchmark: Running deep neural networks on android smartphones. CoRR, abs/1810.01109,2018. \n[12] Guillume Klein, Yoon Kim, Yuntian Deng, Jean Senellart, and Alexander M. Rush. OpenNMT: Open-source toolkit for neural machine translation. In Proc. ACL, 2017. \n[13] Ioannis Kouretas and Vassilis Paliouras. Hardware implementation of a softmax-like function for deep learning. Technologies, 8(3), 2020. \n[14] Guillaume Lample and Frangois Charton. Deep learning for symbolic mathematics. CoRR, abs/1912.01412, 2019. \n[15] Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Soricut. Albert: A lite bert for self-supervised learning of language representations, 2019. \n[16] Bo Li, Shuo yiin Chang,Tara N. Sainath,Ruoming Pang, Yanzhang He, Trevor Strohman, and Yonghui Wu. Towards fast and accurate streaming end-to-end asr, 2020. \n[17] Z. Li, H. Li, X. Jiang, B. Chen, Y. Zhang, and G. Du.Efficient fpga implementation of softmax function for dnn applications. In 2018 12th IEEE International Conference on Anticounterfeiting, Security, and Identification (ASID), pages 212-216, Nov 2018. \n50[18] Yinhan Liu,Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettemoyer, and Veselin Stoyanov. Roberta: A robustly optimized BERT pretraining approach. CoRR, abs/1907.11692, 2019. \n53[19] M. G. Sarwar Murshed, Christopher Murphy, Daqing Hou, Nazar Khan, Ganesh Ananthanarayanan, and Faraz Hussain. Machine learning at the network edge: A survey, 2019. \n55[20] Gabriele Prato,Ella Charlaix,and Mehdi Rezagholizadeh.Fully quantized transformer for improved translation, 2019. [21] Tara N. Sainath, Yanzhang He, Bo Li, Arun Narayanan,Ruoming Pang, Antoine Bruguier, Shuo yiin Chang, Wei Li, Raziel Alvarez, Zhifeng Chen, Chung-Cheng Chiu, David Garcia, Alex Gruenstein, Ke Hu, Minho Jin, Anjuli Kannan, Qiao Liang, Ian McGraw, Cal Peyser, Rohit Prabhavalkar, Golan Pundak, David Rybach, Yuan Shangguan, Yash Sheth, Trevor Strohman, Mirko Visontai, Yonghui Wu, Yu Zhang,and Ding Zhao. A streaming on-device end-to-end model surpassing server-side conventional model quality and latency, 2020. \n63[22] Sheng Shen, Zhen Dong, Jiayu Ye, Linjian Ma, Zhewei Yao,Amir Gholami, Michael W. Mahoney,and Kurt Keutzer. Q-bert: Hessian based ultra low precision quantization of bert, 2019. [23] Hyunsung Shin, Dongyoung Kim, Eunhyeok Park, Sungho Park, Yongsik Park, and Sungjoo Yoo. Mcdram: Low latency and energy-effcient matrix computations in dram. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, 37(11):2613-2622, 2018. \n70[24] Jacob R. Stevens, Rangharajan Venkatesan, Steve Dai, Brucek Khailany,and Anand Raghunathan. Softermax: Hardware/software co-design of an eficient softmax for transformers. CoRR,abs/2103.09301,2021. [25] Q. Sun, Z. Di,Z. Lv, F. Song, Q. Xiang, Q. Feng, Y. Fan, X. Yu,and W. Wang. A high speed softmax vlsi architecture based on basic-split. In 2018 14th IEEE International Conference on Solid-State and Integrated Circuit Technology (ICSICT), pages 1-3, Oct 2018. [26] Hugo Touvron,Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers distillation through attention, 2021. \n78[27] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit,Llion Jones,Aidan N. Gomez, Lukasz Kaiser, and Ilia Polosukhin. Attention is all you need. CoRR,abs/1706.03762, 2017. [28] Ihor Vasyltsov and Wooseok Chang. Lightweight Approximation of Softmax Layer for On-Device Inference. Springer International Publishing, 2021. \n82[29] Alex Wang,Amanpreet Singh, Julian Michael,Felix Hil,Omer Levy,and Samuel R. Bowman. GLUE: A multi-task benchmark and analysis platform for natural language understanding. CoRR,abs/1804.07461,2018. \n85[30] K. Wang, Y. Huang, Y. Ho,and W. Fang. A customized convolutional neural network design using improved softmax layer for real-time human emotion recognition. In 2019 IEEE International Conference on Artificial Intelligence Circuits and Systems (AICAS), pages 102-106, March 2019. \n89[31] M. Wang,S.Lu,D. Zhu, J.Lin,and Z. Wang. A high-speed and low-complexity architecture for softmax function in deep learning. In 2O18 IEEE Asia Pacific Conference on Circuits and Systems (APCCAS), pages 223-226, Oct 2018. \n92[32] Siqi Wang,Anuj Pathania,and Tulika Mitra. Neural network inference on mobile socs. IEEE Design Test, page 1-1,2020. \n94[33] Zhilin_ Yang, Zihang Dai, Yiming Yang, Jaime G. Carbonell,Ruslan Salakhutdinov, and Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding. CoRR, abs/1906.08237,2019. \n[34] B. Yuan. Efcient hardware architecture of softmax layer in deep neural network. In 2016 29th IEEE International System-on-Chip Conference (SOCC), pages 323-326, Sep.2016. \n[35] Ofir Zafrir, Guy Boudoukh,Peter Izsak,and Moshe Wasserblat. Q8bert: Quantized 8bit bert, 2019. \n[36] Xingzhou Zhang, Yifan Wang, Sidi Lu,Liangkai Liu, Lanyu Xu,and Weisong Shi. Openei: An open framework for edge intelligence. CoRR,abs/1906.01864,2019. ", + "bbox": [ + 165, + 65, + 830, + 917 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 148, + 47, + 830, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 828, + 193 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Checklist ", + "text_level": 1, + "bbox": [ + 171, + 214, + 254, + 231 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "1. For all authors.. ", + "bbox": [ + 214, + 239, + 341, + 253 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper's contributions and scope?[Yes] See also Section 3,where key contributions were listed. \n(b) Did you describe the limitations of your work?[Yes] See Section 5.3. \n(c) Did you discuss any potential negative societal impacts of your work? [N/A] \n(d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes] We read the ethics review guidelines and confirm that content of our paper is not related to any ethics issue, since it is focused on the optimization of computations. ", + "bbox": [ + 238, + 258, + 828, + 359 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "2. If you are including theoretical results... ", + "bbox": [ + 215, + 363, + 493, + 377 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(a) Did you state the full set of assumptions of all theoretical results? [N/A] (b) Did you include complete proofs of all theoretical results? [N/A] ", + "bbox": [ + 236, + 381, + 738, + 411 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "3. If you ran experiments... ", + "bbox": [ + 214, + 415, + 393, + 429 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(a) Did you include the code,data,and instructions needed to reproduce the main experimental results (either in the supplemental material or as a URL)? [Yes] See supplemental materials. \n(b) Did you specify all the training details (e.g., data splits,hyperparameters, how they were chosen)? [N/A] In our paper we do not consider any training, or fine-tuning. We focus on the inference only. \n(c) Did you report error bars (e.g., with respect to the random seed after running experiments multiple times)? [N/A] Since we did not do any training, we did not need to run experiment multiple times (inference output is deterministic). \n(d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs, internal cluster, or cloud provider)? [N/A] Since we did not do any training, it is not related to our work. ", + "bbox": [ + 238, + 433, + 826, + 603 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets.. ", + "bbox": [ + 214, + 607, + 825, + 622 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(a) If your work uses existing assets, did you cite the creators?[Yes] Al used assets are cited either as a reference,or by direct URL link in the footnote,or in the body of the paper. \n(b) Did you mention the license of the assets? [Yes] The license of the used assets are noticed either in the appropriate reference,or direct URL link of asset. \n(c) Did you include any new assets either in the supplemental material or as a URL? [Yes] Some code and generated LUTs to reproduce our results are provided in supplemental materials. \n(d) Did you discuss whether and how consent was obtained from people whose data you're using/curating? [N/A] \n(e) Did you discuss whether the data you are using/curating contains personally identifiable information or offensive content? [N/A] ", + "bbox": [ + 238, + 625, + 826, + 797 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "5. If you used crowdsourcing or conducted research with human subjects... ", + "bbox": [ + 214, + 801, + 705, + 815 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(a) Did you include the full text of instructions given to participants and screenshots, if applicable? [N/A] \n(b) Did you describe any potential participant risks,with links to Institutional Review Board (IRB) approvals,if applicable? [N/A] \n(c) Did you include the estimated hourly wage paid to participants and the total amount spent on participant compensation? [N/A] ", + "bbox": [ + 238, + 819, + 826, + 906 + ], + "page_idx": 11 + } +] \ No newline at end of file diff --git a/parse/train/TScOKQW67Mj/TScOKQW67Mj_middle.json b/parse/train/TScOKQW67Mj/TScOKQW67Mj_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..4137aa87c2735c7dcc074ef0e5d68839da95e2c7 --- /dev/null +++ b/parse/train/TScOKQW67Mj/TScOKQW67Mj_middle.json @@ -0,0 +1,37815 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 120, + 97, + 493, + 136 + ], + "lines": [ + { + "bbox": [ + 119, + 96, + 492, + 119 + ], + "spans": [ + { + "bbox": [ + 119, + 96, + 492, + 119 + ], + "score": 0.994, + "content": "Efficient Softmax Approximation for Deep Neural", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 168, + 117, + 443, + 137 + ], + "spans": [ + { + "bbox": [ + 168, + 117, + 443, + 137 + ], + "score": 0.999, + "content": "Networks with Attention Mechanism", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 259, + 176, + 355, + 219 + ], + "lines": [ + { + "bbox": [ + 259, + 176, + 356, + 188 + ], + "spans": [ + { + "bbox": [ + 259, + 176, + 356, + 188 + ], + "score": 0.977, + "content": "Anonymous Author(s)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 283, + 186, + 329, + 199 + ], + "spans": [ + { + "bbox": [ + 283, + 186, + 329, + 199 + ], + "score": 0.981, + "content": "Affiliation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 287, + 196, + 325, + 210 + ], + "spans": [ + { + "bbox": [ + 287, + 196, + 325, + 210 + ], + "score": 1.0, + "content": "Address", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 290, + 209, + 321, + 220 + ], + "spans": [ + { + "bbox": [ + 290, + 209, + 321, + 220 + ], + "score": 0.999, + "content": "email", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 284, + 249, + 329, + 262 + ], + "lines": [ + { + "bbox": [ + 282, + 248, + 331, + 263 + ], + "spans": [ + { + "bbox": [ + 282, + 248, + 331, + 263 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 91, + 273, + 470, + 428 + ], + "lines": [ + { + "bbox": [ + 93, + 274, + 470, + 287 + ], + "spans": [ + { + "bbox": [ + 93, + 277, + 99, + 284 + ], + "score": 0.999, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 142, + 274, + 470, + 287 + ], + "score": 0.995, + "content": "There has been a rapid advance of custom hardware (HW) for accelerating the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 93, + 285, + 470, + 298 + ], + "spans": [ + { + "bbox": [ + 93, + 288, + 99, + 296 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 141, + 285, + 470, + 298 + ], + "score": 0.986, + "content": " inference speed of deep neural networks (DNNs). Previously, the softmax layer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 93, + 297, + 470, + 308 + ], + "spans": [ + { + "bbox": [ + 93, + 299, + 99, + 307 + ], + "score": 0.999, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 141, + 297, + 470, + 308 + ], + "score": 0.98, + "content": "was not a main concern of DNN accelerating HW, because its portion is relatively", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 93, + 307, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 93, + 310, + 100, + 318 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 142, + 307, + 470, + 319 + ], + "score": 0.99, + "content": "small in multi-layer perceptron or convolutional neural networks. However,as the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 93, + 318, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 93, + 320, + 99, + 329 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 141, + 318, + 470, + 330 + ], + "score": 0.982, + "content": " attention mechanisms are widely used in various modern DNNs,a cost-efficient", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 93, + 328, + 471, + 342 + ], + "spans": [ + { + "bbox": [ + 93, + 331, + 99, + 340 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 141, + 328, + 471, + 342 + ], + "score": 0.992, + "content": " implementation of softmax layer is becoming very important. In this paper, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 93, + 340, + 470, + 351 + ], + "spans": [ + { + "bbox": [ + 93, + 342, + 100, + 351 + ], + "score": 1.0, + "content": "7", + "type": "text" + }, + { + "bbox": [ + 141, + 340, + 470, + 351 + ], + "score": 0.986, + "content": " propose two methods to approximate softmax computation,which are based on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 93, + 351, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 93, + 353, + 99, + 362 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 142, + 351, + 470, + 363 + ], + "score": 0.99, + "content": "the usage of LookUp Tables (LUTs). The required size of LUT is quite small", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 92, + 361, + 471, + 374 + ], + "spans": [ + { + "bbox": [ + 92, + 364, + 100, + 373 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 141, + 361, + 471, + 374 + ], + "score": 0.979, + "content": "(about 7Oo Bytes) because ranges of numerators and denominators of softmax are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 90, + 372, + 470, + 385 + ], + "spans": [ + { + "bbox": [ + 90, + 375, + 100, + 384 + ], + "score": 0.971, + "content": "10", + "type": "text" + }, + { + "bbox": [ + 141, + 372, + 470, + 385 + ], + "score": 0.985, + "content": " stable if normalization is applied to the input. We have validated the proposed", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 90, + 384, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 90, + 386, + 99, + 395 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 142, + 384, + 470, + 396 + ], + "score": 0.982, + "content": "technique over different AI tasks (object detection,machine translation, speech", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 395, + 470, + 407 + ], + "spans": [ + { + "bbox": [ + 89, + 396, + 100, + 407 + ], + "score": 1.0, + "content": "12", + "type": "text" + }, + { + "bbox": [ + 141, + 395, + 470, + 406 + ], + "score": 0.984, + "content": "recognition, semantic equivalence) and DNN models (DETR,Transformer, BERT)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 405, + 470, + 419 + ], + "spans": [ + { + "bbox": [ + 89, + 408, + 99, + 417 + ], + "score": 1.0, + "content": "13", + "type": "text" + }, + { + "bbox": [ + 141, + 405, + 470, + 419 + ], + "score": 0.971, + "content": "by a variety of benchmarks (COCO17, WMT14, WMT17, GLUE). We showed", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 416, + 457, + 429 + ], + "spans": [ + { + "bbox": [ + 89, + 419, + 100, + 427 + ], + "score": 1.0, + "content": "14", + "type": "text" + }, + { + "bbox": [ + 141, + 416, + 435, + 429 + ], + "score": 0.984, + "content": " that 8-bit approximation allows to obtain acceptable accuracy loss below", + "type": "text" + }, + { + "bbox": [ + 435, + 416, + 457, + 427 + ], + "score": 0.86, + "content": "1 . 0 \\%", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 91, + 448, + 191, + 461 + ], + "lines": [ + { + "bbox": [ + 87, + 447, + 192, + 464 + ], + "spans": [ + { + "bbox": [ + 87, + 447, + 192, + 464 + ], + "score": 1.0, + "content": "151Introduction", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 90, + 473, + 506, + 572 + ], + "lines": [ + { + "bbox": [ + 90, + 473, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 90, + 475, + 99, + 483 + ], + "score": 1.0, + "content": "16", + "type": "text" + }, + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "score": 0.981, + "content": "After Vaswani et al. had introduced Transformer model in [27] for machine translation task, the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 89, + 484, + 507, + 497 + ], + "spans": [ + { + "bbox": [ + 89, + 486, + 100, + 496 + ], + "score": 1.0, + "content": "17", + "type": "text" + }, + { + "bbox": [ + 105, + 484, + 507, + 497 + ], + "score": 0.991, + "content": " attention based architecture became popular firstly in Natural Language Processng (NLP) appli-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 494, + 507, + 508 + ], + "spans": [ + { + "bbox": [ + 89, + 497, + 100, + 506 + ], + "score": 1.0, + "content": "18", + "type": "text" + }, + { + "bbox": [ + 104, + 494, + 507, + 508 + ], + "score": 0.97, + "content": "cations, e.g.: speech recognition [16], [21], [9]; summarization [7]; language understanding [5],", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 89, + 508, + 100, + 518 + ], + "score": 1.0, + "content": "19", + "type": "text" + }, + { + "bbox": [ + 106, + 505, + 507, + 519 + ], + "score": 0.989, + "content": "[33],[15],[18]; and video captioning [3]. Recently attention-based models are used in even wider", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 516, + 507, + 530 + ], + "spans": [ + { + "bbox": [ + 89, + 519, + 100, + 528 + ], + "score": 1.0, + "content": "20", + "type": "text" + }, + { + "bbox": [ + 105, + 516, + 507, + 530 + ], + "score": 0.987, + "content": " practical areas including Computer Vision (CV) tasks for object detection [2]; image transformation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 88, + 527, + 507, + 541 + ], + "spans": [ + { + "bbox": [ + 88, + 529, + 100, + 540 + ], + "score": 1.0, + "content": "21", + "type": "text" + }, + { + "bbox": [ + 106, + 527, + 507, + 541 + ], + "score": 0.985, + "content": "[26]; image classification [6]; and even symbolic integration and solving diferential equations [14].", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 89, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 89, + 541, + 100, + 550 + ], + "score": 1.0, + "content": "22", + "type": "text" + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 0.992, + "content": "Despite the attractiveness of transformer-based models, its direct implementation into the platform", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 100, + 561 + ], + "score": 1.0, + "content": "23", + "type": "text" + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 0.974, + "content": "with constrained computational power (e.g., mobile SoC,edge devices)1 is very challnging due to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 560, + 245, + 574 + ], + "spans": [ + { + "bbox": [ + 89, + 563, + 100, + 572 + ], + "score": 1.0, + "content": "24", + "type": "text" + }, + { + "bbox": [ + 104, + 560, + 245, + 574 + ], + "score": 0.986, + "content": "big memory footprint and latency.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 506, + 665 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 506, + 589 + ], + "score": 0.987, + "content": "Therefore, model compresson techniques such as quantization,and distillation are needed for those", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "score": 0.989, + "content": " models. Many approaches have been introduced on quantizing matrix multiplication of transformer", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 599, + 507, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 507, + 611 + ], + "score": 0.985, + "content": "architecture.For example,in [22] it was used second order Hessian information, what allows to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 609, + 507, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 313, + 622 + ], + "score": 0.989, + "content": " significantly compress the size of the model up to", + "type": "text" + }, + { + "bbox": [ + 313, + 610, + 333, + 621 + ], + "score": 0.9, + "content": "1 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 609, + 470, + 622 + ], + "score": 0.983, + "content": "times,while maintaining at most", + "type": "text" + }, + { + "bbox": [ + 471, + 610, + 494, + 620 + ], + "score": 0.86, + "content": "2 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 609, + 507, + 622 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "score": 0.983, + "content": " performance degradation (for the case of ultra-low precision 2-bits quantization). In [35] it was", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 632, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 644 + ], + "score": 0.992, + "content": "used a quantization-aware training during the fine-tuning phase of BERT, what allows to compress", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 641, + 507, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 175, + 656 + ], + "score": 0.996, + "content": "BERT model by", + "type": "text" + }, + { + "bbox": [ + 175, + 643, + 190, + 653 + ], + "score": 0.86, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 641, + 448, + 656 + ], + "score": 0.988, + "content": "(with 8-bit quantization) with minimal accuracy loss (less than", + "type": "text" + }, + { + "bbox": [ + 448, + 643, + 463, + 653 + ], + "score": 0.83, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 641, + 507, + 656 + ], + "score": 0.917, + "content": "). In[1], a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 653, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 461, + 667 + ], + "score": 0.992, + "content": " machine language translation model was quantized by 8-bit, while maintaining less than", + "type": "text" + }, + { + "bbox": [ + 462, + 654, + 484, + 664 + ], + "score": 0.85, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 653, + 506, + 667 + ], + "score": 1.0, + "content": "drop", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 673, + 506, + 714 + ], + "lines": [ + { + "bbox": [ + 120, + 671, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 120, + 671, + 506, + 686 + ], + "score": 0.963, + "content": "1Recently, interest to the computations performed close to the data sources is growing up aiming to soften the", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 683, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 506, + 695 + ], + "score": 0.988, + "content": "requirements of continuous access to high-speed and high-bandwidth connections.Moreover,often customers", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 693, + 507, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 507, + 705 + ], + "score": 0.979, + "content": "wanted to keep their security and privacy,and thus do not want to expose their data to the external clouds [32],", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 703, + 165, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 165, + 715 + ], + "score": 0.966, + "content": "[19], [36], [11].", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 105, + 732, + 500, + 743 + ], + "lines": [ + { + "bbox": [ + 106, + 731, + 500, + 744 + ], + "spans": [ + { + "bbox": [ + 106, + 731, + 500, + 744 + ], + "score": 0.98, + "content": "Submitted to 35th Conference on Neural Information Processing Systems (NeurIPS 2O21).Do not distribute.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 120, + 97, + 493, + 136 + ], + "lines": [ + { + "bbox": [ + 119, + 96, + 492, + 119 + ], + "spans": [ + { + "bbox": [ + 119, + 96, + 492, + 119 + ], + "score": 0.994, + "content": "Efficient Softmax Approximation for Deep Neural", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 168, + 117, + 443, + 137 + ], + "spans": [ + { + "bbox": [ + 168, + 117, + 443, + 137 + ], + "score": 0.999, + "content": "Networks with Attention Mechanism", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 259, + 176, + 355, + 219 + ], + "lines": [ + { + "bbox": [ + 259, + 176, + 356, + 188 + ], + "spans": [ + { + "bbox": [ + 259, + 176, + 356, + 188 + ], + "score": 0.977, + "content": "Anonymous Author(s)", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 283, + 186, + 329, + 199 + ], + "spans": [ + { + "bbox": [ + 283, + 186, + 329, + 199 + ], + "score": 0.981, + "content": "Affiliation", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 287, + 196, + 325, + 210 + ], + "spans": [ + { + "bbox": [ + 287, + 196, + 325, + 210 + ], + "score": 1.0, + "content": "Address", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 290, + 209, + 321, + 220 + ], + "spans": [ + { + "bbox": [ + 290, + 209, + 321, + 220 + ], + "score": 0.999, + "content": "email", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 259, + 176, + 356, + 220 + ] + }, + { + "type": "title", + "bbox": [ + 284, + 249, + 329, + 262 + ], + "lines": [ + { + "bbox": [ + 282, + 248, + 331, + 263 + ], + "spans": [ + { + "bbox": [ + 282, + 248, + 331, + 263 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "index", + "bbox": [ + 91, + 273, + 470, + 428 + ], + "lines": [ + { + "bbox": [ + 93, + 274, + 470, + 287 + ], + "spans": [ + { + "bbox": [ + 93, + 277, + 99, + 284 + ], + "score": 0.999, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 142, + 274, + 470, + 287 + ], + "score": 0.995, + "content": "There has been a rapid advance of custom hardware (HW) for accelerating the", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 285, + 470, + 298 + ], + "spans": [ + { + "bbox": [ + 93, + 288, + 99, + 296 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 141, + 285, + 470, + 298 + ], + "score": 0.986, + "content": " inference speed of deep neural networks (DNNs). Previously, the softmax layer", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 297, + 470, + 308 + ], + "spans": [ + { + "bbox": [ + 93, + 299, + 99, + 307 + ], + "score": 0.999, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 141, + 297, + 470, + 308 + ], + "score": 0.98, + "content": "was not a main concern of DNN accelerating HW, because its portion is relatively", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 307, + 470, + 319 + ], + "spans": [ + { + "bbox": [ + 93, + 310, + 100, + 318 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 142, + 307, + 470, + 319 + ], + "score": 0.99, + "content": "small in multi-layer perceptron or convolutional neural networks. However,as the", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 318, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 93, + 320, + 99, + 329 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 141, + 318, + 470, + 330 + ], + "score": 0.982, + "content": " attention mechanisms are widely used in various modern DNNs,a cost-efficient", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 328, + 471, + 342 + ], + "spans": [ + { + "bbox": [ + 93, + 331, + 99, + 340 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 141, + 328, + 471, + 342 + ], + "score": 0.992, + "content": " implementation of softmax layer is becoming very important. In this paper, we", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 340, + 470, + 351 + ], + "spans": [ + { + "bbox": [ + 93, + 342, + 100, + 351 + ], + "score": 1.0, + "content": "7", + "type": "text" + }, + { + "bbox": [ + 141, + 340, + 470, + 351 + ], + "score": 0.986, + "content": " propose two methods to approximate softmax computation,which are based on", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 351, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 93, + 353, + 99, + 362 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 142, + 351, + 470, + 363 + ], + "score": 0.99, + "content": "the usage of LookUp Tables (LUTs). The required size of LUT is quite small", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 361, + 471, + 374 + ], + "spans": [ + { + "bbox": [ + 92, + 364, + 100, + 373 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 141, + 361, + 471, + 374 + ], + "score": 0.979, + "content": "(about 7Oo Bytes) because ranges of numerators and denominators of softmax are", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 372, + 470, + 385 + ], + "spans": [ + { + "bbox": [ + 90, + 375, + 100, + 384 + ], + "score": 0.971, + "content": "10", + "type": "text" + }, + { + "bbox": [ + 141, + 372, + 470, + 385 + ], + "score": 0.985, + "content": " stable if normalization is applied to the input. We have validated the proposed", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 384, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 90, + 386, + 99, + 395 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 142, + 384, + 470, + 396 + ], + "score": 0.982, + "content": "technique over different AI tasks (object detection,machine translation, speech", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 395, + 470, + 407 + ], + "spans": [ + { + "bbox": [ + 89, + 396, + 100, + 407 + ], + "score": 1.0, + "content": "12", + "type": "text" + }, + { + "bbox": [ + 141, + 395, + 470, + 406 + ], + "score": 0.984, + "content": "recognition, semantic equivalence) and DNN models (DETR,Transformer, BERT)", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 405, + 470, + 419 + ], + "spans": [ + { + "bbox": [ + 89, + 408, + 99, + 417 + ], + "score": 1.0, + "content": "13", + "type": "text" + }, + { + "bbox": [ + 141, + 405, + 470, + 419 + ], + "score": 0.971, + "content": "by a variety of benchmarks (COCO17, WMT14, WMT17, GLUE). We showed", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 416, + 457, + 429 + ], + "spans": [ + { + "bbox": [ + 89, + 419, + 100, + 427 + ], + "score": 1.0, + "content": "14", + "type": "text" + }, + { + "bbox": [ + 141, + 416, + 435, + 429 + ], + "score": 0.984, + "content": " that 8-bit approximation allows to obtain acceptable accuracy loss below", + "type": "text" + }, + { + "bbox": [ + 435, + 416, + 457, + 427 + ], + "score": 0.86, + "content": "1 . 0 \\%", + "type": "inline_equation" + } + ], + "index": 20, + "is_list_start_line": true + } + ], + "index": 13.5, + "bbox_fs": [ + 89, + 274, + 471, + 429 + ] + }, + { + "type": "title", + "bbox": [ + 91, + 448, + 191, + 461 + ], + "lines": [ + { + "bbox": [ + 87, + 447, + 192, + 464 + ], + "spans": [ + { + "bbox": [ + 87, + 447, + 192, + 464 + ], + "score": 1.0, + "content": "151Introduction", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "index", + "bbox": [ + 90, + 473, + 506, + 572 + ], + "lines": [ + { + "bbox": [ + 90, + 473, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 90, + 475, + 99, + 483 + ], + "score": 1.0, + "content": "16", + "type": "text" + }, + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "score": 0.981, + "content": "After Vaswani et al. had introduced Transformer model in [27] for machine translation task, the", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 484, + 507, + 497 + ], + "spans": [ + { + "bbox": [ + 89, + 486, + 100, + 496 + ], + "score": 1.0, + "content": "17", + "type": "text" + }, + { + "bbox": [ + 105, + 484, + 507, + 497 + ], + "score": 0.991, + "content": " attention based architecture became popular firstly in Natural Language Processng (NLP) appli-", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 494, + 507, + 508 + ], + "spans": [ + { + "bbox": [ + 89, + 497, + 100, + 506 + ], + "score": 1.0, + "content": "18", + "type": "text" + }, + { + "bbox": [ + 104, + 494, + 507, + 508 + ], + "score": 0.97, + "content": "cations, e.g.: speech recognition [16], [21], [9]; summarization [7]; language understanding [5],", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 89, + 508, + 100, + 518 + ], + "score": 1.0, + "content": "19", + "type": "text" + }, + { + "bbox": [ + 106, + 505, + 507, + 519 + ], + "score": 0.989, + "content": "[33],[15],[18]; and video captioning [3]. Recently attention-based models are used in even wider", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 516, + 507, + 530 + ], + "spans": [ + { + "bbox": [ + 89, + 519, + 100, + 528 + ], + "score": 1.0, + "content": "20", + "type": "text" + }, + { + "bbox": [ + 105, + 516, + 507, + 530 + ], + "score": 0.987, + "content": " practical areas including Computer Vision (CV) tasks for object detection [2]; image transformation", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 527, + 507, + 541 + ], + "spans": [ + { + "bbox": [ + 88, + 529, + 100, + 540 + ], + "score": 1.0, + "content": "21", + "type": "text" + }, + { + "bbox": [ + 106, + 527, + 507, + 541 + ], + "score": 0.985, + "content": "[26]; image classification [6]; and even symbolic integration and solving diferential equations [14].", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 89, + 541, + 100, + 550 + ], + "score": 1.0, + "content": "22", + "type": "text" + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 0.992, + "content": "Despite the attractiveness of transformer-based models, its direct implementation into the platform", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 100, + 561 + ], + "score": 1.0, + "content": "23", + "type": "text" + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 0.974, + "content": "with constrained computational power (e.g., mobile SoC,edge devices)1 is very challnging due to", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 560, + 245, + 574 + ], + "spans": [ + { + "bbox": [ + 89, + 563, + 100, + 572 + ], + "score": 1.0, + "content": "24", + "type": "text" + }, + { + "bbox": [ + 104, + 560, + 245, + 574 + ], + "score": 0.986, + "content": "big memory footprint and latency.", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + } + ], + "index": 26, + "bbox_fs": [ + 88, + 473, + 507, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 506, + 665 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 506, + 589 + ], + "score": 0.987, + "content": "Therefore, model compresson techniques such as quantization,and distillation are needed for those", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 507, + 601 + ], + "score": 0.989, + "content": " models. Many approaches have been introduced on quantizing matrix multiplication of transformer", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 599, + 507, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 507, + 611 + ], + "score": 0.985, + "content": "architecture.For example,in [22] it was used second order Hessian information, what allows to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 609, + 507, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 313, + 622 + ], + "score": 0.989, + "content": " significantly compress the size of the model up to", + "type": "text" + }, + { + "bbox": [ + 313, + 610, + 333, + 621 + ], + "score": 0.9, + "content": "1 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 609, + 470, + 622 + ], + "score": 0.983, + "content": "times,while maintaining at most", + "type": "text" + }, + { + "bbox": [ + 471, + 610, + 494, + 620 + ], + "score": 0.86, + "content": "2 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 609, + 507, + 622 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "score": 0.983, + "content": " performance degradation (for the case of ultra-low precision 2-bits quantization). In [35] it was", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 632, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 644 + ], + "score": 0.992, + "content": "used a quantization-aware training during the fine-tuning phase of BERT, what allows to compress", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 641, + 507, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 175, + 656 + ], + "score": 0.996, + "content": "BERT model by", + "type": "text" + }, + { + "bbox": [ + 175, + 643, + 190, + 653 + ], + "score": 0.86, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 641, + 448, + 656 + ], + "score": 0.988, + "content": "(with 8-bit quantization) with minimal accuracy loss (less than", + "type": "text" + }, + { + "bbox": [ + 448, + 643, + 463, + 653 + ], + "score": 0.83, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 641, + 507, + 656 + ], + "score": 0.917, + "content": "). In[1], a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 653, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 461, + 667 + ], + "score": 0.992, + "content": " machine language translation model was quantized by 8-bit, while maintaining less than", + "type": "text" + }, + { + "bbox": [ + 462, + 654, + 484, + 664 + ], + "score": 0.85, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 653, + 506, + 667 + ], + "score": 1.0, + "content": "drop", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 577, + 507, + 667 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 90, + 72, + 506, + 128 + ], + "lines": [ + { + "bbox": [ + 89, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 89, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "33", + "type": "text" + }, + { + "bbox": [ + 105, + 73, + 506, + 85 + ], + "score": 0.97, + "content": " in accuracy. Moreover, in [2O] it was shown that 8-bit quantized models provide the same or even", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 89, + 86, + 100, + 95 + ], + "score": 1.0, + "content": "34", + "type": "text" + }, + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 0.985, + "content": "higher accuracy as the full-precision models. Most of the above methods consider the quantization of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 89, + 95, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 89, + 97, + 100, + 106 + ], + "score": 1.0, + "content": "35", + "type": "text" + }, + { + "bbox": [ + 105, + 95, + 506, + 106 + ], + "score": 0.984, + "content": "matrix multiplications operations only. However,as it is shown in [4],[24] in modern DNNs with", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 105, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 89, + 108, + 100, + 117 + ], + "score": 1.0, + "content": "36", + "type": "text" + }, + { + "bbox": [ + 105, + 105, + 507, + 119 + ], + "score": 0.976, + "content": " attention mechanism (e.g., Transformer, BERT, GPT-x) the softmax function is also used intensively,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 117, + 473, + 129 + ], + "spans": [ + { + "bbox": [ + 89, + 119, + 100, + 128 + ], + "score": 1.0, + "content": "37", + "type": "text" + }, + { + "bbox": [ + 105, + 117, + 473, + 129 + ], + "score": 0.992, + "content": " especially at the longer sequence lengths,so it is necessary to optimize its for performance.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 90, + 133, + 506, + 221 + ], + "lines": [ + { + "bbox": [ + 89, + 133, + 507, + 145 + ], + "spans": [ + { + "bbox": [ + 89, + 135, + 100, + 145 + ], + "score": 1.0, + "content": "38", + "type": "text" + }, + { + "bbox": [ + 105, + 133, + 507, + 145 + ], + "score": 0.989, + "content": " In this paper we propose methods for efficient computation of the softmax layer at the HW accelerator.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 143, + 507, + 157 + ], + "spans": [ + { + "bbox": [ + 89, + 146, + 100, + 155 + ], + "score": 1.0, + "content": "39", + "type": "text" + }, + { + "bbox": [ + 105, + 143, + 507, + 157 + ], + "score": 0.996, + "content": "The method is based on piece-wise-constant approximation and usage of LUTs. To the best of our", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 89, + 154, + 507, + 167 + ], + "spans": [ + { + "bbox": [ + 89, + 156, + 100, + 167 + ], + "score": 1.0, + "content": "40", + "type": "text" + }, + { + "bbox": [ + 105, + 154, + 507, + 167 + ], + "score": 0.997, + "content": "knowledge,it is the first paper where softmax quantization of the models with attention mechanism is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 88, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 88, + 167, + 99, + 177 + ], + "score": 1.0, + "content": "41", + "type": "text" + }, + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "score": 0.988, + "content": "tested and verified on a variety of AI tasks.In Section 2 we show why our research is important and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 88, + 177, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 88, + 178, + 100, + 188 + ], + "score": 1.0, + "content": "42", + "type": "text" + }, + { + "bbox": [ + 106, + 177, + 506, + 189 + ], + "score": 0.993, + "content": "valuable.In Section 3 we consider the drawbacks of existed softmax approximation methods in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 187, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 89, + 190, + 99, + 199 + ], + "score": 1.0, + "content": "43", + "type": "text" + }, + { + "bbox": [ + 105, + 187, + 507, + 200 + ], + "score": 0.988, + "content": " perspective of HW accelerator, and summarize the differentiation of our methods from the previous", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 100, + 210 + ], + "score": 1.0, + "content": "44", + "type": "text" + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 0.993, + "content": "arts.In Section 4 we describe the details of the proposed methods. Section 5 shows the experimental", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 208, + 431, + 223 + ], + "spans": [ + { + "bbox": [ + 89, + 212, + 100, + 221 + ], + "score": 1.0, + "content": "45", + "type": "text" + }, + { + "bbox": [ + 104, + 208, + 431, + 223 + ], + "score": 0.986, + "content": " validation over different models and datasets, and Section 6 concludes the paper.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 93, + 235, + 270, + 249 + ], + "lines": [ + { + "bbox": [ + 88, + 235, + 271, + 251 + ], + "spans": [ + { + "bbox": [ + 88, + 235, + 271, + 251 + ], + "score": 0.964, + "content": "162 Background and motivation", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 89, + 260, + 506, + 424 + ], + "lines": [ + { + "bbox": [ + 89, + 260, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 89, + 262, + 100, + 272 + ], + "score": 1.0, + "content": "47", + "type": "text" + }, + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "score": 0.972, + "content": " Modern GPUs are powerful, but big, expensive, and power-hungry. Therefore, alternative HW", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 271, + 507, + 284 + ], + "spans": [ + { + "bbox": [ + 89, + 273, + 100, + 283 + ], + "score": 1.0, + "content": "48", + "type": "text" + }, + { + "bbox": [ + 105, + 271, + 507, + 284 + ], + "score": 0.986, + "content": " accelerators (e.g., NPU) for on-device inference are under active development by diferent vendors,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 89, + 284, + 100, + 294 + ], + "score": 1.0, + "content": "49", + "type": "text" + }, + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 0.986, + "content": " especially for Federated Learning and Edge computing. However, such devices mostly are focused on", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 293, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 89, + 295, + 100, + 305 + ], + "score": 1.0, + "content": "50", + "type": "text" + }, + { + "bbox": [ + 106, + 293, + 506, + 305 + ], + "score": 0.998, + "content": "the acceleration of matrix multiplication operations,and do not include means to compute complex", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 303, + 507, + 317 + ], + "spans": [ + { + "bbox": [ + 89, + 306, + 99, + 316 + ], + "score": 1.0, + "content": "51", + "type": "text" + }, + { + "bbox": [ + 105, + 303, + 507, + 317 + ], + "score": 0.983, + "content": "activation functions. Typically,in such devices the data is sent outside of the accelerator to compute", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 89, + 317, + 100, + 326 + ], + "score": 1.0, + "content": "52", + "type": "text" + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 0.991, + "content": "activations on host CPU.For example,according to the guidelines of Coral (TM),a softmax layer of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 324, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 89, + 328, + 100, + 338 + ], + "score": 1.0, + "content": "53", + "type": "text" + }, + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "score": 0.991, + "content": " DNN model in Edge TPU have to be run on host CPU ², what is acceptable for traditional CV tasks", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 336, + 507, + 350 + ], + "spans": [ + { + "bbox": [ + 89, + 339, + 100, + 348 + ], + "score": 1.0, + "content": "54", + "type": "text" + }, + { + "bbox": [ + 105, + 336, + 507, + 350 + ], + "score": 0.987, + "content": "(which are typically uni-directional, have minimum dependencies, and softmax layer is located at the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 89, + 349, + 100, + 360 + ], + "score": 1.0, + "content": "55", + "type": "text" + }, + { + "bbox": [ + 105, + 347, + 506, + 361 + ], + "score": 0.99, + "content": " end of the computational graph of DNN model), however is very inefficient for NLP tasks (which are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 89, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 89, + 361, + 100, + 371 + ], + "score": 1.0, + "content": "56", + "type": "text" + }, + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "score": 0.994, + "content": " typically more complicated with a lot of dependencies and active employment of softmax layer in the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 89, + 371, + 100, + 381 + ], + "score": 1.0, + "content": "57", + "type": "text" + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "score": 0.99, + "content": "middle of DNN model). In opposite to traditional logic-centric approach, some researches are trying", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 89, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 89, + 382, + 100, + 392 + ], + "score": 1.0, + "content": "58", + "type": "text" + }, + { + "bbox": [ + 104, + 380, + 506, + 394 + ], + "score": 0.99, + "content": " to perform computation closer to the memory (so called memory-centric approach). For example", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 89, + 389, + 507, + 406 + ], + "spans": [ + { + "bbox": [ + 89, + 393, + 100, + 403 + ], + "score": 1.0, + "content": "59", + "type": "text" + }, + { + "bbox": [ + 104, + 389, + 507, + 406 + ], + "score": 0.98, + "content": " in [23], there is shown a DRAM-based AI accelerator. This approach allows significantly speed-up", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 89, + 402, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 89, + 404, + 100, + 414 + ], + "score": 1.0, + "content": "60", + "type": "text" + }, + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "score": 0.983, + "content": "the overall computation process, but for the computation of the activations the data should also be", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 89, + 414, + 435, + 425 + ], + "spans": [ + { + "bbox": [ + 89, + 415, + 100, + 425 + ], + "score": 1.0, + "content": "61", + "type": "text" + }, + { + "bbox": [ + 105, + 414, + 435, + 425 + ], + "score": 0.989, + "content": "moved to host processor, what is an even bigger issue in the DRAM environment.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 89, + 429, + 506, + 530 + ], + "lines": [ + { + "bbox": [ + 89, + 429, + 507, + 442 + ], + "spans": [ + { + "bbox": [ + 89, + 432, + 100, + 441 + ], + "score": 1.0, + "content": "62", + "type": "text" + }, + { + "bbox": [ + 105, + 429, + 507, + 442 + ], + "score": 0.966, + "content": "The Eq.(1) from [27] describes how attention is computed in the model. This particular form,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 439, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 89, + 442, + 99, + 452 + ], + "score": 1.0, + "content": "63", + "type": "text" + }, + { + "bbox": [ + 104, + 439, + 506, + 454 + ], + "score": 0.993, + "content": " named \"scaled dot-product attention\" takes the matrix multiplication product of queries and keys", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 448, + 509, + 468 + ], + "spans": [ + { + "bbox": [ + 89, + 454, + 100, + 464 + ], + "score": 1.0, + "content": "64", + "type": "text" + }, + { + "bbox": [ + 103, + 448, + 118, + 468 + ], + "score": 0.983, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 451, + 159, + 463 + ], + "score": 0.91, + "content": "\\mathbf { R } ^ { N \\times L \\times H }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 448, + 312, + 468 + ], + "score": 0.941, + "content": "as input forthesoftmaxlayer where", + "type": "text" + }, + { + "bbox": [ + 313, + 453, + 323, + 463 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 448, + 428, + 468 + ], + "score": 0.983, + "content": "means number of heads,", + "type": "text" + }, + { + "bbox": [ + 428, + 453, + 436, + 463 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 448, + 509, + 468 + ], + "score": 0.998, + "content": "means sequence", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 89, + 463, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 89, + 466, + 100, + 475 + ], + "score": 1.0, + "content": "65", + "type": "text" + }, + { + "bbox": [ + 105, + 463, + 150, + 477 + ], + "score": 1.0, + "content": "length and", + "type": "text" + }, + { + "bbox": [ + 150, + 464, + 160, + 474 + ], + "score": 0.8, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 463, + 507, + 477 + ], + "score": 0.987, + "content": "means hidden size for the case where batch size equals to 1. In other words, performing", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 89, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 89, + 477, + 100, + 486 + ], + "score": 1.0, + "content": "66", + "type": "text" + }, + { + "bbox": [ + 108, + 474, + 162, + 486 + ], + "score": 0.88, + "content": "( N ^ { \\mathbf { \\bar { \\nu } } } \\times L \\times L )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 474, + 506, + 487 + ], + "score": 0.986, + "content": "softmax operations is required per one attention. Furthermore,encoder in typical", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 89, + 488, + 100, + 497 + ], + "score": 1.0, + "content": "67", + "type": "text" + }, + { + "bbox": [ + 105, + 484, + 351, + 498 + ], + "score": 0.997, + "content": " transformer consists of six multi-head attentions which means", + "type": "text" + }, + { + "bbox": [ + 352, + 486, + 421, + 497 + ], + "score": 0.9, + "content": "6 \\times ( N \\times L \\times L )", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 484, + 506, + 498 + ], + "score": 0.999, + "content": "operation is required", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 89, + 498, + 100, + 508 + ], + "score": 1.0, + "content": "68", + "type": "text" + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 0.99, + "content": "for encoder solely. Assuming the number of heads is 8 and sequence length is 128, it already takes", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 89, + 510, + 100, + 519 + ], + "score": 1.0, + "content": "69", + "type": "text" + }, + { + "bbox": [ + 106, + 507, + 506, + 519 + ], + "score": 0.995, + "content": "786,432 operations for softmax of the transformer encoder. This overhead increases as number of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 519, + 456, + 531 + ], + "spans": [ + { + "bbox": [ + 89, + 521, + 100, + 530 + ], + "score": 1.0, + "content": "70", + "type": "text" + }, + { + "bbox": [ + 105, + 519, + 456, + 531 + ], + "score": 0.993, + "content": "heads and sequence length increases which is typical case for high-performing models.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 542, + 403, + 570 + ], + "lines": [ + { + "bbox": [ + 210, + 542, + 403, + 570 + ], + "spans": [ + { + "bbox": [ + 210, + 542, + 403, + 570 + ], + "score": 0.92, + "content": "A t t e n t i o n ( Q , K , V ) = S o f t m a x \\left( \\frac { Q K ^ { T } } { \\sqrt { d _ { K } } } \\right) V", + "type": "interline_equation", + "image_path": "2181d68a11352a1504787146df9a48b0cf9ff24ed9fa565eb281c5e574c5f139.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 542, + 403, + 556.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 210, + 556.0, + 403, + 570.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 576, + 506, + 654 + ], + "lines": [ + { + "bbox": [ + 89, + 577, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 89, + 579, + 99, + 588 + ], + "score": 1.0, + "content": "71", + "type": "text" + }, + { + "bbox": [ + 105, + 577, + 255, + 590 + ], + "score": 0.997, + "content": "For example, it requires performing", + "type": "text" + }, + { + "bbox": [ + 255, + 577, + 410, + 589 + ], + "score": 0.89, + "content": "1 2 \\times ( 1 2 \\times 1 2 8 \\times 1 2 8 ) = 2 , 3 5 9 , 2 9 6", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 577, + 507, + 590 + ], + "score": 0.996, + "content": "softmax operations for", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 89, + 588, + 507, + 600 + ], + "spans": [ + { + "bbox": [ + 89, + 590, + 100, + 600 + ], + "score": 1.0, + "content": "72", + "type": "text" + }, + { + "bbox": [ + 105, + 588, + 507, + 600 + ], + "score": 0.991, + "content": "one sample inference for typical BERT configuration [5] over sequence of length 128. In the case", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 89, + 598, + 507, + 611 + ], + "spans": [ + { + "bbox": [ + 89, + 601, + 100, + 610 + ], + "score": 1.0, + "content": "73", + "type": "text" + }, + { + "bbox": [ + 105, + 598, + 507, + 611 + ], + "score": 0.984, + "content": " when HW accelerator is used for matrix multiplication only, and activation to be computed at the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 89, + 609, + 507, + 622 + ], + "spans": [ + { + "bbox": [ + 89, + 612, + 100, + 621 + ], + "score": 1.0, + "content": "74", + "type": "text" + }, + { + "bbox": [ + 105, + 609, + 507, + 622 + ], + "score": 0.984, + "content": "CPU (what is common case for HW accelerators, optimized for CNN-models), the huge amount of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 89, + 620, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 89, + 623, + 100, + 632 + ], + "score": 1.0, + "content": "75", + "type": "text" + }, + { + "bbox": [ + 105, + 620, + 507, + 633 + ], + "score": 0.99, + "content": "data must be moved between CPU and the accelerator. Such data movement negatively impacts on", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 89, + 632, + 509, + 644 + ], + "spans": [ + { + "bbox": [ + 89, + 634, + 100, + 643 + ], + "score": 1.0, + "content": "76", + "type": "text" + }, + { + "bbox": [ + 105, + 632, + 509, + 644 + ], + "score": 0.982, + "content": " the overallcomputation time and power consumption, which can be critical for on-device inference.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 89, + 642, + 482, + 655 + ], + "spans": [ + { + "bbox": [ + 89, + 645, + 100, + 654 + ], + "score": 1.0, + "content": "77", + "type": "text" + }, + { + "bbox": [ + 106, + 642, + 482, + 655 + ], + "score": 0.986, + "content": "Therefore, HW accelerator must be able to compute softmax layer without CPU involvement.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + }, + { + "type": "title", + "bbox": [ + 90, + 669, + 310, + 682 + ], + "lines": [ + { + "bbox": [ + 87, + 668, + 311, + 685 + ], + "spans": [ + { + "bbox": [ + 87, + 668, + 311, + 685 + ], + "score": 0.967, + "content": " 78 3Related work and key contributions", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 93, + 693, + 499, + 705 + ], + "lines": [ + { + "bbox": [ + 91, + 693, + 500, + 707 + ], + "spans": [ + { + "bbox": [ + 91, + 693, + 374, + 707 + ], + "score": 0.999, + "content": "'9The common equation to compute softmax function over the input", + "type": "text" + }, + { + "bbox": [ + 374, + 697, + 381, + 703 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 693, + 500, + 707 + ], + "score": 0.999, + "content": "is a fraction as shown below:", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 712, + 394, + 723 + ], + "lines": [ + { + "bbox": [ + 118, + 711, + 394, + 725 + ], + "spans": [ + { + "bbox": [ + 118, + 711, + 394, + 725 + ], + "score": 0.986, + "content": "2https://coral.ai/docs/reference/edgetpu.learn.backprop.softmax_regression/", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 743, + 309, + 751 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 311, + 754 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 311, + 754 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "index", + "bbox": [ + 90, + 72, + 506, + 128 + ], + "lines": [ + { + "bbox": [ + 89, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 89, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "33", + "type": "text" + }, + { + "bbox": [ + 105, + 73, + 506, + 85 + ], + "score": 0.97, + "content": " in accuracy. Moreover, in [2O] it was shown that 8-bit quantized models provide the same or even", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 89, + 86, + 100, + 95 + ], + "score": 1.0, + "content": "34", + "type": "text" + }, + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 0.985, + "content": "higher accuracy as the full-precision models. Most of the above methods consider the quantization of", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 95, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 89, + 97, + 100, + 106 + ], + "score": 1.0, + "content": "35", + "type": "text" + }, + { + "bbox": [ + 105, + 95, + 506, + 106 + ], + "score": 0.984, + "content": "matrix multiplications operations only. However,as it is shown in [4],[24] in modern DNNs with", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 105, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 89, + 108, + 100, + 117 + ], + "score": 1.0, + "content": "36", + "type": "text" + }, + { + "bbox": [ + 105, + 105, + 507, + 119 + ], + "score": 0.976, + "content": " attention mechanism (e.g., Transformer, BERT, GPT-x) the softmax function is also used intensively,", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 117, + 473, + 129 + ], + "spans": [ + { + "bbox": [ + 89, + 119, + 100, + 128 + ], + "score": 1.0, + "content": "37", + "type": "text" + }, + { + "bbox": [ + 105, + 117, + 473, + 129 + ], + "score": 0.992, + "content": " especially at the longer sequence lengths,so it is necessary to optimize its for performance.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 133, + 507, + 145 + ], + "spans": [ + { + "bbox": [ + 89, + 135, + 100, + 145 + ], + "score": 1.0, + "content": "38", + "type": "text" + }, + { + "bbox": [ + 105, + 133, + 507, + 145 + ], + "score": 0.989, + "content": " In this paper we propose methods for efficient computation of the softmax layer at the HW accelerator.", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 143, + 507, + 157 + ], + "spans": [ + { + "bbox": [ + 89, + 146, + 100, + 155 + ], + "score": 1.0, + "content": "39", + "type": "text" + }, + { + "bbox": [ + 105, + 143, + 507, + 157 + ], + "score": 0.996, + "content": "The method is based on piece-wise-constant approximation and usage of LUTs. To the best of our", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 154, + 507, + 167 + ], + "spans": [ + { + "bbox": [ + 89, + 156, + 100, + 167 + ], + "score": 1.0, + "content": "40", + "type": "text" + }, + { + "bbox": [ + 105, + 154, + 507, + 167 + ], + "score": 0.997, + "content": "knowledge,it is the first paper where softmax quantization of the models with attention mechanism is", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 88, + 167, + 99, + 177 + ], + "score": 1.0, + "content": "41", + "type": "text" + }, + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "score": 0.988, + "content": "tested and verified on a variety of AI tasks.In Section 2 we show why our research is important and", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 177, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 88, + 178, + 100, + 188 + ], + "score": 1.0, + "content": "42", + "type": "text" + }, + { + "bbox": [ + 106, + 177, + 506, + 189 + ], + "score": 0.993, + "content": "valuable.In Section 3 we consider the drawbacks of existed softmax approximation methods in the", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 187, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 89, + 190, + 99, + 199 + ], + "score": 1.0, + "content": "43", + "type": "text" + }, + { + "bbox": [ + 105, + 187, + 507, + 200 + ], + "score": 0.988, + "content": " perspective of HW accelerator, and summarize the differentiation of our methods from the previous", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 100, + 210 + ], + "score": 1.0, + "content": "44", + "type": "text" + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 0.993, + "content": "arts.In Section 4 we describe the details of the proposed methods. Section 5 shows the experimental", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 208, + 431, + 223 + ], + "spans": [ + { + "bbox": [ + 89, + 212, + 100, + 221 + ], + "score": 1.0, + "content": "45", + "type": "text" + }, + { + "bbox": [ + 104, + 208, + 431, + 223 + ], + "score": 0.986, + "content": " validation over different models and datasets, and Section 6 concludes the paper.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 2, + "bbox_fs": [ + 89, + 73, + 507, + 129 + ] + }, + { + "type": "index", + "bbox": [ + 90, + 133, + 506, + 221 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 88, + 133, + 507, + 223 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 93, + 235, + 270, + 249 + ], + "lines": [ + { + "bbox": [ + 88, + 235, + 271, + 251 + ], + "spans": [ + { + "bbox": [ + 88, + 235, + 271, + 251 + ], + "score": 0.964, + "content": "162 Background and motivation", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "index", + "bbox": [ + 89, + 260, + 506, + 424 + ], + "lines": [ + { + "bbox": [ + 89, + 260, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 89, + 262, + 100, + 272 + ], + "score": 1.0, + "content": "47", + "type": "text" + }, + { + "bbox": [ + 105, + 260, + 506, + 273 + ], + "score": 0.972, + "content": " Modern GPUs are powerful, but big, expensive, and power-hungry. Therefore, alternative HW", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 271, + 507, + 284 + ], + "spans": [ + { + "bbox": [ + 89, + 273, + 100, + 283 + ], + "score": 1.0, + "content": "48", + "type": "text" + }, + { + "bbox": [ + 105, + 271, + 507, + 284 + ], + "score": 0.986, + "content": " accelerators (e.g., NPU) for on-device inference are under active development by diferent vendors,", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 89, + 284, + 100, + 294 + ], + "score": 1.0, + "content": "49", + "type": "text" + }, + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "score": 0.986, + "content": " especially for Federated Learning and Edge computing. However, such devices mostly are focused on", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 293, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 89, + 295, + 100, + 305 + ], + "score": 1.0, + "content": "50", + "type": "text" + }, + { + "bbox": [ + 106, + 293, + 506, + 305 + ], + "score": 0.998, + "content": "the acceleration of matrix multiplication operations,and do not include means to compute complex", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 303, + 507, + 317 + ], + "spans": [ + { + "bbox": [ + 89, + 306, + 99, + 316 + ], + "score": 1.0, + "content": "51", + "type": "text" + }, + { + "bbox": [ + 105, + 303, + 507, + 317 + ], + "score": 0.983, + "content": "activation functions. Typically,in such devices the data is sent outside of the accelerator to compute", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 89, + 317, + 100, + 326 + ], + "score": 1.0, + "content": "52", + "type": "text" + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 0.991, + "content": "activations on host CPU.For example,according to the guidelines of Coral (TM),a softmax layer of", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 324, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 89, + 328, + 100, + 338 + ], + "score": 1.0, + "content": "53", + "type": "text" + }, + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "score": 0.991, + "content": " DNN model in Edge TPU have to be run on host CPU ², what is acceptable for traditional CV tasks", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 336, + 507, + 350 + ], + "spans": [ + { + "bbox": [ + 89, + 339, + 100, + 348 + ], + "score": 1.0, + "content": "54", + "type": "text" + }, + { + "bbox": [ + 105, + 336, + 507, + 350 + ], + "score": 0.987, + "content": "(which are typically uni-directional, have minimum dependencies, and softmax layer is located at the", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 89, + 349, + 100, + 360 + ], + "score": 1.0, + "content": "55", + "type": "text" + }, + { + "bbox": [ + 105, + 347, + 506, + 361 + ], + "score": 0.99, + "content": " end of the computational graph of DNN model), however is very inefficient for NLP tasks (which are", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 89, + 361, + 100, + 371 + ], + "score": 1.0, + "content": "56", + "type": "text" + }, + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "score": 0.994, + "content": " typically more complicated with a lot of dependencies and active employment of softmax layer in the", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 89, + 371, + 100, + 381 + ], + "score": 1.0, + "content": "57", + "type": "text" + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "score": 0.99, + "content": "middle of DNN model). In opposite to traditional logic-centric approach, some researches are trying", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 89, + 382, + 100, + 392 + ], + "score": 1.0, + "content": "58", + "type": "text" + }, + { + "bbox": [ + 104, + 380, + 506, + 394 + ], + "score": 0.99, + "content": " to perform computation closer to the memory (so called memory-centric approach). For example", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 389, + 507, + 406 + ], + "spans": [ + { + "bbox": [ + 89, + 393, + 100, + 403 + ], + "score": 1.0, + "content": "59", + "type": "text" + }, + { + "bbox": [ + 104, + 389, + 507, + 406 + ], + "score": 0.98, + "content": " in [23], there is shown a DRAM-based AI accelerator. This approach allows significantly speed-up", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 402, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 89, + 404, + 100, + 414 + ], + "score": 1.0, + "content": "60", + "type": "text" + }, + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "score": 0.983, + "content": "the overall computation process, but for the computation of the activations the data should also be", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 414, + 435, + 425 + ], + "spans": [ + { + "bbox": [ + 89, + 415, + 100, + 425 + ], + "score": 1.0, + "content": "61", + "type": "text" + }, + { + "bbox": [ + 105, + 414, + 435, + 425 + ], + "score": 0.989, + "content": "moved to host processor, what is an even bigger issue in the DRAM environment.", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 429, + 507, + 442 + ], + "spans": [ + { + "bbox": [ + 89, + 432, + 100, + 441 + ], + "score": 1.0, + "content": "62", + "type": "text" + }, + { + "bbox": [ + 105, + 429, + 507, + 442 + ], + "score": 0.966, + "content": "The Eq.(1) from [27] describes how attention is computed in the model. This particular form,", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 439, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 89, + 442, + 99, + 452 + ], + "score": 1.0, + "content": "63", + "type": "text" + }, + { + "bbox": [ + 104, + 439, + 506, + 454 + ], + "score": 0.993, + "content": " named \"scaled dot-product attention\" takes the matrix multiplication product of queries and keys", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 448, + 509, + 468 + ], + "spans": [ + { + "bbox": [ + 89, + 454, + 100, + 464 + ], + "score": 1.0, + "content": "64", + "type": "text" + }, + { + "bbox": [ + 103, + 448, + 118, + 468 + ], + "score": 0.983, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 451, + 159, + 463 + ], + "score": 0.91, + "content": "\\mathbf { R } ^ { N \\times L \\times H }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 448, + 312, + 468 + ], + "score": 0.941, + "content": "as input forthesoftmaxlayer where", + "type": "text" + }, + { + "bbox": [ + 313, + 453, + 323, + 463 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 448, + 428, + 468 + ], + "score": 0.983, + "content": "means number of heads,", + "type": "text" + }, + { + "bbox": [ + 428, + 453, + 436, + 463 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 448, + 509, + 468 + ], + "score": 0.998, + "content": "means sequence", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 463, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 89, + 466, + 100, + 475 + ], + "score": 1.0, + "content": "65", + "type": "text" + }, + { + "bbox": [ + 105, + 463, + 150, + 477 + ], + "score": 1.0, + "content": "length and", + "type": "text" + }, + { + "bbox": [ + 150, + 464, + 160, + 474 + ], + "score": 0.8, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 463, + 507, + 477 + ], + "score": 0.987, + "content": "means hidden size for the case where batch size equals to 1. In other words, performing", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 89, + 477, + 100, + 486 + ], + "score": 1.0, + "content": "66", + "type": "text" + }, + { + "bbox": [ + 108, + 474, + 162, + 486 + ], + "score": 0.88, + "content": "( N ^ { \\mathbf { \\bar { \\nu } } } \\times L \\times L )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 474, + 506, + 487 + ], + "score": 0.986, + "content": "softmax operations is required per one attention. Furthermore,encoder in typical", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 89, + 488, + 100, + 497 + ], + "score": 1.0, + "content": "67", + "type": "text" + }, + { + "bbox": [ + 105, + 484, + 351, + 498 + ], + "score": 0.997, + "content": " transformer consists of six multi-head attentions which means", + "type": "text" + }, + { + "bbox": [ + 352, + 486, + 421, + 497 + ], + "score": 0.9, + "content": "6 \\times ( N \\times L \\times L )", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 484, + 506, + 498 + ], + "score": 0.999, + "content": "operation is required", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 89, + 498, + 100, + 508 + ], + "score": 1.0, + "content": "68", + "type": "text" + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 0.99, + "content": "for encoder solely. Assuming the number of heads is 8 and sequence length is 128, it already takes", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 89, + 510, + 100, + 519 + ], + "score": 1.0, + "content": "69", + "type": "text" + }, + { + "bbox": [ + 106, + 507, + 506, + 519 + ], + "score": 0.995, + "content": "786,432 operations for softmax of the transformer encoder. This overhead increases as number of", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 519, + 456, + 531 + ], + "spans": [ + { + "bbox": [ + 89, + 521, + 100, + 530 + ], + "score": 1.0, + "content": "70", + "type": "text" + }, + { + "bbox": [ + 105, + 519, + 456, + 531 + ], + "score": 0.993, + "content": "heads and sequence length increases which is typical case for high-performing models.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + } + ], + "index": 21, + "bbox_fs": [ + 89, + 260, + 507, + 425 + ] + }, + { + "type": "index", + "bbox": [ + 89, + 429, + 506, + 530 + ], + "lines": [], + "index": 33, + "bbox_fs": [ + 89, + 429, + 509, + 531 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 542, + 403, + 570 + ], + "lines": [ + { + "bbox": [ + 210, + 542, + 403, + 570 + ], + "spans": [ + { + "bbox": [ + 210, + 542, + 403, + 570 + ], + "score": 0.92, + "content": "A t t e n t i o n ( Q , K , V ) = S o f t m a x \\left( \\frac { Q K ^ { T } } { \\sqrt { d _ { K } } } \\right) V", + "type": "interline_equation", + "image_path": "2181d68a11352a1504787146df9a48b0cf9ff24ed9fa565eb281c5e574c5f139.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 542, + 403, + 556.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 210, + 556.0, + 403, + 570.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "index", + "bbox": [ + 90, + 576, + 506, + 654 + ], + "lines": [ + { + "bbox": [ + 89, + 577, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 89, + 579, + 99, + 588 + ], + "score": 1.0, + "content": "71", + "type": "text" + }, + { + "bbox": [ + 105, + 577, + 255, + 590 + ], + "score": 0.997, + "content": "For example, it requires performing", + "type": "text" + }, + { + "bbox": [ + 255, + 577, + 410, + 589 + ], + "score": 0.89, + "content": "1 2 \\times ( 1 2 \\times 1 2 8 \\times 1 2 8 ) = 2 , 3 5 9 , 2 9 6", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 577, + 507, + 590 + ], + "score": 0.996, + "content": "softmax operations for", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 588, + 507, + 600 + ], + "spans": [ + { + "bbox": [ + 89, + 590, + 100, + 600 + ], + "score": 1.0, + "content": "72", + "type": "text" + }, + { + "bbox": [ + 105, + 588, + 507, + 600 + ], + "score": 0.991, + "content": "one sample inference for typical BERT configuration [5] over sequence of length 128. In the case", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 598, + 507, + 611 + ], + "spans": [ + { + "bbox": [ + 89, + 601, + 100, + 610 + ], + "score": 1.0, + "content": "73", + "type": "text" + }, + { + "bbox": [ + 105, + 598, + 507, + 611 + ], + "score": 0.984, + "content": " when HW accelerator is used for matrix multiplication only, and activation to be computed at the", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 609, + 507, + 622 + ], + "spans": [ + { + "bbox": [ + 89, + 612, + 100, + 621 + ], + "score": 1.0, + "content": "74", + "type": "text" + }, + { + "bbox": [ + 105, + 609, + 507, + 622 + ], + "score": 0.984, + "content": "CPU (what is common case for HW accelerators, optimized for CNN-models), the huge amount of", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 620, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 89, + 623, + 100, + 632 + ], + "score": 1.0, + "content": "75", + "type": "text" + }, + { + "bbox": [ + 105, + 620, + 507, + 633 + ], + "score": 0.99, + "content": "data must be moved between CPU and the accelerator. Such data movement negatively impacts on", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 632, + 509, + 644 + ], + "spans": [ + { + "bbox": [ + 89, + 634, + 100, + 643 + ], + "score": 1.0, + "content": "76", + "type": "text" + }, + { + "bbox": [ + 105, + 632, + 509, + 644 + ], + "score": 0.982, + "content": " the overallcomputation time and power consumption, which can be critical for on-device inference.", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 642, + 482, + 655 + ], + "spans": [ + { + "bbox": [ + 89, + 645, + 100, + 654 + ], + "score": 1.0, + "content": "77", + "type": "text" + }, + { + "bbox": [ + 106, + 642, + 482, + 655 + ], + "score": 0.986, + "content": "Therefore, HW accelerator must be able to compute softmax layer without CPU involvement.", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + } + ], + "index": 43, + "bbox_fs": [ + 89, + 577, + 509, + 655 + ] + }, + { + "type": "title", + "bbox": [ + 90, + 669, + 310, + 682 + ], + "lines": [ + { + "bbox": [ + 87, + 668, + 311, + 685 + ], + "spans": [ + { + "bbox": [ + 87, + 668, + 311, + 685 + ], + "score": 0.967, + "content": " 78 3Related work and key contributions", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 93, + 693, + 499, + 705 + ], + "lines": [ + { + "bbox": [ + 91, + 693, + 500, + 707 + ], + "spans": [ + { + "bbox": [ + 91, + 693, + 374, + 707 + ], + "score": 0.999, + "content": "'9The common equation to compute softmax function over the input", + "type": "text" + }, + { + "bbox": [ + 374, + 697, + 381, + 703 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 693, + 500, + 707 + ], + "score": 0.999, + "content": "is a fraction as shown below:", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48, + "bbox_fs": [ + 91, + 693, + 500, + 707 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 241, + 82, + 370, + 108 + ], + "lines": [ + { + "bbox": [ + 241, + 82, + 370, + 108 + ], + "spans": [ + { + "bbox": [ + 241, + 82, + 370, + 108 + ], + "score": 0.93, + "content": "\\sigma ( x _ { i } ) = \\frac { e ^ { x _ { i } } } { \\Sigma e ^ { x _ { i } } } = \\frac { e ^ { x _ { i } - m a x ( x ) } } { \\Sigma e ^ { x _ { i } - m a x ( x ) } }", + "type": "interline_equation", + "image_path": "3ef719ad199ed10bb386f869d510c72f28f844604126e4dc885e5655f56702ff.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 241, + 82, + 370, + 108 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "text", + "bbox": [ + 90, + 116, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 89, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 89, + 118, + 100, + 128 + ], + "score": 1.0, + "content": "80", + "type": "text" + }, + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "score": 0.996, + "content": "There are different ways to implement it. For example, some approaches straightforwardly compute", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 89, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 128, + 99, + 138 + ], + "score": 1.0, + "content": "81", + "type": "text" + }, + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "score": 0.982, + "content": "the numerator and denominator firstly,and then a division operation is performed. In such case the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 89, + 140, + 100, + 150 + ], + "score": 1.0, + "content": "82", + "type": "text" + }, + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "score": 0.98, + "content": "HW accelerator should contain a divider, what requires additional HW costs and can also cause", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 149, + 341, + 161 + ], + "spans": [ + { + "bbox": [ + 89, + 151, + 100, + 160 + ], + "score": 1.0, + "content": "83", + "type": "text" + }, + { + "bbox": [ + 106, + 149, + 341, + 161 + ], + "score": 0.984, + "content": "performance degradation, if divider is not fully pipe-lined.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 88, + 164, + 506, + 396 + ], + "lines": [ + { + "bbox": [ + 89, + 165, + 507, + 178 + ], + "spans": [ + { + "bbox": [ + 89, + 167, + 100, + 177 + ], + "score": 1.0, + "content": "84", + "type": "text" + }, + { + "bbox": [ + 105, + 165, + 507, + 178 + ], + "score": 0.991, + "content": "In [25] it is proposed to use basic-split calculation method, which allows to split the exponentiation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 177, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 89, + 178, + 99, + 188 + ], + "score": 1.0, + "content": "85", + "type": "text" + }, + { + "bbox": [ + 105, + 177, + 506, + 188 + ], + "score": 0.988, + "content": "calculation of the softmax into several specific basics which are implemented by LUT (ROM). It", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 89, + 187, + 507, + 199 + ], + "spans": [ + { + "bbox": [ + 89, + 189, + 99, + 199 + ], + "score": 1.0, + "content": "86", + "type": "text" + }, + { + "bbox": [ + 105, + 187, + 507, + 199 + ], + "score": 0.975, + "content": " allows to simplify the complexity of hardware and signal propagation delay. However, to recover", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 199, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 99, + 210 + ], + "score": 1.0, + "content": "87", + "type": "text" + }, + { + "bbox": [ + 106, + 199, + 506, + 210 + ], + "score": 0.99, + "content": "the whole computed value of exponent some additional multiplications are needed. Moreover, to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 209, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 89, + 211, + 99, + 220 + ], + "score": 1.0, + "content": "88", + "type": "text" + }, + { + "bbox": [ + 105, + 209, + 507, + 222 + ], + "score": 0.976, + "content": "obtain the final value of softmax the division is stillused. In [30] it is proposed to add threshold", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 220, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 99, + 232 + ], + "score": 1.0, + "content": "89", + "type": "text" + }, + { + "bbox": [ + 105, + 220, + 507, + 233 + ], + "score": 0.993, + "content": "layers to accelerate the training speed and replace the Euler's base value with a dynamic base value", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 89, + 233, + 99, + 243 + ], + "score": 1.0, + "content": "90", + "type": "text" + }, + { + "bbox": [ + 105, + 231, + 409, + 243 + ], + "score": 0.991, + "content": "to improve the network accuracy. Such approach allowed to save up to", + "type": "text" + }, + { + "bbox": [ + 409, + 231, + 429, + 241 + ], + "score": 0.87, + "content": "15 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 231, + 506, + 243 + ], + "score": 0.992, + "content": "of training model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 89, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 89, + 244, + 99, + 253 + ], + "score": 1.0, + "content": "91", + "type": "text" + }, + { + "bbox": [ + 105, + 242, + 284, + 255 + ], + "score": 0.998, + "content": "convergence time and also increase by 3 to", + "type": "text" + }, + { + "bbox": [ + 284, + 242, + 299, + 252 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 242, + 506, + 255 + ], + "score": 0.991, + "content": " the average accuracy. But during the computation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 89, + 255, + 99, + 264 + ], + "score": 1.0, + "content": "92", + "type": "text" + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 0.979, + "content": "of softmax the divider is still used. In [17] the combination of LUT and multi-segment polynomial", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 263, + 507, + 276 + ], + "spans": [ + { + "bbox": [ + 89, + 266, + 99, + 276 + ], + "score": 1.0, + "content": "93", + "type": "text" + }, + { + "bbox": [ + 105, + 263, + 507, + 276 + ], + "score": 0.994, + "content": "fiting have been used to compute exponential operations of integer and fractional parts in separate.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 274, + 507, + 287 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 99, + 286 + ], + "score": 1.0, + "content": "94", + "type": "text" + }, + { + "bbox": [ + 105, + 274, + 507, + 287 + ], + "score": 0.984, + "content": "In addition, they adopt radix-4 Booth-Wallce based multiplier for computing the whole value", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 285, + 507, + 298 + ], + "spans": [ + { + "bbox": [ + 89, + 288, + 100, + 297 + ], + "score": 1.0, + "content": "95", + "type": "text" + }, + { + "bbox": [ + 105, + 285, + 507, + 298 + ], + "score": 0.997, + "content": "of exponent,and modified shift-compare divider for computation of the final value of softmax.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 297, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 89, + 298, + 100, + 308 + ], + "score": 1.0, + "content": "96", + "type": "text" + }, + { + "bbox": [ + 105, + 297, + 506, + 308 + ], + "score": 0.992, + "content": "To avoid big area costs for traditional divider, the authors in [8] propose to reduce the operand", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 307, + 507, + 320 + ], + "spans": [ + { + "bbox": [ + 89, + 309, + 99, + 319 + ], + "score": 1.0, + "content": "97", + "type": "text" + }, + { + "bbox": [ + 105, + 307, + 507, + 320 + ], + "score": 0.978, + "content": "bit-width,and approximate exponential and division operations with cost-effective addition and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 317, + 507, + 332 + ], + "spans": [ + { + "bbox": [ + 89, + 321, + 99, + 330 + ], + "score": 1.0, + "content": "98", + "type": "text" + }, + { + "bbox": [ + 105, + 317, + 507, + 332 + ], + "score": 0.988, + "content": "bit shifts operations. In their design they have approximated the division operation in Eq. (2) by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 328, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 89, + 332, + 100, + 341 + ], + "score": 1.0, + "content": "99", + "type": "text" + }, + { + "bbox": [ + 105, + 328, + 268, + 343 + ], + "score": 0.99, + "content": " replacing the denominator with closest", + "type": "text" + }, + { + "bbox": [ + 268, + 329, + 279, + 339 + ], + "score": 0.84, + "content": "\\dot { 2 } ^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 328, + 334, + 343 + ], + "score": 0.992, + "content": "value, where", + "type": "text" + }, + { + "bbox": [ + 335, + 330, + 340, + 339 + ], + "score": 0.69, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 328, + 507, + 343 + ], + "score": 0.989, + "content": " is some integer constant. Then division", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 86, + 340, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 86, + 342, + 100, + 352 + ], + "score": 0.999, + "content": "100", + "type": "text" + }, + { + "bbox": [ + 104, + 340, + 507, + 353 + ], + "score": 0.987, + "content": "is implemented just as simple bit shifts operation. In [24] it is proposed to replace the base as", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 86, + 349, + 507, + 364 + ], + "spans": [ + { + "bbox": [ + 86, + 353, + 99, + 363 + ], + "score": 1.0, + "content": "101", + "type": "text" + }, + { + "bbox": [ + 107, + 351, + 143, + 361 + ], + "score": 0.9, + "content": "e ^ { x } \\to 2 ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 349, + 507, + 364 + ], + "score": 0.993, + "content": ", then all computations are more hardware-friendly, however the division operation is still", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 86, + 362, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 86, + 364, + 100, + 374 + ], + "score": 1.0, + "content": "102", + "type": "text" + }, + { + "bbox": [ + 105, + 362, + 506, + 375 + ], + "score": 0.979, + "content": " required. Also, to restore accuracy a fine-tuning of the model is needed, what is not applicable", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 86, + 373, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 86, + 375, + 100, + 385 + ], + "score": 1.0, + "content": "103", + "type": "text" + }, + { + "bbox": [ + 105, + 373, + 506, + 386 + ], + "score": 0.988, + "content": " for post-training quantization paradigm. Although the methods described above are decreasing the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 87, + 383, + 462, + 396 + ], + "spans": [ + { + "bbox": [ + 87, + 386, + 99, + 395 + ], + "score": 1.0, + "content": "104", + "type": "text" + }, + { + "bbox": [ + 105, + 383, + 462, + 396 + ], + "score": 0.985, + "content": "hardware complexity of softmax computation they all still rely on the division operation.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 86, + 400, + 506, + 521 + ], + "lines": [ + { + "bbox": [ + 86, + 400, + 507, + 414 + ], + "spans": [ + { + "bbox": [ + 86, + 402, + 100, + 412 + ], + "score": 1.0, + "content": "105", + "type": "text" + }, + { + "bbox": [ + 105, + 400, + 507, + 414 + ], + "score": 0.988, + "content": "To avoid division operation at all, some other solutions apply the logarithmic transformation to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 86, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 86, + 414, + 100, + 423 + ], + "score": 1.0, + "content": "106", + "type": "text" + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 0.995, + "content": "the original softmax function,and thus substitute costly division operation by subtraction of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 86, + 421, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 86, + 424, + 100, + 434 + ], + "score": 1.0, + "content": "107", + "type": "text" + }, + { + "bbox": [ + 105, + 421, + 507, + 434 + ], + "score": 0.992, + "content": "logarithm. In [34], for example, it is proposed to use a logarithmic operation implemented as a LUT", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 86, + 433, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 86, + 435, + 100, + 444 + ], + "score": 1.0, + "content": "108", + "type": "text" + }, + { + "bbox": [ + 106, + 433, + 506, + 445 + ], + "score": 0.991, + "content": "and a subtractor to replace the division operation, what allows to further decrease the complexity of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 86, + 443, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 86, + 445, + 100, + 456 + ], + "score": 0.997, + "content": "109", + "type": "text" + }, + { + "bbox": [ + 105, + 443, + 507, + 457 + ], + "score": 0.984, + "content": "hardware,as well critical path of the whole design. In [10] simplified version of Integral Stochastic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 86, + 454, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 86, + 457, + 100, + 466 + ], + "score": 1.0, + "content": "110", + "type": "text" + }, + { + "bbox": [ + 105, + 454, + 507, + 468 + ], + "score": 0.995, + "content": "Computation is used in order to build FSM-based exponentiation. Division operation is substituted", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 85, + 465, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 85, + 468, + 99, + 478 + ], + "score": 1.0, + "content": "111", + "type": "text" + }, + { + "bbox": [ + 105, + 465, + 507, + 479 + ], + "score": 0.978, + "content": "by LUT-based logarithmic operation and subtraction, similarly to [34]. In [31] the authors are further", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 86, + 476, + 508, + 490 + ], + "spans": [ + { + "bbox": [ + 86, + 479, + 100, + 488 + ], + "score": 1.0, + "content": "112", + "type": "text" + }, + { + "bbox": [ + 105, + 476, + 508, + 490 + ], + "score": 0.997, + "content": "developing the method proposed in [34], by applying mathematical transformations and linear fitting.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 86, + 488, + 508, + 500 + ], + "spans": [ + { + "bbox": [ + 86, + 490, + 100, + 499 + ], + "score": 1.0, + "content": "113", + "type": "text" + }, + { + "bbox": [ + 106, + 488, + 508, + 500 + ], + "score": 0.991, + "content": "After optimization,their final design includes only shift operations,leading one detector, and adders.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 86, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 86, + 501, + 100, + 510 + ], + "score": 1.0, + "content": "114", + "type": "text" + }, + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "score": 0.984, + "content": "Finally, there are some extreme approximation cases represented in [13] and [28], where logarithmic", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 86, + 509, + 296, + 522 + ], + "spans": [ + { + "bbox": [ + 86, + 512, + 100, + 521 + ], + "score": 1.0, + "content": "115", + "type": "text" + }, + { + "bbox": [ + 105, + 509, + 296, + 522 + ], + "score": 0.981, + "content": "computation and subtraction are skipped at all.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 87, + 525, + 507, + 658 + ], + "lines": [ + { + "bbox": [ + 86, + 526, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 86, + 528, + 100, + 537 + ], + "score": 1.0, + "content": "116", + "type": "text" + }, + { + "bbox": [ + 106, + 526, + 506, + 538 + ], + "score": 0.988, + "content": "Despite its atractiveness,logarithmic transformation approach can be used only in the cases when", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 86, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 86, + 539, + 99, + 548 + ], + "score": 0.995, + "content": "117", + "type": "text" + }, + { + "bbox": [ + 106, + 537, + 506, + 549 + ], + "score": 0.982, + "content": " softmax layer is the last layer in DNN and its functionality is simply“scoring”among the candidates", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 86, + 546, + 508, + 562 + ], + "spans": [ + { + "bbox": [ + 86, + 550, + 100, + 559 + ], + "score": 1.0, + "content": "118", + "type": "text" + }, + { + "bbox": [ + 104, + 546, + 508, + 562 + ], + "score": 0.988, + "content": "for classification tasks. However,if softmax layer is used inside of computational graph of DNN (e.g.,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 86, + 558, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 86, + 560, + 100, + 571 + ], + "score": 1.0, + "content": "119", + "type": "text" + }, + { + "bbox": [ + 105, + 558, + 507, + 572 + ], + "score": 0.986, + "content": "DNNs with attention-mechanism) then error caused by quantizations will be accumulated drastically,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 86, + 568, + 507, + 584 + ], + "spans": [ + { + "bbox": [ + 86, + 571, + 100, + 582 + ], + "score": 1.0, + "content": "120", + "type": "text" + }, + { + "bbox": [ + 104, + 568, + 507, + 584 + ], + "score": 0.991, + "content": " directly impacting on the final accuracy.For example,in Table 1 there is shown the averaged accuracy", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 86, + 580, + 508, + 593 + ], + "spans": [ + { + "bbox": [ + 86, + 582, + 100, + 592 + ], + "score": 1.0, + "content": "121", + "type": "text" + }, + { + "bbox": [ + 105, + 580, + 508, + 593 + ], + "score": 0.996, + "content": "drop for DETR models caused by a softmax approximation in uint8 precision by some prior arts.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 86, + 590, + 507, + 605 + ], + "spans": [ + { + "bbox": [ + 86, + 593, + 100, + 604 + ], + "score": 1.0, + "content": "122", + "type": "text" + }, + { + "bbox": [ + 105, + 590, + 507, + 605 + ], + "score": 0.985, + "content": " As it can be seen from the Table 1,a straightforward usage of Eq.(2) from [31] causes big accuracy", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 86, + 602, + 507, + 615 + ], + "spans": [ + { + "bbox": [ + 86, + 604, + 100, + 614 + ], + "score": 1.0, + "content": "123", + "type": "text" + }, + { + "bbox": [ + 105, + 602, + 482, + 615 + ], + "score": 0.989, + "content": "drop,and even after applying some improvements to the original method (shown as case Eq.", + "type": "text" + }, + { + "bbox": [ + 482, + 603, + 501, + 614 + ], + "score": 0.72, + "content": "( 2 ) +", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 602, + 507, + 615 + ], + "score": 0.562, + "content": "),", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 86, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 86, + 615, + 100, + 626 + ], + "score": 1.0, + "content": "124", + "type": "text" + }, + { + "bbox": [ + 106, + 614, + 227, + 626 + ], + "score": 0.974, + "content": "the accuracy drop is still high (", + "type": "text" + }, + { + "bbox": [ + 227, + 614, + 242, + 624 + ], + "score": 0.83, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 614, + 253, + 626 + ], + "score": 0.993, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 253, + 613, + 272, + 624 + ], + "score": 0.87, + "content": "19 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 614, + 506, + 626 + ], + "score": 0.981, + "content": ").For more details of the prior arts experiments please refer", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 86, + 624, + 507, + 637 + ], + "spans": [ + { + "bbox": [ + 86, + 626, + 100, + 636 + ], + "score": 1.0, + "content": "125", + "type": "text" + }, + { + "bbox": [ + 105, + 624, + 507, + 637 + ], + "score": 0.98, + "content": " to Appendix A.1. However, if for the same conditions we use the method proposed in Section 4.1, we", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 86, + 635, + 507, + 647 + ], + "spans": [ + { + "bbox": [ + 86, + 636, + 100, + 647 + ], + "score": 1.0, + "content": "126", + "type": "text" + }, + { + "bbox": [ + 105, + 635, + 257, + 647 + ], + "score": 0.998, + "content": "can see that accuracy drop reduced by", + "type": "text" + }, + { + "bbox": [ + 258, + 636, + 272, + 646 + ], + "score": 0.85, + "content": "\\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 635, + 282, + 647 + ], + "score": 0.991, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 283, + 635, + 302, + 646 + ], + "score": 0.88, + "content": "\\times 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 635, + 388, + 647 + ], + "score": 0.975, + "content": "times,and it is below", + "type": "text" + }, + { + "bbox": [ + 388, + 635, + 411, + 646 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 635, + 507, + 647 + ], + "score": 0.996, + "content": "for plain DETR models", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 86, + 646, + 246, + 659 + ], + "spans": [ + { + "bbox": [ + 86, + 648, + 100, + 658 + ], + "score": 1.0, + "content": "127", + "type": "text" + }, + { + "bbox": [ + 105, + 646, + 246, + 659 + ], + "score": 0.988, + "content": "(no DC5 dilation at the last stage).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 87, + 662, + 507, + 695 + ], + "lines": [ + { + "bbox": [ + 87, + 662, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 87, + 664, + 100, + 674 + ], + "score": 1.0, + "content": "128", + "type": "text" + }, + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "score": 0.995, + "content": "The work presented in this paper has focused on the development of methods for efficient computation", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 87, + 674, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 87, + 676, + 99, + 684 + ], + "score": 1.0, + "content": "129", + "type": "text" + }, + { + "bbox": [ + 106, + 674, + 506, + 685 + ], + "score": 0.99, + "content": "of softmax layer during the inference at the edge devices, what usually have limited computational", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 86, + 685, + 316, + 696 + ], + "spans": [ + { + "bbox": [ + 86, + 686, + 100, + 696 + ], + "score": 1.0, + "content": "130", + "type": "text" + }, + { + "bbox": [ + 105, + 685, + 316, + 696 + ], + "score": 0.984, + "content": " power and suffer from constraints of the bandwidth.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 88, + 700, + 506, + 723 + ], + "lines": [ + { + "bbox": [ + 87, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 87, + 703, + 100, + 711 + ], + "score": 1.0, + "content": "131", + "type": "text" + }, + { + "bbox": [ + 104, + 700, + 506, + 713 + ], + "score": 0.991, + "content": "Previous works for HW accelerator of softmax layer are focused on the logic-centric approach and", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 85, + 711, + 508, + 724 + ], + "spans": [ + { + "bbox": [ + 85, + 711, + 508, + 724 + ], + "score": 0.984, + "content": " 132used dedicated hardware for its implementation. In such case the utilization of hardware is low,", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 52.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 303, + 743, + 309, + 751 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 753 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 241, + 82, + 370, + 108 + ], + "lines": [ + { + "bbox": [ + 241, + 82, + 370, + 108 + ], + "spans": [ + { + "bbox": [ + 241, + 82, + 370, + 108 + ], + "score": 0.93, + "content": "\\sigma ( x _ { i } ) = \\frac { e ^ { x _ { i } } } { \\Sigma e ^ { x _ { i } } } = \\frac { e ^ { x _ { i } - m a x ( x ) } } { \\Sigma e ^ { x _ { i } - m a x ( x ) } }", + "type": "interline_equation", + "image_path": "3ef719ad199ed10bb386f869d510c72f28f844604126e4dc885e5655f56702ff.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 241, + 82, + 370, + 108 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "index", + "bbox": [ + 90, + 116, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 89, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 89, + 118, + 100, + 128 + ], + "score": 1.0, + "content": "80", + "type": "text" + }, + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "score": 0.996, + "content": "There are different ways to implement it. For example, some approaches straightforwardly compute", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 128, + 99, + 138 + ], + "score": 1.0, + "content": "81", + "type": "text" + }, + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "score": 0.982, + "content": "the numerator and denominator firstly,and then a division operation is performed. In such case the", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 89, + 140, + 100, + 150 + ], + "score": 1.0, + "content": "82", + "type": "text" + }, + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "score": 0.98, + "content": "HW accelerator should contain a divider, what requires additional HW costs and can also cause", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 149, + 341, + 161 + ], + "spans": [ + { + "bbox": [ + 89, + 151, + 100, + 160 + ], + "score": 1.0, + "content": "83", + "type": "text" + }, + { + "bbox": [ + 106, + 149, + 341, + 161 + ], + "score": 0.984, + "content": "performance degradation, if divider is not fully pipe-lined.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 165, + 507, + 178 + ], + "spans": [ + { + "bbox": [ + 89, + 167, + 100, + 177 + ], + "score": 1.0, + "content": "84", + "type": "text" + }, + { + "bbox": [ + 105, + 165, + 507, + 178 + ], + "score": 0.991, + "content": "In [25] it is proposed to use basic-split calculation method, which allows to split the exponentiation", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 177, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 89, + 178, + 99, + 188 + ], + "score": 1.0, + "content": "85", + "type": "text" + }, + { + "bbox": [ + 105, + 177, + 506, + 188 + ], + "score": 0.988, + "content": "calculation of the softmax into several specific basics which are implemented by LUT (ROM). It", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 187, + 507, + 199 + ], + "spans": [ + { + "bbox": [ + 89, + 189, + 99, + 199 + ], + "score": 1.0, + "content": "86", + "type": "text" + }, + { + "bbox": [ + 105, + 187, + 507, + 199 + ], + "score": 0.975, + "content": " allows to simplify the complexity of hardware and signal propagation delay. However, to recover", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 199, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 89, + 200, + 99, + 210 + ], + "score": 1.0, + "content": "87", + "type": "text" + }, + { + "bbox": [ + 106, + 199, + 506, + 210 + ], + "score": 0.99, + "content": "the whole computed value of exponent some additional multiplications are needed. Moreover, to", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 209, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 89, + 211, + 99, + 220 + ], + "score": 1.0, + "content": "88", + "type": "text" + }, + { + "bbox": [ + 105, + 209, + 507, + 222 + ], + "score": 0.976, + "content": "obtain the final value of softmax the division is stillused. In [30] it is proposed to add threshold", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 220, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 99, + 232 + ], + "score": 1.0, + "content": "89", + "type": "text" + }, + { + "bbox": [ + 105, + 220, + 507, + 233 + ], + "score": 0.993, + "content": "layers to accelerate the training speed and replace the Euler's base value with a dynamic base value", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 89, + 233, + 99, + 243 + ], + "score": 1.0, + "content": "90", + "type": "text" + }, + { + "bbox": [ + 105, + 231, + 409, + 243 + ], + "score": 0.991, + "content": "to improve the network accuracy. Such approach allowed to save up to", + "type": "text" + }, + { + "bbox": [ + 409, + 231, + 429, + 241 + ], + "score": 0.87, + "content": "15 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 231, + 506, + 243 + ], + "score": 0.992, + "content": "of training model", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 89, + 244, + 99, + 253 + ], + "score": 1.0, + "content": "91", + "type": "text" + }, + { + "bbox": [ + 105, + 242, + 284, + 255 + ], + "score": 0.998, + "content": "convergence time and also increase by 3 to", + "type": "text" + }, + { + "bbox": [ + 284, + 242, + 299, + 252 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 242, + 506, + 255 + ], + "score": 0.991, + "content": " the average accuracy. But during the computation", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 89, + 255, + 99, + 264 + ], + "score": 1.0, + "content": "92", + "type": "text" + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 0.979, + "content": "of softmax the divider is still used. In [17] the combination of LUT and multi-segment polynomial", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 263, + 507, + 276 + ], + "spans": [ + { + "bbox": [ + 89, + 266, + 99, + 276 + ], + "score": 1.0, + "content": "93", + "type": "text" + }, + { + "bbox": [ + 105, + 263, + 507, + 276 + ], + "score": 0.994, + "content": "fiting have been used to compute exponential operations of integer and fractional parts in separate.", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 274, + 507, + 287 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 99, + 286 + ], + "score": 1.0, + "content": "94", + "type": "text" + }, + { + "bbox": [ + 105, + 274, + 507, + 287 + ], + "score": 0.984, + "content": "In addition, they adopt radix-4 Booth-Wallce based multiplier for computing the whole value", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 285, + 507, + 298 + ], + "spans": [ + { + "bbox": [ + 89, + 288, + 100, + 297 + ], + "score": 1.0, + "content": "95", + "type": "text" + }, + { + "bbox": [ + 105, + 285, + 507, + 298 + ], + "score": 0.997, + "content": "of exponent,and modified shift-compare divider for computation of the final value of softmax.", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 297, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 89, + 298, + 100, + 308 + ], + "score": 1.0, + "content": "96", + "type": "text" + }, + { + "bbox": [ + 105, + 297, + 506, + 308 + ], + "score": 0.992, + "content": "To avoid big area costs for traditional divider, the authors in [8] propose to reduce the operand", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 307, + 507, + 320 + ], + "spans": [ + { + "bbox": [ + 89, + 309, + 99, + 319 + ], + "score": 1.0, + "content": "97", + "type": "text" + }, + { + "bbox": [ + 105, + 307, + 507, + 320 + ], + "score": 0.978, + "content": "bit-width,and approximate exponential and division operations with cost-effective addition and", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 317, + 507, + 332 + ], + "spans": [ + { + "bbox": [ + 89, + 321, + 99, + 330 + ], + "score": 1.0, + "content": "98", + "type": "text" + }, + { + "bbox": [ + 105, + 317, + 507, + 332 + ], + "score": 0.988, + "content": "bit shifts operations. In their design they have approximated the division operation in Eq. (2) by", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 328, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 89, + 332, + 100, + 341 + ], + "score": 1.0, + "content": "99", + "type": "text" + }, + { + "bbox": [ + 105, + 328, + 268, + 343 + ], + "score": 0.99, + "content": " replacing the denominator with closest", + "type": "text" + }, + { + "bbox": [ + 268, + 329, + 279, + 339 + ], + "score": 0.84, + "content": "\\dot { 2 } ^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 328, + 334, + 343 + ], + "score": 0.992, + "content": "value, where", + "type": "text" + }, + { + "bbox": [ + 335, + 330, + 340, + 339 + ], + "score": 0.69, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 328, + 507, + 343 + ], + "score": 0.989, + "content": " is some integer constant. Then division", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 340, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 86, + 342, + 100, + 352 + ], + "score": 0.999, + "content": "100", + "type": "text" + }, + { + "bbox": [ + 104, + 340, + 507, + 353 + ], + "score": 0.987, + "content": "is implemented just as simple bit shifts operation. In [24] it is proposed to replace the base as", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 349, + 507, + 364 + ], + "spans": [ + { + "bbox": [ + 86, + 353, + 99, + 363 + ], + "score": 1.0, + "content": "101", + "type": "text" + }, + { + "bbox": [ + 107, + 351, + 143, + 361 + ], + "score": 0.9, + "content": "e ^ { x } \\to 2 ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 349, + 507, + 364 + ], + "score": 0.993, + "content": ", then all computations are more hardware-friendly, however the division operation is still", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 362, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 86, + 364, + 100, + 374 + ], + "score": 1.0, + "content": "102", + "type": "text" + }, + { + "bbox": [ + 105, + 362, + 506, + 375 + ], + "score": 0.979, + "content": " required. Also, to restore accuracy a fine-tuning of the model is needed, what is not applicable", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 373, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 86, + 375, + 100, + 385 + ], + "score": 1.0, + "content": "103", + "type": "text" + }, + { + "bbox": [ + 105, + 373, + 506, + 386 + ], + "score": 0.988, + "content": " for post-training quantization paradigm. Although the methods described above are decreasing the", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 383, + 462, + 396 + ], + "spans": [ + { + "bbox": [ + 87, + 386, + 99, + 395 + ], + "score": 1.0, + "content": "104", + "type": "text" + }, + { + "bbox": [ + 105, + 383, + 462, + 396 + ], + "score": 0.985, + "content": "hardware complexity of softmax computation they all still rely on the division operation.", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 400, + 507, + 414 + ], + "spans": [ + { + "bbox": [ + 86, + 402, + 100, + 412 + ], + "score": 1.0, + "content": "105", + "type": "text" + }, + { + "bbox": [ + 105, + 400, + 507, + 414 + ], + "score": 0.988, + "content": "To avoid division operation at all, some other solutions apply the logarithmic transformation to", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 86, + 414, + 100, + 423 + ], + "score": 1.0, + "content": "106", + "type": "text" + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 0.995, + "content": "the original softmax function,and thus substitute costly division operation by subtraction of the", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 421, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 86, + 424, + 100, + 434 + ], + "score": 1.0, + "content": "107", + "type": "text" + }, + { + "bbox": [ + 105, + 421, + 507, + 434 + ], + "score": 0.992, + "content": "logarithm. In [34], for example, it is proposed to use a logarithmic operation implemented as a LUT", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 433, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 86, + 435, + 100, + 444 + ], + "score": 1.0, + "content": "108", + "type": "text" + }, + { + "bbox": [ + 106, + 433, + 506, + 445 + ], + "score": 0.991, + "content": "and a subtractor to replace the division operation, what allows to further decrease the complexity of", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 443, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 86, + 445, + 100, + 456 + ], + "score": 0.997, + "content": "109", + "type": "text" + }, + { + "bbox": [ + 105, + 443, + 507, + 457 + ], + "score": 0.984, + "content": "hardware,as well critical path of the whole design. In [10] simplified version of Integral Stochastic", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 454, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 86, + 457, + 100, + 466 + ], + "score": 1.0, + "content": "110", + "type": "text" + }, + { + "bbox": [ + 105, + 454, + 507, + 468 + ], + "score": 0.995, + "content": "Computation is used in order to build FSM-based exponentiation. Division operation is substituted", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 465, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 85, + 468, + 99, + 478 + ], + "score": 1.0, + "content": "111", + "type": "text" + }, + { + "bbox": [ + 105, + 465, + 507, + 479 + ], + "score": 0.978, + "content": "by LUT-based logarithmic operation and subtraction, similarly to [34]. In [31] the authors are further", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 476, + 508, + 490 + ], + "spans": [ + { + "bbox": [ + 86, + 479, + 100, + 488 + ], + "score": 1.0, + "content": "112", + "type": "text" + }, + { + "bbox": [ + 105, + 476, + 508, + 490 + ], + "score": 0.997, + "content": "developing the method proposed in [34], by applying mathematical transformations and linear fitting.", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 488, + 508, + 500 + ], + "spans": [ + { + "bbox": [ + 86, + 490, + 100, + 499 + ], + "score": 1.0, + "content": "113", + "type": "text" + }, + { + "bbox": [ + 106, + 488, + 508, + 500 + ], + "score": 0.991, + "content": "After optimization,their final design includes only shift operations,leading one detector, and adders.", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 86, + 501, + 100, + 510 + ], + "score": 1.0, + "content": "114", + "type": "text" + }, + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "score": 0.984, + "content": "Finally, there are some extreme approximation cases represented in [13] and [28], where logarithmic", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 509, + 296, + 522 + ], + "spans": [ + { + "bbox": [ + 86, + 512, + 100, + 521 + ], + "score": 1.0, + "content": "115", + "type": "text" + }, + { + "bbox": [ + 105, + 509, + 296, + 522 + ], + "score": 0.981, + "content": "computation and subtraction are skipped at all.", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 526, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 86, + 528, + 100, + 537 + ], + "score": 1.0, + "content": "116", + "type": "text" + }, + { + "bbox": [ + 106, + 526, + 506, + 538 + ], + "score": 0.988, + "content": "Despite its atractiveness,logarithmic transformation approach can be used only in the cases when", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 86, + 539, + 99, + 548 + ], + "score": 0.995, + "content": "117", + "type": "text" + }, + { + "bbox": [ + 106, + 537, + 506, + 549 + ], + "score": 0.982, + "content": " softmax layer is the last layer in DNN and its functionality is simply“scoring”among the candidates", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 546, + 508, + 562 + ], + "spans": [ + { + "bbox": [ + 86, + 550, + 100, + 559 + ], + "score": 1.0, + "content": "118", + "type": "text" + }, + { + "bbox": [ + 104, + 546, + 508, + 562 + ], + "score": 0.988, + "content": "for classification tasks. However,if softmax layer is used inside of computational graph of DNN (e.g.,", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 558, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 86, + 560, + 100, + 571 + ], + "score": 1.0, + "content": "119", + "type": "text" + }, + { + "bbox": [ + 105, + 558, + 507, + 572 + ], + "score": 0.986, + "content": "DNNs with attention-mechanism) then error caused by quantizations will be accumulated drastically,", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 568, + 507, + 584 + ], + "spans": [ + { + "bbox": [ + 86, + 571, + 100, + 582 + ], + "score": 1.0, + "content": "120", + "type": "text" + }, + { + "bbox": [ + 104, + 568, + 507, + 584 + ], + "score": 0.991, + "content": " directly impacting on the final accuracy.For example,in Table 1 there is shown the averaged accuracy", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 580, + 508, + 593 + ], + "spans": [ + { + "bbox": [ + 86, + 582, + 100, + 592 + ], + "score": 1.0, + "content": "121", + "type": "text" + }, + { + "bbox": [ + 105, + 580, + 508, + 593 + ], + "score": 0.996, + "content": "drop for DETR models caused by a softmax approximation in uint8 precision by some prior arts.", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 590, + 507, + 605 + ], + "spans": [ + { + "bbox": [ + 86, + 593, + 100, + 604 + ], + "score": 1.0, + "content": "122", + "type": "text" + }, + { + "bbox": [ + 105, + 590, + 507, + 605 + ], + "score": 0.985, + "content": " As it can be seen from the Table 1,a straightforward usage of Eq.(2) from [31] causes big accuracy", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 602, + 507, + 615 + ], + "spans": [ + { + "bbox": [ + 86, + 604, + 100, + 614 + ], + "score": 1.0, + "content": "123", + "type": "text" + }, + { + "bbox": [ + 105, + 602, + 482, + 615 + ], + "score": 0.989, + "content": "drop,and even after applying some improvements to the original method (shown as case Eq.", + "type": "text" + }, + { + "bbox": [ + 482, + 603, + 501, + 614 + ], + "score": 0.72, + "content": "( 2 ) +", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 602, + 507, + 615 + ], + "score": 0.562, + "content": "),", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 86, + 615, + 100, + 626 + ], + "score": 1.0, + "content": "124", + "type": "text" + }, + { + "bbox": [ + 106, + 614, + 227, + 626 + ], + "score": 0.974, + "content": "the accuracy drop is still high (", + "type": "text" + }, + { + "bbox": [ + 227, + 614, + 242, + 624 + ], + "score": 0.83, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 614, + 253, + 626 + ], + "score": 0.993, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 253, + 613, + 272, + 624 + ], + "score": 0.87, + "content": "19 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 614, + 506, + 626 + ], + "score": 0.981, + "content": ").For more details of the prior arts experiments please refer", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 624, + 507, + 637 + ], + "spans": [ + { + "bbox": [ + 86, + 626, + 100, + 636 + ], + "score": 1.0, + "content": "125", + "type": "text" + }, + { + "bbox": [ + 105, + 624, + 507, + 637 + ], + "score": 0.98, + "content": " to Appendix A.1. However, if for the same conditions we use the method proposed in Section 4.1, we", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 635, + 507, + 647 + ], + "spans": [ + { + "bbox": [ + 86, + 636, + 100, + 647 + ], + "score": 1.0, + "content": "126", + "type": "text" + }, + { + "bbox": [ + 105, + 635, + 257, + 647 + ], + "score": 0.998, + "content": "can see that accuracy drop reduced by", + "type": "text" + }, + { + "bbox": [ + 258, + 636, + 272, + 646 + ], + "score": 0.85, + "content": "\\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 635, + 282, + 647 + ], + "score": 0.991, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 283, + 635, + 302, + 646 + ], + "score": 0.88, + "content": "\\times 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 635, + 388, + 647 + ], + "score": 0.975, + "content": "times,and it is below", + "type": "text" + }, + { + "bbox": [ + 388, + 635, + 411, + 646 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 635, + 507, + 647 + ], + "score": 0.996, + "content": "for plain DETR models", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 646, + 246, + 659 + ], + "spans": [ + { + "bbox": [ + 86, + 648, + 100, + 658 + ], + "score": 1.0, + "content": "127", + "type": "text" + }, + { + "bbox": [ + 105, + 646, + 246, + 659 + ], + "score": 0.988, + "content": "(no DC5 dilation at the last stage).", + "type": "text" + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 662, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 87, + 664, + 100, + 674 + ], + "score": 1.0, + "content": "128", + "type": "text" + }, + { + "bbox": [ + 105, + 662, + 506, + 675 + ], + "score": 0.995, + "content": "The work presented in this paper has focused on the development of methods for efficient computation", + "type": "text" + } + ], + "index": 49, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 674, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 87, + 676, + 99, + 684 + ], + "score": 1.0, + "content": "129", + "type": "text" + }, + { + "bbox": [ + 106, + 674, + 506, + 685 + ], + "score": 0.99, + "content": "of softmax layer during the inference at the edge devices, what usually have limited computational", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 685, + 316, + 696 + ], + "spans": [ + { + "bbox": [ + 86, + 686, + 100, + 696 + ], + "score": 1.0, + "content": "130", + "type": "text" + }, + { + "bbox": [ + 105, + 685, + 316, + 696 + ], + "score": 0.984, + "content": " power and suffer from constraints of the bandwidth.", + "type": "text" + } + ], + "index": 51, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 87, + 703, + 100, + 711 + ], + "score": 1.0, + "content": "131", + "type": "text" + }, + { + "bbox": [ + 104, + 700, + 506, + 713 + ], + "score": 0.991, + "content": "Previous works for HW accelerator of softmax layer are focused on the logic-centric approach and", + "type": "text" + } + ], + "index": 52, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 711, + 508, + 724 + ], + "spans": [ + { + "bbox": [ + 85, + 711, + 508, + 724 + ], + "score": 0.984, + "content": " 132used dedicated hardware for its implementation. In such case the utilization of hardware is low,", + "type": "text" + } + ], + "index": 53, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 87, + 178, + 99, + 187 + ], + "score": 1.0, + "content": "133", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 0.988, + "content": " performance can be slower, and no reconfigurability is provided. In our paper we have used an", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 186, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 86, + 189, + 100, + 199 + ], + "score": 1.0, + "content": "134", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 186, + 507, + 200 + ], + "score": 0.986, + "content": " alternative memory-centric approximate computing approach. It keeps accuracy loss small, while", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 86, + 200, + 99, + 210 + ], + "score": 1.0, + "content": "135", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 198, + 506, + 211 + ], + "score": 0.987, + "content": "allws computing softmax operation with no divider. The size of the required memory (i.e., LUT) is", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 210, + 323, + 221 + ], + "spans": [ + { + "bbox": [ + 87, + 211, + 99, + 220 + ], + "score": 1.0, + "content": "136", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 210, + 323, + 221 + ], + "score": 0.989, + "content": "reasonably small and can be reconfigured on demand.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 224, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 87, + 227, + 100, + 237 + ], + "score": 1.0, + "content": "137", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 224, + 507, + 239 + ], + "score": 0.988, + "content": " The methods proposed in the paper contribute to building the alternative concept of hardware", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 236, + 508, + 249 + ], + "spans": [ + { + "bbox": [ + 87, + 239, + 100, + 247 + ], + "score": 1.0, + "content": "138", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 236, + 508, + 249 + ], + "score": 0.976, + "content": " architecture to accelerate essential operations for AI applications, especially for on-device inference.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 247, + 390, + 260 + ], + "spans": [ + { + "bbox": [ + 87, + 250, + 100, + 258 + ], + "score": 1.0, + "content": "139", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 247, + 390, + 260 + ], + "score": 0.982, + "content": " To summarize,we have three-fold difference from the previous works:", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + } + ], + "index": 2.5, + "bbox_fs": [ + 89, + 115, + 506, + 161 + ] + }, + { + "type": "index", + "bbox": [ + 88, + 164, + 506, + 396 + ], + "lines": [], + "index": 15, + "bbox_fs": [ + 86, + 165, + 507, + 396 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 86, + 400, + 506, + 521 + ], + "lines": [], + "index": 31, + "bbox_fs": [ + 85, + 400, + 508, + 522 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 87, + 525, + 507, + 658 + ], + "lines": [], + "index": 42.5, + "bbox_fs": [ + 86, + 526, + 508, + 659 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 87, + 662, + 507, + 695 + ], + "lines": [], + "index": 50, + "bbox_fs": [ + 86, + 662, + 506, + 696 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 88, + 700, + 506, + 723 + ], + "lines": [], + "index": 52.5, + "bbox_fs": [ + 85, + 700, + 508, + 724 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 114, + 92, + 496, + 150 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 76, + 502, + 88 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 75, + 502, + 90 + ], + "spans": [ + { + "bbox": [ + 108, + 75, + 493, + 90 + ], + "score": 0.998, + "content": "Table 1: Averaged accuracy drop by different methods over DETR models (Average Precision),", + "type": "text" + }, + { + "bbox": [ + 493, + 77, + 502, + 86 + ], + "score": 0.41, + "content": "\\%", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 114, + 92, + 496, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 92, + 496, + 150 + ], + "spans": [ + { + "bbox": [ + 114, + 92, + 496, + 150 + ], + "score": 0.978, + "html": "
METHODDETR (R50)DETR+DC5(R50)DETR (R101)DETR+DC5(R101)
EQ.(2) IN [31]7.2019.3010.2525.37
EQ.(2)+ IN [31]2.5012.935.3818.85
SECTION 4.10.332.920.222.73
", + "type": "table", + "image_path": "4cfd48b9db0746072b72af0de68b39ab4016c8d335b1958b155742ab3f026d99.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 114, + 92, + 496, + 111.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 111.33333333333333, + 496, + 130.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 114, + 130.66666666666666, + 496, + 150.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 87, + 176, + 506, + 221 + ], + "lines": [ + { + "bbox": [ + 87, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 87, + 178, + 99, + 187 + ], + "score": 1.0, + "content": "133", + "type": "text" + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 0.988, + "content": " performance can be slower, and no reconfigurability is provided. In our paper we have used an", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 86, + 186, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 86, + 189, + 100, + 199 + ], + "score": 1.0, + "content": "134", + "type": "text" + }, + { + "bbox": [ + 105, + 186, + 507, + 200 + ], + "score": 0.986, + "content": " alternative memory-centric approximate computing approach. It keeps accuracy loss small, while", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 86, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 86, + 200, + 99, + 210 + ], + "score": 1.0, + "content": "135", + "type": "text" + }, + { + "bbox": [ + 106, + 198, + 506, + 211 + ], + "score": 0.987, + "content": "allws computing softmax operation with no divider. The size of the required memory (i.e., LUT) is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 87, + 210, + 323, + 221 + ], + "spans": [ + { + "bbox": [ + 87, + 211, + 99, + 220 + ], + "score": 1.0, + "content": "136", + "type": "text" + }, + { + "bbox": [ + 105, + 210, + 323, + 221 + ], + "score": 0.989, + "content": "reasonably small and can be reconfigured on demand.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 88, + 225, + 506, + 259 + ], + "lines": [ + { + "bbox": [ + 87, + 224, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 87, + 227, + 100, + 237 + ], + "score": 1.0, + "content": "137", + "type": "text" + }, + { + "bbox": [ + 104, + 224, + 507, + 239 + ], + "score": 0.988, + "content": " The methods proposed in the paper contribute to building the alternative concept of hardware", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 87, + 236, + 508, + 249 + ], + "spans": [ + { + "bbox": [ + 87, + 239, + 100, + 247 + ], + "score": 1.0, + "content": "138", + "type": "text" + }, + { + "bbox": [ + 105, + 236, + 508, + 249 + ], + "score": 0.976, + "content": " architecture to accelerate essential operations for AI applications, especially for on-device inference.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 87, + 247, + 390, + 260 + ], + "spans": [ + { + "bbox": [ + 87, + 250, + 100, + 258 + ], + "score": 1.0, + "content": "139", + "type": "text" + }, + { + "bbox": [ + 104, + 247, + 390, + 260 + ], + "score": 0.982, + "content": " To summarize,we have three-fold difference from the previous works:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 132, + 267, + 506, + 377 + ], + "lines": [ + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "score": 0.985, + "content": "· Applicability of our methods to DNN with attention mechanism is experimentally proven", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 279, + 507, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 507, + 291 + ], + "score": 0.993, + "content": "over variety of the models for different AI applications.All previous methods were used", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 290, + 477, + 302 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 477, + 302 + ], + "score": 0.971, + "content": "only for the cases when softmax is the last layer in DNN,and is used for“scoring\".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 138, + 305, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 138, + 305, + 506, + 317 + ], + "score": 0.992, + "content": "No divider is needed to fully implement the method. Moreover, for 2D LUT method even", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 317, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 506, + 327 + ], + "score": 0.986, + "content": "multiplier is not needed.Thus, hardware overhead is minimal,and is almost free if used in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 327, + 276, + 339 + ], + "spans": [ + { + "bbox": [ + 142, + 327, + 276, + 339 + ], + "score": 0.992, + "content": "the DRAM-based AI accelerator.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 506, + 356 + ], + "score": 0.986, + "content": "Our solutions utilize integer precision, what makes it compatible with traditional HW", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 506, + 366 + ], + "score": 0.984, + "content": "accelerators used for matrix multiplication,and simplify the integration of methods into full", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 365, + 397, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 397, + 378 + ], + "score": 0.986, + "content": " system (all prior methods are based on a fixed point precision).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 88, + 392, + 221, + 406 + ], + "lines": [ + { + "bbox": [ + 84, + 391, + 221, + 408 + ], + "spans": [ + { + "bbox": [ + 84, + 391, + 221, + 408 + ], + "score": 0.979, + "content": "1494 Proposed methods", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 87, + 417, + 506, + 462 + ], + "lines": [ + { + "bbox": [ + 87, + 416, + 507, + 431 + ], + "spans": [ + { + "bbox": [ + 87, + 419, + 99, + 429 + ], + "score": 1.0, + "content": "150", + "type": "text" + }, + { + "bbox": [ + 105, + 416, + 507, + 431 + ], + "score": 0.987, + "content": " In this paper we use memory-centric approach to build the accelerator for softmax computation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 86, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 86, + 430, + 99, + 440 + ], + "score": 1.0, + "content": "151", + "type": "text" + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 0.977, + "content": " in hardware platform with limited resources. We propose two LUT-based methods for efficient", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 86, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 86, + 441, + 100, + 452 + ], + "score": 1.0, + "content": "152", + "type": "text" + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "score": 0.99, + "content": "computation,which provide high performance and do not require a divider. The details of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 87, + 449, + 473, + 463 + ], + "spans": [ + { + "bbox": [ + 87, + 452, + 99, + 462 + ], + "score": 1.0, + "content": "153", + "type": "text" + }, + { + "bbox": [ + 105, + 449, + 473, + 463 + ], + "score": 0.994, + "content": " methods are described below and appropriate software models are shown in Appendix A.2.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 103, + 475, + 314, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 315, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 315, + 490 + ], + "score": 0.987, + "content": "4.1Normalization of reciprocal exponentiation", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 104, + 496, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "score": 0.993, + "content": "In this subsection we consider the method,which is based on the normalization of reciprocal", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 332, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 332, + 519 + ], + "score": 0.99, + "content": "exponentiation, and hereafter we call it REXP for short.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 89, + 523, + 507, + 546 + ], + "lines": [ + { + "bbox": [ + 88, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 88, + 522, + 506, + 536 + ], + "score": 0.985, + "content": "157The original reciprocal exponentiation method was proposed in [28], where they used the inverse", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 85, + 534, + 424, + 547 + ], + "spans": [ + { + "bbox": [ + 85, + 534, + 424, + 547 + ], + "score": 0.986, + "content": " I58way of max-normalization and the reciprocal of exponential function as below:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 559, + 352, + 583 + ], + "lines": [ + { + "bbox": [ + 260, + 559, + 352, + 583 + ], + "spans": [ + { + "bbox": [ + 260, + 559, + 352, + 583 + ], + "score": 0.95, + "content": "\\sigma ^ { * } ( x _ { i } ) = \\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } }", + "type": "interline_equation", + "image_path": "07a3724823bcd540052ed15c8c366ca29e6a1843d56d7cce4940e24c70fd634b.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 260, + 559, + 352, + 583 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 84, + 591, + 508, + 614 + ], + "lines": [ + { + "bbox": [ + 87, + 591, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 87, + 591, + 507, + 604 + ], + "score": 0.985, + "content": "159And thus,the final value of softmax can be obtained by reading from a simple LUT-table. Content of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 84, + 602, + 248, + 615 + ], + "spans": [ + { + "bbox": [ + 84, + 602, + 248, + 615 + ], + "score": 0.985, + "content": " 160LUT is computed as shown below:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 627, + 411, + 655 + ], + "lines": [ + { + "bbox": [ + 201, + 627, + 411, + 655 + ], + "spans": [ + { + "bbox": [ + 201, + 627, + 411, + 655 + ], + "score": 0.92, + "content": "L U T _ { 1 / e } [ i ] = \\left\\lfloor \\frac { 1 } { e ^ { i } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall i = 0 , 1 , . . . , x _ { q } + 1", + "type": "interline_equation", + "image_path": "67339367399355818951e439e4b03006b2efddb824fe5ef4573766f2b7054a4c.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 201, + 627, + 411, + 641.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 201, + 641.0, + 411, + 655.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 89, + 663, + 508, + 686 + ], + "lines": [ + { + "bbox": [ + 84, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 84, + 662, + 134, + 676 + ], + "score": 1.0, + "content": "161where", + "type": "text" + }, + { + "bbox": [ + 134, + 666, + 143, + 673 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 662, + 312, + 676 + ], + "score": 0.981, + "content": "is a number of bits for quantization, and", + "type": "text" + }, + { + "bbox": [ + 312, + 663, + 393, + 676 + ], + "score": 0.93, + "content": "x _ { q } = \\lceil l n ( 2 ^ { w } - 1 ) \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 662, + 506, + 676 + ], + "score": 0.985, + "content": " is an efficient quantization", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 84, + 674, + 150, + 687 + ], + "spans": [ + { + "bbox": [ + 84, + 674, + 150, + 687 + ], + "score": 1.0, + "content": "162boundary.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 90, + 690, + 492, + 703 + ], + "lines": [ + { + "bbox": [ + 87, + 689, + 493, + 705 + ], + "spans": [ + { + "bbox": [ + 87, + 689, + 493, + 705 + ], + "score": 0.994, + "content": "63In addition to very low computational complexity, this method has other desired properties [28]:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 303, + 743, + 309, + 751 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 114, + 92, + 496, + 150 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 76, + 502, + 88 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 75, + 502, + 90 + ], + "spans": [ + { + "bbox": [ + 108, + 75, + 493, + 90 + ], + "score": 0.998, + "content": "Table 1: Averaged accuracy drop by different methods over DETR models (Average Precision),", + "type": "text" + }, + { + "bbox": [ + 493, + 77, + 502, + 86 + ], + "score": 0.41, + "content": "\\%", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 114, + 92, + 496, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 92, + 496, + 150 + ], + "spans": [ + { + "bbox": [ + 114, + 92, + 496, + 150 + ], + "score": 0.978, + "html": "
METHODDETR (R50)DETR+DC5(R50)DETR (R101)DETR+DC5(R101)
EQ.(2) IN [31]7.2019.3010.2525.37
EQ.(2)+ IN [31]2.5012.935.3818.85
SECTION 4.10.332.920.222.73
", + "type": "table", + "image_path": "4cfd48b9db0746072b72af0de68b39ab4016c8d335b1958b155742ab3f026d99.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 114, + 92, + 496, + 111.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 111.33333333333333, + 496, + 130.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 114, + 130.66666666666666, + 496, + 150.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "index", + "bbox": [ + 87, + 176, + 506, + 221 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 86, + 176, + 507, + 221 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 88, + 225, + 506, + 259 + ], + "lines": [], + "index": 9, + "bbox_fs": [ + 87, + 224, + 508, + 260 + ], + "lines_deleted": true + }, + { + "type": "list", + "bbox": [ + 132, + 267, + 506, + 377 + ], + "lines": [ + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "score": 0.985, + "content": "· Applicability of our methods to DNN with attention mechanism is experimentally proven", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 279, + 507, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 507, + 291 + ], + "score": 0.993, + "content": "over variety of the models for different AI applications.All previous methods were used", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 290, + 477, + 302 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 477, + 302 + ], + "score": 0.971, + "content": "only for the cases when softmax is the last layer in DNN,and is used for“scoring\".", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 138, + 305, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 138, + 305, + 506, + 317 + ], + "score": 0.992, + "content": "No divider is needed to fully implement the method. Moreover, for 2D LUT method even", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 317, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 317, + 506, + 327 + ], + "score": 0.986, + "content": "multiplier is not needed.Thus, hardware overhead is minimal,and is almost free if used in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 327, + 276, + 339 + ], + "spans": [ + { + "bbox": [ + 142, + 327, + 276, + 339 + ], + "score": 0.992, + "content": "the DRAM-based AI accelerator.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 141, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 506, + 356 + ], + "score": 0.986, + "content": "Our solutions utilize integer precision, what makes it compatible with traditional HW", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 506, + 366 + ], + "score": 0.984, + "content": "accelerators used for matrix multiplication,and simplify the integration of methods into full", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 365, + 397, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 397, + 378 + ], + "score": 0.986, + "content": " system (all prior methods are based on a fixed point precision).", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + } + ], + "index": 15, + "bbox_fs": [ + 132, + 268, + 507, + 378 + ] + }, + { + "type": "title", + "bbox": [ + 88, + 392, + 221, + 406 + ], + "lines": [ + { + "bbox": [ + 84, + 391, + 221, + 408 + ], + "spans": [ + { + "bbox": [ + 84, + 391, + 221, + 408 + ], + "score": 0.979, + "content": "1494 Proposed methods", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "index", + "bbox": [ + 87, + 417, + 506, + 462 + ], + "lines": [ + { + "bbox": [ + 87, + 416, + 507, + 431 + ], + "spans": [ + { + "bbox": [ + 87, + 419, + 99, + 429 + ], + "score": 1.0, + "content": "150", + "type": "text" + }, + { + "bbox": [ + 105, + 416, + 507, + 431 + ], + "score": 0.987, + "content": " In this paper we use memory-centric approach to build the accelerator for softmax computation", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 86, + 430, + 99, + 440 + ], + "score": 1.0, + "content": "151", + "type": "text" + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 0.977, + "content": " in hardware platform with limited resources. We propose two LUT-based methods for efficient", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 86, + 441, + 100, + 452 + ], + "score": 1.0, + "content": "152", + "type": "text" + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "score": 0.99, + "content": "computation,which provide high performance and do not require a divider. The details of the", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 449, + 473, + 463 + ], + "spans": [ + { + "bbox": [ + 87, + 452, + 99, + 462 + ], + "score": 1.0, + "content": "153", + "type": "text" + }, + { + "bbox": [ + 105, + 449, + 473, + 463 + ], + "score": 0.994, + "content": " methods are described below and appropriate software models are shown in Appendix A.2.", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 86, + 416, + 507, + 463 + ] + }, + { + "type": "title", + "bbox": [ + 103, + 475, + 314, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 315, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 315, + 490 + ], + "score": 0.987, + "content": "4.1Normalization of reciprocal exponentiation", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 104, + 496, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "score": 0.993, + "content": "In this subsection we consider the method,which is based on the normalization of reciprocal", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 332, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 332, + 519 + ], + "score": 0.99, + "content": "exponentiation, and hereafter we call it REXP for short.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 495, + 505, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 523, + 507, + 546 + ], + "lines": [ + { + "bbox": [ + 88, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 88, + 522, + 506, + 536 + ], + "score": 0.985, + "content": "157The original reciprocal exponentiation method was proposed in [28], where they used the inverse", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 85, + 534, + 424, + 547 + ], + "spans": [ + { + "bbox": [ + 85, + 534, + 424, + 547 + ], + "score": 0.986, + "content": " I58way of max-normalization and the reciprocal of exponential function as below:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 85, + 522, + 506, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 559, + 352, + 583 + ], + "lines": [ + { + "bbox": [ + 260, + 559, + 352, + 583 + ], + "spans": [ + { + "bbox": [ + 260, + 559, + 352, + 583 + ], + "score": 0.95, + "content": "\\sigma ^ { * } ( x _ { i } ) = \\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } }", + "type": "interline_equation", + "image_path": "07a3724823bcd540052ed15c8c366ca29e6a1843d56d7cce4940e24c70fd634b.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 260, + 559, + 352, + 583 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "index", + "bbox": [ + 84, + 591, + 508, + 614 + ], + "lines": [ + { + "bbox": [ + 87, + 591, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 87, + 591, + 507, + 604 + ], + "score": 0.985, + "content": "159And thus,the final value of softmax can be obtained by reading from a simple LUT-table. Content of", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 602, + 248, + 615 + ], + "spans": [ + { + "bbox": [ + 84, + 602, + 248, + 615 + ], + "score": 0.985, + "content": " 160LUT is computed as shown below:", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + } + ], + "index": 31.5, + "bbox_fs": [ + 84, + 591, + 507, + 615 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 627, + 411, + 655 + ], + "lines": [ + { + "bbox": [ + 201, + 627, + 411, + 655 + ], + "spans": [ + { + "bbox": [ + 201, + 627, + 411, + 655 + ], + "score": 0.92, + "content": "L U T _ { 1 / e } [ i ] = \\left\\lfloor \\frac { 1 } { e ^ { i } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall i = 0 , 1 , . . . , x _ { q } + 1", + "type": "interline_equation", + "image_path": "67339367399355818951e439e4b03006b2efddb824fe5ef4573766f2b7054a4c.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 201, + 627, + 411, + 641.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 201, + 641.0, + 411, + 655.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "index", + "bbox": [ + 89, + 663, + 508, + 686 + ], + "lines": [ + { + "bbox": [ + 84, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 84, + 662, + 134, + 676 + ], + "score": 1.0, + "content": "161where", + "type": "text" + }, + { + "bbox": [ + 134, + 666, + 143, + 673 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 662, + 312, + 676 + ], + "score": 0.981, + "content": "is a number of bits for quantization, and", + "type": "text" + }, + { + "bbox": [ + 312, + 663, + 393, + 676 + ], + "score": 0.93, + "content": "x _ { q } = \\lceil l n ( 2 ^ { w } - 1 ) \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 662, + 506, + 676 + ], + "score": 0.985, + "content": " is an efficient quantization", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 674, + 150, + 687 + ], + "spans": [ + { + "bbox": [ + 84, + 674, + 150, + 687 + ], + "score": 1.0, + "content": "162boundary.", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + } + ], + "index": 35.5, + "bbox_fs": [ + 84, + 662, + 506, + 687 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 690, + 492, + 703 + ], + "lines": [ + { + "bbox": [ + 87, + 689, + 493, + 705 + ], + "spans": [ + { + "bbox": [ + 87, + 689, + 493, + 705 + ], + "score": 0.994, + "content": "63In addition to very low computational complexity, this method has other desired properties [28]:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 87, + 689, + 493, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 132, + 71, + 309, + 103 + ], + "lines": [ + { + "bbox": [ + 130, + 70, + 306, + 89 + ], + "spans": [ + { + "bbox": [ + 130, + 70, + 225, + 89 + ], + "score": 0.974, + "content": "· bounded and stable (", + "type": "text" + }, + { + "bbox": [ + 226, + 72, + 306, + 86 + ], + "score": 0.91, + "content": "\\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } } \\in ( 0 , 1 ] )", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 131, + 87, + 258, + 105 + ], + "spans": [ + { + "bbox": [ + 131, + 87, + 201, + 105 + ], + "score": 0.938, + "content": "· and nonlinear", + "type": "text" + }, + { + "bbox": [ + 201, + 89, + 251, + 103 + ], + "score": 0.9, + "content": "\\begin{array} { r } { ( \\frac { 1 } { e ^ { \\alpha x } } \\ne \\alpha \\frac { 1 } { e ^ { x } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 87, + 258, + 105 + ], + "score": 0.826, + "content": ")", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 87, + 110, + 507, + 154 + ], + "lines": [ + { + "bbox": [ + 87, + 109, + 507, + 123 + ], + "spans": [ + { + "bbox": [ + 87, + 112, + 99, + 121 + ], + "score": 1.0, + "content": "167", + "type": "text" + }, + { + "bbox": [ + 104, + 109, + 507, + 123 + ], + "score": 0.983, + "content": " But due to its aggressive approximation nature, it can be applied only to simple CV tasks, and if", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 86, + 121, + 507, + 133 + ], + "spans": [ + { + "bbox": [ + 86, + 123, + 99, + 132 + ], + "score": 1.0, + "content": "168", + "type": "text" + }, + { + "bbox": [ + 106, + 121, + 507, + 133 + ], + "score": 0.985, + "content": "used for attention-based DNN models causes the explosion of accuracy drop (see Appendix A.1 for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 86, + 130, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 86, + 133, + 100, + 144 + ], + "score": 1.0, + "content": "169", + "type": "text" + }, + { + "bbox": [ + 105, + 130, + 506, + 145 + ], + "score": 0.996, + "content": "details). Thus,in this paper we further develop that method to be applicable for wider class of DNN", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 86, + 143, + 141, + 154 + ], + "spans": [ + { + "bbox": [ + 86, + 144, + 100, + 154 + ], + "score": 1.0, + "content": "170", + "type": "text" + }, + { + "bbox": [ + 105, + 143, + 141, + 154 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 87, + 159, + 506, + 226 + ], + "lines": [ + { + "bbox": [ + 86, + 159, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 86, + 162, + 99, + 170 + ], + "score": 1.0, + "content": "171", + "type": "text" + }, + { + "bbox": [ + 105, + 159, + 506, + 171 + ], + "score": 0.977, + "content": "During our initial investigations,we have noticed that method described in Eq.( 3) is just scaled", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 86, + 171, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 86, + 172, + 100, + 182 + ], + "score": 1.0, + "content": "172", + "type": "text" + }, + { + "bbox": [ + 106, + 171, + 506, + 182 + ], + "score": 0.992, + "content": "version of real softmax. So, we proposed to normalize it with some probability density function", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 86, + 180, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 86, + 183, + 100, + 193 + ], + "score": 1.0, + "content": "173", + "type": "text" + }, + { + "bbox": [ + 105, + 180, + 197, + 194 + ], + "score": 0.984, + "content": "(PDF) scale,such that", + "type": "text" + }, + { + "bbox": [ + 198, + 181, + 249, + 193 + ], + "score": 0.91, + "content": "\\textstyle { \\int } P D F = { \\mathrm { \\hat { 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 180, + 507, + 194 + ], + "score": 0.976, + "content": ". However, if used straight-forwardly, it would need to involve a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 86, + 191, + 508, + 205 + ], + "spans": [ + { + "bbox": [ + 86, + 194, + 100, + 204 + ], + "score": 1.0, + "content": "174", + "type": "text" + }, + { + "bbox": [ + 105, + 191, + 508, + 205 + ], + "score": 0.989, + "content": "division operation, what is strongly un-desirable for devices with constrained computational power.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 86, + 203, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 86, + 205, + 100, + 214 + ], + "score": 1.0, + "content": "175", + "type": "text" + }, + { + "bbox": [ + 105, + 203, + 507, + 216 + ], + "score": 0.984, + "content": "Therefore, instead of dividing, we propose to substitute division by multiplication with some PDF", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 86, + 214, + 233, + 226 + ], + "spans": [ + { + "bbox": [ + 86, + 216, + 100, + 225 + ], + "score": 1.0, + "content": "176", + "type": "text" + }, + { + "bbox": [ + 105, + 214, + 233, + 226 + ], + "score": 0.999, + "content": "normalizing constant as below:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 237, + 379, + 263 + ], + "lines": [ + { + "bbox": [ + 233, + 237, + 379, + 263 + ], + "spans": [ + { + "bbox": [ + 233, + 237, + 379, + 263 + ], + "score": 0.95, + "content": "\\sigma ( x _ { i } ) = \\frac { \\sigma ^ { * } ( x _ { i } ) } { P D F n o r m } \\sigma ^ { * } ( x _ { i } ) \\cdot \\alpha", + "type": "interline_equation", + "image_path": "63b875463223072a756a88240fbb3c990bbfc1acb164be1af730b837f1c16e7d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 233, + 237, + 379, + 263 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 87, + 269, + 327, + 282 + ], + "lines": [ + { + "bbox": [ + 83, + 266, + 330, + 286 + ], + "spans": [ + { + "bbox": [ + 83, + 266, + 133, + 286 + ], + "score": 0.948, + "content": " 177where", + "type": "text" + }, + { + "bbox": [ + 133, + 270, + 207, + 281 + ], + "score": 0.91, + "content": "\\alpha = e ^ { - l n \\left( \\Sigma \\sigma ^ { \\ast } \\left( x _ { i } \\right) \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 266, + 330, + 286 + ], + "score": 0.998, + "content": "is PDF normalizing constant.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 87, + 287, + 507, + 300 + ], + "lines": [ + { + "bbox": [ + 85, + 286, + 508, + 302 + ], + "spans": [ + { + "bbox": [ + 85, + 286, + 508, + 302 + ], + "score": 0.995, + "content": " 178Then final equation to compute softmax approximation by proposed REXP method is shown below:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 311, + 414, + 338 + ], + "lines": [ + { + "bbox": [ + 197, + 311, + 414, + 338 + ], + "spans": [ + { + "bbox": [ + 197, + 311, + 414, + 338 + ], + "score": 0.92, + "content": "\\sigma ( x _ { i } ) = \\frac { e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) } } { e ^ { m a x \\left( x \\right) - x _ { i } } } = \\frac { 1 } { e ^ { m a x \\left( x \\right) - x _ { i } } } \\cdot e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) }", + "type": "interline_equation", + "image_path": "d68cc2e28b1b9e274d28ca88c036e9bccaecefb85e19b46d45c093abfa0373c1.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 197, + 311, + 414, + 324.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 197, + 324.5, + 414, + 338.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 87, + 344, + 506, + 378 + ], + "lines": [ + { + "bbox": [ + 87, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 87, + 347, + 100, + 355 + ], + "score": 0.908, + "content": "179", + "type": "text" + }, + { + "bbox": [ + 102, + 344, + 506, + 356 + ], + "score": 0.981, + "content": " Thus, to compute the softmax value it requires just two LUTs of considerably small size, where", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 87, + 354, + 507, + 367 + ], + "spans": [ + { + "bbox": [ + 87, + 358, + 100, + 366 + ], + "score": 1.0, + "content": "180", + "type": "text" + }, + { + "bbox": [ + 103, + 354, + 507, + 367 + ], + "score": 0.985, + "content": " content of the first LUT is computed accordingly to Eq.(4), and the second LUT values can be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 86, + 367, + 189, + 378 + ], + "spans": [ + { + "bbox": [ + 86, + 367, + 189, + 378 + ], + "score": 0.997, + "content": "181computed as below:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 389, + 407, + 418 + ], + "lines": [ + { + "bbox": [ + 205, + 389, + 407, + 418 + ], + "spans": [ + { + "bbox": [ + 205, + 389, + 407, + 418 + ], + "score": 0.92, + "content": "L U T _ { \\alpha } [ j ] = \\left\\lfloor \\frac { 1 } { j } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall j = 0 , 1 , . . . , x _ { s } - 1", + "type": "interline_equation", + "image_path": "3e7f965619c868b1860965c878110bc5f1bab3dc23c1ef22b1ae8806227859a2.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 389, + 407, + 403.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 205, + 403.5, + 407, + 418.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 89, + 424, + 422, + 437 + ], + "lines": [ + { + "bbox": [ + 85, + 423, + 419, + 438 + ], + "spans": [ + { + "bbox": [ + 85, + 423, + 133, + 438 + ], + "score": 0.997, + "content": "182where", + "type": "text" + }, + { + "bbox": [ + 134, + 425, + 187, + 437 + ], + "score": 0.91, + "content": "j = \\Sigma \\sigma ^ { * } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 426, + 202, + 436 + ], + "score": 0.76, + "content": "x _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 423, + 358, + 438 + ], + "score": 0.995, + "content": "is selected quantization boundary, and", + "type": "text" + }, + { + "bbox": [ + 358, + 424, + 419, + 437 + ], + "score": 0.92, + "content": "L U T _ { \\alpha } [ x _ { s } ] = 0", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 96, + 448, + 215, + 461 + ], + "lines": [ + { + "bbox": [ + 92, + 448, + 216, + 461 + ], + "spans": [ + { + "bbox": [ + 92, + 448, + 216, + 461 + ], + "score": 0.985, + "content": ";4.22-Dimensional LUT", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 87, + 468, + 506, + 513 + ], + "lines": [ + { + "bbox": [ + 86, + 469, + 507, + 482 + ], + "spans": [ + { + "bbox": [ + 86, + 471, + 100, + 480 + ], + "score": 1.0, + "content": "184", + "type": "text" + }, + { + "bbox": [ + 106, + 469, + 507, + 482 + ], + "score": 0.994, + "content": "In this subsection we propose another method which is based on the substitution of a division", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 86, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 86, + 482, + 100, + 492 + ], + "score": 1.0, + "content": "185", + "type": "text" + }, + { + "bbox": [ + 105, + 480, + 506, + 492 + ], + "score": 0.986, + "content": "operation in Eq.(2) by 2-Dimensional (2D) LUT to speed-up and simplify the computation, while", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 86, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 86, + 492, + 100, + 503 + ], + "score": 1.0, + "content": "186", + "type": "text" + }, + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "score": 0.991, + "content": "maintaining accuracy even for attention-based DNN models. Hereafter we willrefer to this method", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 86, + 502, + 155, + 513 + ], + "spans": [ + { + "bbox": [ + 86, + 504, + 100, + 513 + ], + "score": 1.0, + "content": "187", + "type": "text" + }, + { + "bbox": [ + 105, + 502, + 155, + 513 + ], + "score": 0.934, + "content": " as 2D LUT.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 87, + 518, + 506, + 573 + ], + "lines": [ + { + "bbox": [ + 86, + 518, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 86, + 520, + 100, + 529 + ], + "score": 1.0, + "content": "188", + "type": "text" + }, + { + "bbox": [ + 106, + 518, + 390, + 530 + ], + "score": 0.994, + "content": "For this purpose,we have started with the estimation of distributions of", + "type": "text" + }, + { + "bbox": [ + 390, + 519, + 401, + 528 + ], + "score": 0.86, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 518, + 419, + 530 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 519, + 437, + 528 + ], + "score": 0.88, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 518, + 506, + 530 + ], + "score": 0.997, + "content": "terms for typical", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 86, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 86, + 531, + 100, + 540 + ], + "score": 1.0, + "content": "189", + "type": "text" + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 0.983, + "content": " inference runs. Our investigation showed that if max-based normalization is applied to the input", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 86, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 86, + 542, + 100, + 551 + ], + "score": 1.0, + "content": "190", + "type": "text" + }, + { + "bbox": [ + 106, + 540, + 154, + 552 + ], + "score": 0.976, + "content": "values (i.e.,", + "type": "text" + }, + { + "bbox": [ + 154, + 540, + 234, + 552 + ], + "score": 0.92, + "content": "x ( x - \\operatorname* { m a x } ( { \\bar { x } } ) ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 540, + 310, + 552 + ], + "score": 0.975, + "content": ", the distribution of", + "type": "text" + }, + { + "bbox": [ + 311, + 541, + 321, + 550 + ], + "score": 0.87, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 540, + 408, + 552 + ], + "score": 0.997, + "content": "is stable within range", + "type": "text" + }, + { + "bbox": [ + 408, + 540, + 452, + 552 + ], + "score": 0.92, + "content": "e ^ { x } \\in ( 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 540, + 506, + 552 + ], + "score": 0.997, + "content": "regardless of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 86, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 86, + 553, + 99, + 562 + ], + "score": 1.0, + "content": "191", + "type": "text" + }, + { + "bbox": [ + 105, + 550, + 229, + 564 + ], + "score": 0.983, + "content": "the input values, and range of", + "type": "text" + }, + { + "bbox": [ + 229, + 551, + 247, + 561 + ], + "score": 0.87, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 550, + 410, + 564 + ], + "score": 0.983, + "content": " term depends on the length of the input", + "type": "text" + }, + { + "bbox": [ + 410, + 553, + 417, + 561 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 550, + 506, + 564 + ], + "score": 0.974, + "content": ". Thus, it allows us to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 86, + 562, + 331, + 573 + ], + "spans": [ + { + "bbox": [ + 86, + 564, + 100, + 573 + ], + "score": 1.0, + "content": "192", + "type": "text" + }, + { + "bbox": [ + 105, + 562, + 331, + 573 + ], + "score": 0.981, + "content": "have stable computation even within small size of LUT.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 99, + 578, + 506, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 506, + 591 + ], + "score": 0.994, + "content": "Generic architecture and concept of the proposed method for efcient softmax implementation as", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 507, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 464, + 602 + ], + "score": 0.965, + "content": " 2D LUT is shown in Figure 1. There are two LUTs used: 1D LUT for approximation of", + "type": "text" + }, + { + "bbox": [ + 465, + 590, + 475, + 599 + ], + "score": 0.86, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 588, + 507, + 602 + ], + "score": 1.0, + "content": "values,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 457, + 613 + ], + "score": 0.99, + "content": "and 2D LUT for storing softmax output values dependent on the values of numerator", + "type": "text" + }, + { + "bbox": [ + 458, + 601, + 469, + 610 + ], + "score": 0.85, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 601, + 506, + 613 + ], + "score": 0.997, + "content": "(used as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 291, + 623 + ], + "score": 0.986, + "content": "the 1-st index in the table),and denominator", + "type": "text" + }, + { + "bbox": [ + 291, + 611, + 309, + 621 + ], + "score": 0.87, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 611, + 506, + 623 + ], + "score": 0.987, + "content": "(used as the 2-nd index) of Eq.(2). As it can be", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 0.982, + "content": " seen from Figure 1(right),to calculate the indexes for corresponded value in 2D LUT table, only", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 0.995, + "content": "most-significant bits (MSB)are needed. Thus,the simplest hardware realization can be done within", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 0.977, + "content": " wiring only (when MSB bits are directly connected to the appropriate address selectors)3. Also, the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 507, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 507, + 667 + ], + "score": 0.981, + "content": " proposed method can be easily modified to the case where,1-st index of 2D LUT table is calculated", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 143, + 677 + ], + "score": 0.996, + "content": "not from", + "type": "text" + }, + { + "bbox": [ + 143, + 666, + 154, + 676 + ], + "score": 0.85, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 666, + 246, + 677 + ], + "score": 0.997, + "content": "but directly from input", + "type": "text" + }, + { + "bbox": [ + 247, + 668, + 253, + 676 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 666, + 493, + 677 + ], + "score": 0.988, + "content": ". In such case there is no need to store intermediate values of", + "type": "text" + }, + { + "bbox": [ + 493, + 666, + 504, + 676 + ], + "score": 0.86, + "content": "e ^ { x }", + "type": "inline_equation" + } + ], + "index": 41 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 97, + 682, + 503, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 316, + 694 + ], + "score": 0.997, + "content": "While the content of 1D LUT for approximation of", + "type": "text" + }, + { + "bbox": [ + 316, + 684, + 326, + 692 + ], + "score": 0.87, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 681, + 505, + 694 + ], + "score": 0.986, + "content": " values is straightforward, 2D LUT contains", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 692, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 706 + ], + "score": 0.993, + "content": "the family of linear approximations where each row contains the softmax output scaled according tc", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 303, + 743, + 309, + 751 + ], + "lines": [ + { + "bbox": [ + 302, + 742, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 742, + 310, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 115, + 712, + 490, + 723 + ], + "lines": [ + { + "bbox": [ + 118, + 710, + 491, + 725 + ], + "spans": [ + { + "bbox": [ + 118, + 710, + 491, + 725 + ], + "score": 0.978, + "content": "3Other hardware realization are also possible, but not considered here for simplicity of the explanation.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 132, + 71, + 309, + 103 + ], + "lines": [ + { + "bbox": [ + 130, + 70, + 306, + 89 + ], + "spans": [ + { + "bbox": [ + 130, + 70, + 225, + 89 + ], + "score": 0.974, + "content": "· bounded and stable (", + "type": "text" + }, + { + "bbox": [ + 226, + 72, + 306, + 86 + ], + "score": 0.91, + "content": "\\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } } \\in ( 0 , 1 ] )", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 131, + 87, + 258, + 105 + ], + "spans": [ + { + "bbox": [ + 131, + 87, + 201, + 105 + ], + "score": 0.938, + "content": "· and nonlinear", + "type": "text" + }, + { + "bbox": [ + 201, + 89, + 251, + 103 + ], + "score": 0.9, + "content": "\\begin{array} { r } { ( \\frac { 1 } { e ^ { \\alpha x } } \\ne \\alpha \\frac { 1 } { e ^ { x } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 87, + 258, + 105 + ], + "score": 0.826, + "content": ")", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 130, + 70, + 306, + 105 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 110, + 507, + 154 + ], + "lines": [ + { + "bbox": [ + 87, + 109, + 507, + 123 + ], + "spans": [ + { + "bbox": [ + 87, + 112, + 99, + 121 + ], + "score": 1.0, + "content": "167", + "type": "text" + }, + { + "bbox": [ + 104, + 109, + 507, + 123 + ], + "score": 0.983, + "content": " But due to its aggressive approximation nature, it can be applied only to simple CV tasks, and if", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 121, + 507, + 133 + ], + "spans": [ + { + "bbox": [ + 86, + 123, + 99, + 132 + ], + "score": 1.0, + "content": "168", + "type": "text" + }, + { + "bbox": [ + 106, + 121, + 507, + 133 + ], + "score": 0.985, + "content": "used for attention-based DNN models causes the explosion of accuracy drop (see Appendix A.1 for", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 130, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 86, + 133, + 100, + 144 + ], + "score": 1.0, + "content": "169", + "type": "text" + }, + { + "bbox": [ + 105, + 130, + 506, + 145 + ], + "score": 0.996, + "content": "details). Thus,in this paper we further develop that method to be applicable for wider class of DNN", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 143, + 141, + 154 + ], + "spans": [ + { + "bbox": [ + 86, + 144, + 100, + 154 + ], + "score": 1.0, + "content": "170", + "type": "text" + }, + { + "bbox": [ + 105, + 143, + 141, + 154 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 159, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 86, + 162, + 99, + 170 + ], + "score": 1.0, + "content": "171", + "type": "text" + }, + { + "bbox": [ + 105, + 159, + 506, + 171 + ], + "score": 0.977, + "content": "During our initial investigations,we have noticed that method described in Eq.( 3) is just scaled", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 171, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 86, + 172, + 100, + 182 + ], + "score": 1.0, + "content": "172", + "type": "text" + }, + { + "bbox": [ + 106, + 171, + 506, + 182 + ], + "score": 0.992, + "content": "version of real softmax. So, we proposed to normalize it with some probability density function", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 180, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 86, + 183, + 100, + 193 + ], + "score": 1.0, + "content": "173", + "type": "text" + }, + { + "bbox": [ + 105, + 180, + 197, + 194 + ], + "score": 0.984, + "content": "(PDF) scale,such that", + "type": "text" + }, + { + "bbox": [ + 198, + 181, + 249, + 193 + ], + "score": 0.91, + "content": "\\textstyle { \\int } P D F = { \\mathrm { \\hat { 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 180, + 507, + 194 + ], + "score": 0.976, + "content": ". However, if used straight-forwardly, it would need to involve a", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 191, + 508, + 205 + ], + "spans": [ + { + "bbox": [ + 86, + 194, + 100, + 204 + ], + "score": 1.0, + "content": "174", + "type": "text" + }, + { + "bbox": [ + 105, + 191, + 508, + 205 + ], + "score": 0.989, + "content": "division operation, what is strongly un-desirable for devices with constrained computational power.", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 203, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 86, + 205, + 100, + 214 + ], + "score": 1.0, + "content": "175", + "type": "text" + }, + { + "bbox": [ + 105, + 203, + 507, + 216 + ], + "score": 0.984, + "content": "Therefore, instead of dividing, we propose to substitute division by multiplication with some PDF", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 214, + 233, + 226 + ], + "spans": [ + { + "bbox": [ + 86, + 216, + 100, + 225 + ], + "score": 1.0, + "content": "176", + "type": "text" + }, + { + "bbox": [ + 105, + 214, + 233, + 226 + ], + "score": 0.999, + "content": "normalizing constant as below:", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 86, + 109, + 507, + 154 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 159, + 506, + 226 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 86, + 159, + 508, + 226 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 237, + 379, + 263 + ], + "lines": [ + { + "bbox": [ + 233, + 237, + 379, + 263 + ], + "spans": [ + { + "bbox": [ + 233, + 237, + 379, + 263 + ], + "score": 0.95, + "content": "\\sigma ( x _ { i } ) = \\frac { \\sigma ^ { * } ( x _ { i } ) } { P D F n o r m } \\sigma ^ { * } ( x _ { i } ) \\cdot \\alpha", + "type": "interline_equation", + "image_path": "63b875463223072a756a88240fbb3c990bbfc1acb164be1af730b837f1c16e7d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 233, + 237, + 379, + 263 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 87, + 269, + 327, + 282 + ], + "lines": [ + { + "bbox": [ + 83, + 266, + 330, + 286 + ], + "spans": [ + { + "bbox": [ + 83, + 266, + 133, + 286 + ], + "score": 0.948, + "content": " 177where", + "type": "text" + }, + { + "bbox": [ + 133, + 270, + 207, + 281 + ], + "score": 0.91, + "content": "\\alpha = e ^ { - l n \\left( \\Sigma \\sigma ^ { \\ast } \\left( x _ { i } \\right) \\right) }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 266, + 330, + 286 + ], + "score": 0.998, + "content": "is PDF normalizing constant.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 83, + 266, + 330, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 87, + 287, + 507, + 300 + ], + "lines": [ + { + "bbox": [ + 85, + 286, + 508, + 302 + ], + "spans": [ + { + "bbox": [ + 85, + 286, + 508, + 302 + ], + "score": 0.995, + "content": " 178Then final equation to compute softmax approximation by proposed REXP method is shown below:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 85, + 286, + 508, + 302 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 311, + 414, + 338 + ], + "lines": [ + { + "bbox": [ + 197, + 311, + 414, + 338 + ], + "spans": [ + { + "bbox": [ + 197, + 311, + 414, + 338 + ], + "score": 0.92, + "content": "\\sigma ( x _ { i } ) = \\frac { e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) } } { e ^ { m a x \\left( x \\right) - x _ { i } } } = \\frac { 1 } { e ^ { m a x \\left( x \\right) - x _ { i } } } \\cdot e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) }", + "type": "interline_equation", + "image_path": "d68cc2e28b1b9e274d28ca88c036e9bccaecefb85e19b46d45c093abfa0373c1.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 197, + 311, + 414, + 324.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 197, + 324.5, + 414, + 338.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "index", + "bbox": [ + 87, + 344, + 506, + 378 + ], + "lines": [ + { + "bbox": [ + 87, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 87, + 347, + 100, + 355 + ], + "score": 0.908, + "content": "179", + "type": "text" + }, + { + "bbox": [ + 102, + 344, + 506, + 356 + ], + "score": 0.981, + "content": " Thus, to compute the softmax value it requires just two LUTs of considerably small size, where", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 354, + 507, + 367 + ], + "spans": [ + { + "bbox": [ + 87, + 358, + 100, + 366 + ], + "score": 1.0, + "content": "180", + "type": "text" + }, + { + "bbox": [ + 103, + 354, + 507, + 367 + ], + "score": 0.985, + "content": " content of the first LUT is computed accordingly to Eq.(4), and the second LUT values can be", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 367, + 189, + 378 + ], + "spans": [ + { + "bbox": [ + 86, + 367, + 189, + 378 + ], + "score": 0.997, + "content": "181computed as below:", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + } + ], + "index": 18, + "bbox_fs": [ + 86, + 344, + 507, + 378 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 389, + 407, + 418 + ], + "lines": [ + { + "bbox": [ + 205, + 389, + 407, + 418 + ], + "spans": [ + { + "bbox": [ + 205, + 389, + 407, + 418 + ], + "score": 0.92, + "content": "L U T _ { \\alpha } [ j ] = \\left\\lfloor \\frac { 1 } { j } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall j = 0 , 1 , . . . , x _ { s } - 1", + "type": "interline_equation", + "image_path": "3e7f965619c868b1860965c878110bc5f1bab3dc23c1ef22b1ae8806227859a2.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 389, + 407, + 403.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 205, + 403.5, + 407, + 418.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 89, + 424, + 422, + 437 + ], + "lines": [ + { + "bbox": [ + 85, + 423, + 419, + 438 + ], + "spans": [ + { + "bbox": [ + 85, + 423, + 133, + 438 + ], + "score": 0.997, + "content": "182where", + "type": "text" + }, + { + "bbox": [ + 134, + 425, + 187, + 437 + ], + "score": 0.91, + "content": "j = \\Sigma \\sigma ^ { * } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 426, + 202, + 436 + ], + "score": 0.76, + "content": "x _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 423, + 358, + 438 + ], + "score": 0.995, + "content": "is selected quantization boundary, and", + "type": "text" + }, + { + "bbox": [ + 358, + 424, + 419, + 437 + ], + "score": 0.92, + "content": "L U T _ { \\alpha } [ x _ { s } ] = 0", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 85, + 423, + 419, + 438 + ] + }, + { + "type": "title", + "bbox": [ + 96, + 448, + 215, + 461 + ], + "lines": [ + { + "bbox": [ + 92, + 448, + 216, + 461 + ], + "spans": [ + { + "bbox": [ + 92, + 448, + 216, + 461 + ], + "score": 0.985, + "content": ";4.22-Dimensional LUT", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "index", + "bbox": [ + 87, + 468, + 506, + 513 + ], + "lines": [ + { + "bbox": [ + 86, + 469, + 507, + 482 + ], + "spans": [ + { + "bbox": [ + 86, + 471, + 100, + 480 + ], + "score": 1.0, + "content": "184", + "type": "text" + }, + { + "bbox": [ + 106, + 469, + 507, + 482 + ], + "score": 0.994, + "content": "In this subsection we propose another method which is based on the substitution of a division", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 480, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 86, + 482, + 100, + 492 + ], + "score": 1.0, + "content": "185", + "type": "text" + }, + { + "bbox": [ + 105, + 480, + 506, + 492 + ], + "score": 0.986, + "content": "operation in Eq.(2) by 2-Dimensional (2D) LUT to speed-up and simplify the computation, while", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 86, + 492, + 100, + 503 + ], + "score": 1.0, + "content": "186", + "type": "text" + }, + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "score": 0.991, + "content": "maintaining accuracy even for attention-based DNN models. Hereafter we willrefer to this method", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 502, + 155, + 513 + ], + "spans": [ + { + "bbox": [ + 86, + 504, + 100, + 513 + ], + "score": 1.0, + "content": "187", + "type": "text" + }, + { + "bbox": [ + 105, + 502, + 155, + 513 + ], + "score": 0.934, + "content": " as 2D LUT.", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 518, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 86, + 520, + 100, + 529 + ], + "score": 1.0, + "content": "188", + "type": "text" + }, + { + "bbox": [ + 106, + 518, + 390, + 530 + ], + "score": 0.994, + "content": "For this purpose,we have started with the estimation of distributions of", + "type": "text" + }, + { + "bbox": [ + 390, + 519, + 401, + 528 + ], + "score": 0.86, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 518, + 419, + 530 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 519, + 437, + 528 + ], + "score": 0.88, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 518, + 506, + 530 + ], + "score": 0.997, + "content": "terms for typical", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 86, + 531, + 100, + 540 + ], + "score": 1.0, + "content": "189", + "type": "text" + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 0.983, + "content": " inference runs. Our investigation showed that if max-based normalization is applied to the input", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 86, + 542, + 100, + 551 + ], + "score": 1.0, + "content": "190", + "type": "text" + }, + { + "bbox": [ + 106, + 540, + 154, + 552 + ], + "score": 0.976, + "content": "values (i.e.,", + "type": "text" + }, + { + "bbox": [ + 154, + 540, + 234, + 552 + ], + "score": 0.92, + "content": "x ( x - \\operatorname* { m a x } ( { \\bar { x } } ) ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 540, + 310, + 552 + ], + "score": 0.975, + "content": ", the distribution of", + "type": "text" + }, + { + "bbox": [ + 311, + 541, + 321, + 550 + ], + "score": 0.87, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 540, + 408, + 552 + ], + "score": 0.997, + "content": "is stable within range", + "type": "text" + }, + { + "bbox": [ + 408, + 540, + 452, + 552 + ], + "score": 0.92, + "content": "e ^ { x } \\in ( 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 540, + 506, + 552 + ], + "score": 0.997, + "content": "regardless of", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 86, + 553, + 99, + 562 + ], + "score": 1.0, + "content": "191", + "type": "text" + }, + { + "bbox": [ + 105, + 550, + 229, + 564 + ], + "score": 0.983, + "content": "the input values, and range of", + "type": "text" + }, + { + "bbox": [ + 229, + 551, + 247, + 561 + ], + "score": 0.87, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 550, + 410, + 564 + ], + "score": 0.983, + "content": " term depends on the length of the input", + "type": "text" + }, + { + "bbox": [ + 410, + 553, + 417, + 561 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 550, + 506, + 564 + ], + "score": 0.974, + "content": ". Thus, it allows us to", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 562, + 331, + 573 + ], + "spans": [ + { + "bbox": [ + 86, + 564, + 100, + 573 + ], + "score": 1.0, + "content": "192", + "type": "text" + }, + { + "bbox": [ + 105, + 562, + 331, + 573 + ], + "score": 0.981, + "content": "have stable computation even within small size of LUT.", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + } + ], + "index": 25.5, + "bbox_fs": [ + 86, + 469, + 507, + 513 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 518, + 506, + 573 + ], + "lines": [], + "index": 30, + "bbox_fs": [ + 86, + 518, + 506, + 573 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 99, + 578, + 506, + 677 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 506, + 591 + ], + "score": 0.994, + "content": "Generic architecture and concept of the proposed method for efcient softmax implementation as", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 507, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 464, + 602 + ], + "score": 0.965, + "content": " 2D LUT is shown in Figure 1. There are two LUTs used: 1D LUT for approximation of", + "type": "text" + }, + { + "bbox": [ + 465, + 590, + 475, + 599 + ], + "score": 0.86, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 588, + 507, + 602 + ], + "score": 1.0, + "content": "values,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 457, + 613 + ], + "score": 0.99, + "content": "and 2D LUT for storing softmax output values dependent on the values of numerator", + "type": "text" + }, + { + "bbox": [ + 458, + 601, + 469, + 610 + ], + "score": 0.85, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 601, + 506, + 613 + ], + "score": 0.997, + "content": "(used as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 291, + 623 + ], + "score": 0.986, + "content": "the 1-st index in the table),and denominator", + "type": "text" + }, + { + "bbox": [ + 291, + 611, + 309, + 621 + ], + "score": 0.87, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 611, + 506, + 623 + ], + "score": 0.987, + "content": "(used as the 2-nd index) of Eq.(2). As it can be", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 0.982, + "content": " seen from Figure 1(right),to calculate the indexes for corresponded value in 2D LUT table, only", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 0.995, + "content": "most-significant bits (MSB)are needed. Thus,the simplest hardware realization can be done within", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 0.977, + "content": " wiring only (when MSB bits are directly connected to the appropriate address selectors)3. Also, the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 507, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 507, + 667 + ], + "score": 0.981, + "content": " proposed method can be easily modified to the case where,1-st index of 2D LUT table is calculated", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 143, + 677 + ], + "score": 0.996, + "content": "not from", + "type": "text" + }, + { + "bbox": [ + 143, + 666, + 154, + 676 + ], + "score": 0.85, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 666, + 246, + 677 + ], + "score": 0.997, + "content": "but directly from input", + "type": "text" + }, + { + "bbox": [ + 247, + 668, + 253, + 676 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 666, + 493, + 677 + ], + "score": 0.988, + "content": ". In such case there is no need to store intermediate values of", + "type": "text" + }, + { + "bbox": [ + 493, + 666, + 504, + 676 + ], + "score": 0.86, + "content": "e ^ { x }", + "type": "inline_equation" + } + ], + "index": 41 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 577, + 507, + 677 + ] + }, + { + "type": "text", + "bbox": [ + 97, + 682, + 503, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 681, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 316, + 694 + ], + "score": 0.997, + "content": "While the content of 1D LUT for approximation of", + "type": "text" + }, + { + "bbox": [ + 316, + 684, + 326, + 692 + ], + "score": 0.87, + "content": "e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 681, + 505, + 694 + ], + "score": 0.986, + "content": " values is straightforward, 2D LUT contains", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 692, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 706 + ], + "score": 0.993, + "content": "the family of linear approximations where each row contains the softmax output scaled according tc", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 681, + 505, + 706 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 72, + 504, + 222 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 72, + 504, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 72, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 504, + 222 + ], + "score": 0.968, + "type": "image", + "image_path": "a2d0098d330c6217878fa160f5e6520aff0c5f2421a8b03dd2beb0f03f404954.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 72, + 504, + 122.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 122.0, + 504, + 172.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 172.0, + 504, + 222.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 232, + 506, + 277 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "score": 0.985, + "content": "Figure 1: Generic concept of the proposed 2D LUT method (left). Reading softmax output value", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 494, + 257 + ], + "score": 0.991, + "content": "from pre-computed 2D LUT(right). Computational flow consists from two steps: a) obtaining of", + "type": "text" + }, + { + "bbox": [ + 494, + 244, + 505, + 256 + ], + "score": 0.88, + "content": "e _ { i } ^ { x }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 317, + 269 + ], + "score": 0.99, + "content": " values by reading from 1D LUT and accumulation of", + "type": "text" + }, + { + "bbox": [ + 317, + 255, + 335, + 265 + ], + "score": 0.88, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 254, + 409, + 269 + ], + "score": 0.997, + "content": "term, b) obtaining", + "type": "text" + }, + { + "bbox": [ + 410, + 255, + 433, + 267 + ], + "score": 0.92, + "content": "\\sigma ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 254, + 506, + 269 + ], + "score": 0.972, + "content": "values by reading", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 266, + 167, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 167, + 277 + ], + "score": 0.984, + "content": "from 2D LUT.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 85, + 311, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 86, + 310, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 86, + 310, + 106, + 326 + ], + "score": 1.0, + "content": "204", + "type": "text" + }, + { + "bbox": [ + 106, + 312, + 124, + 322 + ], + "score": 0.85, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 310, + 496, + 326 + ], + "score": 0.979, + "content": " term as shown in Eq.(8). The indexes of LUT are computed according to Eq.(9) and Eq.(10),", + "type": "text" + }, + { + "bbox": [ + 496, + 313, + 505, + 322 + ], + "score": 0.51, + "content": "w", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 84, + 322, + 349, + 335 + ], + "spans": [ + { + "bbox": [ + 84, + 322, + 349, + 335 + ], + "score": 0.99, + "content": " 205means the number of bits for the value in selected precision.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 347, + 386, + 375 + ], + "lines": [ + { + "bbox": [ + 226, + 347, + 386, + 375 + ], + "spans": [ + { + "bbox": [ + 226, + 347, + 386, + 375 + ], + "score": 0.95, + "content": "L U T _ { \\sigma } [ i ] [ j ] = \\left\\lfloor \\frac { i \\cdot s c a l e _ { e ^ { x } } } { j \\cdot s c a l e _ { \\Sigma } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil", + "type": "interline_equation", + "image_path": "3eeb6aa7e389a3166d9eb880eac8e3c7c21890d6008716eb8a28ac7dc995876d.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 347, + 386, + 361.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 226, + 361.0, + 386, + 375.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 86, + 383, + 133, + 394 + ], + "lines": [ + { + "bbox": [ + 85, + 382, + 134, + 394 + ], + "spans": [ + { + "bbox": [ + 85, + 382, + 134, + 394 + ], + "score": 1.0, + "content": "206where", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 391, + 352, + 419 + ], + "lines": [ + { + "bbox": [ + 259, + 391, + 352, + 419 + ], + "spans": [ + { + "bbox": [ + 259, + 391, + 352, + 419 + ], + "score": 0.91, + "content": "i = 0 , . . . , \\left\\lfloor \\frac { m a x ( e ^ { x } ) } { s c a l e _ { e ^ { x } } } \\right\\rceil", + "type": "interline_equation", + "image_path": "fd92bf06428cd0ba128ceffac2f7b143f36c94a058964482dce4b6205b8af4d2.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 259, + 391, + 352, + 405.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 259, + 405.0, + 352, + 419.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 428, + 357, + 456 + ], + "lines": [ + { + "bbox": [ + 255, + 428, + 357, + 456 + ], + "spans": [ + { + "bbox": [ + 255, + 428, + 357, + 456 + ], + "score": 0.9, + "content": "j = 1 , . . . , \\left\\lfloor \\frac { m a x ( \\Sigma e ^ { x } ) } { s c a l e _ { \\Sigma } } \\right\\rceil", + "type": "interline_equation", + "image_path": "780a766770dcd8458dab8aa7254aaca93fb9a45f81584481cc5375bc6ed8a884.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 255, + 428, + 357, + 442.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 255, + 442.0, + 357, + 456.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 86, + 464, + 506, + 542 + ], + "lines": [ + { + "bbox": [ + 86, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 86, + 466, + 99, + 476 + ], + "score": 1.0, + "content": "207", + "type": "text" + }, + { + "bbox": [ + 105, + 464, + 132, + 477 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 464, + 212, + 477 + ], + "score": 0.91, + "content": "x \\to ( x - \\operatorname* { m a x } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 464, + 329, + 477 + ], + "score": 0.972, + "content": "normalization was used, so", + "type": "text" + }, + { + "bbox": [ + 329, + 464, + 395, + 477 + ], + "score": 0.9, + "content": "m a x ( e ^ { x } ) = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 464, + 446, + 477 + ], + "score": 0.938, + "content": ",Therefore,", + "type": "text" + }, + { + "bbox": [ + 446, + 465, + 478, + 476 + ], + "score": 0.88, + "content": "s c a l e _ { e ^ { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "factor", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 86, + 475, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 86, + 478, + 99, + 486 + ], + "score": 1.0, + "content": "208", + "type": "text" + }, + { + "bbox": [ + 106, + 475, + 506, + 487 + ], + "score": 0.984, + "content": "allows to define the number of columns in LUT to make it small enough for practical applications. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 85, + 487, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 85, + 488, + 100, + 498 + ], + "score": 1.0, + "content": "209", + "type": "text" + }, + { + "bbox": [ + 105, + 487, + 240, + 498 + ], + "score": 0.975, + "content": " our experiment we have selected", + "type": "text" + }, + { + "bbox": [ + 240, + 487, + 298, + 497 + ], + "score": 0.91, + "content": "s c a l e _ { e ^ { x } } = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 487, + 506, + 498 + ], + "score": 0.993, + "content": "for all precisions,what allows us to reduce the size", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 86, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 86, + 500, + 99, + 508 + ], + "score": 1.0, + "content": "210", + "type": "text" + }, + { + "bbox": [ + 105, + 498, + 212, + 509 + ], + "score": 0.984, + "content": "of LUT significantly (i.e.,", + "type": "text" + }, + { + "bbox": [ + 212, + 498, + 262, + 509 + ], + "score": 0.9, + "content": "i = 0 , . . . , 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 498, + 336, + 509 + ], + "score": 0.992, + "content": "for all versions of", + "type": "text" + }, + { + "bbox": [ + 336, + 497, + 363, + 508 + ], + "score": 0.88, + "content": "L U T _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 498, + 424, + 509 + ], + "score": 0.925, + "content": "). The value of", + "type": "text" + }, + { + "bbox": [ + 424, + 497, + 469, + 509 + ], + "score": 0.92, + "content": "m a x ( \\Sigma e ^ { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 498, + 506, + 509 + ], + "score": 1.0, + "content": "depends", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 85, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 85, + 510, + 99, + 520 + ], + "score": 1.0, + "content": "211", + "type": "text" + }, + { + "bbox": [ + 105, + 508, + 366, + 520 + ], + "score": 0.988, + "content": " on the distribution of input values. Our experiments showed that", + "type": "text" + }, + { + "bbox": [ + 366, + 508, + 434, + 520 + ], + "score": 0.92, + "content": "m a x ( \\Sigma e ^ { x } ) = 6 0", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 508, + 506, + 520 + ], + "score": 0.992, + "content": "is big enough for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 85, + 519, + 508, + 532 + ], + "spans": [ + { + "bbox": [ + 85, + 521, + 100, + 531 + ], + "score": 1.0, + "content": "212", + "type": "text" + }, + { + "bbox": [ + 105, + 519, + 287, + 532 + ], + "score": 0.989, + "content": "the tested NLP applications.We also selected", + "type": "text" + }, + { + "bbox": [ + 288, + 519, + 343, + 530 + ], + "score": 0.91, + "content": "s c a l e _ { \\Sigma } = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 519, + 508, + 532 + ], + "score": 0.982, + "content": "for simplicity of the computations. Thus,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 86, + 530, + 357, + 543 + ], + "spans": [ + { + "bbox": [ + 86, + 532, + 100, + 542 + ], + "score": 1.0, + "content": "213", + "type": "text" + }, + { + "bbox": [ + 106, + 530, + 237, + 543 + ], + "score": 0.989, + "content": "finally, those parameters give us", + "type": "text" + }, + { + "bbox": [ + 237, + 530, + 264, + 541 + ], + "score": 0.91, + "content": "L U T _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 530, + 324, + 543 + ], + "score": 0.989, + "content": "of typical size", + "type": "text" + }, + { + "bbox": [ + 324, + 531, + 357, + 541 + ], + "score": 0.9, + "content": "1 1 \\times 6 0", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 90, + 557, + 250, + 571 + ], + "lines": [ + { + "bbox": [ + 85, + 556, + 252, + 573 + ], + "spans": [ + { + "bbox": [ + 85, + 556, + 252, + 573 + ], + "score": 0.996, + "content": ":145Experimental validation", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 105, + 582, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 506, + 595 + ], + "score": 0.993, + "content": "To validate the proposed methods and check how well they generalize we have conducted several", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "score": 0.994, + "content": "experiments with different models (DETR,Transformer,and BERT) for diferent applications (object", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 604, + 507, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 507, + 617 + ], + "score": 0.988, + "content": "detection, machine translation,sentiment analysis,and semantic equivalence) over variety of datasets.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 615, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 507, + 628 + ], + "score": 0.99, + "content": "In all those experiments we have used available pre-trained models, where we applied dynamic post-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 625, + 507, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 507, + 639 + ], + "score": 0.987, + "content": " training quantization (hereafter we referred to quantized models as PTQ-D) 4. Then we substituted a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "score": 0.992, + "content": "conventional softmax layer in quantized models with the LUT-based computation as described in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 0.987, + "content": "Section 4. We did not consider any retraining or fine-tuning of the models after quantization, and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "score": 0.989, + "content": " the same off-line generated LUTs were used among all models. Our code allows to select LUTs", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 670, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 506, + 682 + ], + "score": 0.981, + "content": "with different precision from int16 down to uint2, what allows to analyze the sensitivity of the model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 682, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 506, + 693 + ], + "score": 0.989, + "content": "to softmax approximation even for ultra-low 2-bits quantization. The details of experiments are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "score": 0.973, + "content": "described below,and results are summarized in Figure 2, Figure 3,and Table 2 .For more details", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 712, + 248, + 723 + ], + "lines": [ + { + "bbox": [ + 119, + 711, + 249, + 724 + ], + "spans": [ + { + "bbox": [ + 119, + 711, + 249, + 724 + ], + "score": 0.979, + "content": "4 See more details in Appendix A.3.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 743, + 309, + 751 + ], + "lines": [ + { + "bbox": [ + 303, + 742, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 303, + 742, + 310, + 753 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 85, + 582, + 100, + 704 + ], + "lines": [ + { + "bbox": [ + 85, + 585, + 100, + 595 + ], + "spans": [ + { + "bbox": [ + 85, + 585, + 100, + 595 + ], + "score": 1.0, + "content": "215", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 595, + 100, + 606 + ], + "spans": [ + { + "bbox": [ + 85, + 595, + 100, + 606 + ], + "score": 1.0, + "content": "216", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 606, + 100, + 617 + ], + "spans": [ + { + "bbox": [ + 85, + 606, + 100, + 617 + ], + "score": 1.0, + "content": "217", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 617, + 100, + 628 + ], + "spans": [ + { + "bbox": [ + 85, + 617, + 100, + 628 + ], + "score": 1.0, + "content": "218", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 628, + 100, + 639 + ], + "spans": [ + { + "bbox": [ + 85, + 628, + 100, + 639 + ], + "score": 1.0, + "content": "219", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 639, + 100, + 650 + ], + "spans": [ + { + "bbox": [ + 85, + 639, + 100, + 650 + ], + "score": 1.0, + "content": "220", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 650, + 100, + 661 + ], + "spans": [ + { + "bbox": [ + 85, + 650, + 100, + 661 + ], + "score": 1.0, + "content": "221", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 661, + 100, + 672 + ], + "spans": [ + { + "bbox": [ + 86, + 661, + 100, + 672 + ], + "score": 0.898, + "content": "222", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 672, + 100, + 683 + ], + "spans": [ + { + "bbox": [ + 86, + 672, + 100, + 683 + ], + "score": 1.0, + "content": "223", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 683, + 99, + 693 + ], + "spans": [ + { + "bbox": [ + 86, + 683, + 99, + 693 + ], + "score": 1.0, + "content": "224", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 694, + 99, + 704 + ], + "spans": [ + { + "bbox": [ + 86, + 694, + 99, + 704 + ], + "score": 1.0, + "content": "225", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 72, + 504, + 222 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 72, + 504, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 72, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 504, + 222 + ], + "score": 0.968, + "type": "image", + "image_path": "a2d0098d330c6217878fa160f5e6520aff0c5f2421a8b03dd2beb0f03f404954.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 72, + 504, + 122.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 122.0, + 504, + 172.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 172.0, + 504, + 222.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 232, + 506, + 277 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "score": 0.985, + "content": "Figure 1: Generic concept of the proposed 2D LUT method (left). Reading softmax output value", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 494, + 257 + ], + "score": 0.991, + "content": "from pre-computed 2D LUT(right). Computational flow consists from two steps: a) obtaining of", + "type": "text" + }, + { + "bbox": [ + 494, + 244, + 505, + 256 + ], + "score": 0.88, + "content": "e _ { i } ^ { x }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 254, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 317, + 269 + ], + "score": 0.99, + "content": " values by reading from 1D LUT and accumulation of", + "type": "text" + }, + { + "bbox": [ + 317, + 255, + 335, + 265 + ], + "score": 0.88, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 254, + 409, + 269 + ], + "score": 0.997, + "content": "term, b) obtaining", + "type": "text" + }, + { + "bbox": [ + 410, + 255, + 433, + 267 + ], + "score": 0.92, + "content": "\\sigma ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 254, + 506, + 269 + ], + "score": 0.972, + "content": "values by reading", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 266, + 167, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 167, + 277 + ], + "score": 0.984, + "content": "from 2D LUT.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "index", + "bbox": [ + 85, + 311, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 86, + 310, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 86, + 310, + 106, + 326 + ], + "score": 1.0, + "content": "204", + "type": "text" + }, + { + "bbox": [ + 106, + 312, + 124, + 322 + ], + "score": 0.85, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 310, + 496, + 326 + ], + "score": 0.979, + "content": " term as shown in Eq.(8). The indexes of LUT are computed according to Eq.(9) and Eq.(10),", + "type": "text" + }, + { + "bbox": [ + 496, + 313, + 505, + 322 + ], + "score": 0.51, + "content": "w", + "type": "inline_equation" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 322, + 349, + 335 + ], + "spans": [ + { + "bbox": [ + 84, + 322, + 349, + 335 + ], + "score": 0.99, + "content": " 205means the number of bits for the value in selected precision.", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + } + ], + "index": 7.5, + "bbox_fs": [ + 84, + 310, + 505, + 335 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 347, + 386, + 375 + ], + "lines": [ + { + "bbox": [ + 226, + 347, + 386, + 375 + ], + "spans": [ + { + "bbox": [ + 226, + 347, + 386, + 375 + ], + "score": 0.95, + "content": "L U T _ { \\sigma } [ i ] [ j ] = \\left\\lfloor \\frac { i \\cdot s c a l e _ { e ^ { x } } } { j \\cdot s c a l e _ { \\Sigma } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil", + "type": "interline_equation", + "image_path": "3eeb6aa7e389a3166d9eb880eac8e3c7c21890d6008716eb8a28ac7dc995876d.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 226, + 347, + 386, + 361.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 226, + 361.0, + 386, + 375.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 86, + 383, + 133, + 394 + ], + "lines": [ + { + "bbox": [ + 85, + 382, + 134, + 394 + ], + "spans": [ + { + "bbox": [ + 85, + 382, + 134, + 394 + ], + "score": 1.0, + "content": "206where", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 85, + 382, + 134, + 394 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 391, + 352, + 419 + ], + "lines": [ + { + "bbox": [ + 259, + 391, + 352, + 419 + ], + "spans": [ + { + "bbox": [ + 259, + 391, + 352, + 419 + ], + "score": 0.91, + "content": "i = 0 , . . . , \\left\\lfloor \\frac { m a x ( e ^ { x } ) } { s c a l e _ { e ^ { x } } } \\right\\rceil", + "type": "interline_equation", + "image_path": "fd92bf06428cd0ba128ceffac2f7b143f36c94a058964482dce4b6205b8af4d2.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 259, + 391, + 352, + 405.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 259, + 405.0, + 352, + 419.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 428, + 357, + 456 + ], + "lines": [ + { + "bbox": [ + 255, + 428, + 357, + 456 + ], + "spans": [ + { + "bbox": [ + 255, + 428, + 357, + 456 + ], + "score": 0.9, + "content": "j = 1 , . . . , \\left\\lfloor \\frac { m a x ( \\Sigma e ^ { x } ) } { s c a l e _ { \\Sigma } } \\right\\rceil", + "type": "interline_equation", + "image_path": "780a766770dcd8458dab8aa7254aaca93fb9a45f81584481cc5375bc6ed8a884.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 255, + 428, + 357, + 442.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 255, + 442.0, + 357, + 456.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "index", + "bbox": [ + 86, + 464, + 506, + 542 + ], + "lines": [ + { + "bbox": [ + 86, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 86, + 466, + 99, + 476 + ], + "score": 1.0, + "content": "207", + "type": "text" + }, + { + "bbox": [ + 105, + 464, + 132, + 477 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 464, + 212, + 477 + ], + "score": 0.91, + "content": "x \\to ( x - \\operatorname* { m a x } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 464, + 329, + 477 + ], + "score": 0.972, + "content": "normalization was used, so", + "type": "text" + }, + { + "bbox": [ + 329, + 464, + 395, + 477 + ], + "score": 0.9, + "content": "m a x ( e ^ { x } ) = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 464, + 446, + 477 + ], + "score": 0.938, + "content": ",Therefore,", + "type": "text" + }, + { + "bbox": [ + 446, + 465, + 478, + 476 + ], + "score": 0.88, + "content": "s c a l e _ { e ^ { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "factor", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 475, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 86, + 478, + 99, + 486 + ], + "score": 1.0, + "content": "208", + "type": "text" + }, + { + "bbox": [ + 106, + 475, + 506, + 487 + ], + "score": 0.984, + "content": "allows to define the number of columns in LUT to make it small enough for practical applications. In", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 487, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 85, + 488, + 100, + 498 + ], + "score": 1.0, + "content": "209", + "type": "text" + }, + { + "bbox": [ + 105, + 487, + 240, + 498 + ], + "score": 0.975, + "content": " our experiment we have selected", + "type": "text" + }, + { + "bbox": [ + 240, + 487, + 298, + 497 + ], + "score": 0.91, + "content": "s c a l e _ { e ^ { x } } = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 487, + 506, + 498 + ], + "score": 0.993, + "content": "for all precisions,what allows us to reduce the size", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 86, + 500, + 99, + 508 + ], + "score": 1.0, + "content": "210", + "type": "text" + }, + { + "bbox": [ + 105, + 498, + 212, + 509 + ], + "score": 0.984, + "content": "of LUT significantly (i.e.,", + "type": "text" + }, + { + "bbox": [ + 212, + 498, + 262, + 509 + ], + "score": 0.9, + "content": "i = 0 , . . . , 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 498, + 336, + 509 + ], + "score": 0.992, + "content": "for all versions of", + "type": "text" + }, + { + "bbox": [ + 336, + 497, + 363, + 508 + ], + "score": 0.88, + "content": "L U T _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 498, + 424, + 509 + ], + "score": 0.925, + "content": "). The value of", + "type": "text" + }, + { + "bbox": [ + 424, + 497, + 469, + 509 + ], + "score": 0.92, + "content": "m a x ( \\Sigma e ^ { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 498, + 506, + 509 + ], + "score": 1.0, + "content": "depends", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 85, + 510, + 99, + 520 + ], + "score": 1.0, + "content": "211", + "type": "text" + }, + { + "bbox": [ + 105, + 508, + 366, + 520 + ], + "score": 0.988, + "content": " on the distribution of input values. Our experiments showed that", + "type": "text" + }, + { + "bbox": [ + 366, + 508, + 434, + 520 + ], + "score": 0.92, + "content": "m a x ( \\Sigma e ^ { x } ) = 6 0", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 508, + 506, + 520 + ], + "score": 0.992, + "content": "is big enough for", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 519, + 508, + 532 + ], + "spans": [ + { + "bbox": [ + 85, + 521, + 100, + 531 + ], + "score": 1.0, + "content": "212", + "type": "text" + }, + { + "bbox": [ + 105, + 519, + 287, + 532 + ], + "score": 0.989, + "content": "the tested NLP applications.We also selected", + "type": "text" + }, + { + "bbox": [ + 288, + 519, + 343, + 530 + ], + "score": 0.91, + "content": "s c a l e _ { \\Sigma } = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 519, + 508, + 532 + ], + "score": 0.982, + "content": "for simplicity of the computations. Thus,", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 530, + 357, + 543 + ], + "spans": [ + { + "bbox": [ + 86, + 532, + 100, + 542 + ], + "score": 1.0, + "content": "213", + "type": "text" + }, + { + "bbox": [ + 106, + 530, + 237, + 543 + ], + "score": 0.989, + "content": "finally, those parameters give us", + "type": "text" + }, + { + "bbox": [ + 237, + 530, + 264, + 541 + ], + "score": 0.91, + "content": "L U T _ { \\sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 530, + 324, + 543 + ], + "score": 0.989, + "content": "of typical size", + "type": "text" + }, + { + "bbox": [ + 324, + 531, + 357, + 541 + ], + "score": 0.9, + "content": "1 1 \\times 6 0", + "type": "inline_equation" + } + ], + "index": 22, + "is_list_start_line": true + } + ], + "index": 19, + "bbox_fs": [ + 85, + 464, + 508, + 543 + ] + }, + { + "type": "title", + "bbox": [ + 90, + 557, + 250, + 571 + ], + "lines": [ + { + "bbox": [ + 85, + 556, + 252, + 573 + ], + "spans": [ + { + "bbox": [ + 85, + 556, + 252, + 573 + ], + "score": 0.996, + "content": ":145Experimental validation", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 105, + 582, + 506, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 506, + 595 + ], + "score": 0.993, + "content": "To validate the proposed methods and check how well they generalize we have conducted several", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "score": 0.994, + "content": "experiments with different models (DETR,Transformer,and BERT) for diferent applications (object", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 604, + 507, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 507, + 617 + ], + "score": 0.988, + "content": "detection, machine translation,sentiment analysis,and semantic equivalence) over variety of datasets.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 615, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 507, + 628 + ], + "score": 0.99, + "content": "In all those experiments we have used available pre-trained models, where we applied dynamic post-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 625, + 507, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 507, + 639 + ], + "score": 0.987, + "content": " training quantization (hereafter we referred to quantized models as PTQ-D) 4. Then we substituted a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "score": 0.992, + "content": "conventional softmax layer in quantized models with the LUT-based computation as described in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 660 + ], + "score": 0.987, + "content": "Section 4. We did not consider any retraining or fine-tuning of the models after quantization, and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 671 + ], + "score": 0.989, + "content": " the same off-line generated LUTs were used among all models. Our code allows to select LUTs", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 670, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 506, + 682 + ], + "score": 0.981, + "content": "with different precision from int16 down to uint2, what allows to analyze the sensitivity of the model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 682, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 506, + 693 + ], + "score": 0.989, + "content": "to softmax approximation even for ultra-low 2-bits quantization. The details of experiments are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "score": 0.973, + "content": "described below,and results are summarized in Figure 2, Figure 3,and Table 2 .For more details", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "score": 0.986, + "content": " please refer to Table 6,and Table 7 in Appendix.As it can be seen from figures, proposed LUT-based", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 350, + 97 + ], + "score": 0.987, + "content": " softmax computation methods maintain accuracy drop below", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 350, + 84, + 372, + 94 + ], + "score": 0.9, + "content": "1 . 0 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 372, + 83, + 506, + 97 + ], + "score": 0.998, + "content": "down to 8-bit quantization for all", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 246, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 246, + 106 + ], + "score": 0.977, + "content": "NLP and DETR (no DC5) models.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 582, + 507, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 101, + 72, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "score": 0.986, + "content": " please refer to Table 6,and Table 7 in Appendix.As it can be seen from figures, proposed LUT-based", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 350, + 97 + ], + "score": 0.987, + "content": " softmax computation methods maintain accuracy drop below", + "type": "text" + }, + { + "bbox": [ + 350, + 84, + 372, + 94 + ], + "score": 0.9, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 83, + 506, + 97 + ], + "score": 0.998, + "content": "down to 8-bit quantization for all", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 246, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 246, + 106 + ], + "score": 0.977, + "content": "NLP and DETR (no DC5) models.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 106, + 119, + 201, + 130 + ], + "lines": [ + { + "bbox": [ + 105, + 117, + 202, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 202, + 133 + ], + "score": 0.982, + "content": " 5.1 Object detection", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 507, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 507, + 151 + ], + "score": 0.987, + "content": "For our first experiments we have used DEtection TRansofmer (DETR) models for object detection [2],", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 0.984, + "content": "with available pre-trained models 5.As it can be seen from Table 6, we were able to reproduce the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 172 + ], + "score": 0.985, + "content": " same results for original FP32 reference model over COCO dataset. We have used the same IoU", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 507, + 184 + ], + "score": 0.978, + "content": "metric by Average Precision (AP) as in Table 1 in [2]. Then we run a bunch of experiments to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 182, + 507, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 507, + 195 + ], + "score": 0.979, + "content": "check how accuracy of object detection willbe decreased due to PTQ-D quantization and LUT-based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 507, + 206 + ], + "score": 0.994, + "content": "approximation as proposed in REXP method (see Section 4.1). Table 5 in Appendix shows the LUTs", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 507, + 216 + ], + "score": 0.988, + "content": "size for several pre-selected cases in int16 and uint8 precision. There are three cases selected which", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 210, + 227 + ], + "score": 0.979, + "content": "are different in the size of", + "type": "text" + }, + { + "bbox": [ + 210, + 216, + 237, + 227 + ], + "score": 0.91, + "content": "L U T _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 216, + 258, + 227 + ], + "score": 0.958, + "content": ": it is", + "type": "text" + }, + { + "bbox": [ + 259, + 216, + 292, + 226 + ], + "score": 0.9, + "content": "1 \\times 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 216, + 336, + 227 + ], + "score": 0.971, + "content": "for case 1,", + "type": "text" + }, + { + "bbox": [ + 336, + 216, + 370, + 226 + ], + "score": 0.85, + "content": "1 \\times 3 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 216, + 430, + 227 + ], + "score": 0.967, + "content": "for case 2,and", + "type": "text" + }, + { + "bbox": [ + 430, + 216, + 464, + 226 + ], + "score": 0.9, + "content": "1 \\times 5 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 216, + 507, + 227 + ], + "score": 0.958, + "content": "for case 3.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 506, + 287 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 506, + 245 + ], + "score": 0.992, + "content": "Analysis of Figure 2 shows that accuracy drop caused by application of softmax approximation is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 130, + 255 + ], + "score": 0.996, + "content": "small", + "type": "text" + }, + { + "bbox": [ + 131, + 243, + 160, + 254 + ], + "score": 0.87, + "content": "( < 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 242, + 479, + 255 + ], + "score": 0.993, + "content": "and acceptable for plain DETR models (no DC5 used). Bigger accuracy drop for", + "type": "text" + }, + { + "bbox": [ + 479, + 243, + 505, + 253 + ], + "score": 0.85, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "score": 0.983, + "content": "cases is caused by the bigger size of self-atentions of the encoder (see details in Section 5.3). We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 507, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 507, + 278 + ], + "score": 0.986, + "content": " expect that increasing size ofLUTs will help to solve this issue. The behavior of average recall values", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 258, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 258, + 288 + ], + "score": 0.999, + "content": "is similar to average precision values.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "image", + "bbox": [ + 113, + 310, + 485, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 310, + 485, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 310, + 485, + 421 + ], + "spans": [ + { + "bbox": [ + 113, + 310, + 485, + 421 + ], + "score": 0.97, + "type": "image", + "image_path": "18032ac4c37b6c2eb1a06638b0da073beea2c546e17d030f4ad490a25ab947a5.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 113, + 310, + 485, + 347.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 113, + 347.0, + 485, + 384.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 113, + 384.0, + 485, + 421.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 437, + 507, + 481 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 437, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 506, + 449 + ], + "score": 0.991, + "content": "Figure 2: DETR averaged accuracy drop of PTQ-D models with softmax approximations Vs. original", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 447, + 507, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 507, + 460 + ], + "score": 0.985, + "content": "FP32 models: average precision (left) and average recall(right). As it can be seen from the figure, for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 490, + 471 + ], + "score": 0.987, + "content": "DETR models without dilation at the last stage (no DC5) the accuracy drop for all cases is below", + "type": "text" + }, + { + "bbox": [ + 491, + 459, + 505, + 469 + ], + "score": 0.86, + "content": "1 \\%", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 470, + 240, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 240, + 482 + ], + "score": 0.989, + "content": "and shows very similar behavior.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "index": 19.75 + }, + { + "type": "title", + "bbox": [ + 89, + 500, + 174, + 511 + ], + "lines": [ + { + "bbox": [ + 86, + 498, + 176, + 514 + ], + "spans": [ + { + "bbox": [ + 86, + 498, + 176, + 514 + ], + "score": 0.981, + "content": "2435.2 NLP tasks", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 506, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 507, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 507, + 533 + ], + "score": 0.996, + "content": "Next, we have validated the proposed methods by experimenting with several NLP tasks. Similarly,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 531, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 507, + 543 + ], + "score": 0.994, + "content": "to DETR case,Table 8 in Appendix shows the LUTs size for several pre-selected cases for those", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 542, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 507, + 554 + ], + "score": 0.989, + "content": "experiments. In Table 2 below there are accumulated values from the experiments with NLP models.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "score": 0.994, + "content": "The bold values in the table shows highest values per model per method after applying quantization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 564, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 506, + 576 + ], + "score": 0.98, + "content": "and softmax approximation. As it follows from the analysis of experiment results,about 7Oo Bytes for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "score": 0.967, + "content": "2D LUT method, and up to 50 Bytes for REXP method would be enough for practical applications.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 597, + 227, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 228, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 228, + 611 + ], + "score": 1.0, + "content": "5.2.1Machine Translation", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 107, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 107, + 617, + 505, + 628 + ], + "score": 0.985, + "content": "Among NLP tasks we have started with machine translation.For our experiments we have used", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 0.989, + "content": "transofmer-base model for En-Ge translation [12] from OpenNMT library, with available pre-trained", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 0.985, + "content": "model 6,configured to replicate the results from original paper. To avoid dependency of the evaluation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 649, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 507, + 662 + ], + "score": 0.978, + "content": "results on the selected tokenization scheme,we have used spm_decode 7to detokenize the output of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 660, + 442, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 442, + 673 + ], + "score": 0.973, + "content": "translation,and then applied multi - bleu.perl script 8 to calculate BLEU score.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 679, + 285, + 723 + ], + "lines": [ + { + "bbox": [ + 118, + 677, + 273, + 693 + ], + "spans": [ + { + "bbox": [ + 118, + 677, + 273, + 693 + ], + "score": 0.983, + "content": "5https://ithub.com/facebookresearch/detr", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 689, + 239, + 703 + ], + "spans": [ + { + "bbox": [ + 118, + 689, + 239, + 703 + ], + "score": 0.995, + "content": "6https://opennmt.net/Models-py/", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 700, + 270, + 714 + ], + "spans": [ + { + "bbox": [ + 118, + 700, + 270, + 714 + ], + "score": 0.986, + "content": "7https://gitub.com/google/sentencepiece", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 711, + 285, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 711, + 285, + 723 + ], + "score": 0.994, + "content": "8https://github.com/moses-smt/mosesdecoder", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 743, + 309, + 751 + ], + "lines": [ + { + "bbox": [ + 303, + 742, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 303, + 742, + 309, + 753 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 101, + 72, + 505, + 106 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 72, + 506, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 106, + 119, + 201, + 130 + ], + "lines": [ + { + "bbox": [ + 105, + 117, + 202, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 202, + 133 + ], + "score": 0.982, + "content": " 5.1 Object detection", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 507, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 507, + 151 + ], + "score": 0.987, + "content": "For our first experiments we have used DEtection TRansofmer (DETR) models for object detection [2],", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 0.984, + "content": "with available pre-trained models 5.As it can be seen from Table 6, we were able to reproduce the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 506, + 172 + ], + "score": 0.985, + "content": " same results for original FP32 reference model over COCO dataset. We have used the same IoU", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 507, + 184 + ], + "score": 0.978, + "content": "metric by Average Precision (AP) as in Table 1 in [2]. Then we run a bunch of experiments to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 182, + 507, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 507, + 195 + ], + "score": 0.979, + "content": "check how accuracy of object detection willbe decreased due to PTQ-D quantization and LUT-based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 507, + 206 + ], + "score": 0.994, + "content": "approximation as proposed in REXP method (see Section 4.1). Table 5 in Appendix shows the LUTs", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 507, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 507, + 216 + ], + "score": 0.988, + "content": "size for several pre-selected cases in int16 and uint8 precision. There are three cases selected which", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 210, + 227 + ], + "score": 0.979, + "content": "are different in the size of", + "type": "text" + }, + { + "bbox": [ + 210, + 216, + 237, + 227 + ], + "score": 0.91, + "content": "L U T _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 216, + 258, + 227 + ], + "score": 0.958, + "content": ": it is", + "type": "text" + }, + { + "bbox": [ + 259, + 216, + 292, + 226 + ], + "score": 0.9, + "content": "1 \\times 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 216, + 336, + 227 + ], + "score": 0.971, + "content": "for case 1,", + "type": "text" + }, + { + "bbox": [ + 336, + 216, + 370, + 226 + ], + "score": 0.85, + "content": "1 \\times 3 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 216, + 430, + 227 + ], + "score": 0.967, + "content": "for case 2,and", + "type": "text" + }, + { + "bbox": [ + 430, + 216, + 464, + 226 + ], + "score": 0.9, + "content": "1 \\times 5 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 216, + 507, + 227 + ], + "score": 0.958, + "content": "for case 3.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 138, + 507, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 506, + 287 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 506, + 245 + ], + "score": 0.992, + "content": "Analysis of Figure 2 shows that accuracy drop caused by application of softmax approximation is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 130, + 255 + ], + "score": 0.996, + "content": "small", + "type": "text" + }, + { + "bbox": [ + 131, + 243, + 160, + 254 + ], + "score": 0.87, + "content": "( < 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 242, + 479, + 255 + ], + "score": 0.993, + "content": "and acceptable for plain DETR models (no DC5 used). Bigger accuracy drop for", + "type": "text" + }, + { + "bbox": [ + 479, + 243, + 505, + 253 + ], + "score": 0.85, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "score": 0.983, + "content": "cases is caused by the bigger size of self-atentions of the encoder (see details in Section 5.3). We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 507, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 507, + 278 + ], + "score": 0.986, + "content": " expect that increasing size ofLUTs will help to solve this issue. The behavior of average recall values", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 258, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 258, + 288 + ], + "score": 0.999, + "content": "is similar to average precision values.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 231, + 507, + 288 + ] + }, + { + "type": "image", + "bbox": [ + 113, + 310, + 485, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 310, + 485, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 310, + 485, + 421 + ], + "spans": [ + { + "bbox": [ + 113, + 310, + 485, + 421 + ], + "score": 0.97, + "type": "image", + "image_path": "18032ac4c37b6c2eb1a06638b0da073beea2c546e17d030f4ad490a25ab947a5.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 113, + 310, + 485, + 347.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 113, + 347.0, + 485, + 384.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 113, + 384.0, + 485, + 421.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 437, + 507, + 481 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 437, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 506, + 449 + ], + "score": 0.991, + "content": "Figure 2: DETR averaged accuracy drop of PTQ-D models with softmax approximations Vs. original", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 447, + 507, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 507, + 460 + ], + "score": 0.985, + "content": "FP32 models: average precision (left) and average recall(right). As it can be seen from the figure, for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 490, + 471 + ], + "score": 0.987, + "content": "DETR models without dilation at the last stage (no DC5) the accuracy drop for all cases is below", + "type": "text" + }, + { + "bbox": [ + 491, + 459, + 505, + 469 + ], + "score": 0.86, + "content": "1 \\%", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 470, + 240, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 240, + 482 + ], + "score": 0.989, + "content": "and shows very similar behavior.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "index": 19.75 + }, + { + "type": "title", + "bbox": [ + 89, + 500, + 174, + 511 + ], + "lines": [ + { + "bbox": [ + 86, + 498, + 176, + 514 + ], + "spans": [ + { + "bbox": [ + 86, + 498, + 176, + 514 + ], + "score": 0.981, + "content": "2435.2 NLP tasks", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 506, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 507, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 507, + 533 + ], + "score": 0.996, + "content": "Next, we have validated the proposed methods by experimenting with several NLP tasks. Similarly,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 531, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 507, + 543 + ], + "score": 0.994, + "content": "to DETR case,Table 8 in Appendix shows the LUTs size for several pre-selected cases for those", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 542, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 507, + 554 + ], + "score": 0.989, + "content": "experiments. In Table 2 below there are accumulated values from the experiments with NLP models.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "score": 0.994, + "content": "The bold values in the table shows highest values per model per method after applying quantization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 564, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 506, + 576 + ], + "score": 0.98, + "content": "and softmax approximation. As it follows from the analysis of experiment results,about 7Oo Bytes for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "score": 0.967, + "content": "2D LUT method, and up to 50 Bytes for REXP method would be enough for practical applications.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 520, + 507, + 588 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 597, + 227, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 228, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 228, + 611 + ], + "score": 1.0, + "content": "5.2.1Machine Translation", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 107, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 107, + 617, + 505, + 628 + ], + "score": 0.985, + "content": "Among NLP tasks we have started with machine translation.For our experiments we have used", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 640 + ], + "score": 0.989, + "content": "transofmer-base model for En-Ge translation [12] from OpenNMT library, with available pre-trained", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 0.985, + "content": "model 6,configured to replicate the results from original paper. To avoid dependency of the evaluation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 649, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 507, + 662 + ], + "score": 0.978, + "content": "results on the selected tokenization scheme,we have used spm_decode 7to detokenize the output of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 660, + 442, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 442, + 673 + ], + "score": 0.973, + "content": "translation,and then applied multi - bleu.perl script 8 to calculate BLEU score.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 617, + 507, + 673 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 113, + 92, + 497, + 220 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 159, + 76, + 452, + 88 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 75, + 454, + 89 + ], + "spans": [ + { + "bbox": [ + 159, + 75, + 454, + 89 + ], + "score": 0.988, + "content": "Table 2: Experimental validation over different NLP models and datasets", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 113, + 92, + 497, + 220 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 92, + 497, + 220 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 497, + 220 + ], + "score": 0.927, + "html": "
PRECISIONTRANSFORMERBERT
2D LUTREXP2D LUTREXP
WMT 2014WMT 2017WMT 2014WMT 2017SST-2MRPCSST-2MRPC
FP32(BLEU) 26.98(BLEU) 28.09(BLEU) 26.98(BLEU) 28.09(%) 92.32(F1) 90.19(%) 92.32(F1) 90.19
PTQ-D26.8627.9526.8627.9591.7489.5391.7489.53
INT1626.8728.0226.8927.6491.6389.5091.7489.26
UINT826.7627.926.827.6691.6389.3591.1789.34
UINT426.2627.4326.6828.0291.4088.0191.1788.77
UINT224.4225.0625.2925.8689.2256.6791.6386.12
", + "type": "table", + "image_path": "6bf2f1e1e7866cae718c8f6238665f93e6a3f031263848f929f44aedbeb5fb88.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 113, + 92, + 497, + 134.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 134.66666666666666, + 497, + 177.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 113, + 177.33333333333331, + 497, + 219.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 86, + 245, + 506, + 322 + ], + "lines": [ + { + "bbox": [ + 86, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 86, + 247, + 99, + 256 + ], + "score": 1.0, + "content": "256", + "type": "text" + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "score": 0.992, + "content": "Thus,as it can be seen from Table 2, we were able to reproduce the same BLEU score for FP32", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 86, + 255, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 86, + 258, + 99, + 267 + ], + "score": 1.0, + "content": "257", + "type": "text" + }, + { + "bbox": [ + 105, + 255, + 507, + 268 + ], + "score": 0.994, + "content": "reference model as in original model. Then we run several experiments to check how accuracy of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 86, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 86, + 269, + 99, + 279 + ], + "score": 1.0, + "content": "258", + "type": "text" + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 0.99, + "content": "the translation wil be changed due to LUT-based quantization in different precisions,and we can", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 85, + 279, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 85, + 279, + 100, + 290 + ], + "score": 1.0, + "content": "259", + "type": "text" + }, + { + "bbox": [ + 106, + 279, + 506, + 290 + ], + "score": 0.99, + "content": "confirm that down up to 8-bit quantization the deviation of BLEU score from reference is small for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 85, + 289, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 85, + 290, + 100, + 301 + ], + "score": 1.0, + "content": "260", + "type": "text" + }, + { + "bbox": [ + 105, + 289, + 164, + 301 + ], + "score": 0.999, + "content": "both datasets", + "type": "text" + }, + { + "bbox": [ + 164, + 289, + 201, + 300 + ], + "score": 0.87, + "content": "( < 0 . { \\bar { 5 } } \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 289, + 506, + 301 + ], + "score": 0.977, + "content": ". Also, if we consider impact of the proposed methods only, then we can", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 85, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 85, + 301, + 100, + 312 + ], + "score": 1.0, + "content": "261", + "type": "text" + }, + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 0.988, + "content": " see that accuracy drop is much smaller, and sometimes even recovers vs. PTQ-D quantization (see", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 86, + 311, + 176, + 324 + ], + "spans": [ + { + "bbox": [ + 86, + 312, + 99, + 322 + ], + "score": 1.0, + "content": "262", + "type": "text" + }, + { + "bbox": [ + 105, + 311, + 176, + 324 + ], + "score": 0.988, + "content": "Figure 3 (right)).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 119, + 345, + 484, + 462 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 345, + 484, + 462 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 345, + 484, + 462 + ], + "spans": [ + { + "bbox": [ + 119, + 345, + 484, + 462 + ], + "score": 0.975, + "type": "image", + "image_path": "e3fbfc3ced46fcebe16d429cac63ce9d30373f76281f3704a14ef61faf0c4aae.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 119, + 345, + 484, + 384.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 119, + 384.0, + 484, + 423.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 119, + 423.0, + 484, + 462.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 472, + 507, + 527 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 360, + 485 + ], + "score": 0.992, + "content": "Figure 3: Accuracy drop for NLP experiments: PTQ-D models", + "type": "text" + }, + { + "bbox": [ + 360, + 474, + 369, + 482 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 471, + 506, + 485 + ], + "score": 0.991, + "content": "softmax approximations vs. FP32", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 483, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 243, + 495 + ], + "score": 0.987, + "content": "models (left),and PTQ-D models", + "type": "text" + }, + { + "bbox": [ + 243, + 484, + 252, + 493 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 483, + 506, + 495 + ], + "score": 0.978, + "content": "softmax approximations vs. plain PTQ-D models (right). As it", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 494, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 473, + 506 + ], + "score": 0.983, + "content": "can be seen from the figure,down to uint8 precision the accuracy drop for all cases is below", + "type": "text" + }, + { + "bbox": [ + 473, + 494, + 488, + 505 + ], + "score": 0.88, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 494, + 506, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 503, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 507, + 519 + ], + "score": 0.99, + "content": " shows very similar behavior. This confirm very good generalization of the proposed method over", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 516, + 244, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 244, + 528 + ], + "score": 0.996, + "content": "different models and applications.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + } + ], + "index": 14.0 + }, + { + "type": "title", + "bbox": [ + 106, + 545, + 217, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 219, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 219, + 558 + ], + "score": 0.999, + "content": "5.2.2Sentiment analysis", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 507, + 576 + ], + "score": 0.988, + "content": "To extend the variety of NLP applications,we also tested the same LUTs with BERT model [5].", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 575, + 507, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 507, + 586 + ], + "score": 0.982, + "content": "We have used sentiment analysis task from GLUE benchmark [29] to test the model. We have used", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 584, + 507, + 598 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 507, + 598 + ], + "score": 0.983, + "content": " huggingface library 9,and trained the model with the hyper-parameters described in 10. The results", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 0.984, + "content": "of our experiments showed, that similarly to machine translation, the impact of proposed method", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 0.981, + "content": "(softmax layer approximation by LUTs) is smallr vs. accuracy drop caused by PTQ-D quantization", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 619, + 167, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 167, + 631 + ], + "score": 0.988, + "content": "(see Figure 3).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 641, + 230, + 653 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 231, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 231, + 655 + ], + "score": 0.99, + "content": " 5.2.3Semantic equivalence", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 101, + 660, + 504, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 507, + 672 + ], + "score": 0.99, + "content": "For semantic equivalence test we used The Microsoft Research Paraphrase Corpus (MRPC) 11 in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 321, + 684 + ], + "score": 0.988, + "content": "GLUE benchmark.As the classes are imbalanced (", + "type": "text" + }, + { + "bbox": [ + 321, + 671, + 342, + 682 + ], + "score": 0.85, + "content": "6 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 670, + 380, + 684 + ], + "score": 1.0, + "content": "positive,", + "type": "text" + }, + { + "bbox": [ + 381, + 671, + 401, + 682 + ], + "score": 0.85, + "content": "32 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 670, + 506, + 684 + ], + "score": 0.988, + "content": "negative), we follow the", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 690, + 366, + 723 + ], + "lines": [ + { + "bbox": [ + 118, + 689, + 286, + 703 + ], + "spans": [ + { + "bbox": [ + 118, + 689, + 286, + 703 + ], + "score": 0.996, + "content": "9https://github.com/huggingface/transformers", + "type": "text" + } + ] + }, + { + "bbox": [ + 115, + 698, + 268, + 715 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 268, + 715 + ], + "score": 0.878, + "content": "10https://githubcom/googleresearchbert", + "type": "text" + } + ] + }, + { + "bbox": [ + 115, + 709, + 367, + 726 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 367, + 726 + ], + "score": 0.951, + "content": "11ttps://www.microsoft.com/en-us/download/detailsaspx?id=52398", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 743, + 309, + 751 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 753 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 86, + 561, + 100, + 680 + ], + "lines": [ + { + "bbox": [ + 85, + 565, + 100, + 577 + ], + "spans": [ + { + "bbox": [ + 85, + 565, + 100, + 577 + ], + "score": 0.994, + "content": "264", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 576, + 100, + 588 + ], + "spans": [ + { + "bbox": [ + 85, + 576, + 100, + 588 + ], + "score": 1.0, + "content": "265", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 587, + 100, + 599 + ], + "spans": [ + { + "bbox": [ + 85, + 587, + 100, + 599 + ], + "score": 1.0, + "content": "266", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 598, + 100, + 610 + ], + "spans": [ + { + "bbox": [ + 85, + 598, + 100, + 610 + ], + "score": 1.0, + "content": "267", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 609, + 100, + 621 + ], + "spans": [ + { + "bbox": [ + 85, + 609, + 100, + 621 + ], + "score": 1.0, + "content": "268", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 620, + 100, + 633 + ], + "spans": [ + { + "bbox": [ + 85, + 620, + 100, + 633 + ], + "score": 1.0, + "content": "269", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 643, + 100, + 655 + ], + "spans": [ + { + "bbox": [ + 85, + 643, + 100, + 655 + ], + "score": 1.0, + "content": "270", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 662, + 100, + 674 + ], + "spans": [ + { + "bbox": [ + 85, + 662, + 100, + 674 + ], + "score": 1.0, + "content": "271", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 672, + 101, + 685 + ], + "spans": [ + { + "bbox": [ + 84, + 672, + 101, + 685 + ], + "score": 1.0, + "content": "272", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 113, + 92, + 497, + 220 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 159, + 76, + 452, + 88 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 75, + 454, + 89 + ], + "spans": [ + { + "bbox": [ + 159, + 75, + 454, + 89 + ], + "score": 0.988, + "content": "Table 2: Experimental validation over different NLP models and datasets", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 113, + 92, + 497, + 220 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 92, + 497, + 220 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 497, + 220 + ], + "score": 0.927, + "html": "
PRECISIONTRANSFORMERBERT
2D LUTREXP2D LUTREXP
WMT 2014WMT 2017WMT 2014WMT 2017SST-2MRPCSST-2MRPC
FP32(BLEU) 26.98(BLEU) 28.09(BLEU) 26.98(BLEU) 28.09(%) 92.32(F1) 90.19(%) 92.32(F1) 90.19
PTQ-D26.8627.9526.8627.9591.7489.5391.7489.53
INT1626.8728.0226.8927.6491.6389.5091.7489.26
UINT826.7627.926.827.6691.6389.3591.1789.34
UINT426.2627.4326.6828.0291.4088.0191.1788.77
UINT224.4225.0625.2925.8689.2256.6791.6386.12
", + "type": "table", + "image_path": "6bf2f1e1e7866cae718c8f6238665f93e6a3f031263848f929f44aedbeb5fb88.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 113, + 92, + 497, + 134.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 134.66666666666666, + 497, + 177.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 113, + 177.33333333333331, + 497, + 219.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "index", + "bbox": [ + 86, + 245, + 506, + 322 + ], + "lines": [ + { + "bbox": [ + 86, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 86, + 247, + 99, + 256 + ], + "score": 1.0, + "content": "256", + "type": "text" + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "score": 0.992, + "content": "Thus,as it can be seen from Table 2, we were able to reproduce the same BLEU score for FP32", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 255, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 86, + 258, + 99, + 267 + ], + "score": 1.0, + "content": "257", + "type": "text" + }, + { + "bbox": [ + 105, + 255, + 507, + 268 + ], + "score": 0.994, + "content": "reference model as in original model. Then we run several experiments to check how accuracy of", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 86, + 269, + 99, + 279 + ], + "score": 1.0, + "content": "258", + "type": "text" + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 0.99, + "content": "the translation wil be changed due to LUT-based quantization in different precisions,and we can", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 279, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 85, + 279, + 100, + 290 + ], + "score": 1.0, + "content": "259", + "type": "text" + }, + { + "bbox": [ + 106, + 279, + 506, + 290 + ], + "score": 0.99, + "content": "confirm that down up to 8-bit quantization the deviation of BLEU score from reference is small for", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 289, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 85, + 290, + 100, + 301 + ], + "score": 1.0, + "content": "260", + "type": "text" + }, + { + "bbox": [ + 105, + 289, + 164, + 301 + ], + "score": 0.999, + "content": "both datasets", + "type": "text" + }, + { + "bbox": [ + 164, + 289, + 201, + 300 + ], + "score": 0.87, + "content": "( < 0 . { \\bar { 5 } } \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 289, + 506, + 301 + ], + "score": 0.977, + "content": ". Also, if we consider impact of the proposed methods only, then we can", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 85, + 301, + 100, + 312 + ], + "score": 1.0, + "content": "261", + "type": "text" + }, + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 0.988, + "content": " see that accuracy drop is much smaller, and sometimes even recovers vs. PTQ-D quantization (see", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 311, + 176, + 324 + ], + "spans": [ + { + "bbox": [ + 86, + 312, + 99, + 322 + ], + "score": 1.0, + "content": "262", + "type": "text" + }, + { + "bbox": [ + 105, + 311, + 176, + 324 + ], + "score": 0.988, + "content": "Figure 3 (right)).", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + } + ], + "index": 7, + "bbox_fs": [ + 85, + 244, + 507, + 324 + ] + }, + { + "type": "image", + "bbox": [ + 119, + 345, + 484, + 462 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 345, + 484, + 462 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 345, + 484, + 462 + ], + "spans": [ + { + "bbox": [ + 119, + 345, + 484, + 462 + ], + "score": 0.975, + "type": "image", + "image_path": "e3fbfc3ced46fcebe16d429cac63ce9d30373f76281f3704a14ef61faf0c4aae.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 119, + 345, + 484, + 384.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 119, + 384.0, + 484, + 423.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 119, + 423.0, + 484, + 462.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 472, + 507, + 527 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 360, + 485 + ], + "score": 0.992, + "content": "Figure 3: Accuracy drop for NLP experiments: PTQ-D models", + "type": "text" + }, + { + "bbox": [ + 360, + 474, + 369, + 482 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 471, + 506, + 485 + ], + "score": 0.991, + "content": "softmax approximations vs. FP32", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 483, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 243, + 495 + ], + "score": 0.987, + "content": "models (left),and PTQ-D models", + "type": "text" + }, + { + "bbox": [ + 243, + 484, + 252, + 493 + ], + "score": 0.77, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 483, + 506, + 495 + ], + "score": 0.978, + "content": "softmax approximations vs. plain PTQ-D models (right). As it", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 494, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 473, + 506 + ], + "score": 0.983, + "content": "can be seen from the figure,down to uint8 precision the accuracy drop for all cases is below", + "type": "text" + }, + { + "bbox": [ + 473, + 494, + 488, + 505 + ], + "score": 0.88, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 494, + 506, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 503, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 507, + 519 + ], + "score": 0.99, + "content": " shows very similar behavior. This confirm very good generalization of the proposed method over", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 516, + 244, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 244, + 528 + ], + "score": 0.996, + "content": "different models and applications.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + } + ], + "index": 14.0 + }, + { + "type": "title", + "bbox": [ + 106, + 545, + 217, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 219, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 219, + 558 + ], + "score": 0.999, + "content": "5.2.2Sentiment analysis", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 507, + 576 + ], + "score": 0.988, + "content": "To extend the variety of NLP applications,we also tested the same LUTs with BERT model [5].", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 575, + 507, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 507, + 586 + ], + "score": 0.982, + "content": "We have used sentiment analysis task from GLUE benchmark [29] to test the model. We have used", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 584, + 507, + 598 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 507, + 598 + ], + "score": 0.983, + "content": " huggingface library 9,and trained the model with the hyper-parameters described in 10. The results", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 0.984, + "content": "of our experiments showed, that similarly to machine translation, the impact of proposed method", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 0.981, + "content": "(softmax layer approximation by LUTs) is smallr vs. accuracy drop caused by PTQ-D quantization", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 619, + 167, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 167, + 631 + ], + "score": 0.988, + "content": "(see Figure 3).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 564, + 507, + 631 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 641, + 230, + 653 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 231, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 231, + 655 + ], + "score": 0.99, + "content": " 5.2.3Semantic equivalence", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 101, + 660, + 504, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 507, + 672 + ], + "score": 0.99, + "content": "For semantic equivalence test we used The Microsoft Research Paraphrase Corpus (MRPC) 11 in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 321, + 684 + ], + "score": 0.988, + "content": "GLUE benchmark.As the classes are imbalanced (", + "type": "text" + }, + { + "bbox": [ + 321, + 671, + 342, + 682 + ], + "score": 0.85, + "content": "6 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 670, + 380, + 684 + ], + "score": 1.0, + "content": "positive,", + "type": "text" + }, + { + "bbox": [ + 381, + 671, + 401, + 682 + ], + "score": 0.85, + "content": "32 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 670, + 506, + 684 + ], + "score": 0.988, + "content": "negative), we follow the", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 658, + 507, + 684 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 87, + 73, + 506, + 117 + ], + "lines": [ + { + "bbox": [ + 86, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 86, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "273", + "type": "text" + }, + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "score": 0.992, + "content": "common practice and used F1 score as a metric. We have used huggingface library and followed", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 86, + 83, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 86, + 86, + 100, + 95 + ], + "score": 1.0, + "content": "274", + "type": "text" + }, + { + "bbox": [ + 106, + 83, + 507, + 97 + ], + "score": 0.987, + "content": "the guidelines from PyTorch tutorial 12 to obtain PTQ-D quantized model. Then,similarly to previous", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 85, + 95, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 85, + 96, + 100, + 106 + ], + "score": 1.0, + "content": "275", + "type": "text" + }, + { + "bbox": [ + 105, + 95, + 506, + 106 + ], + "score": 0.983, + "content": " tests we have substituted a conventional softmax layer with the proposed LUT-based methods. The", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 85, + 105, + 428, + 118 + ], + "spans": [ + { + "bbox": [ + 85, + 107, + 100, + 118 + ], + "score": 1.0, + "content": "276", + "type": "text" + }, + { + "bbox": [ + 104, + 105, + 428, + 118 + ], + "score": 0.994, + "content": " results of our experiments showed the similar trend with sentiment analysis test.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 87, + 137, + 318, + 150 + ], + "lines": [ + { + "bbox": [ + 84, + 136, + 320, + 152 + ], + "spans": [ + { + "bbox": [ + 84, + 136, + 320, + 152 + ], + "score": 0.982, + "content": " 2775.3 Ablation study of DETR models experiment", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 86, + 161, + 507, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 507, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 507, + 173 + ], + "score": 0.981, + "content": "As it is stated in [2],to increase the feature resolution for smallobjects,a dilation to the last stage of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 172, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 208, + 183 + ], + "score": 0.981, + "content": "the backbone was added (", + "type": "text" + }, + { + "bbox": [ + 209, + 172, + 235, + 183 + ], + "score": 0.76, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 172, + 506, + 183 + ], + "score": 0.994, + "content": "cases of DETR models). This modification increases the cost in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 182, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 309, + 196 + ], + "score": 0.978, + "content": " self-attentions of the encoder, leading to an overall", + "type": "text" + }, + { + "bbox": [ + 309, + 183, + 324, + 194 + ], + "score": 0.9, + "content": "\\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 182, + 507, + 196 + ], + "score": 0.991, + "content": "increase in computational cost. Such changes", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 487, + 205 + ], + "score": 0.989, + "content": " also reflect on the properties of softmax factors. In Figure 4 there are shown the histogram of", + "type": "text" + }, + { + "bbox": [ + 487, + 194, + 505, + 204 + ], + "score": 0.87, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 504, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 403, + 218 + ], + "score": 0.99, + "content": " values distributions for the first 2OO tensors of DETR model run for bins", + "type": "text" + }, + { + "bbox": [ + 403, + 205, + 427, + 216 + ], + "score": 0.84, + "content": "= 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 205, + 504, + 217 + ], + "score": 0.89, + "content": "\\mathtt { r a n g e } = ( 0 , 5 0 0 )", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 507, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 343, + 228 + ], + "score": 0.985, + "content": "As it can be seen from the figure, the distribution of DETR", + "type": "text" + }, + { + "bbox": [ + 343, + 216, + 368, + 226 + ], + "score": 0.53, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 215, + 507, + 228 + ], + "score": 0.982, + "content": "(R50) variant is more right-tailed,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 226, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 507, + 239 + ], + "score": 0.994, + "content": "due to the bigger number of high-magnitude values. This causes the bigger accuracy drop when", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 236, + 508, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 508, + 251 + ], + "score": 0.987, + "content": " LUT-based quantization method is used, due to the lack of the discrepancy for those values. Thus,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 248, + 507, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 507, + 261 + ], + "score": 0.99, + "content": "for such models (DETR with added dilation at the last stage) the accuracy of object detection after", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 258, + 507, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 507, + 273 + ], + "score": 0.99, + "content": " application of the proposed method can be limited. However, as we can see from Figure 2) increasing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 270, + 507, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 161, + 283 + ], + "score": 0.991, + "content": "of the size of", + "type": "text" + }, + { + "bbox": [ + 161, + 270, + 189, + 281 + ], + "score": 0.89, + "content": "L U { \\bar { T } } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 270, + 479, + 283 + ], + "score": 0.994, + "content": "from 256 Bytes to 512 Bytes allows to decrease the accuracy drop from", + "type": "text" + }, + { + "bbox": [ + 479, + 271, + 495, + 281 + ], + "score": 0.85, + "content": "9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 270, + 507, + 283 + ], + "score": 0.979, + "content": "to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 121, + 292 + ], + "score": 0.83, + "content": "3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 280, + 136, + 294 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 136, + 281, + 187, + 292 + ], + "score": 0.27, + "content": "\\mathrm { D E T R + D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 280, + 507, + 294 + ], + "score": 0.981, + "content": "(R101) unit8 case. Thus, we expect that further increasing the size of LUTs will", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 402, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 402, + 304 + ], + "score": 0.993, + "content": "help to obtain even more accurate results for DETR models with dilation.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11 + }, + { + "type": "image", + "bbox": [ + 118, + 332, + 484, + 445 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 332, + 484, + 445 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 332, + 484, + 445 + ], + "spans": [ + { + "bbox": [ + 118, + 332, + 484, + 445 + ], + "score": 0.972, + "type": "image", + "image_path": "2450ef698b17c3ee11267e5b440cbba24aa7840aadfa0ceacde0176d198accc9.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 118, + 332, + 484, + 369.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 118, + 369.6666666666667, + 484, + 407.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 118, + 407.33333333333337, + 484, + 445.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 460, + 507, + 516 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 461, + 507, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 201, + 473 + ], + "score": 0.993, + "content": "Figure 4: Histogram of", + "type": "text" + }, + { + "bbox": [ + 201, + 461, + 219, + 471 + ], + "score": 0.88, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 461, + 507, + 473 + ], + "score": 0.981, + "content": "values distributions for DETR model variants: plain DETR (R5O) (left),", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 183, + 484 + ], + "score": 0.997, + "content": "and with dilation I", + "type": "text" + }, + { + "bbox": [ + 184, + 472, + 232, + 482 + ], + "score": 0.38, + "content": ") \\mathrm { E T R } { + } \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 470, + 506, + 484 + ], + "score": 0.988, + "content": "(R50) (right). Red dot line represents the average of the all values", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 0.986, + "content": "per one run of the inference of DETR model. It is clearly seen from the figure that distribution of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 492, + 507, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 132, + 507 + ], + "score": 0.999, + "content": "DETR", + "type": "text" + }, + { + "bbox": [ + 133, + 494, + 159, + 504 + ], + "score": 0.34, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 492, + 507, + 507 + ], + "score": 0.982, + "content": "(R50) variant is more flat, having more high-magnitude values. This causes the bigger", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 504, + 453, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 453, + 518 + ], + "score": 0.995, + "content": " accuracy drop for the quantized model due to lack of the discrepancy for those values.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + } + ], + "index": 21.0 + }, + { + "type": "title", + "bbox": [ + 87, + 553, + 183, + 566 + ], + "lines": [ + { + "bbox": [ + 83, + 551, + 185, + 568 + ], + "spans": [ + { + "bbox": [ + 83, + 551, + 185, + 568 + ], + "score": 0.999, + "content": "2916Conclusion", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 582, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 594 + ], + "score": 0.996, + "content": "In this paper two alternative methods for efficient softmax computation for DNN models with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 594, + 507, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 507, + 605 + ], + "score": 0.992, + "content": "atention mechanism are proposed. The methods are memory-centric in contrast to known logic-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 604, + 507, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 507, + 616 + ], + "score": 0.986, + "content": "centric approach and are based on the usage ofLUTs for reading of the pre-computed values, instead", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 615, + 507, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 507, + 627 + ], + "score": 0.985, + "content": "of the direct computation. Thus,it allows to build the HW accelerator without usage of costly and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 507, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 638 + ], + "score": 0.986, + "content": "power-hungry divider. In turn, it allows to decrease the power consumption and latency of the whole", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 637, + 507, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 507, + 649 + ], + "score": 0.981, + "content": " inference,what is crucial for edge computing. All results obtained in the paper were validated", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "score": 0.982, + "content": "over different AI tasks (object detection, machine translation, sentiment analysis, and semantic", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "score": 0.962, + "content": "equivalence) and models (DETR,Transformer, BERT) by variety of benchmarks (COCO2017,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 507, + 683 + ], + "score": 0.994, + "content": "WMT14, WMT17, GLUE), showing acceptable accuracy and good generalization of the proposed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 681, + 145, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 145, + 693 + ], + "score": 1.0, + "content": "methods.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 713, + 420, + 723 + ], + "lines": [ + { + "bbox": [ + 115, + 710, + 422, + 726 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 422, + 726 + ], + "score": 0.991, + "content": "12https://pytorch.org/tutorials/intermediate/dynamic_quantization_bert_tutorial.html", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 743, + 309, + 751 + ], + "lines": [ + { + "bbox": [ + 302, + 742, + 310, + 754 + ], + "spans": [ + { + "bbox": [ + 302, + 742, + 310, + 754 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 86, + 583, + 99, + 692 + ], + "lines": [ + { + "bbox": [ + 86, + 584, + 100, + 595 + ], + "spans": [ + { + "bbox": [ + 86, + 584, + 100, + 595 + ], + "score": 1.0, + "content": "292", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 595, + 100, + 606 + ], + "spans": [ + { + "bbox": [ + 86, + 595, + 100, + 606 + ], + "score": 1.0, + "content": "293", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 606, + 100, + 617 + ], + "spans": [ + { + "bbox": [ + 86, + 606, + 100, + 617 + ], + "score": 1.0, + "content": "294", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 617, + 100, + 628 + ], + "spans": [ + { + "bbox": [ + 86, + 617, + 100, + 628 + ], + "score": 1.0, + "content": "295", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 628, + 100, + 639 + ], + "spans": [ + { + "bbox": [ + 86, + 628, + 100, + 639 + ], + "score": 1.0, + "content": "296", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 639, + 100, + 650 + ], + "spans": [ + { + "bbox": [ + 86, + 639, + 100, + 650 + ], + "score": 1.0, + "content": "297", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 650, + 100, + 661 + ], + "spans": [ + { + "bbox": [ + 86, + 650, + 100, + 661 + ], + "score": 1.0, + "content": "298", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 661, + 100, + 672 + ], + "spans": [ + { + "bbox": [ + 86, + 661, + 100, + 672 + ], + "score": 1.0, + "content": "299", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 672, + 100, + 682 + ], + "spans": [ + { + "bbox": [ + 86, + 672, + 100, + 682 + ], + "score": 1.0, + "content": "300", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 682, + 99, + 693 + ], + "spans": [ + { + "bbox": [ + 86, + 682, + 99, + 693 + ], + "score": 1.0, + "content": "301", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 86, + 159, + 99, + 304 + ], + "lines": [ + { + "bbox": [ + 85, + 163, + 100, + 174 + ], + "spans": [ + { + "bbox": [ + 85, + 163, + 100, + 174 + ], + "score": 1.0, + "content": "278", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 174, + 100, + 185 + ], + "spans": [ + { + "bbox": [ + 85, + 174, + 100, + 185 + ], + "score": 1.0, + "content": "279", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 185, + 100, + 196 + ], + "spans": [ + { + "bbox": [ + 85, + 185, + 100, + 196 + ], + "score": 1.0, + "content": "280", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 196, + 100, + 207 + ], + "spans": [ + { + "bbox": [ + 85, + 196, + 100, + 207 + ], + "score": 1.0, + "content": "281", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 207, + 100, + 218 + ], + "spans": [ + { + "bbox": [ + 85, + 207, + 100, + 218 + ], + "score": 1.0, + "content": "282", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 218, + 100, + 229 + ], + "spans": [ + { + "bbox": [ + 85, + 218, + 100, + 229 + ], + "score": 1.0, + "content": "283", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 228, + 100, + 239 + ], + "spans": [ + { + "bbox": [ + 85, + 228, + 100, + 239 + ], + "score": 1.0, + "content": "284", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 239, + 100, + 249 + ], + "spans": [ + { + "bbox": [ + 85, + 239, + 100, + 249 + ], + "score": 1.0, + "content": "285", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 250, + 100, + 261 + ], + "spans": [ + { + "bbox": [ + 85, + 250, + 100, + 261 + ], + "score": 1.0, + "content": "286", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 261, + 100, + 272 + ], + "spans": [ + { + "bbox": [ + 85, + 261, + 100, + 272 + ], + "score": 1.0, + "content": "287", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 272, + 100, + 283 + ], + "spans": [ + { + "bbox": [ + 85, + 272, + 100, + 283 + ], + "score": 1.0, + "content": "288", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 283, + 100, + 294 + ], + "spans": [ + { + "bbox": [ + 85, + 283, + 100, + 294 + ], + "score": 1.0, + "content": "289", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 294, + 100, + 305 + ], + "spans": [ + { + "bbox": [ + 85, + 294, + 100, + 305 + ], + "score": 1.0, + "content": "290", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "index", + "bbox": [ + 87, + 73, + 506, + 117 + ], + "lines": [ + { + "bbox": [ + 86, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 86, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "273", + "type": "text" + }, + { + "bbox": [ + 106, + 73, + 506, + 85 + ], + "score": 0.992, + "content": "common practice and used F1 score as a metric. We have used huggingface library and followed", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 83, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 86, + 86, + 100, + 95 + ], + "score": 1.0, + "content": "274", + "type": "text" + }, + { + "bbox": [ + 106, + 83, + 507, + 97 + ], + "score": 0.987, + "content": "the guidelines from PyTorch tutorial 12 to obtain PTQ-D quantized model. Then,similarly to previous", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 95, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 85, + 96, + 100, + 106 + ], + "score": 1.0, + "content": "275", + "type": "text" + }, + { + "bbox": [ + 105, + 95, + 506, + 106 + ], + "score": 0.983, + "content": " tests we have substituted a conventional softmax layer with the proposed LUT-based methods. The", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 105, + 428, + 118 + ], + "spans": [ + { + "bbox": [ + 85, + 107, + 100, + 118 + ], + "score": 1.0, + "content": "276", + "type": "text" + }, + { + "bbox": [ + 104, + 105, + 428, + 118 + ], + "score": 0.994, + "content": " results of our experiments showed the similar trend with sentiment analysis test.", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + } + ], + "index": 1.5, + "bbox_fs": [ + 85, + 73, + 507, + 118 + ] + }, + { + "type": "title", + "bbox": [ + 87, + 137, + 318, + 150 + ], + "lines": [ + { + "bbox": [ + 84, + 136, + 320, + 152 + ], + "spans": [ + { + "bbox": [ + 84, + 136, + 320, + 152 + ], + "score": 0.982, + "content": " 2775.3 Ablation study of DETR models experiment", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 86, + 161, + 507, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 507, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 507, + 173 + ], + "score": 0.981, + "content": "As it is stated in [2],to increase the feature resolution for smallobjects,a dilation to the last stage of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 172, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 208, + 183 + ], + "score": 0.981, + "content": "the backbone was added (", + "type": "text" + }, + { + "bbox": [ + 209, + 172, + 235, + 183 + ], + "score": 0.76, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 172, + 506, + 183 + ], + "score": 0.994, + "content": "cases of DETR models). This modification increases the cost in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 182, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 309, + 196 + ], + "score": 0.978, + "content": " self-attentions of the encoder, leading to an overall", + "type": "text" + }, + { + "bbox": [ + 309, + 183, + 324, + 194 + ], + "score": 0.9, + "content": "\\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 182, + 507, + 196 + ], + "score": 0.991, + "content": "increase in computational cost. Such changes", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 487, + 205 + ], + "score": 0.989, + "content": " also reflect on the properties of softmax factors. In Figure 4 there are shown the histogram of", + "type": "text" + }, + { + "bbox": [ + 487, + 194, + 505, + 204 + ], + "score": 0.87, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 504, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 403, + 218 + ], + "score": 0.99, + "content": " values distributions for the first 2OO tensors of DETR model run for bins", + "type": "text" + }, + { + "bbox": [ + 403, + 205, + 427, + 216 + ], + "score": 0.84, + "content": "= 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 205, + 504, + 217 + ], + "score": 0.89, + "content": "\\mathtt { r a n g e } = ( 0 , 5 0 0 )", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 507, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 343, + 228 + ], + "score": 0.985, + "content": "As it can be seen from the figure, the distribution of DETR", + "type": "text" + }, + { + "bbox": [ + 343, + 216, + 368, + 226 + ], + "score": 0.53, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 215, + 507, + 228 + ], + "score": 0.982, + "content": "(R50) variant is more right-tailed,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 226, + 507, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 507, + 239 + ], + "score": 0.994, + "content": "due to the bigger number of high-magnitude values. This causes the bigger accuracy drop when", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 236, + 508, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 508, + 251 + ], + "score": 0.987, + "content": " LUT-based quantization method is used, due to the lack of the discrepancy for those values. Thus,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 248, + 507, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 507, + 261 + ], + "score": 0.99, + "content": "for such models (DETR with added dilation at the last stage) the accuracy of object detection after", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 258, + 507, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 507, + 273 + ], + "score": 0.99, + "content": " application of the proposed method can be limited. However, as we can see from Figure 2) increasing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 270, + 507, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 161, + 283 + ], + "score": 0.991, + "content": "of the size of", + "type": "text" + }, + { + "bbox": [ + 161, + 270, + 189, + 281 + ], + "score": 0.89, + "content": "L U { \\bar { T } } _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 270, + 479, + 283 + ], + "score": 0.994, + "content": "from 256 Bytes to 512 Bytes allows to decrease the accuracy drop from", + "type": "text" + }, + { + "bbox": [ + 479, + 271, + 495, + 281 + ], + "score": 0.85, + "content": "9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 270, + 507, + 283 + ], + "score": 0.979, + "content": "to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 121, + 292 + ], + "score": 0.83, + "content": "3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 280, + 136, + 294 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 136, + 281, + 187, + 292 + ], + "score": 0.27, + "content": "\\mathrm { D E T R + D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 280, + 507, + 294 + ], + "score": 0.981, + "content": "(R101) unit8 case. Thus, we expect that further increasing the size of LUTs will", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 402, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 402, + 304 + ], + "score": 0.993, + "content": "help to obtain even more accurate results for DETR models with dilation.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 161, + 508, + 304 + ] + }, + { + "type": "image", + "bbox": [ + 118, + 332, + 484, + 445 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 332, + 484, + 445 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 332, + 484, + 445 + ], + "spans": [ + { + "bbox": [ + 118, + 332, + 484, + 445 + ], + "score": 0.972, + "type": "image", + "image_path": "2450ef698b17c3ee11267e5b440cbba24aa7840aadfa0ceacde0176d198accc9.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 118, + 332, + 484, + 369.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 118, + 369.6666666666667, + 484, + 407.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 118, + 407.33333333333337, + 484, + 445.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 460, + 507, + 516 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 461, + 507, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 201, + 473 + ], + "score": 0.993, + "content": "Figure 4: Histogram of", + "type": "text" + }, + { + "bbox": [ + 201, + 461, + 219, + 471 + ], + "score": 0.88, + "content": "\\Sigma e ^ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 461, + 507, + 473 + ], + "score": 0.981, + "content": "values distributions for DETR model variants: plain DETR (R5O) (left),", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 183, + 484 + ], + "score": 0.997, + "content": "and with dilation I", + "type": "text" + }, + { + "bbox": [ + 184, + 472, + 232, + 482 + ], + "score": 0.38, + "content": ") \\mathrm { E T R } { + } \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 470, + 506, + 484 + ], + "score": 0.988, + "content": "(R50) (right). Red dot line represents the average of the all values", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 0.986, + "content": "per one run of the inference of DETR model. It is clearly seen from the figure that distribution of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 492, + 507, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 132, + 507 + ], + "score": 0.999, + "content": "DETR", + "type": "text" + }, + { + "bbox": [ + 133, + 494, + 159, + 504 + ], + "score": 0.34, + "content": "+ \\mathrm { D C } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 492, + 507, + 507 + ], + "score": 0.982, + "content": "(R50) variant is more flat, having more high-magnitude values. This causes the bigger", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 504, + 453, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 453, + 518 + ], + "score": 0.995, + "content": " accuracy drop for the quantized model due to lack of the discrepancy for those values.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + } + ], + "index": 21.0 + }, + { + "type": "title", + "bbox": [ + 87, + 553, + 183, + 566 + ], + "lines": [ + { + "bbox": [ + 83, + 551, + 185, + 568 + ], + "spans": [ + { + "bbox": [ + 83, + 551, + 185, + 568 + ], + "score": 0.999, + "content": "2916Conclusion", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 582, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 594 + ], + "score": 0.996, + "content": "In this paper two alternative methods for efficient softmax computation for DNN models with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 594, + 507, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 507, + 605 + ], + "score": 0.992, + "content": "atention mechanism are proposed. The methods are memory-centric in contrast to known logic-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 604, + 507, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 507, + 616 + ], + "score": 0.986, + "content": "centric approach and are based on the usage ofLUTs for reading of the pre-computed values, instead", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 615, + 507, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 507, + 627 + ], + "score": 0.985, + "content": "of the direct computation. Thus,it allows to build the HW accelerator without usage of costly and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 507, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 638 + ], + "score": 0.986, + "content": "power-hungry divider. In turn, it allows to decrease the power consumption and latency of the whole", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 637, + 507, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 507, + 649 + ], + "score": 0.981, + "content": " inference,what is crucial for edge computing. All results obtained in the paper were validated", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "score": 0.982, + "content": "over different AI tasks (object detection, machine translation, sentiment analysis, and semantic", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 671 + ], + "score": 0.962, + "content": "equivalence) and models (DETR,Transformer, BERT) by variety of benchmarks (COCO2017,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 507, + 683 + ], + "score": 0.994, + "content": "WMT14, WMT17, GLUE), showing acceptable accuracy and good generalization of the proposed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 681, + 145, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 145, + 693 + ], + "score": 1.0, + "content": "methods.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 582, + 507, + 693 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 101, + 52, + 508, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 69, + 166, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 166, + 87 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 110, + 89, + 507, + 103 + ], + "spans": [ + { + "bbox": [ + 110, + 89, + 507, + 103 + ], + "score": 0.988, + "content": "[1] Aishwarya Bhandare, Vamsi Sripathi, Deepthi Karkada, Vivek Menon, Sun Choi, Kushal Datta,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 99, + 507, + 117 + ], + "spans": [ + { + "bbox": [ + 126, + 99, + 507, + 117 + ], + "score": 0.982, + "content": " and Vikram Saletore.Eficient 8-bit quantization of transformer neural machine language", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 126, + 111, + 326, + 125 + ], + "spans": [ + { + "bbox": [ + 126, + 111, + 326, + 125 + ], + "score": 0.995, + "content": "translation model. CoRR,abs/1906.00532,2019.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 130, + 507, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 130, + 507, + 144 + ], + "score": 0.987, + "content": "[2] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 126, + 141, + 422, + 154 + ], + "spans": [ + { + "bbox": [ + 126, + 141, + 422, + 154 + ], + "score": 0.982, + "content": " Sergey Zagoruyko. End-to-end object detection with transformers, 2020.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 158, + 507, + 174 + ], + "spans": [ + { + "bbox": [ + 110, + 158, + 507, + 174 + ], + "score": 0.979, + "content": "[3] Ming Chen, Yingming_Li, Zhongfei Zhang, and Siyu_Huang. Tvt: Two-view transformer", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 170, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 127, + 170, + 507, + 184 + ], + "score": 0.989, + "content": "network for video captioning. In Jun Zhu and Ichiro Takeuchi, editors, Proceedings of The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 180, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 127, + 180, + 507, + 196 + ], + "score": 0.981, + "content": "l0th Asian Conference on Machine Learning, volume 95 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 192, + 339, + 207 + ], + "spans": [ + { + "bbox": [ + 127, + 192, + 339, + 207 + ], + "score": 0.99, + "content": "Research, pages 847-862. PMLR,14-16 Nov 2018.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 109, + 209, + 507, + 225 + ], + "spans": [ + { + "bbox": [ + 109, + 209, + 507, + 225 + ], + "score": 0.986, + "content": "[4] Jacek Czaja, Michal Galus, Tomasz Patejko,and Jian Tang. Softmax optimizations for intel", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 125, + 222, + 383, + 235 + ], + "spans": [ + { + "bbox": [ + 125, + 222, + 383, + 235 + ], + "score": 0.984, + "content": " xeon processor-based platforms. CoRR,abs/1904.12380,2019.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 109, + 239, + 508, + 255 + ], + "spans": [ + { + "bbox": [ + 109, + 239, + 508, + 255 + ], + "score": 0.988, + "content": "[5] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: pre-training of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 251, + 494, + 265 + ], + "spans": [ + { + "bbox": [ + 127, + 251, + 494, + 265 + ], + "score": 0.985, + "content": "deep bidirectional transformers for language understanding. CoRR,abs/1810.04805, 2018.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 111, + 270, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 111, + 270, + 507, + 282 + ], + "score": 0.982, + "content": "[6] Alexey Dosovitskiy,Lucas Beyer,Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 278, + 507, + 295 + ], + "spans": [ + { + "bbox": [ + 126, + 278, + 507, + 295 + ], + "score": 0.976, + "content": "Thomas Unterthiner, Mostafa Dehghani, Mathias Minderer, Georg Heigold, Sylvain Gely,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 289, + 507, + 307 + ], + "spans": [ + { + "bbox": [ + 126, + 289, + 507, + 307 + ], + "score": 0.98, + "content": " Jakob Uszkoreit,and Neil Houlsby.An image is worth 16x16 words: Transformers for image", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 125, + 302, + 237, + 315 + ], + "spans": [ + { + "bbox": [ + 125, + 302, + 237, + 315 + ], + "score": 0.999, + "content": "recognition at scale,2020.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 109, + 319, + 509, + 335 + ], + "spans": [ + { + "bbox": [ + 109, + 319, + 509, + 335 + ], + "score": 0.99, + "content": "[7] Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Botom-up abstractive summarization.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 329, + 507, + 347 + ], + "spans": [ + { + "bbox": [ + 126, + 329, + 507, + 347 + ], + "score": 0.973, + "content": " In Proceedings of the2O18 Conference on Empirical Methods in Natural Language Processing,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 342, + 228, + 354 + ], + "spans": [ + { + "bbox": [ + 126, + 342, + 228, + 354 + ], + "score": 0.98, + "content": "pages 4098-4109,2018.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 110, + 361, + 508, + 375 + ], + "spans": [ + { + "bbox": [ + 110, + 361, + 508, + 375 + ], + "score": 0.987, + "content": "[8] Xue Geng, Jie Lin, Bin Zhao, Anmin Kong, Mohamed M. Sabry Aly, and Vijay Chandrasekhar.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 128, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 128, + 372, + 506, + 386 + ], + "score": 0.99, + "content": "Hardware-aware softmax approximation for deep neural networks. In C.V. Jawahar, Hongdong", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 380, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 127, + 380, + 506, + 398 + ], + "score": 0.978, + "content": "Li, Greg Mori,and Konrad Schindler, editors, Computer Vision- ACCV 2018, pages 107-12,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 392, + 321, + 408 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 321, + 408 + ], + "score": 0.987, + "content": "Cham, 2019. Springer International Publishing.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 109, + 411, + 508, + 426 + ], + "spans": [ + { + "bbox": [ + 109, + 411, + 508, + 426 + ], + "score": 0.977, + "content": "[9] Yanzhang He, Tara N. Sainath, Rohit Prabhavalkar, Ian McGraw, Raziel Alvarez, Ding Zhao,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 423, + 507, + 437 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 507, + 437 + ], + "score": 0.977, + "content": "David Rybach, Anjuli Kannan, Yonghui Wu, Ruoming Pang, Qiao Liang, Deepti Bhatia, Yuan", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 128, + 434, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 128, + 434, + 507, + 448 + ], + "score": 0.976, + "content": "Shangguan, Bo Li, Golan Pundak, Khe Chai Sim, Tom Bagby, Shuo yiin Chang, Kanishka Rao,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 128, + 446, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 128, + 446, + 507, + 457 + ], + "score": 0.991, + "content": "and Alexander Gruenstein. Streaming end-to-end speech recognition for mobile devices,2018.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 463, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 507, + 477 + ], + "score": 0.972, + "content": "[10] R. Hu, B. Tian, S. Yin,and S. Wei. Efcient hardware architecture of softmax layer in deep", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 471, + 507, + 489 + ], + "spans": [ + { + "bbox": [ + 126, + 471, + 507, + 489 + ], + "score": 0.98, + "content": "neural network. In2018 IEEE23rd International Conference on Digital Signal Procesing", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 486, + 247, + 498 + ], + "spans": [ + { + "bbox": [ + 128, + 486, + 247, + 498 + ], + "score": 0.984, + "content": "(DSP), pages 1-5, Nov 2018.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 0.978, + "content": "[11] Andrey Ignatov, Radu Timofte, Wilim Chou, Ke Wang, Max Wu, Tim Hartley,and Luc Van", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 514, + 507, + 528 + ], + "spans": [ + { + "bbox": [ + 127, + 514, + 507, + 528 + ], + "score": 0.995, + "content": "Gool.AI benchmark: Running deep neural networks on android smartphones. CoRR,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 128, + 526, + 222, + 538 + ], + "spans": [ + { + "bbox": [ + 128, + 526, + 222, + 538 + ], + "score": 1.0, + "content": "abs/1810.01109,2018.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "score": 0.991, + "content": "[12] Guillume Klein, Yoon Kim, Yuntian Deng, Jean Senellart, and Alexander M. Rush. OpenNMT:", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 128, + 554, + 420, + 568 + ], + "spans": [ + { + "bbox": [ + 128, + 554, + 420, + 568 + ], + "score": 0.995, + "content": "Open-source toolkit for neural machine translation. In Proc. ACL, 2017.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "score": 0.992, + "content": "[13] Ioannis Kouretas and Vassilis Paliouras. Hardware implementation of a softmax-like function", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 127, + 583, + 307, + 597 + ], + "spans": [ + { + "bbox": [ + 127, + 583, + 307, + 597 + ], + "score": 0.99, + "content": "for deep learning. Technologies, 8(3), 2020.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 601, + 507, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 507, + 615 + ], + "score": 0.983, + "content": "[14] Guillaume Lample and Frangois Charton. Deep learning for symbolic mathematics. CoRR,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 127, + 613, + 223, + 627 + ], + "spans": [ + { + "bbox": [ + 127, + 613, + 223, + 627 + ], + "score": 0.989, + "content": "abs/1912.01412, 2019.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 630, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 630, + 507, + 646 + ], + "score": 0.983, + "content": "[15] Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 641, + 491, + 658 + ], + "spans": [ + { + "bbox": [ + 126, + 641, + 491, + 658 + ], + "score": 0.985, + "content": " Soricut. Albert: A lite bert for self-supervised learning of language representations, 2019.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 661, + 507, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 507, + 673 + ], + "score": 0.98, + "content": "[16] Bo Li, Shuo yiin Chang,Tara N. Sainath,Ruoming Pang, Yanzhang He, Trevor Strohman, and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 671, + 418, + 684 + ], + "spans": [ + { + "bbox": [ + 127, + 671, + 418, + 684 + ], + "score": 0.978, + "content": "Yonghui Wu. Towards fast and accurate streaming end-to-end asr, 2020.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 690, + 507, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 507, + 704 + ], + "score": 0.978, + "content": "[17] Z. Li, H. Li, X. Jiang, B. Chen, Y. Zhang, and G. Du.Efficient fpga implementation of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 126, + 698, + 509, + 716 + ], + "spans": [ + { + "bbox": [ + 126, + 698, + 509, + 716 + ], + "score": 0.982, + "content": "softmax function for dnn applications. In 2018 12th IEEE International Conference on Anti-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 127, + 712, + 442, + 726 + ], + "spans": [ + { + "bbox": [ + 127, + 712, + 442, + 726 + ], + "score": 0.981, + "content": "counterfeiting, Security, and Identification (ASID), pages 212-216, Nov 2018.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 23.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 742, + 312, + 752 + ], + "lines": [ + { + "bbox": [ + 300, + 741, + 313, + 755 + ], + "spans": [ + { + "bbox": [ + 300, + 741, + 313, + 755 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 85, + 75, + 102, + 733 + ], + "lines": [ + { + "bbox": [ + 85, + 74, + 100, + 86 + ], + "spans": [ + { + "bbox": [ + 85, + 74, + 100, + 86 + ], + "score": 1.0, + "content": "302", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 91, + 100, + 103 + ], + "spans": [ + { + "bbox": [ + 85, + 91, + 100, + 103 + ], + "score": 1.0, + "content": "303", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 102, + 100, + 114 + ], + "spans": [ + { + "bbox": [ + 85, + 102, + 100, + 114 + ], + "score": 1.0, + "content": "304", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 114, + 100, + 126 + ], + "spans": [ + { + "bbox": [ + 85, + 114, + 100, + 126 + ], + "score": 1.0, + "content": "305", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 131, + 100, + 144 + ], + "spans": [ + { + "bbox": [ + 85, + 131, + 100, + 144 + ], + "score": 1.0, + "content": "306", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 142, + 101, + 156 + ], + "spans": [ + { + "bbox": [ + 84, + 142, + 101, + 156 + ], + "score": 1.0, + "content": "307", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 160, + 100, + 172 + ], + "spans": [ + { + "bbox": [ + 85, + 160, + 100, + 172 + ], + "score": 1.0, + "content": "308", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 172, + 100, + 183 + ], + "spans": [ + { + "bbox": [ + 85, + 172, + 100, + 183 + ], + "score": 1.0, + "content": "309", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 183, + 100, + 195 + ], + "spans": [ + { + "bbox": [ + 85, + 183, + 100, + 195 + ], + "score": 1.0, + "content": "310", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 193, + 100, + 209 + ], + "spans": [ + { + "bbox": [ + 84, + 193, + 100, + 209 + ], + "score": 1.0, + "content": "311", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 212, + 100, + 224 + ], + "spans": [ + { + "bbox": [ + 85, + 212, + 100, + 224 + ], + "score": 1.0, + "content": "312", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 223, + 101, + 237 + ], + "spans": [ + { + "bbox": [ + 84, + 223, + 101, + 237 + ], + "score": 1.0, + "content": "313", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 241, + 100, + 253 + ], + "spans": [ + { + "bbox": [ + 85, + 241, + 100, + 253 + ], + "score": 1.0, + "content": "314", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 253, + 100, + 265 + ], + "spans": [ + { + "bbox": [ + 85, + 253, + 100, + 265 + ], + "score": 1.0, + "content": "315", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 270, + 100, + 282 + ], + "spans": [ + { + "bbox": [ + 85, + 270, + 100, + 282 + ], + "score": 1.0, + "content": "316", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 281, + 100, + 293 + ], + "spans": [ + { + "bbox": [ + 85, + 281, + 100, + 293 + ], + "score": 1.0, + "content": "317", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 293, + 100, + 304 + ], + "spans": [ + { + "bbox": [ + 85, + 293, + 100, + 304 + ], + "score": 1.0, + "content": "318", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 303, + 101, + 318 + ], + "spans": [ + { + "bbox": [ + 84, + 303, + 101, + 318 + ], + "score": 1.0, + "content": "319", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 322, + 100, + 334 + ], + "spans": [ + { + "bbox": [ + 85, + 322, + 100, + 334 + ], + "score": 1.0, + "content": "320", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 333, + 100, + 344 + ], + "spans": [ + { + "bbox": [ + 85, + 333, + 100, + 344 + ], + "score": 1.0, + "content": "321", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 344, + 100, + 356 + ], + "spans": [ + { + "bbox": [ + 85, + 344, + 100, + 356 + ], + "score": 1.0, + "content": "322", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 362, + 100, + 374 + ], + "spans": [ + { + "bbox": [ + 85, + 362, + 100, + 374 + ], + "score": 1.0, + "content": "323", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 373, + 100, + 385 + ], + "spans": [ + { + "bbox": [ + 85, + 373, + 100, + 385 + ], + "score": 1.0, + "content": "324", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 384, + 100, + 396 + ], + "spans": [ + { + "bbox": [ + 85, + 384, + 100, + 396 + ], + "score": 1.0, + "content": "325", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 394, + 101, + 409 + ], + "spans": [ + { + "bbox": [ + 84, + 394, + 101, + 409 + ], + "score": 1.0, + "content": "326", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 413, + 100, + 425 + ], + "spans": [ + { + "bbox": [ + 85, + 413, + 100, + 425 + ], + "score": 1.0, + "content": "327", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 425, + 100, + 436 + ], + "spans": [ + { + "bbox": [ + 85, + 425, + 100, + 436 + ], + "score": 1.0, + "content": "328", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 435, + 100, + 447 + ], + "spans": [ + { + "bbox": [ + 85, + 435, + 100, + 447 + ], + "score": 1.0, + "content": "329", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 446, + 101, + 460 + ], + "spans": [ + { + "bbox": [ + 84, + 446, + 101, + 460 + ], + "score": 1.0, + "content": "330", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 464, + 100, + 477 + ], + "spans": [ + { + "bbox": [ + 85, + 464, + 100, + 477 + ], + "score": 1.0, + "content": "331", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 475, + 100, + 487 + ], + "spans": [ + { + "bbox": [ + 85, + 475, + 100, + 487 + ], + "score": 1.0, + "content": "332", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 486, + 101, + 500 + ], + "spans": [ + { + "bbox": [ + 84, + 486, + 101, + 500 + ], + "score": 0.992, + "content": "333", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 504, + 100, + 516 + ], + "spans": [ + { + "bbox": [ + 85, + 504, + 100, + 516 + ], + "score": 0.932, + "content": "334", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 516, + 100, + 527 + ], + "spans": [ + { + "bbox": [ + 85, + 516, + 100, + 527 + ], + "score": 1.0, + "content": "335", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 527, + 101, + 541 + ], + "spans": [ + { + "bbox": [ + 86, + 527, + 101, + 541 + ], + "score": 0.998, + "content": "336", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 545, + 100, + 556 + ], + "spans": [ + { + "bbox": [ + 85, + 545, + 100, + 556 + ], + "score": 1.0, + "content": "337", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 555, + 101, + 570 + ], + "spans": [ + { + "bbox": [ + 84, + 555, + 101, + 570 + ], + "score": 1.0, + "content": "338", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 573, + 100, + 586 + ], + "spans": [ + { + "bbox": [ + 85, + 573, + 100, + 586 + ], + "score": 1.0, + "content": "339", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 585, + 100, + 597 + ], + "spans": [ + { + "bbox": [ + 85, + 585, + 100, + 597 + ], + "score": 1.0, + "content": "340", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 604, + 100, + 615 + ], + "spans": [ + { + "bbox": [ + 85, + 604, + 100, + 615 + ], + "score": 1.0, + "content": "341", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 614, + 101, + 631 + ], + "spans": [ + { + "bbox": [ + 84, + 614, + 101, + 631 + ], + "score": 1.0, + "content": "342", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 633, + 100, + 644 + ], + "spans": [ + { + "bbox": [ + 85, + 633, + 100, + 644 + ], + "score": 1.0, + "content": "343", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 644, + 100, + 657 + ], + "spans": [ + { + "bbox": [ + 85, + 644, + 100, + 657 + ], + "score": 1.0, + "content": "344", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 662, + 100, + 673 + ], + "spans": [ + { + "bbox": [ + 85, + 662, + 100, + 673 + ], + "score": 1.0, + "content": "345", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 672, + 101, + 687 + ], + "spans": [ + { + "bbox": [ + 84, + 672, + 101, + 687 + ], + "score": 1.0, + "content": "346", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 691, + 100, + 703 + ], + "spans": [ + { + "bbox": [ + 85, + 691, + 100, + 703 + ], + "score": 1.0, + "content": "347", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 702, + 100, + 714 + ], + "spans": [ + { + "bbox": [ + 85, + 702, + 100, + 714 + ], + "score": 1.0, + "content": "348", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 714, + 100, + 725 + ], + "spans": [ + { + "bbox": [ + 85, + 714, + 100, + 725 + ], + "score": 1.0, + "content": "349", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 101, + 52, + 508, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 69, + 166, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 166, + 87 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 89, + 507, + 103 + ], + "spans": [ + { + "bbox": [ + 110, + 89, + 507, + 103 + ], + "score": 0.988, + "content": "[1] Aishwarya Bhandare, Vamsi Sripathi, Deepthi Karkada, Vivek Menon, Sun Choi, Kushal Datta,", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 99, + 507, + 117 + ], + "spans": [ + { + "bbox": [ + 126, + 99, + 507, + 117 + ], + "score": 0.982, + "content": " and Vikram Saletore.Eficient 8-bit quantization of transformer neural machine language", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 126, + 111, + 326, + 125 + ], + "spans": [ + { + "bbox": [ + 126, + 111, + 326, + 125 + ], + "score": 0.995, + "content": "translation model. CoRR,abs/1906.00532,2019.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 130, + 507, + 144 + ], + "spans": [ + { + "bbox": [ + 110, + 130, + 507, + 144 + ], + "score": 0.987, + "content": "[2] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 141, + 422, + 154 + ], + "spans": [ + { + "bbox": [ + 126, + 141, + 422, + 154 + ], + "score": 0.982, + "content": " Sergey Zagoruyko. End-to-end object detection with transformers, 2020.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 158, + 507, + 174 + ], + "spans": [ + { + "bbox": [ + 110, + 158, + 507, + 174 + ], + "score": 0.979, + "content": "[3] Ming Chen, Yingming_Li, Zhongfei Zhang, and Siyu_Huang. Tvt: Two-view transformer", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 170, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 127, + 170, + 507, + 184 + ], + "score": 0.989, + "content": "network for video captioning. In Jun Zhu and Ichiro Takeuchi, editors, Proceedings of The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 180, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 127, + 180, + 507, + 196 + ], + "score": 0.981, + "content": "l0th Asian Conference on Machine Learning, volume 95 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 192, + 339, + 207 + ], + "spans": [ + { + "bbox": [ + 127, + 192, + 339, + 207 + ], + "score": 0.99, + "content": "Research, pages 847-862. PMLR,14-16 Nov 2018.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 209, + 507, + 225 + ], + "spans": [ + { + "bbox": [ + 109, + 209, + 507, + 225 + ], + "score": 0.986, + "content": "[4] Jacek Czaja, Michal Galus, Tomasz Patejko,and Jian Tang. Softmax optimizations for intel", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 222, + 383, + 235 + ], + "spans": [ + { + "bbox": [ + 125, + 222, + 383, + 235 + ], + "score": 0.984, + "content": " xeon processor-based platforms. CoRR,abs/1904.12380,2019.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 239, + 508, + 255 + ], + "spans": [ + { + "bbox": [ + 109, + 239, + 508, + 255 + ], + "score": 0.988, + "content": "[5] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: pre-training of", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 251, + 494, + 265 + ], + "spans": [ + { + "bbox": [ + 127, + 251, + 494, + 265 + ], + "score": 0.985, + "content": "deep bidirectional transformers for language understanding. CoRR,abs/1810.04805, 2018.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 111, + 270, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 111, + 270, + 507, + 282 + ], + "score": 0.982, + "content": "[6] Alexey Dosovitskiy,Lucas Beyer,Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 278, + 507, + 295 + ], + "spans": [ + { + "bbox": [ + 126, + 278, + 507, + 295 + ], + "score": 0.976, + "content": "Thomas Unterthiner, Mostafa Dehghani, Mathias Minderer, Georg Heigold, Sylvain Gely,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 289, + 507, + 307 + ], + "spans": [ + { + "bbox": [ + 126, + 289, + 507, + 307 + ], + "score": 0.98, + "content": " Jakob Uszkoreit,and Neil Houlsby.An image is worth 16x16 words: Transformers for image", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 125, + 302, + 237, + 315 + ], + "spans": [ + { + "bbox": [ + 125, + 302, + 237, + 315 + ], + "score": 0.999, + "content": "recognition at scale,2020.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 319, + 509, + 335 + ], + "spans": [ + { + "bbox": [ + 109, + 319, + 509, + 335 + ], + "score": 0.99, + "content": "[7] Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Botom-up abstractive summarization.", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 329, + 507, + 347 + ], + "spans": [ + { + "bbox": [ + 126, + 329, + 507, + 347 + ], + "score": 0.973, + "content": " In Proceedings of the2O18 Conference on Empirical Methods in Natural Language Processing,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 342, + 228, + 354 + ], + "spans": [ + { + "bbox": [ + 126, + 342, + 228, + 354 + ], + "score": 0.98, + "content": "pages 4098-4109,2018.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 361, + 508, + 375 + ], + "spans": [ + { + "bbox": [ + 110, + 361, + 508, + 375 + ], + "score": 0.987, + "content": "[8] Xue Geng, Jie Lin, Bin Zhao, Anmin Kong, Mohamed M. Sabry Aly, and Vijay Chandrasekhar.", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 128, + 372, + 506, + 386 + ], + "score": 0.99, + "content": "Hardware-aware softmax approximation for deep neural networks. In C.V. Jawahar, Hongdong", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 380, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 127, + 380, + 506, + 398 + ], + "score": 0.978, + "content": "Li, Greg Mori,and Konrad Schindler, editors, Computer Vision- ACCV 2018, pages 107-12,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 392, + 321, + 408 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 321, + 408 + ], + "score": 0.987, + "content": "Cham, 2019. Springer International Publishing.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 411, + 508, + 426 + ], + "spans": [ + { + "bbox": [ + 109, + 411, + 508, + 426 + ], + "score": 0.977, + "content": "[9] Yanzhang He, Tara N. Sainath, Rohit Prabhavalkar, Ian McGraw, Raziel Alvarez, Ding Zhao,", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 423, + 507, + 437 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 507, + 437 + ], + "score": 0.977, + "content": "David Rybach, Anjuli Kannan, Yonghui Wu, Ruoming Pang, Qiao Liang, Deepti Bhatia, Yuan", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 128, + 434, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 128, + 434, + 507, + 448 + ], + "score": 0.976, + "content": "Shangguan, Bo Li, Golan Pundak, Khe Chai Sim, Tom Bagby, Shuo yiin Chang, Kanishka Rao,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 128, + 446, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 128, + 446, + 507, + 457 + ], + "score": 0.991, + "content": "and Alexander Gruenstein. Streaming end-to-end speech recognition for mobile devices,2018.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 463, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 507, + 477 + ], + "score": 0.972, + "content": "[10] R. Hu, B. Tian, S. Yin,and S. Wei. Efcient hardware architecture of softmax layer in deep", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 471, + 507, + 489 + ], + "spans": [ + { + "bbox": [ + 126, + 471, + 507, + 489 + ], + "score": 0.98, + "content": "neural network. In2018 IEEE23rd International Conference on Digital Signal Procesing", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 486, + 247, + 498 + ], + "spans": [ + { + "bbox": [ + 128, + 486, + 247, + 498 + ], + "score": 0.984, + "content": "(DSP), pages 1-5, Nov 2018.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 0.978, + "content": "[11] Andrey Ignatov, Radu Timofte, Wilim Chou, Ke Wang, Max Wu, Tim Hartley,and Luc Van", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 514, + 507, + 528 + ], + "spans": [ + { + "bbox": [ + 127, + 514, + 507, + 528 + ], + "score": 0.995, + "content": "Gool.AI benchmark: Running deep neural networks on android smartphones. CoRR,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 128, + 526, + 222, + 538 + ], + "spans": [ + { + "bbox": [ + 128, + 526, + 222, + 538 + ], + "score": 1.0, + "content": "abs/1810.01109,2018.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "score": 0.991, + "content": "[12] Guillume Klein, Yoon Kim, Yuntian Deng, Jean Senellart, and Alexander M. Rush. OpenNMT:", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 554, + 420, + 568 + ], + "spans": [ + { + "bbox": [ + 128, + 554, + 420, + 568 + ], + "score": 0.995, + "content": "Open-source toolkit for neural machine translation. In Proc. ACL, 2017.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "score": 0.992, + "content": "[13] Ioannis Kouretas and Vassilis Paliouras. Hardware implementation of a softmax-like function", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 583, + 307, + 597 + ], + "spans": [ + { + "bbox": [ + 127, + 583, + 307, + 597 + ], + "score": 0.99, + "content": "for deep learning. Technologies, 8(3), 2020.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 601, + 507, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 507, + 615 + ], + "score": 0.983, + "content": "[14] Guillaume Lample and Frangois Charton. Deep learning for symbolic mathematics. CoRR,", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 613, + 223, + 627 + ], + "spans": [ + { + "bbox": [ + 127, + 613, + 223, + 627 + ], + "score": 0.989, + "content": "abs/1912.01412, 2019.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 630, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 630, + 507, + 646 + ], + "score": 0.983, + "content": "[15] Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 641, + 491, + 658 + ], + "spans": [ + { + "bbox": [ + 126, + 641, + 491, + 658 + ], + "score": 0.985, + "content": " Soricut. Albert: A lite bert for self-supervised learning of language representations, 2019.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 661, + 507, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 507, + 673 + ], + "score": 0.98, + "content": "[16] Bo Li, Shuo yiin Chang,Tara N. Sainath,Ruoming Pang, Yanzhang He, Trevor Strohman, and", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 671, + 418, + 684 + ], + "spans": [ + { + "bbox": [ + 127, + 671, + 418, + 684 + ], + "score": 0.978, + "content": "Yonghui Wu. Towards fast and accurate streaming end-to-end asr, 2020.", + "type": "text" + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 690, + 507, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 507, + 704 + ], + "score": 0.978, + "content": "[17] Z. Li, H. Li, X. Jiang, B. Chen, Y. Zhang, and G. Du.Efficient fpga implementation of", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 698, + 509, + 716 + ], + "spans": [ + { + "bbox": [ + 126, + 698, + 509, + 716 + ], + "score": 0.982, + "content": "softmax function for dnn applications. In 2018 12th IEEE International Conference on Anti-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 127, + 712, + 442, + 726 + ], + "spans": [ + { + "bbox": [ + 127, + 712, + 442, + 726 + ], + "score": 0.981, + "content": "counterfeiting, Security, and Identification (ASID), pages 212-216, Nov 2018.", + "type": "text" + } + ], + "index": 47, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 72, + 507, + 87 + ], + "spans": [ + { + "bbox": [ + 88, + 72, + 507, + 87 + ], + "score": 0.982, + "content": " 50[18] Yinhan Liu,Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy,", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 83, + 507, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 507, + 98 + ], + "score": 0.984, + "content": " Mike Lewis, Luke Zettemoyer, and Veselin Stoyanov. Roberta: A robustly optimized BERT", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 94, + 340, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 94, + 340, + 108 + ], + "score": 0.974, + "content": "pretraining approach. CoRR, abs/1907.11692, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 114, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 88, + 114, + 507, + 128 + ], + "score": 0.979, + "content": " 53[19] M. G. Sarwar Murshed, Christopher Murphy, Daqing Hou, Nazar Khan, Ganesh Anantha-", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 125, + 476, + 140 + ], + "spans": [ + { + "bbox": [ + 126, + 125, + 476, + 140 + ], + "score": 0.992, + "content": " narayanan, and Faraz Hussain. Machine learning at the network edge: A survey, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 145, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 88, + 145, + 507, + 159 + ], + "score": 0.99, + "content": " 55[20] Gabriele Prato,Ella Charlaix,and Mehdi Rezagholizadeh.Fully quantized transformer for", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 156, + 243, + 171 + ], + "spans": [ + { + "bbox": [ + 127, + 156, + 243, + 171 + ], + "score": 0.998, + "content": "improved translation, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 176, + 507, + 191 + ], + "spans": [ + { + "bbox": [ + 104, + 176, + 507, + 191 + ], + "score": 0.981, + "content": "[21] Tara N. Sainath, Yanzhang He, Bo Li, Arun Narayanan,Ruoming Pang, Antoine Bruguier, Shuo", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 187, + 507, + 201 + ], + "spans": [ + { + "bbox": [ + 127, + 187, + 507, + 201 + ], + "score": 0.985, + "content": "yiin Chang, Wei Li, Raziel Alvarez, Zhifeng Chen, Chung-Cheng Chiu, David Garcia, Alex", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 198, + 507, + 213 + ], + "spans": [ + { + "bbox": [ + 127, + 198, + 507, + 213 + ], + "score": 0.989, + "content": "Gruenstein, Ke Hu, Minho Jin, Anjuli Kannan, Qiao Liang, Ian McGraw, Cal Peyser, Rohit", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 209, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 127, + 209, + 507, + 223 + ], + "score": 0.99, + "content": "Prabhavalkar, Golan Pundak, David Rybach, Yuan Shangguan, Yash Sheth, Trevor Strohman,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 218, + 507, + 236 + ], + "spans": [ + { + "bbox": [ + 126, + 218, + 507, + 236 + ], + "score": 0.986, + "content": "Mirko Visontai, Yonghui Wu, Yu Zhang,and Ding Zhao. A streaming on-device end-to-end", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 231, + 433, + 245 + ], + "spans": [ + { + "bbox": [ + 127, + 231, + 433, + 245 + ], + "score": 0.997, + "content": "model surpassing server-side conventional model quality and latency, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 251, + 508, + 265 + ], + "spans": [ + { + "bbox": [ + 88, + 251, + 508, + 265 + ], + "score": 0.976, + "content": " 63[22] Sheng Shen, Zhen Dong, Jiayu Ye, Linjian Ma, Zhewei Yao,Amir Gholami, Michael W.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 261, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 127, + 261, + 507, + 275 + ], + "score": 0.989, + "content": "Mahoney,and Kurt Keutzer. Q-bert: Hessian based ultra low precision quantization of bert,", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 272, + 155, + 287 + ], + "spans": [ + { + "bbox": [ + 126, + 272, + 155, + 287 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 293, + 507, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 507, + 307 + ], + "score": 0.984, + "content": "[23] Hyunsung Shin, Dongyoung Kim, Eunhyeok Park, Sungho Park, Yongsik Park, and Sungjoo", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 128, + 304, + 507, + 318 + ], + "spans": [ + { + "bbox": [ + 128, + 304, + 507, + 318 + ], + "score": 0.98, + "content": "Yoo. Mcdram: Low latency and energy-effcient matrix computations in dram. IEEE Trans-", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 315, + 507, + 329 + ], + "spans": [ + { + "bbox": [ + 127, + 315, + 507, + 329 + ], + "score": 0.993, + "content": "actions on Computer-Aided Design of Integrated Circuits and Systems, 37(11):2613-2622,", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 325, + 155, + 340 + ], + "spans": [ + { + "bbox": [ + 126, + 325, + 155, + 340 + ], + "score": 1.0, + "content": "2018.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 345, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 88, + 345, + 507, + 360 + ], + "score": 0.982, + "content": " 70[24] Jacob R. Stevens, Rangharajan Venkatesan, Steve Dai, Brucek Khailany,and Anand Raghu-", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 356, + 508, + 371 + ], + "spans": [ + { + "bbox": [ + 126, + 356, + 508, + 371 + ], + "score": 0.984, + "content": " nathan. Softermax: Hardware/software co-design of an eficient softmax for transformers.", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 128, + 368, + 250, + 380 + ], + "spans": [ + { + "bbox": [ + 128, + 368, + 250, + 380 + ], + "score": 0.999, + "content": "CoRR,abs/2103.09301,2021.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 388, + 507, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 388, + 507, + 402 + ], + "score": 0.977, + "content": "[25] Q. Sun, Z. Di,Z. Lv, F. Song, Q. Xiang, Q. Feng, Y. Fan, X. Yu,and W. Wang. A high speed", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 397, + 507, + 413 + ], + "spans": [ + { + "bbox": [ + 126, + 397, + 507, + 413 + ], + "score": 0.989, + "content": "softmax vlsi architecture based on basic-split. In 2018 14th IEEE International Conference on", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 128, + 410, + 441, + 423 + ], + "spans": [ + { + "bbox": [ + 128, + 410, + 441, + 423 + ], + "score": 0.977, + "content": "Solid-State and Integrated Circuit Technology (ICSICT), pages 1-3, Oct 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 429, + 507, + 444 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 507, + 444 + ], + "score": 0.975, + "content": "[26] Hugo Touvron,Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 128, + 442, + 502, + 454 + ], + "spans": [ + { + "bbox": [ + 128, + 442, + 502, + 454 + ], + "score": 0.985, + "content": "Hervé Jégou. Training data-efficient image transformers distillation through attention, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 87, + 460, + 507, + 474 + ], + "spans": [ + { + "bbox": [ + 87, + 460, + 507, + 474 + ], + "score": 0.988, + "content": "78[27] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit,Llion Jones,Aidan N. Gomez,", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 471, + 502, + 483 + ], + "spans": [ + { + "bbox": [ + 128, + 471, + 502, + 483 + ], + "score": 0.978, + "content": "Lukasz Kaiser, and Ilia Polosukhin. Attention is all you need. CoRR,abs/1706.03762, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 491, + 507, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 491, + 507, + 505 + ], + "score": 0.993, + "content": "[28] Ihor Vasyltsov and Wooseok Chang. Lightweight Approximation of Softmax Layer for On-Device", + "type": "text", + "cross_page": true + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 503, + 335, + 515 + ], + "spans": [ + { + "bbox": [ + 128, + 503, + 335, + 515 + ], + "score": 0.984, + "content": "Inference. Springer International Publishing, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 87, + 522, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 87, + 522, + 507, + 536 + ], + "score": 0.987, + "content": "82[29] Alex Wang,Amanpreet Singh, Julian Michael,Felix Hil,Omer Levy,and Samuel R. Bowman.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 531, + 507, + 548 + ], + "spans": [ + { + "bbox": [ + 126, + 531, + 507, + 548 + ], + "score": 0.989, + "content": " GLUE: A multi-task benchmark and analysis platform for natural language understanding.", + "type": "text", + "cross_page": true + } + ], + "index": 33 + }, + { + "bbox": [ + 128, + 545, + 250, + 557 + ], + "spans": [ + { + "bbox": [ + 128, + 545, + 250, + 557 + ], + "score": 0.999, + "content": "CoRR,abs/1804.07461,2018.", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 563, + 507, + 578 + ], + "spans": [ + { + "bbox": [ + 88, + 563, + 507, + 578 + ], + "score": 0.986, + "content": " 85[30] K. Wang, Y. Huang, Y. Ho,and W. Fang. A customized convolutional neural network design", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 574, + 508, + 590 + ], + "spans": [ + { + "bbox": [ + 126, + 574, + 508, + 590 + ], + "score": 0.982, + "content": "using improved softmax layer for real-time human emotion recognition. In 2019 IEEE Inter-", + "type": "text", + "cross_page": true + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 586, + 507, + 600 + ], + "spans": [ + { + "bbox": [ + 127, + 586, + 507, + 600 + ], + "score": 0.982, + "content": "national Conference on Artificial Intelligence Circuits and Systems (AICAS), pages 102-106,", + "type": "text", + "cross_page": true + } + ], + "index": 37 + }, + { + "bbox": [ + 127, + 597, + 183, + 609 + ], + "spans": [ + { + "bbox": [ + 127, + 597, + 183, + 609 + ], + "score": 0.997, + "content": "March 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 89, + 616, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 616, + 507, + 631 + ], + "score": 0.988, + "content": " 89[31] M. Wang,S.Lu,D. Zhu, J.Lin,and Z. Wang. A high-speed and low-complexity architecture", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 628, + 507, + 641 + ], + "spans": [ + { + "bbox": [ + 128, + 628, + 507, + 641 + ], + "score": 0.985, + "content": "for softmax function in deep learning. In 2O18 IEEE Asia Pacific Conference on Circuits and", + "type": "text", + "cross_page": true + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 639, + 318, + 653 + ], + "spans": [ + { + "bbox": [ + 127, + 639, + 318, + 653 + ], + "score": 0.998, + "content": "Systems (APCCAS), pages 223-226, Oct 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 659, + 507, + 673 + ], + "spans": [ + { + "bbox": [ + 88, + 659, + 507, + 673 + ], + "score": 0.992, + "content": " 92[32] Siqi Wang,Anuj Pathania,and Tulika Mitra. Neural network inference on mobile socs. IEEE", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 669, + 250, + 684 + ], + "spans": [ + { + "bbox": [ + 126, + 669, + 250, + 684 + ], + "score": 0.989, + "content": "Design Test, page 1-1,2020.", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 87, + 689, + 507, + 704 + ], + "spans": [ + { + "bbox": [ + 87, + 689, + 507, + 704 + ], + "score": 0.957, + "content": " 94[33] Zhilin_ Yang, Zihang Dai, Yiming Yang, Jaime G. Carbonell,Ruslan Salakhutdinov, and", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 701, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 127, + 701, + 507, + 715 + ], + "score": 0.989, + "content": "Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding. CoRR,", + "type": "text", + "cross_page": true + } + ], + "index": 45 + }, + { + "bbox": [ + 128, + 712, + 222, + 724 + ], + "spans": [ + { + "bbox": [ + 128, + 712, + 222, + 724 + ], + "score": 0.999, + "content": "abs/1906.08237,2019.", + "type": "text", + "cross_page": true + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "score": 0.976, + "content": "[34] B. Yuan. Efcient hardware architecture of softmax layer in deep neural network. In 2016 29th", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 83, + 468, + 96 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 468, + 96 + ], + "score": 0.991, + "content": "IEEE International System-on-Chip Conference (SOCC), pages 323-326, Sep.2016.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 101, + 507, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 507, + 115 + ], + "score": 0.988, + "content": "[35] Ofir Zafrir, Guy Boudoukh,Peter Izsak,and Moshe Wasserblat. Q8bert: Quantized 8bit bert,", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 111, + 154, + 124 + ], + "spans": [ + { + "bbox": [ + 127, + 111, + 154, + 124 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 129, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 506, + 142 + ], + "score": 0.98, + "content": "[36] Xingzhou Zhang, Yifan Wang, Sidi Lu,Liangkai Liu, Lanyu Xu,and Weisong Shi. Openei: An", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 141, + 406, + 153 + ], + "spans": [ + { + "bbox": [ + 127, + 141, + 406, + 153 + ], + "score": 0.987, + "content": "open framework for edge intelligence. CoRR,abs/1906.01864,2019.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 69, + 509, + 726 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 91, + 38, + 508, + 732 + ], + "lines": [ + { + "bbox": [ + 88, + 72, + 507, + 87 + ], + "spans": [ + { + "bbox": [ + 88, + 72, + 507, + 87 + ], + "score": 0.982, + "content": " 50[18] Yinhan Liu,Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 83, + 507, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 507, + 98 + ], + "score": 0.984, + "content": " Mike Lewis, Luke Zettemoyer, and Veselin Stoyanov. Roberta: A robustly optimized BERT", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 94, + 340, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 94, + 340, + 108 + ], + "score": 0.974, + "content": "pretraining approach. CoRR, abs/1907.11692, 2019.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 88, + 114, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 88, + 114, + 507, + 128 + ], + "score": 0.979, + "content": " 53[19] M. G. Sarwar Murshed, Christopher Murphy, Daqing Hou, Nazar Khan, Ganesh Anantha-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 125, + 476, + 140 + ], + "spans": [ + { + "bbox": [ + 126, + 125, + 476, + 140 + ], + "score": 0.992, + "content": " narayanan, and Faraz Hussain. Machine learning at the network edge: A survey, 2019.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 88, + 145, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 88, + 145, + 507, + 159 + ], + "score": 0.99, + "content": " 55[20] Gabriele Prato,Ella Charlaix,and Mehdi Rezagholizadeh.Fully quantized transformer for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 156, + 243, + 171 + ], + "spans": [ + { + "bbox": [ + 127, + 156, + 243, + 171 + ], + "score": 0.998, + "content": "improved translation, 2019.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 176, + 507, + 191 + ], + "spans": [ + { + "bbox": [ + 104, + 176, + 507, + 191 + ], + "score": 0.981, + "content": "[21] Tara N. Sainath, Yanzhang He, Bo Li, Arun Narayanan,Ruoming Pang, Antoine Bruguier, Shuo", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 187, + 507, + 201 + ], + "spans": [ + { + "bbox": [ + 127, + 187, + 507, + 201 + ], + "score": 0.985, + "content": "yiin Chang, Wei Li, Raziel Alvarez, Zhifeng Chen, Chung-Cheng Chiu, David Garcia, Alex", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 198, + 507, + 213 + ], + "spans": [ + { + "bbox": [ + 127, + 198, + 507, + 213 + ], + "score": 0.989, + "content": "Gruenstein, Ke Hu, Minho Jin, Anjuli Kannan, Qiao Liang, Ian McGraw, Cal Peyser, Rohit", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 209, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 127, + 209, + 507, + 223 + ], + "score": 0.99, + "content": "Prabhavalkar, Golan Pundak, David Rybach, Yuan Shangguan, Yash Sheth, Trevor Strohman,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 218, + 507, + 236 + ], + "spans": [ + { + "bbox": [ + 126, + 218, + 507, + 236 + ], + "score": 0.986, + "content": "Mirko Visontai, Yonghui Wu, Yu Zhang,and Ding Zhao. A streaming on-device end-to-end", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 231, + 433, + 245 + ], + "spans": [ + { + "bbox": [ + 127, + 231, + 433, + 245 + ], + "score": 0.997, + "content": "model surpassing server-side conventional model quality and latency, 2020.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 88, + 251, + 508, + 265 + ], + "spans": [ + { + "bbox": [ + 88, + 251, + 508, + 265 + ], + "score": 0.976, + "content": " 63[22] Sheng Shen, Zhen Dong, Jiayu Ye, Linjian Ma, Zhewei Yao,Amir Gholami, Michael W.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 261, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 127, + 261, + 507, + 275 + ], + "score": 0.989, + "content": "Mahoney,and Kurt Keutzer. Q-bert: Hessian based ultra low precision quantization of bert,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 272, + 155, + 287 + ], + "spans": [ + { + "bbox": [ + 126, + 272, + 155, + 287 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 293, + 507, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 507, + 307 + ], + "score": 0.984, + "content": "[23] Hyunsung Shin, Dongyoung Kim, Eunhyeok Park, Sungho Park, Yongsik Park, and Sungjoo", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 128, + 304, + 507, + 318 + ], + "spans": [ + { + "bbox": [ + 128, + 304, + 507, + 318 + ], + "score": 0.98, + "content": "Yoo. Mcdram: Low latency and energy-effcient matrix computations in dram. IEEE Trans-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 315, + 507, + 329 + ], + "spans": [ + { + "bbox": [ + 127, + 315, + 507, + 329 + ], + "score": 0.993, + "content": "actions on Computer-Aided Design of Integrated Circuits and Systems, 37(11):2613-2622,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 325, + 155, + 340 + ], + "spans": [ + { + "bbox": [ + 126, + 325, + 155, + 340 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 88, + 345, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 88, + 345, + 507, + 360 + ], + "score": 0.982, + "content": " 70[24] Jacob R. Stevens, Rangharajan Venkatesan, Steve Dai, Brucek Khailany,and Anand Raghu-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 126, + 356, + 508, + 371 + ], + "spans": [ + { + "bbox": [ + 126, + 356, + 508, + 371 + ], + "score": 0.984, + "content": " nathan. Softermax: Hardware/software co-design of an eficient softmax for transformers.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 128, + 368, + 250, + 380 + ], + "spans": [ + { + "bbox": [ + 128, + 368, + 250, + 380 + ], + "score": 0.999, + "content": "CoRR,abs/2103.09301,2021.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 388, + 507, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 388, + 507, + 402 + ], + "score": 0.977, + "content": "[25] Q. Sun, Z. Di,Z. Lv, F. Song, Q. Xiang, Q. Feng, Y. Fan, X. Yu,and W. Wang. A high speed", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 397, + 507, + 413 + ], + "spans": [ + { + "bbox": [ + 126, + 397, + 507, + 413 + ], + "score": 0.989, + "content": "softmax vlsi architecture based on basic-split. In 2018 14th IEEE International Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 128, + 410, + 441, + 423 + ], + "spans": [ + { + "bbox": [ + 128, + 410, + 441, + 423 + ], + "score": 0.977, + "content": "Solid-State and Integrated Circuit Technology (ICSICT), pages 1-3, Oct 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 429, + 507, + 444 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 507, + 444 + ], + "score": 0.975, + "content": "[26] Hugo Touvron,Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 128, + 442, + 502, + 454 + ], + "spans": [ + { + "bbox": [ + 128, + 442, + 502, + 454 + ], + "score": 0.985, + "content": "Hervé Jégou. Training data-efficient image transformers distillation through attention, 2021.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 87, + 460, + 507, + 474 + ], + "spans": [ + { + "bbox": [ + 87, + 460, + 507, + 474 + ], + "score": 0.988, + "content": "78[27] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit,Llion Jones,Aidan N. Gomez,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 128, + 471, + 502, + 483 + ], + "spans": [ + { + "bbox": [ + 128, + 471, + 502, + 483 + ], + "score": 0.978, + "content": "Lukasz Kaiser, and Ilia Polosukhin. Attention is all you need. CoRR,abs/1706.03762, 2017.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 491, + 507, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 491, + 507, + 505 + ], + "score": 0.993, + "content": "[28] Ihor Vasyltsov and Wooseok Chang. Lightweight Approximation of Softmax Layer for On-Device", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 503, + 335, + 515 + ], + "spans": [ + { + "bbox": [ + 128, + 503, + 335, + 515 + ], + "score": 0.984, + "content": "Inference. Springer International Publishing, 2021.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 87, + 522, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 87, + 522, + 507, + 536 + ], + "score": 0.987, + "content": "82[29] Alex Wang,Amanpreet Singh, Julian Michael,Felix Hil,Omer Levy,and Samuel R. Bowman.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 126, + 531, + 507, + 548 + ], + "spans": [ + { + "bbox": [ + 126, + 531, + 507, + 548 + ], + "score": 0.989, + "content": " GLUE: A multi-task benchmark and analysis platform for natural language understanding.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 128, + 545, + 250, + 557 + ], + "spans": [ + { + "bbox": [ + 128, + 545, + 250, + 557 + ], + "score": 0.999, + "content": "CoRR,abs/1804.07461,2018.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 88, + 563, + 507, + 578 + ], + "spans": [ + { + "bbox": [ + 88, + 563, + 507, + 578 + ], + "score": 0.986, + "content": " 85[30] K. Wang, Y. Huang, Y. Ho,and W. Fang. A customized convolutional neural network design", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 574, + 508, + 590 + ], + "spans": [ + { + "bbox": [ + 126, + 574, + 508, + 590 + ], + "score": 0.982, + "content": "using improved softmax layer for real-time human emotion recognition. In 2019 IEEE Inter-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 586, + 507, + 600 + ], + "spans": [ + { + "bbox": [ + 127, + 586, + 507, + 600 + ], + "score": 0.982, + "content": "national Conference on Artificial Intelligence Circuits and Systems (AICAS), pages 102-106,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 127, + 597, + 183, + 609 + ], + "spans": [ + { + "bbox": [ + 127, + 597, + 183, + 609 + ], + "score": 0.997, + "content": "March 2019.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 616, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 89, + 616, + 507, + 631 + ], + "score": 0.988, + "content": " 89[31] M. Wang,S.Lu,D. Zhu, J.Lin,and Z. Wang. A high-speed and low-complexity architecture", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 128, + 628, + 507, + 641 + ], + "spans": [ + { + "bbox": [ + 128, + 628, + 507, + 641 + ], + "score": 0.985, + "content": "for softmax function in deep learning. In 2O18 IEEE Asia Pacific Conference on Circuits and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 639, + 318, + 653 + ], + "spans": [ + { + "bbox": [ + 127, + 639, + 318, + 653 + ], + "score": 0.998, + "content": "Systems (APCCAS), pages 223-226, Oct 2018.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 88, + 659, + 507, + 673 + ], + "spans": [ + { + "bbox": [ + 88, + 659, + 507, + 673 + ], + "score": 0.992, + "content": " 92[32] Siqi Wang,Anuj Pathania,and Tulika Mitra. Neural network inference on mobile socs. IEEE", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 126, + 669, + 250, + 684 + ], + "spans": [ + { + "bbox": [ + 126, + 669, + 250, + 684 + ], + "score": 0.989, + "content": "Design Test, page 1-1,2020.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 87, + 689, + 507, + 704 + ], + "spans": [ + { + "bbox": [ + 87, + 689, + 507, + 704 + ], + "score": 0.957, + "content": " 94[33] Zhilin_ Yang, Zihang Dai, Yiming Yang, Jaime G. Carbonell,Ruslan Salakhutdinov, and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 127, + 701, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 127, + 701, + 507, + 715 + ], + "score": 0.989, + "content": "Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding. CoRR,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 128, + 712, + 222, + 724 + ], + "spans": [ + { + "bbox": [ + 128, + 712, + 222, + 724 + ], + "score": 0.999, + "content": "abs/1906.08237,2019.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 23 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 742, + 311, + 752 + ], + "lines": [ + { + "bbox": [ + 299, + 741, + 313, + 756 + ], + "spans": [ + { + "bbox": [ + 299, + 741, + 313, + 756 + ], + "score": 0.999, + "content": "11", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 86, + 67, + 102, + 735 + ], + "lines": [ + { + "bbox": [ + 85, + 85, + 99, + 97 + ], + "spans": [ + { + "bbox": [ + 85, + 85, + 99, + 97 + ], + "score": 1.0, + "content": "351", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 95, + 101, + 110 + ], + "spans": [ + { + "bbox": [ + 84, + 95, + 101, + 110 + ], + "score": 1.0, + "content": "352", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 127, + 100, + 140 + ], + "spans": [ + { + "bbox": [ + 85, + 127, + 100, + 140 + ], + "score": 1.0, + "content": "354", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 157, + 102, + 173 + ], + "spans": [ + { + "bbox": [ + 84, + 157, + 102, + 173 + ], + "score": 1.0, + "content": "356", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 178, + 100, + 190 + ], + "spans": [ + { + "bbox": [ + 85, + 178, + 100, + 190 + ], + "score": 1.0, + "content": "357", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 187, + 102, + 201 + ], + "spans": [ + { + "bbox": [ + 84, + 187, + 102, + 201 + ], + "score": 1.0, + "content": "358", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 200, + 101, + 212 + ], + "spans": [ + { + "bbox": [ + 85, + 200, + 101, + 212 + ], + "score": 1.0, + "content": "359", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 211, + 100, + 223 + ], + "spans": [ + { + "bbox": [ + 85, + 211, + 100, + 223 + ], + "score": 1.0, + "content": "360", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 222, + 99, + 234 + ], + "spans": [ + { + "bbox": [ + 85, + 222, + 99, + 234 + ], + "score": 1.0, + "content": "361", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 232, + 102, + 246 + ], + "spans": [ + { + "bbox": [ + 84, + 232, + 102, + 246 + ], + "score": 0.999, + "content": "362", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 263, + 100, + 275 + ], + "spans": [ + { + "bbox": [ + 85, + 263, + 100, + 275 + ], + "score": 1.0, + "content": "364", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 274, + 101, + 290 + ], + "spans": [ + { + "bbox": [ + 84, + 274, + 101, + 290 + ], + "score": 1.0, + "content": "365", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 293, + 102, + 307 + ], + "spans": [ + { + "bbox": [ + 84, + 293, + 102, + 307 + ], + "score": 1.0, + "content": "366", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 306, + 100, + 317 + ], + "spans": [ + { + "bbox": [ + 85, + 306, + 100, + 317 + ], + "score": 1.0, + "content": "367", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 315, + 102, + 329 + ], + "spans": [ + { + "bbox": [ + 84, + 315, + 102, + 329 + ], + "score": 1.0, + "content": "368", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 327, + 101, + 342 + ], + "spans": [ + { + "bbox": [ + 84, + 327, + 101, + 342 + ], + "score": 1.0, + "content": "369", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 358, + 100, + 370 + ], + "spans": [ + { + "bbox": [ + 85, + 358, + 100, + 370 + ], + "score": 1.0, + "content": "371", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 369, + 101, + 385 + ], + "spans": [ + { + "bbox": [ + 84, + 369, + 101, + 385 + ], + "score": 1.0, + "content": "372", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 388, + 102, + 402 + ], + "spans": [ + { + "bbox": [ + 84, + 388, + 102, + 402 + ], + "score": 1.0, + "content": "373", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 400, + 100, + 412 + ], + "spans": [ + { + "bbox": [ + 85, + 400, + 100, + 412 + ], + "score": 1.0, + "content": "374", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 410, + 101, + 425 + ], + "spans": [ + { + "bbox": [ + 84, + 410, + 101, + 425 + ], + "score": 1.0, + "content": "375", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 431, + 101, + 443 + ], + "spans": [ + { + "bbox": [ + 85, + 431, + 101, + 443 + ], + "score": 1.0, + "content": "376", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 441, + 101, + 457 + ], + "spans": [ + { + "bbox": [ + 84, + 441, + 101, + 457 + ], + "score": 1.0, + "content": "377", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 473, + 101, + 489 + ], + "spans": [ + { + "bbox": [ + 84, + 473, + 101, + 489 + ], + "score": 0.965, + "content": "379", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 492, + 100, + 505 + ], + "spans": [ + { + "bbox": [ + 85, + 492, + 100, + 505 + ], + "score": 1.0, + "content": "380", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 504, + 99, + 516 + ], + "spans": [ + { + "bbox": [ + 85, + 504, + 99, + 516 + ], + "score": 1.0, + "content": "381", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 534, + 100, + 547 + ], + "spans": [ + { + "bbox": [ + 85, + 534, + 100, + 547 + ], + "score": 1.0, + "content": "383", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 545, + 102, + 564 + ], + "spans": [ + { + "bbox": [ + 83, + 545, + 102, + 564 + ], + "score": 0.999, + "content": "384", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 577, + 100, + 588 + ], + "spans": [ + { + "bbox": [ + 85, + 577, + 100, + 588 + ], + "score": 1.0, + "content": "386", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 587, + 100, + 599 + ], + "spans": [ + { + "bbox": [ + 85, + 587, + 100, + 599 + ], + "score": 1.0, + "content": "387", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 599, + 100, + 611 + ], + "spans": [ + { + "bbox": [ + 85, + 599, + 100, + 611 + ], + "score": 1.0, + "content": "388", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 630, + 100, + 641 + ], + "spans": [ + { + "bbox": [ + 85, + 630, + 100, + 641 + ], + "score": 1.0, + "content": "390", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 640, + 100, + 655 + ], + "spans": [ + { + "bbox": [ + 84, + 640, + 100, + 655 + ], + "score": 1.0, + "content": "391", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 671, + 101, + 685 + ], + "spans": [ + { + "bbox": [ + 84, + 671, + 101, + 685 + ], + "score": 0.999, + "content": "393", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 702, + 100, + 714 + ], + "spans": [ + { + "bbox": [ + 85, + 702, + 100, + 714 + ], + "score": 1.0, + "content": "395", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 712, + 102, + 726 + ], + "spans": [ + { + "bbox": [ + 84, + 712, + 102, + 726 + ], + "score": 0.999, + "content": "396", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 91, + 38, + 508, + 732 + ], + "lines": [], + "index": 23, + "bbox_fs": [ + 87, + 72, + 508, + 724 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 507, + 153 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "score": 0.976, + "content": "[34] B. Yuan. Efcient hardware architecture of softmax layer in deep neural network. In 2016 29th", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 83, + 468, + 96 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 468, + 96 + ], + "score": 0.991, + "content": "IEEE International System-on-Chip Conference (SOCC), pages 323-326, Sep.2016.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 101, + 507, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 507, + 115 + ], + "score": 0.988, + "content": "[35] Ofir Zafrir, Guy Boudoukh,Peter Izsak,and Moshe Wasserblat. Q8bert: Quantized 8bit bert,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 111, + 154, + 124 + ], + "spans": [ + { + "bbox": [ + 127, + 111, + 154, + 124 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 129, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 506, + 142 + ], + "score": 0.98, + "content": "[36] Xingzhou Zhang, Yifan Wang, Sidi Lu,Liangkai Liu, Lanyu Xu,and Weisong Shi. Openei: An", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 141, + 406, + 153 + ], + "spans": [ + { + "bbox": [ + 127, + 141, + 406, + 153 + ], + "score": 0.987, + "content": "open framework for edge intelligence. CoRR,abs/1906.01864,2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 105, + 170, + 156, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 158, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 158, + 185 + ], + "score": 1.0, + "content": "Checklist", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 131, + 190, + 209, + 201 + ], + "lines": [ + { + "bbox": [ + 130, + 189, + 210, + 203 + ], + "spans": [ + { + "bbox": [ + 130, + 189, + 210, + 203 + ], + "score": 0.952, + "content": "1. For all authors..", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 146, + 205, + 507, + 285 + ], + "lines": [ + { + "bbox": [ + 146, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 146, + 204, + 506, + 217 + ], + "score": 0.988, + "content": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper's", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 162, + 215, + 508, + 228 + ], + "spans": [ + { + "bbox": [ + 162, + 215, + 508, + 228 + ], + "score": 0.986, + "content": "contributions and scope?[Yes] See also Section 3,where key contributions were listed.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 145, + 227, + 443, + 239 + ], + "spans": [ + { + "bbox": [ + 145, + 227, + 443, + 239 + ], + "score": 0.982, + "content": "(b) Did you describe the limitations of your work?[Yes] See Section 5.3.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 146, + 240, + 471, + 252 + ], + "spans": [ + { + "bbox": [ + 146, + 240, + 471, + 252 + ], + "score": 0.989, + "content": "(c) Did you discuss any potential negative societal impacts of your work? [N/A]", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 146, + 252, + 507, + 265 + ], + "spans": [ + { + "bbox": [ + 146, + 252, + 507, + 265 + ], + "score": 0.982, + "content": "(d) Have you read the ethics review guidelines and ensured that your paper conforms to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 161, + 262, + 507, + 276 + ], + "spans": [ + { + "bbox": [ + 161, + 262, + 507, + 276 + ], + "score": 0.99, + "content": " them? [Yes] We read the ethics review guidelines and confirm that content of our paper", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 161, + 274, + 508, + 286 + ], + "spans": [ + { + "bbox": [ + 161, + 274, + 508, + 286 + ], + "score": 0.984, + "content": " is not related to any ethics issue, since it is focused on the optimization of computations.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 132, + 288, + 302, + 299 + ], + "lines": [ + { + "bbox": [ + 129, + 287, + 304, + 300 + ], + "spans": [ + { + "bbox": [ + 129, + 287, + 304, + 300 + ], + "score": 0.988, + "content": "2. If you are including theoretical results...", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 145, + 302, + 452, + 326 + ], + "lines": [ + { + "bbox": [ + 145, + 302, + 453, + 315 + ], + "spans": [ + { + "bbox": [ + 145, + 302, + 453, + 315 + ], + "score": 0.994, + "content": "(a) Did you state the full set of assumptions of all theoretical results? [N/A]", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 145, + 314, + 425, + 327 + ], + "spans": [ + { + "bbox": [ + 145, + 314, + 425, + 327 + ], + "score": 0.99, + "content": "(b) Did you include complete proofs of all theoretical results? [N/A]", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 131, + 329, + 241, + 340 + ], + "lines": [ + { + "bbox": [ + 129, + 328, + 243, + 342 + ], + "spans": [ + { + "bbox": [ + 129, + 328, + 243, + 342 + ], + "score": 0.977, + "content": "3. If you ran experiments...", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 146, + 343, + 506, + 478 + ], + "lines": [ + { + "bbox": [ + 145, + 342, + 508, + 356 + ], + "spans": [ + { + "bbox": [ + 145, + 342, + 508, + 356 + ], + "score": 0.983, + "content": "(a) Did you include the code,data,and instructions needed to reproduce the main experi-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 161, + 353, + 507, + 366 + ], + "spans": [ + { + "bbox": [ + 161, + 353, + 507, + 366 + ], + "score": 0.982, + "content": "mental results (either in the supplemental material or as a URL)? [Yes] See supplemen-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 162, + 365, + 216, + 376 + ], + "spans": [ + { + "bbox": [ + 162, + 365, + 216, + 376 + ], + "score": 0.995, + "content": "tal materials.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 146, + 376, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 146, + 376, + 506, + 390 + ], + "score": 0.985, + "content": "(b) Did you specify all the training details (e.g., data splits,hyperparameters, how they", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 161, + 387, + 507, + 401 + ], + "spans": [ + { + "bbox": [ + 161, + 387, + 507, + 401 + ], + "score": 0.989, + "content": "were chosen)? [N/A] In our paper we do not consider any training, or fine-tuning. We", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 162, + 398, + 276, + 411 + ], + "spans": [ + { + "bbox": [ + 162, + 398, + 276, + 411 + ], + "score": 0.999, + "content": "focus on the inference only.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 147, + 411, + 507, + 424 + ], + "spans": [ + { + "bbox": [ + 147, + 411, + 507, + 424 + ], + "score": 0.981, + "content": "(c) Did you report error bars (e.g., with respect to the random seed after running experi-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 161, + 422, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 161, + 422, + 507, + 434 + ], + "score": 0.979, + "content": " ments multiple times)? [N/A] Since we did not do any training, we did not need to run", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 162, + 434, + 410, + 445 + ], + "spans": [ + { + "bbox": [ + 162, + 434, + 410, + 445 + ], + "score": 0.984, + "content": "experiment multiple times (inference output is deterministic).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 147, + 444, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 147, + 444, + 506, + 458 + ], + "score": 0.978, + "content": "(d) Did you include the total amount of compute and the type of resources used (e.g., type", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 162, + 455, + 507, + 469 + ], + "spans": [ + { + "bbox": [ + 162, + 455, + 507, + 469 + ], + "score": 0.99, + "content": "of GPUs, internal cluster, or cloud provider)? [N/A] Since we did not do any training,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 162, + 468, + 276, + 478 + ], + "spans": [ + { + "bbox": [ + 162, + 468, + 276, + 478 + ], + "score": 0.975, + "content": "it is not related to our work.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 131, + 481, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 127, + 479, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 127, + 479, + 506, + 495 + ], + "score": 0.98, + "content": " 4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets..", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 146, + 495, + 506, + 632 + ], + "lines": [ + { + "bbox": [ + 146, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 146, + 495, + 506, + 508 + ], + "score": 0.979, + "content": "(a) If your work uses existing assets, did you cite the creators?[Yes] Al used assets are", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 161, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 161, + 505, + 506, + 519 + ], + "score": 0.989, + "content": "cited either as a reference,or by direct URL link in the footnote,or in the body of the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 160, + 519, + 189, + 530 + ], + "spans": [ + { + "bbox": [ + 160, + 519, + 189, + 530 + ], + "score": 1.0, + "content": "paper.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 146, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 146, + 530, + 160, + 541 + ], + "score": 0.989, + "content": "(b)", + "type": "text" + }, + { + "bbox": [ + 161, + 529, + 506, + 542 + ], + "score": 0.994, + "content": "Did you mention the license of the assets? [Yes] The license of the used assets are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 162, + 541, + 446, + 552 + ], + "spans": [ + { + "bbox": [ + 162, + 541, + 446, + 552 + ], + "score": 0.988, + "content": "noticed either in the appropriate reference,or direct URL link of asset.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 146, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 146, + 552, + 506, + 565 + ], + "score": 0.981, + "content": "(c) Did you include any new assets either in the supplemental material or as a URL? [Yes]", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 162, + 564, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 162, + 564, + 506, + 576 + ], + "score": 0.985, + "content": " Some code and generated LUTs to reproduce our results are provided in supplemental", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 162, + 575, + 203, + 585 + ], + "spans": [ + { + "bbox": [ + 162, + 575, + 203, + 585 + ], + "score": 1.0, + "content": "materials.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 146, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 146, + 587, + 160, + 599 + ], + "score": 0.992, + "content": "(d)", + "type": "text" + }, + { + "bbox": [ + 161, + 586, + 506, + 599 + ], + "score": 0.99, + "content": "Did you discuss whether and how consent was obtained from people whose data you're", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 162, + 598, + 254, + 610 + ], + "spans": [ + { + "bbox": [ + 162, + 598, + 254, + 610 + ], + "score": 0.993, + "content": "using/curating? [N/A]", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 146, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 146, + 609, + 506, + 623 + ], + "score": 0.992, + "content": "(e) Did you discuss whether the data you are using/curating contains personally identifiable", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 162, + 620, + 326, + 633 + ], + "spans": [ + { + "bbox": [ + 162, + 620, + 326, + 633 + ], + "score": 0.997, + "content": "information or offensive content? [N/A]", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 131, + 635, + 432, + 646 + ], + "lines": [ + { + "bbox": [ + 128, + 633, + 434, + 649 + ], + "spans": [ + { + "bbox": [ + 128, + 633, + 434, + 649 + ], + "score": 0.994, + "content": " 5. If you used crowdsourcing or conducted research with human subjects...", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 146, + 649, + 506, + 718 + ], + "lines": [ + { + "bbox": [ + 145, + 648, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 145, + 648, + 507, + 662 + ], + "score": 0.984, + "content": "(a) Did you include the full text of instructions given to participants and screenshots, if", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 161, + 659, + 237, + 673 + ], + "spans": [ + { + "bbox": [ + 161, + 659, + 237, + 673 + ], + "score": 0.978, + "content": "applicable? [N/A]", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 146, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 146, + 672, + 506, + 685 + ], + "score": 0.984, + "content": "(b) Did you describe any potential participant risks,with links to Institutional Review", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 162, + 683, + 343, + 696 + ], + "spans": [ + { + "bbox": [ + 162, + 683, + 343, + 696 + ], + "score": 0.985, + "content": "Board (IRB) approvals,if applicable? [N/A]", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 147, + 695, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 147, + 695, + 506, + 708 + ], + "score": 0.989, + "content": "(c) Did you include the estimated hourly wage paid to participants and the total amount", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 162, + 707, + 334, + 719 + ], + "spans": [ + { + "bbox": [ + 162, + 707, + 334, + 719 + ], + "score": 0.993, + "content": " spent on participant compensation? [N/A]", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 743, + 311, + 752 + ], + "lines": [ + { + "bbox": [ + 299, + 741, + 313, + 756 + ], + "spans": [ + { + "bbox": [ + 299, + 741, + 313, + 756 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 85, + 73, + 102, + 725 + ], + "lines": [ + { + "bbox": [ + 86, + 74, + 99, + 85 + ], + "spans": [ + { + "bbox": [ + 86, + 74, + 99, + 85 + ], + "score": 1.0, + "content": "397", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 86, + 101, + 96 + ], + "spans": [ + { + "bbox": [ + 84, + 86, + 101, + 96 + ], + "score": 1.0, + "content": "398", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 102, + 100, + 114 + ], + "spans": [ + { + "bbox": [ + 84, + 102, + 100, + 114 + ], + "score": 1.0, + "content": "399", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 114, + 101, + 127 + ], + "spans": [ + { + "bbox": [ + 85, + 114, + 101, + 127 + ], + "score": 0.937, + "content": "400", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 131, + 100, + 142 + ], + "spans": [ + { + "bbox": [ + 85, + 131, + 100, + 142 + ], + "score": 1.0, + "content": "401", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 142, + 101, + 153 + ], + "spans": [ + { + "bbox": [ + 85, + 142, + 101, + 153 + ], + "score": 1.0, + "content": "402", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 173, + 100, + 185 + ], + "spans": [ + { + "bbox": [ + 85, + 173, + 100, + 185 + ], + "score": 1.0, + "content": "403", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 191, + 102, + 204 + ], + "spans": [ + { + "bbox": [ + 83, + 191, + 102, + 204 + ], + "score": 1.0, + "content": "404", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 206, + 101, + 217 + ], + "spans": [ + { + "bbox": [ + 84, + 206, + 101, + 217 + ], + "score": 1.0, + "content": "405", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 217, + 101, + 228 + ], + "spans": [ + { + "bbox": [ + 84, + 217, + 101, + 228 + ], + "score": 1.0, + "content": "406", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 229, + 100, + 241 + ], + "spans": [ + { + "bbox": [ + 85, + 229, + 100, + 241 + ], + "score": 1.0, + "content": "407", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 242, + 101, + 253 + ], + "spans": [ + { + "bbox": [ + 85, + 242, + 101, + 253 + ], + "score": 1.0, + "content": "408", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 254, + 101, + 264 + ], + "spans": [ + { + "bbox": [ + 84, + 254, + 101, + 264 + ], + "score": 0.999, + "content": "409", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 265, + 101, + 276 + ], + "spans": [ + { + "bbox": [ + 84, + 265, + 101, + 276 + ], + "score": 1.0, + "content": "410", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 276, + 100, + 288 + ], + "spans": [ + { + "bbox": [ + 85, + 276, + 100, + 288 + ], + "score": 1.0, + "content": "411", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 290, + 101, + 301 + ], + "spans": [ + { + "bbox": [ + 85, + 290, + 101, + 301 + ], + "score": 1.0, + "content": "412", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 304, + 101, + 315 + ], + "spans": [ + { + "bbox": [ + 84, + 304, + 101, + 315 + ], + "score": 1.0, + "content": "413", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 317, + 101, + 328 + ], + "spans": [ + { + "bbox": [ + 84, + 317, + 101, + 328 + ], + "score": 1.0, + "content": "414", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 331, + 101, + 342 + ], + "spans": [ + { + "bbox": [ + 84, + 331, + 101, + 342 + ], + "score": 1.0, + "content": "415", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 345, + 101, + 356 + ], + "spans": [ + { + "bbox": [ + 84, + 345, + 101, + 356 + ], + "score": 1.0, + "content": "416", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 356, + 101, + 367 + ], + "spans": [ + { + "bbox": [ + 84, + 356, + 101, + 367 + ], + "score": 1.0, + "content": "417", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 367, + 101, + 378 + ], + "spans": [ + { + "bbox": [ + 84, + 367, + 101, + 378 + ], + "score": 1.0, + "content": "418", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 379, + 101, + 390 + ], + "spans": [ + { + "bbox": [ + 84, + 379, + 101, + 390 + ], + "score": 1.0, + "content": "419", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 390, + 101, + 401 + ], + "spans": [ + { + "bbox": [ + 84, + 390, + 101, + 401 + ], + "score": 1.0, + "content": "420", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 401, + 100, + 412 + ], + "spans": [ + { + "bbox": [ + 85, + 401, + 100, + 412 + ], + "score": 1.0, + "content": "421", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 413, + 101, + 424 + ], + "spans": [ + { + "bbox": [ + 84, + 413, + 101, + 424 + ], + "score": 0.999, + "content": "422", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 424, + 100, + 435 + ], + "spans": [ + { + "bbox": [ + 84, + 424, + 100, + 435 + ], + "score": 1.0, + "content": "423", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 434, + 101, + 447 + ], + "spans": [ + { + "bbox": [ + 85, + 434, + 101, + 447 + ], + "score": 1.0, + "content": "424", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 447, + 101, + 458 + ], + "spans": [ + { + "bbox": [ + 85, + 447, + 101, + 458 + ], + "score": 1.0, + "content": "425", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 458, + 100, + 469 + ], + "spans": [ + { + "bbox": [ + 85, + 458, + 100, + 469 + ], + "score": 1.0, + "content": "426", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 469, + 100, + 480 + ], + "spans": [ + { + "bbox": [ + 85, + 469, + 100, + 480 + ], + "score": 0.999, + "content": "427", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 483, + 100, + 495 + ], + "spans": [ + { + "bbox": [ + 84, + 483, + 100, + 495 + ], + "score": 1.0, + "content": "428", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 497, + 100, + 509 + ], + "spans": [ + { + "bbox": [ + 85, + 497, + 100, + 509 + ], + "score": 1.0, + "content": "429", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 508, + 100, + 519 + ], + "spans": [ + { + "bbox": [ + 84, + 508, + 100, + 519 + ], + "score": 1.0, + "content": "430", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 519, + 100, + 531 + ], + "spans": [ + { + "bbox": [ + 84, + 519, + 100, + 531 + ], + "score": 1.0, + "content": "431", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 530, + 102, + 543 + ], + "spans": [ + { + "bbox": [ + 83, + 530, + 102, + 543 + ], + "score": 1.0, + "content": "432", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 542, + 100, + 554 + ], + "spans": [ + { + "bbox": [ + 84, + 542, + 100, + 554 + ], + "score": 1.0, + "content": "433", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 554, + 100, + 565 + ], + "spans": [ + { + "bbox": [ + 85, + 554, + 100, + 565 + ], + "score": 1.0, + "content": "434", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 565, + 100, + 577 + ], + "spans": [ + { + "bbox": [ + 85, + 565, + 100, + 577 + ], + "score": 1.0, + "content": "435", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 576, + 100, + 588 + ], + "spans": [ + { + "bbox": [ + 84, + 576, + 100, + 588 + ], + "score": 1.0, + "content": "436", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 588, + 100, + 599 + ], + "spans": [ + { + "bbox": [ + 85, + 588, + 100, + 599 + ], + "score": 1.0, + "content": "437", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 599, + 102, + 612 + ], + "spans": [ + { + "bbox": [ + 83, + 599, + 102, + 612 + ], + "score": 1.0, + "content": "438", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 611, + 101, + 622 + ], + "spans": [ + { + "bbox": [ + 85, + 611, + 101, + 622 + ], + "score": 1.0, + "content": "439", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 622, + 101, + 634 + ], + "spans": [ + { + "bbox": [ + 84, + 622, + 101, + 634 + ], + "score": 0.99, + "content": "440", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 637, + 100, + 648 + ], + "spans": [ + { + "bbox": [ + 85, + 637, + 100, + 648 + ], + "score": 1.0, + "content": "441", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 651, + 101, + 661 + ], + "spans": [ + { + "bbox": [ + 84, + 651, + 101, + 661 + ], + "score": 0.977, + "content": "442", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 662, + 101, + 673 + ], + "spans": [ + { + "bbox": [ + 84, + 662, + 101, + 673 + ], + "score": 1.0, + "content": "443", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 674, + 101, + 685 + ], + "spans": [ + { + "bbox": [ + 84, + 674, + 101, + 685 + ], + "score": 1.0, + "content": "444", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 685, + 101, + 696 + ], + "spans": [ + { + "bbox": [ + 84, + 685, + 101, + 696 + ], + "score": 1.0, + "content": "445", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 696, + 101, + 708 + ], + "spans": [ + { + "bbox": [ + 84, + 696, + 101, + 708 + ], + "score": 1.0, + "content": "446", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 708, + 100, + 719 + ], + "spans": [ + { + "bbox": [ + 84, + 708, + 100, + 719 + ], + "score": 1.0, + "content": "447", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 107, + 72, + 507, + 153 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 72, + 507, + 153 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 105, + 170, + 156, + 183 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 158, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 158, + 185 + ], + "score": 1.0, + "content": "Checklist", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 131, + 190, + 209, + 201 + ], + "lines": [ + { + "bbox": [ + 130, + 189, + 210, + 203 + ], + "spans": [ + { + "bbox": [ + 130, + 189, + 210, + 203 + ], + "score": 0.952, + "content": "1. For all authors..", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 130, + 189, + 210, + 203 + ] + }, + { + "type": "list", + "bbox": [ + 146, + 205, + 507, + 285 + ], + "lines": [ + { + "bbox": [ + 146, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 146, + 204, + 506, + 217 + ], + "score": 0.988, + "content": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper's", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 215, + 508, + 228 + ], + "spans": [ + { + "bbox": [ + 162, + 215, + 508, + 228 + ], + "score": 0.986, + "content": "contributions and scope?[Yes] See also Section 3,where key contributions were listed.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 145, + 227, + 443, + 239 + ], + "spans": [ + { + "bbox": [ + 145, + 227, + 443, + 239 + ], + "score": 0.982, + "content": "(b) Did you describe the limitations of your work?[Yes] See Section 5.3.", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 240, + 471, + 252 + ], + "spans": [ + { + "bbox": [ + 146, + 240, + 471, + 252 + ], + "score": 0.989, + "content": "(c) Did you discuss any potential negative societal impacts of your work? [N/A]", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 252, + 507, + 265 + ], + "spans": [ + { + "bbox": [ + 146, + 252, + 507, + 265 + ], + "score": 0.982, + "content": "(d) Have you read the ethics review guidelines and ensured that your paper conforms to", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 262, + 507, + 276 + ], + "spans": [ + { + "bbox": [ + 161, + 262, + 507, + 276 + ], + "score": 0.99, + "content": " them? [Yes] We read the ethics review guidelines and confirm that content of our paper", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 161, + 274, + 508, + 286 + ], + "spans": [ + { + "bbox": [ + 161, + 274, + 508, + 286 + ], + "score": 0.984, + "content": " is not related to any ethics issue, since it is focused on the optimization of computations.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 145, + 204, + 508, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 288, + 302, + 299 + ], + "lines": [ + { + "bbox": [ + 129, + 287, + 304, + 300 + ], + "spans": [ + { + "bbox": [ + 129, + 287, + 304, + 300 + ], + "score": 0.988, + "content": "2. If you are including theoretical results...", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 129, + 287, + 304, + 300 + ] + }, + { + "type": "text", + "bbox": [ + 145, + 302, + 452, + 326 + ], + "lines": [ + { + "bbox": [ + 145, + 302, + 453, + 315 + ], + "spans": [ + { + "bbox": [ + 145, + 302, + 453, + 315 + ], + "score": 0.994, + "content": "(a) Did you state the full set of assumptions of all theoretical results? [N/A]", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 145, + 314, + 425, + 327 + ], + "spans": [ + { + "bbox": [ + 145, + 314, + 425, + 327 + ], + "score": 0.99, + "content": "(b) Did you include complete proofs of all theoretical results? [N/A]", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 145, + 302, + 453, + 327 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 329, + 241, + 340 + ], + "lines": [ + { + "bbox": [ + 129, + 328, + 243, + 342 + ], + "spans": [ + { + "bbox": [ + 129, + 328, + 243, + 342 + ], + "score": 0.977, + "content": "3. If you ran experiments...", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 129, + 328, + 243, + 342 + ] + }, + { + "type": "list", + "bbox": [ + 146, + 343, + 506, + 478 + ], + "lines": [ + { + "bbox": [ + 145, + 342, + 508, + 356 + ], + "spans": [ + { + "bbox": [ + 145, + 342, + 508, + 356 + ], + "score": 0.983, + "content": "(a) Did you include the code,data,and instructions needed to reproduce the main experi-", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 353, + 507, + 366 + ], + "spans": [ + { + "bbox": [ + 161, + 353, + 507, + 366 + ], + "score": 0.982, + "content": "mental results (either in the supplemental material or as a URL)? [Yes] See supplemen-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 162, + 365, + 216, + 376 + ], + "spans": [ + { + "bbox": [ + 162, + 365, + 216, + 376 + ], + "score": 0.995, + "content": "tal materials.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 376, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 146, + 376, + 506, + 390 + ], + "score": 0.985, + "content": "(b) Did you specify all the training details (e.g., data splits,hyperparameters, how they", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 387, + 507, + 401 + ], + "spans": [ + { + "bbox": [ + 161, + 387, + 507, + 401 + ], + "score": 0.989, + "content": "were chosen)? [N/A] In our paper we do not consider any training, or fine-tuning. We", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 162, + 398, + 276, + 411 + ], + "spans": [ + { + "bbox": [ + 162, + 398, + 276, + 411 + ], + "score": 0.999, + "content": "focus on the inference only.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 411, + 507, + 424 + ], + "spans": [ + { + "bbox": [ + 147, + 411, + 507, + 424 + ], + "score": 0.981, + "content": "(c) Did you report error bars (e.g., with respect to the random seed after running experi-", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 422, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 161, + 422, + 507, + 434 + ], + "score": 0.979, + "content": " ments multiple times)? [N/A] Since we did not do any training, we did not need to run", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 162, + 434, + 410, + 445 + ], + "spans": [ + { + "bbox": [ + 162, + 434, + 410, + 445 + ], + "score": 0.984, + "content": "experiment multiple times (inference output is deterministic).", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 444, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 147, + 444, + 506, + 458 + ], + "score": 0.978, + "content": "(d) Did you include the total amount of compute and the type of resources used (e.g., type", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 455, + 507, + 469 + ], + "spans": [ + { + "bbox": [ + 162, + 455, + 507, + 469 + ], + "score": 0.99, + "content": "of GPUs, internal cluster, or cloud provider)? [N/A] Since we did not do any training,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 162, + 468, + 276, + 478 + ], + "spans": [ + { + "bbox": [ + 162, + 468, + 276, + 478 + ], + "score": 0.975, + "content": "it is not related to our work.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + } + ], + "index": 24.5, + "bbox_fs": [ + 145, + 342, + 508, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 481, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 127, + 479, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 127, + 479, + 506, + 495 + ], + "score": 0.98, + "content": " 4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets..", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 127, + 479, + 506, + 495 + ] + }, + { + "type": "list", + "bbox": [ + 146, + 495, + 506, + 632 + ], + "lines": [ + { + "bbox": [ + 146, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 146, + 495, + 506, + 508 + ], + "score": 0.979, + "content": "(a) If your work uses existing assets, did you cite the creators?[Yes] Al used assets are", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 161, + 505, + 506, + 519 + ], + "score": 0.989, + "content": "cited either as a reference,or by direct URL link in the footnote,or in the body of the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 160, + 519, + 189, + 530 + ], + "spans": [ + { + "bbox": [ + 160, + 519, + 189, + 530 + ], + "score": 1.0, + "content": "paper.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 146, + 530, + 160, + 541 + ], + "score": 0.989, + "content": "(b)", + "type": "text" + }, + { + "bbox": [ + 161, + 529, + 506, + 542 + ], + "score": 0.994, + "content": "Did you mention the license of the assets? [Yes] The license of the used assets are", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 541, + 446, + 552 + ], + "spans": [ + { + "bbox": [ + 162, + 541, + 446, + 552 + ], + "score": 0.988, + "content": "noticed either in the appropriate reference,or direct URL link of asset.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 146, + 552, + 506, + 565 + ], + "score": 0.981, + "content": "(c) Did you include any new assets either in the supplemental material or as a URL? [Yes]", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 564, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 162, + 564, + 506, + 576 + ], + "score": 0.985, + "content": " Some code and generated LUTs to reproduce our results are provided in supplemental", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 162, + 575, + 203, + 585 + ], + "spans": [ + { + "bbox": [ + 162, + 575, + 203, + 585 + ], + "score": 1.0, + "content": "materials.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 146, + 587, + 160, + 599 + ], + "score": 0.992, + "content": "(d)", + "type": "text" + }, + { + "bbox": [ + 161, + 586, + 506, + 599 + ], + "score": 0.99, + "content": "Did you discuss whether and how consent was obtained from people whose data you're", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 598, + 254, + 610 + ], + "spans": [ + { + "bbox": [ + 162, + 598, + 254, + 610 + ], + "score": 0.993, + "content": "using/curating? [N/A]", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 146, + 609, + 506, + 623 + ], + "score": 0.992, + "content": "(e) Did you discuss whether the data you are using/curating contains personally identifiable", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 620, + 326, + 633 + ], + "spans": [ + { + "bbox": [ + 162, + 620, + 326, + 633 + ], + "score": 0.997, + "content": "information or offensive content? [N/A]", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + } + ], + "index": 37.5, + "bbox_fs": [ + 146, + 495, + 506, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 635, + 432, + 646 + ], + "lines": [ + { + "bbox": [ + 128, + 633, + 434, + 649 + ], + "spans": [ + { + "bbox": [ + 128, + 633, + 434, + 649 + ], + "score": 0.994, + "content": " 5. If you used crowdsourcing or conducted research with human subjects...", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 128, + 633, + 434, + 649 + ] + }, + { + "type": "list", + "bbox": [ + 146, + 649, + 506, + 718 + ], + "lines": [ + { + "bbox": [ + 145, + 648, + 507, + 662 + ], + "spans": [ + { + "bbox": [ + 145, + 648, + 507, + 662 + ], + "score": 0.984, + "content": "(a) Did you include the full text of instructions given to participants and screenshots, if", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 659, + 237, + 673 + ], + "spans": [ + { + "bbox": [ + 161, + 659, + 237, + 673 + ], + "score": 0.978, + "content": "applicable? [N/A]", + "type": "text" + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 146, + 672, + 506, + 685 + ], + "score": 0.984, + "content": "(b) Did you describe any potential participant risks,with links to Institutional Review", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 683, + 343, + 696 + ], + "spans": [ + { + "bbox": [ + 162, + 683, + 343, + 696 + ], + "score": 0.985, + "content": "Board (IRB) approvals,if applicable? [N/A]", + "type": "text" + } + ], + "index": 48, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 695, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 147, + 695, + 506, + 708 + ], + "score": 0.989, + "content": "(c) Did you include the estimated hourly wage paid to participants and the total amount", + "type": "text" + } + ], + "index": 49, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 707, + 334, + 719 + ], + "spans": [ + { + "bbox": [ + 162, + 707, + 334, + 719 + ], + "score": 0.993, + "content": " spent on participant compensation? [N/A]", + "type": "text" + } + ], + "index": 50, + "is_list_end_line": true + } + ], + "index": 47.5, + "bbox_fs": [ + 145, + 648, + 507, + 719 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/TScOKQW67Mj/TScOKQW67Mj_model.json b/parse/train/TScOKQW67Mj/TScOKQW67Mj_model.json new file mode 100644 index 0000000000000000000000000000000000000000..75dacfb7e06402c7a4c2da31933e1eeb2c9aac25 --- /dev/null +++ b/parse/train/TScOKQW67Mj/TScOKQW67Mj_model.json @@ -0,0 +1,21132 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 255, + 761, + 1306, + 761, + 1306, + 1189, + 255, + 1189 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 251, + 1314, + 1408, + 1314, + 1408, + 1590, + 251, + 1590 + ], + "score": 0.965 + }, + { + "category_id": 0, + "poly": [ + 336, + 271, + 1370, + 271, + 1370, + 380, + 336, + 380 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 292, + 1603, + 1406, + 1603, + 1406, + 1848, + 292, + 1848 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 298, + 1871, + 1406, + 1871, + 1406, + 1985, + 298, + 1985 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 254, + 1245, + 532, + 1245, + 532, + 1283, + 254, + 1283 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 790, + 692, + 914, + 692, + 914, + 728, + 790, + 728 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 294, + 2035, + 1390, + 2035, + 1390, + 2065, + 294, + 2065 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 721, + 490, + 988, + 490, + 988, + 611, + 721, + 611 + ], + "score": 0.828 + }, + { + "category_id": 13, + "poly": [ + 872, + 1695, + 926, + 1695, + 926, + 1725, + 872, + 1725 + ], + "score": 0.9, + "latex": "1 3 \\times" + }, + { + "category_id": 13, + "poly": [ + 488, + 1787, + 529, + 1787, + 529, + 1816, + 488, + 1816 + ], + "score": 0.86, + "latex": "4 \\times" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1156, + 1272, + 1156, + 1272, + 1187, + 1211, + 1187 + ], + "score": 0.86, + "latex": "1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1309, + 1695, + 1373, + 1695, + 1373, + 1724, + 1309, + 1724 + ], + "score": 0.86, + "latex": "2 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1284, + 1817, + 1346, + 1817, + 1346, + 1845, + 1284, + 1845 + ], + "score": 0.85, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1787, + 1288, + 1787, + 1288, + 1815, + 1247, + 1815 + ], + "score": 0.83, + "latex": "1 \\%" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 269.0, + 1369.0, + 269.0, + 1369.0, + 333.0, + 331.0, + 333.0 + ], + "score": 0.994, + "text": "Efficient Softmax Approximation for Deep Neural" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 327.0, + 1233.0, + 327.0, + 1233.0, + 381.0, + 468.0, + 381.0 + ], + "score": 0.999, + "text": "Networks with Attention Mechanism" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1866.0, + 1408.0, + 1866.0, + 1408.0, + 1908.0, + 334.0, + 1908.0 + ], + "score": 0.963, + "text": "1Recently, interest to the computations performed close to the data sources is growing up aiming to soften the" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1899.0, + 1407.0, + 1899.0, + 1407.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 0.988, + "text": "requirements of continuous access to high-speed and high-bandwidth connections.Moreover,often customers" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1927.0, + 1409.0, + 1927.0, + 1409.0, + 1960.0, + 293.0, + 1960.0 + ], + "score": 0.979, + "text": "wanted to keep their security and privacy,and thus do not want to expose their data to the external clouds [32]," + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1953.0, + 461.0, + 1953.0, + 461.0, + 1988.0, + 295.0, + 1988.0 + ], + "score": 0.966, + "text": "[19], [36], [11]." + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1243.0, + 536.0, + 1243.0, + 536.0, + 1289.0, + 243.0, + 1289.0 + ], + "score": 1.0, + "text": "151Introduction" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 690.0, + 920.0, + 690.0, + 920.0, + 731.0, + 785.0, + 731.0 + ], + "score": 1.0, + "text": "Abstract" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2031.0, + 1391.0, + 2031.0, + 1391.0, + 2068.0, + 295.0, + 2068.0 + ], + "score": 0.98, + "text": "Submitted to 35th Conference on Neural Information Processing Systems (NeurIPS 2O21).Do not distribute." + }, + { + "category_id": 15, + "poly": [ + 260.0, + 771.0, + 275.0, + 771.0, + 275.0, + 791.0, + 260.0, + 791.0 + ], + "score": 0.999, + "text": "1" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 762.0, + 1308.0, + 762.0, + 1308.0, + 798.0, + 396.0, + 798.0 + ], + "score": 0.995, + "text": "There has been a rapid advance of custom hardware (HW) for accelerating the" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 801.0, + 277.0, + 801.0, + 277.0, + 824.0, + 259.0, + 824.0 + ], + "score": 1.0, + "text": "2" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 792.0, + 1308.0, + 792.0, + 1308.0, + 828.0, + 394.0, + 828.0 + ], + "score": 0.986, + "text": " inference speed of deep neural networks (DNNs). Previously, the softmax layer" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 831.0, + 277.0, + 831.0, + 277.0, + 855.0, + 259.0, + 855.0 + ], + "score": 0.999, + "text": "3" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 825.0, + 1307.0, + 825.0, + 1307.0, + 858.0, + 394.0, + 858.0 + ], + "score": 0.98, + "text": "was not a main concern of DNN accelerating HW, because its portion is relatively" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 862.0, + 278.0, + 862.0, + 278.0, + 885.0, + 259.0, + 885.0 + ], + "score": 1.0, + "text": "4" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 855.0, + 1307.0, + 855.0, + 1307.0, + 888.0, + 396.0, + 888.0 + ], + "score": 0.99, + "text": "small in multi-layer perceptron or convolutional neural networks. However,as the" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 891.0, + 277.0, + 891.0, + 277.0, + 915.0, + 259.0, + 915.0 + ], + "score": 1.0, + "text": "5" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 885.0, + 1308.0, + 885.0, + 1308.0, + 918.0, + 394.0, + 918.0 + ], + "score": 0.982, + "text": " attention mechanisms are widely used in various modern DNNs,a cost-efficient" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 922.0, + 277.0, + 922.0, + 277.0, + 946.0, + 259.0, + 946.0 + ], + "score": 1.0, + "text": "6" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 913.0, + 1309.0, + 913.0, + 1309.0, + 950.0, + 393.0, + 950.0 + ], + "score": 0.992, + "text": " implementation of softmax layer is becoming very important. In this paper, we" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 951.0, + 278.0, + 951.0, + 278.0, + 976.0, + 259.0, + 976.0 + ], + "score": 1.0, + "text": "7" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 947.0, + 1307.0, + 947.0, + 1307.0, + 977.0, + 393.0, + 977.0 + ], + "score": 0.986, + "text": " propose two methods to approximate softmax computation,which are based on" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 983.0, + 277.0, + 983.0, + 277.0, + 1007.0, + 259.0, + 1007.0 + ], + "score": 1.0, + "text": "8" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 976.0, + 1306.0, + 976.0, + 1306.0, + 1009.0, + 396.0, + 1009.0 + ], + "score": 0.99, + "text": "the usage of LookUp Tables (LUTs). The required size of LUT is quite small" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1012.0, + 279.0, + 1012.0, + 279.0, + 1037.0, + 257.0, + 1037.0 + ], + "score": 1.0, + "text": "9" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1004.0, + 1309.0, + 1004.0, + 1309.0, + 1041.0, + 394.0, + 1041.0 + ], + "score": 0.979, + "text": "(about 7Oo Bytes) because ranges of numerators and denominators of softmax are" + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1043.0, + 278.0, + 1043.0, + 278.0, + 1068.0, + 252.0, + 1068.0 + ], + "score": 0.971, + "text": "10" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1035.0, + 1308.0, + 1035.0, + 1308.0, + 1072.0, + 393.0, + 1072.0 + ], + "score": 0.985, + "text": " stable if normalization is applied to the input. We have validated the proposed" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1073.0, + 277.0, + 1073.0, + 277.0, + 1099.0, + 251.0, + 1099.0 + ], + "score": 1.0, + "text": "11" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1067.0, + 1308.0, + 1067.0, + 1308.0, + 1100.0, + 396.0, + 1100.0 + ], + "score": 0.982, + "text": "technique over different AI tasks (object detection,machine translation, speech" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1102.0, + 279.0, + 1102.0, + 279.0, + 1131.0, + 249.0, + 1131.0 + ], + "score": 1.0, + "text": "12" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1098.0, + 1308.0, + 1098.0, + 1308.0, + 1128.0, + 393.0, + 1128.0 + ], + "score": 0.984, + "text": "recognition, semantic equivalence) and DNN models (DETR,Transformer, BERT)" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1134.0, + 277.0, + 1134.0, + 277.0, + 1159.0, + 249.0, + 1159.0 + ], + "score": 1.0, + "text": "13" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1127.0, + 1308.0, + 1127.0, + 1308.0, + 1164.0, + 394.0, + 1164.0 + ], + "score": 0.971, + "text": "by a variety of benchmarks (COCO17, WMT14, WMT17, GLUE). We showed" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1165.0, + 278.0, + 1165.0, + 278.0, + 1188.0, + 249.0, + 1188.0 + ], + "score": 1.0, + "text": "14" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1157.0, + 1210.0, + 1157.0, + 1210.0, + 1193.0, + 394.0, + 1193.0 + ], + "score": 0.984, + "text": " that 8-bit approximation allows to obtain acceptable accuracy loss below" + }, + { + "category_id": 16, + "poly": [ + 1273.0, + 1157.0, + 1284.0, + 1157.0, + 1284.0, + 1193.0, + 1273.0, + 1193.0 + ], + "score": 0.36, + "text": "," + }, + { + "category_id": 15, + "poly": [ + 252.0, + 1321.0, + 277.0, + 1321.0, + 277.0, + 1344.0, + 252.0, + 1344.0 + ], + "score": 1.0, + "text": "16" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1315.0, + 1407.0, + 1315.0, + 1407.0, + 1348.0, + 293.0, + 1348.0 + ], + "score": 0.981, + "text": "After Vaswani et al. had introduced Transformer model in [27] for machine translation task, the" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1351.0, + 278.0, + 1351.0, + 278.0, + 1378.0, + 249.0, + 1378.0 + ], + "score": 1.0, + "text": "17" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1410.0, + 1345.0, + 1410.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 0.991, + "text": " attention based architecture became popular firstly in Natural Language Processng (NLP) appli-" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1383.0, + 278.0, + 1383.0, + 278.0, + 1408.0, + 249.0, + 1408.0 + ], + "score": 1.0, + "text": "18" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1374.0, + 1411.0, + 1374.0, + 1411.0, + 1413.0, + 290.0, + 1413.0 + ], + "score": 0.97, + "text": "cations, e.g.: speech recognition [16], [21], [9]; summarization [7]; language understanding [5]," + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1412.0, + 278.0, + 1412.0, + 278.0, + 1439.0, + 249.0, + 1439.0 + ], + "score": 1.0, + "text": "19" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1405.0, + 1410.0, + 1405.0, + 1410.0, + 1442.0, + 295.0, + 1442.0 + ], + "score": 0.989, + "text": "[33],[15],[18]; and video captioning [3]. Recently attention-based models are used in even wider" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1443.0, + 278.0, + 1443.0, + 278.0, + 1469.0, + 248.0, + 1469.0 + ], + "score": 1.0, + "text": "20" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1436.0, + 1410.0, + 1436.0, + 1410.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 0.987, + "text": " practical areas including Computer Vision (CV) tasks for object detection [2]; image transformation" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1470.0, + 280.0, + 1470.0, + 280.0, + 1502.0, + 247.0, + 1502.0 + ], + "score": 1.0, + "text": "21" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1466.0, + 1410.0, + 1466.0, + 1410.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 0.985, + "text": "[26]; image classification [6]; and even symbolic integration and solving diferential equations [14]." + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1503.0, + 278.0, + 1503.0, + 278.0, + 1530.0, + 248.0, + 1530.0 + ], + "score": 1.0, + "text": "22" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1495.0, + 1408.0, + 1495.0, + 1408.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 0.992, + "text": "Despite the attractiveness of transformer-based models, its direct implementation into the platform" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1533.0, + 278.0, + 1533.0, + 278.0, + 1560.0, + 248.0, + 1560.0 + ], + "score": 1.0, + "text": "23" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1525.0, + 1408.0, + 1525.0, + 1408.0, + 1563.0, + 293.0, + 1563.0 + ], + "score": 0.974, + "text": "with constrained computational power (e.g., mobile SoC,edge devices)1 is very challnging due to" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1564.0, + 278.0, + 1564.0, + 278.0, + 1590.0, + 249.0, + 1590.0 + ], + "score": 1.0, + "text": "24" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1556.0, + 682.0, + 1556.0, + 682.0, + 1596.0, + 291.0, + 1596.0 + ], + "score": 0.986, + "text": "big memory footprint and latency." + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1604.0, + 1408.0, + 1604.0, + 1408.0, + 1638.0, + 296.0, + 1638.0 + ], + "score": 0.987, + "text": "Therefore, model compresson techniques such as quantization,and distillation are needed for those" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1631.0, + 1409.0, + 1631.0, + 1409.0, + 1670.0, + 293.0, + 1670.0 + ], + "score": 0.989, + "text": " models. Many approaches have been introduced on quantizing matrix multiplication of transformer" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1665.0, + 1409.0, + 1665.0, + 1409.0, + 1699.0, + 295.0, + 1699.0 + ], + "score": 0.985, + "text": "architecture.For example,in [22] it was used second order Hessian information, what allows to" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1693.0, + 871.0, + 1693.0, + 871.0, + 1730.0, + 291.0, + 1730.0 + ], + "score": 0.989, + "text": " significantly compress the size of the model up to" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1693.0, + 1308.0, + 1693.0, + 1308.0, + 1730.0, + 927.0, + 1730.0 + ], + "score": 0.983, + "text": "times,while maintaining at most" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1693.0, + 1409.0, + 1693.0, + 1409.0, + 1730.0, + 1374.0, + 1730.0 + ], + "score": 1.0, + "text": "of" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1724.0, + 1409.0, + 1724.0, + 1409.0, + 1762.0, + 294.0, + 1762.0 + ], + "score": 0.983, + "text": " performance degradation (for the case of ultra-low precision 2-bits quantization). In [35] it was" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1756.0, + 1408.0, + 1756.0, + 1408.0, + 1790.0, + 295.0, + 1790.0 + ], + "score": 0.992, + "text": "used a quantization-aware training during the fine-tuning phase of BERT, what allows to compress" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1782.0, + 487.0, + 1782.0, + 487.0, + 1823.0, + 293.0, + 1823.0 + ], + "score": 0.996, + "text": "BERT model by" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1782.0, + 1246.0, + 1782.0, + 1246.0, + 1823.0, + 530.0, + 1823.0 + ], + "score": 0.988, + "text": "(with 8-bit quantization) with minimal accuracy loss (less than" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1782.0, + 1411.0, + 1782.0, + 1411.0, + 1823.0, + 1289.0, + 1823.0 + ], + "score": 0.917, + "text": "). In[1], a" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1814.0, + 1283.0, + 1814.0, + 1283.0, + 1854.0, + 293.0, + 1854.0 + ], + "score": 0.992, + "text": " machine language translation model was quantized by 8-bit, while maintaining less than" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1814.0, + 1408.0, + 1814.0, + 1408.0, + 1854.0, + 1347.0, + 1854.0 + ], + "score": 1.0, + "text": "drop" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 491.0, + 990.0, + 491.0, + 990.0, + 523.0, + 721.0, + 523.0 + ], + "score": 0.977, + "text": "Anonymous Author(s)" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 518.0, + 915.0, + 518.0, + 915.0, + 554.0, + 788.0, + 554.0 + ], + "score": 0.981, + "text": "Affiliation" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 547.0, + 904.0, + 547.0, + 904.0, + 584.0, + 799.0, + 584.0 + ], + "score": 1.0, + "text": "Address" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 582.0, + 893.0, + 582.0, + 893.0, + 612.0, + 807.0, + 612.0 + ], + "score": 0.999, + "text": "email" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 248, + 724, + 1407, + 724, + 1407, + 1180, + 248, + 1180 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 248, + 1193, + 1407, + 1193, + 1407, + 1473, + 248, + 1473 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 250, + 370, + 1407, + 370, + 1407, + 614, + 250, + 614 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 251, + 1602, + 1407, + 1602, + 1407, + 1819, + 251, + 1819 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 251, + 202, + 1407, + 202, + 1407, + 356, + 251, + 356 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 585, + 1509, + 1118, + 1509, + 1118, + 1586, + 585, + 1586 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 252, + 1859, + 862, + 1859, + 862, + 1897, + 252, + 1897 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 260, + 655, + 751, + 655, + 751, + 693, + 260, + 693 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 261, + 1926, + 1388, + 1926, + 1388, + 1960, + 261, + 1960 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1533, + 1402, + 1533, + 1402, + 1562, + 1369, + 1562 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 326, + 1980, + 1096, + 1980, + 1096, + 2010, + 326, + 2010 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 842, + 2064, + 860, + 2064, + 860, + 2088, + 842, + 2088 + ], + "score": 0.804 + }, + { + "category_id": 14, + "poly": [ + 584, + 1507, + 1120, + 1507, + 1120, + 1586, + 584, + 1586 + ], + "score": 0.92, + "latex": "A t t e n t i o n ( Q , K , V ) = S o f t m a x \\left( \\frac { Q K ^ { T } } { \\sqrt { d _ { K } } } \\right) V" + }, + { + "category_id": 13, + "poly": [ + 329, + 1253, + 442, + 1253, + 442, + 1287, + 329, + 1287 + ], + "score": 0.91, + "latex": "\\mathbf { R } ^ { N \\times L \\times H }" + }, + { + "category_id": 13, + "poly": [ + 978, + 1350, + 1172, + 1350, + 1172, + 1383, + 978, + 1383 + ], + "score": 0.9, + "latex": "6 \\times ( N \\times L \\times L )" + }, + { + "category_id": 13, + "poly": [ + 711, + 1603, + 1140, + 1603, + 1140, + 1637, + 711, + 1637 + ], + "score": 0.89, + "latex": "1 2 \\times ( 1 2 \\times 1 2 8 \\times 1 2 8 ) = 2 , 3 5 9 , 2 9 6" + }, + { + "category_id": 13, + "poly": [ + 300, + 1319, + 451, + 1319, + 451, + 1352, + 300, + 1352 + ], + "score": 0.88, + "latex": "( N ^ { \\mathbf { \\bar { \\nu } } } \\times L \\times L )" + }, + { + "category_id": 13, + "poly": [ + 870, + 1260, + 899, + 1260, + 899, + 1287, + 870, + 1287 + ], + "score": 0.81, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 418, + 1291, + 447, + 1291, + 447, + 1317, + 418, + 1317 + ], + "score": 0.8, + "latex": "H" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1260, + 1212, + 1260, + 1212, + 1287, + 1190, + 1287 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1937, + 1059, + 1937, + 1059, + 1954, + 1041, + 1954 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1856.0, + 865.0, + 1856.0, + 865.0, + 1904.0, + 243.0, + 1904.0 + ], + "score": 0.967, + "text": " 78 3Related work and key contributions" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 654.0, + 754.0, + 654.0, + 754.0, + 698.0, + 247.0, + 698.0 + ], + "score": 0.964, + "text": "162 Background and motivation" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1975.0, + 1096.0, + 1975.0, + 1096.0, + 2015.0, + 330.0, + 2015.0 + ], + "score": 0.986, + "text": "2https://coral.ai/docs/reference/edgetpu.learn.backprop.softmax_regression/" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2061.0, + 864.0, + 2061.0, + 864.0, + 2096.0, + 840.0, + 2096.0 + ], + "score": 1.0, + "text": "2" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 730.0, + 278.0, + 730.0, + 278.0, + 756.0, + 249.0, + 756.0 + ], + "score": 1.0, + "text": "47" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 723.0, + 1407.0, + 723.0, + 1407.0, + 761.0, + 292.0, + 761.0 + ], + "score": 0.972, + "text": " Modern GPUs are powerful, but big, expensive, and power-hungry. Therefore, alternative HW" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 760.0, + 278.0, + 760.0, + 278.0, + 788.0, + 249.0, + 788.0 + ], + "score": 1.0, + "text": "48" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 753.0, + 1411.0, + 753.0, + 1411.0, + 790.0, + 294.0, + 790.0 + ], + "score": 0.986, + "text": " accelerators (e.g., NPU) for on-device inference are under active development by diferent vendors," + }, + { + "category_id": 15, + "poly": [ + 249.0, + 790.0, + 278.0, + 790.0, + 278.0, + 818.0, + 249.0, + 818.0 + ], + "score": 1.0, + "text": "49" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 786.0, + 1408.0, + 786.0, + 1408.0, + 820.0, + 295.0, + 820.0 + ], + "score": 0.986, + "text": " especially for Federated Learning and Edge computing. However, such devices mostly are focused on" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 820.0, + 278.0, + 820.0, + 278.0, + 848.0, + 248.0, + 848.0 + ], + "score": 1.0, + "text": "50" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 816.0, + 1408.0, + 816.0, + 1408.0, + 849.0, + 295.0, + 849.0 + ], + "score": 0.998, + "text": "the acceleration of matrix multiplication operations,and do not include means to compute complex" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 852.0, + 277.0, + 852.0, + 277.0, + 878.0, + 248.0, + 878.0 + ], + "score": 1.0, + "text": "51" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 844.0, + 1410.0, + 844.0, + 1410.0, + 881.0, + 294.0, + 881.0 + ], + "score": 0.983, + "text": "activation functions. Typically,in such devices the data is sent outside of the accelerator to compute" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 881.0, + 278.0, + 881.0, + 278.0, + 908.0, + 248.0, + 908.0 + ], + "score": 1.0, + "text": "52" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 876.0, + 1408.0, + 876.0, + 1408.0, + 909.0, + 295.0, + 909.0 + ], + "score": 0.991, + "text": "activations on host CPU.For example,according to the guidelines of Coral (TM),a softmax layer of" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 912.0, + 278.0, + 912.0, + 278.0, + 939.0, + 248.0, + 939.0 + ], + "score": 1.0, + "text": "53" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 901.0, + 1411.0, + 901.0, + 1411.0, + 943.0, + 292.0, + 943.0 + ], + "score": 0.991, + "text": " DNN model in Edge TPU have to be run on host CPU ², what is acceptable for traditional CV tasks" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 943.0, + 278.0, + 943.0, + 278.0, + 969.0, + 248.0, + 969.0 + ], + "score": 1.0, + "text": "54" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 936.0, + 1410.0, + 936.0, + 1410.0, + 973.0, + 294.0, + 973.0 + ], + "score": 0.987, + "text": "(which are typically uni-directional, have minimum dependencies, and softmax layer is located at the" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 972.0, + 278.0, + 972.0, + 278.0, + 1000.0, + 248.0, + 1000.0 + ], + "score": 1.0, + "text": "55" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 965.0, + 1408.0, + 965.0, + 1408.0, + 1003.0, + 294.0, + 1003.0 + ], + "score": 0.99, + "text": " end of the computational graph of DNN model), however is very inefficient for NLP tasks (which are" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1003.0, + 278.0, + 1003.0, + 278.0, + 1031.0, + 248.0, + 1031.0 + ], + "score": 1.0, + "text": "56" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 996.0, + 1408.0, + 996.0, + 1408.0, + 1032.0, + 292.0, + 1032.0 + ], + "score": 0.994, + "text": " typically more complicated with a lot of dependencies and active employment of softmax layer in the" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1032.0, + 278.0, + 1032.0, + 278.0, + 1060.0, + 248.0, + 1060.0 + ], + "score": 1.0, + "text": "57" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1025.0, + 1408.0, + 1025.0, + 1408.0, + 1066.0, + 292.0, + 1066.0 + ], + "score": 0.99, + "text": "middle of DNN model). In opposite to traditional logic-centric approach, some researches are trying" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1063.0, + 278.0, + 1063.0, + 278.0, + 1091.0, + 249.0, + 1091.0 + ], + "score": 1.0, + "text": "58" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1056.0, + 1408.0, + 1056.0, + 1408.0, + 1095.0, + 291.0, + 1095.0 + ], + "score": 0.99, + "text": " to perform computation closer to the memory (so called memory-centric approach). For example" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1094.0, + 278.0, + 1094.0, + 278.0, + 1120.0, + 248.0, + 1120.0 + ], + "score": 1.0, + "text": "59" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1083.0, + 1410.0, + 1083.0, + 1410.0, + 1128.0, + 290.0, + 1128.0 + ], + "score": 0.98, + "text": " in [23], there is shown a DRAM-based AI accelerator. This approach allows significantly speed-up" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1124.0, + 278.0, + 1124.0, + 278.0, + 1151.0, + 248.0, + 1151.0 + ], + "score": 1.0, + "text": "60" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1119.0, + 1407.0, + 1119.0, + 1407.0, + 1152.0, + 295.0, + 1152.0 + ], + "score": 0.983, + "text": "the overall computation process, but for the computation of the activations the data should also be" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1155.0, + 278.0, + 1155.0, + 278.0, + 1181.0, + 249.0, + 1181.0 + ], + "score": 1.0, + "text": "61" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1150.0, + 1209.0, + 1150.0, + 1209.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 0.989, + "text": "moved to host processor, what is an even bigger issue in the DRAM environment." + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1200.0, + 278.0, + 1200.0, + 278.0, + 1226.0, + 249.0, + 1226.0 + ], + "score": 1.0, + "text": "62" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1193.0, + 1411.0, + 1193.0, + 1411.0, + 1230.0, + 294.0, + 1230.0 + ], + "score": 0.966, + "text": "The Eq.(1) from [27] describes how attention is computed in the model. This particular form," + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1230.0, + 277.0, + 1230.0, + 277.0, + 1258.0, + 249.0, + 1258.0 + ], + "score": 1.0, + "text": "63" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1222.0, + 1408.0, + 1222.0, + 1408.0, + 1262.0, + 291.0, + 1262.0 + ], + "score": 0.993, + "text": " named \"scaled dot-product attention\" takes the matrix multiplication product of queries and keys" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1263.0, + 278.0, + 1263.0, + 278.0, + 1291.0, + 249.0, + 1291.0 + ], + "score": 1.0, + "text": "64" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1245.0, + 328.0, + 1245.0, + 328.0, + 1300.0, + 287.0, + 1300.0 + ], + "score": 0.983, + "text": "of" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1245.0, + 869.0, + 1245.0, + 869.0, + 1300.0, + 443.0, + 1300.0 + ], + "score": 0.941, + "text": "as input forthesoftmaxlayer where" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1245.0, + 1189.0, + 1245.0, + 1189.0, + 1300.0, + 900.0, + 1300.0 + ], + "score": 0.983, + "text": "means number of heads," + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1245.0, + 1414.0, + 1245.0, + 1414.0, + 1300.0, + 1213.0, + 1300.0 + ], + "score": 0.998, + "text": "means sequence" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1295.0, + 278.0, + 1295.0, + 278.0, + 1322.0, + 249.0, + 1322.0 + ], + "score": 1.0, + "text": "65" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1287.0, + 417.0, + 1287.0, + 417.0, + 1326.0, + 292.0, + 1326.0 + ], + "score": 1.0, + "text": "length and" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1287.0, + 1409.0, + 1287.0, + 1409.0, + 1326.0, + 448.0, + 1326.0 + ], + "score": 0.987, + "text": "means hidden size for the case where batch size equals to 1. In other words, performing" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1325.0, + 278.0, + 1325.0, + 278.0, + 1351.0, + 248.0, + 1351.0 + ], + "score": 1.0, + "text": "66" + }, + { + "category_id": 16, + "poly": [ + 294.0, + 1318.0, + 299.0, + 1318.0, + 299.0, + 1355.0, + 294.0, + 1355.0 + ], + "score": 0.653, + "text": "(204" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1318.0, + 1408.0, + 1318.0, + 1408.0, + 1355.0, + 452.0, + 1355.0 + ], + "score": 0.986, + "text": "softmax operations is required per one attention. Furthermore,encoder in typical" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1357.0, + 278.0, + 1357.0, + 278.0, + 1383.0, + 249.0, + 1383.0 + ], + "score": 1.0, + "text": "67" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1347.0, + 977.0, + 1347.0, + 977.0, + 1386.0, + 292.0, + 1386.0 + ], + "score": 0.997, + "text": " transformer consists of six multi-head attentions which means" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1347.0, + 1408.0, + 1347.0, + 1408.0, + 1386.0, + 1173.0, + 1386.0 + ], + "score": 0.999, + "text": "operation is required" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1386.0, + 278.0, + 1386.0, + 278.0, + 1413.0, + 248.0, + 1413.0 + ], + "score": 1.0, + "text": "68" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1379.0, + 1408.0, + 1379.0, + 1408.0, + 1415.0, + 292.0, + 1415.0 + ], + "score": 0.99, + "text": "for encoder solely. Assuming the number of heads is 8 and sequence length is 128, it already takes" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1417.0, + 278.0, + 1417.0, + 278.0, + 1444.0, + 249.0, + 1444.0 + ], + "score": 1.0, + "text": "69" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1411.0, + 1408.0, + 1411.0, + 1408.0, + 1444.0, + 295.0, + 1444.0 + ], + "score": 0.995, + "text": "786,432 operations for softmax of the transformer encoder. This overhead increases as number of" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1448.0, + 278.0, + 1448.0, + 278.0, + 1474.0, + 249.0, + 1474.0 + ], + "score": 1.0, + "text": "70" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1443.0, + 1268.0, + 1443.0, + 1268.0, + 1475.0, + 294.0, + 1475.0 + ], + "score": 0.993, + "text": "heads and sequence length increases which is typical case for high-performing models." + }, + { + "category_id": 15, + "poly": [ + 248.0, + 376.0, + 279.0, + 376.0, + 279.0, + 403.0, + 248.0, + 403.0 + ], + "score": 1.0, + "text": "38" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 371.0, + 1411.0, + 371.0, + 1411.0, + 405.0, + 294.0, + 405.0 + ], + "score": 0.989, + "text": " In this paper we propose methods for efficient computation of the softmax layer at the HW accelerator." + }, + { + "category_id": 15, + "poly": [ + 248.0, + 406.0, + 279.0, + 406.0, + 279.0, + 433.0, + 248.0, + 433.0 + ], + "score": 1.0, + "text": "39" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 1410.0, + 399.0, + 1410.0, + 437.0, + 294.0, + 437.0 + ], + "score": 0.996, + "text": "The method is based on piece-wise-constant approximation and usage of LUTs. To the best of our" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 436.0, + 279.0, + 436.0, + 279.0, + 464.0, + 248.0, + 464.0 + ], + "score": 1.0, + "text": "40" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 429.0, + 1409.0, + 429.0, + 1409.0, + 466.0, + 294.0, + 466.0 + ], + "score": 0.997, + "text": "knowledge,it is the first paper where softmax quantization of the models with attention mechanism is" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 466.0, + 277.0, + 466.0, + 277.0, + 493.0, + 247.0, + 493.0 + ], + "score": 1.0, + "text": "41" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 461.0, + 1407.0, + 461.0, + 1407.0, + 495.0, + 296.0, + 495.0 + ], + "score": 0.988, + "text": "tested and verified on a variety of AI tasks.In Section 2 we show why our research is important and" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 497.0, + 279.0, + 497.0, + 279.0, + 524.0, + 247.0, + 524.0 + ], + "score": 1.0, + "text": "42" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 492.0, + 1407.0, + 492.0, + 1407.0, + 526.0, + 296.0, + 526.0 + ], + "score": 0.993, + "text": "valuable.In Section 3 we consider the drawbacks of existed softmax approximation methods in the" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 528.0, + 277.0, + 528.0, + 277.0, + 555.0, + 248.0, + 555.0 + ], + "score": 1.0, + "text": "43" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 522.0, + 1409.0, + 522.0, + 1409.0, + 558.0, + 292.0, + 558.0 + ], + "score": 0.988, + "text": " perspective of HW accelerator, and summarize the differentiation of our methods from the previous" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 558.0, + 279.0, + 558.0, + 279.0, + 585.0, + 248.0, + 585.0 + ], + "score": 1.0, + "text": "44" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1407.0, + 552.0, + 1407.0, + 586.0, + 294.0, + 586.0 + ], + "score": 0.993, + "text": "arts.In Section 4 we describe the details of the proposed methods. Section 5 shows the experimental" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 589.0, + 279.0, + 589.0, + 279.0, + 614.0, + 248.0, + 614.0 + ], + "score": 1.0, + "text": "45" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 579.0, + 1198.0, + 579.0, + 1198.0, + 620.0, + 290.0, + 620.0 + ], + "score": 0.986, + "text": " validation over different models and datasets, and Section 6 concludes the paper." + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1610.0, + 277.0, + 1610.0, + 277.0, + 1635.0, + 249.0, + 1635.0 + ], + "score": 1.0, + "text": "71" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 710.0, + 1604.0, + 710.0, + 1639.0, + 294.0, + 1639.0 + ], + "score": 0.997, + "text": "For example, it requires performing" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1604.0, + 1409.0, + 1604.0, + 1409.0, + 1639.0, + 1141.0, + 1639.0 + ], + "score": 0.996, + "text": "softmax operations for" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1641.0, + 278.0, + 1641.0, + 278.0, + 1667.0, + 249.0, + 1667.0 + ], + "score": 1.0, + "text": "72" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1634.0, + 1409.0, + 1634.0, + 1409.0, + 1668.0, + 293.0, + 1668.0 + ], + "score": 0.991, + "text": "one sample inference for typical BERT configuration [5] over sequence of length 128. In the case" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1671.0, + 278.0, + 1671.0, + 278.0, + 1697.0, + 249.0, + 1697.0 + ], + "score": 1.0, + "text": "73" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1663.0, + 1409.0, + 1663.0, + 1409.0, + 1699.0, + 293.0, + 1699.0 + ], + "score": 0.984, + "text": " when HW accelerator is used for matrix multiplication only, and activation to be computed at the" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1702.0, + 278.0, + 1702.0, + 278.0, + 1727.0, + 248.0, + 1727.0 + ], + "score": 1.0, + "text": "74" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1693.0, + 1410.0, + 1693.0, + 1410.0, + 1730.0, + 294.0, + 1730.0 + ], + "score": 0.984, + "text": "CPU (what is common case for HW accelerators, optimized for CNN-models), the huge amount of" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1732.0, + 278.0, + 1732.0, + 278.0, + 1758.0, + 248.0, + 1758.0 + ], + "score": 1.0, + "text": "75" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 1409.0, + 1724.0, + 1409.0, + 1760.0, + 293.0, + 1760.0 + ], + "score": 0.99, + "text": "data must be moved between CPU and the accelerator. Such data movement negatively impacts on" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1763.0, + 279.0, + 1763.0, + 279.0, + 1787.0, + 249.0, + 1787.0 + ], + "score": 1.0, + "text": "76" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1756.0, + 1414.0, + 1756.0, + 1414.0, + 1791.0, + 294.0, + 1791.0 + ], + "score": 0.982, + "text": " the overallcomputation time and power consumption, which can be critical for on-device inference." + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1792.0, + 278.0, + 1792.0, + 278.0, + 1817.0, + 249.0, + 1817.0 + ], + "score": 1.0, + "text": "77" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1786.0, + 1341.0, + 1786.0, + 1341.0, + 1821.0, + 295.0, + 1821.0 + ], + "score": 0.986, + "text": "Therefore, HW accelerator must be able to compute softmax layer without CPU involvement." + }, + { + "category_id": 15, + "poly": [ + 249.0, + 210.0, + 278.0, + 210.0, + 278.0, + 235.0, + 249.0, + 235.0 + ], + "score": 1.0, + "text": "33" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 204.0, + 1407.0, + 204.0, + 1407.0, + 237.0, + 294.0, + 237.0 + ], + "score": 0.97, + "text": " in accuracy. Moreover, in [2O] it was shown that 8-bit quantized models provide the same or even" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 239.0, + 278.0, + 239.0, + 278.0, + 264.0, + 248.0, + 264.0 + ], + "score": 1.0, + "text": "34" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 233.0, + 1406.0, + 233.0, + 1406.0, + 266.0, + 297.0, + 266.0 + ], + "score": 0.985, + "text": "higher accuracy as the full-precision models. Most of the above methods consider the quantization of" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 271.0, + 278.0, + 271.0, + 278.0, + 296.0, + 249.0, + 296.0 + ], + "score": 1.0, + "text": "35" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 266.0, + 1407.0, + 266.0, + 1407.0, + 296.0, + 294.0, + 296.0 + ], + "score": 0.984, + "text": "matrix multiplications operations only. However,as it is shown in [4],[24] in modern DNNs with" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 300.0, + 279.0, + 300.0, + 279.0, + 327.0, + 248.0, + 327.0 + ], + "score": 1.0, + "text": "36" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1411.0, + 292.0, + 1411.0, + 331.0, + 293.0, + 331.0 + ], + "score": 0.976, + "text": " attention mechanism (e.g., Transformer, BERT, GPT-x) the softmax function is also used intensively," + }, + { + "category_id": 15, + "poly": [ + 249.0, + 332.0, + 278.0, + 332.0, + 278.0, + 357.0, + 249.0, + 357.0 + ], + "score": 1.0, + "text": "37" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 1316.0, + 327.0, + 1316.0, + 360.0, + 294.0, + 360.0 + ], + "score": 0.992, + "text": " especially at the longer sequence lengths,so it is necessary to optimize its for performance." + }, + { + "category_id": 15, + "poly": [ + 253.0, + 1925.0, + 1040.0, + 1925.0, + 1040.0, + 1964.0, + 253.0, + 1964.0 + ], + "score": 0.999, + "text": "'9The common equation to compute softmax function over the input" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1925.0, + 1391.0, + 1925.0, + 1391.0, + 1964.0, + 1060.0, + 1964.0 + ], + "score": 0.999, + "text": "is a fraction as shown below:" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 247, + 457, + 1408, + 457, + 1408, + 1100, + 247, + 1100 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 672, + 231, + 1027, + 231, + 1027, + 303, + 672, + 303 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 242, + 1461, + 1409, + 1461, + 1409, + 1828, + 242, + 1828 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 241, + 1113, + 1407, + 1113, + 1407, + 1448, + 241, + 1448 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1369, + 255, + 1403, + 255, + 1403, + 283, + 1369, + 283 + ], + "score": 0.876 + }, + { + "category_id": 1, + "poly": [ + 250, + 323, + 1405, + 323, + 1405, + 447, + 250, + 447 + ], + "score": 0.815 + }, + { + "category_id": 2, + "poly": [ + 842, + 2064, + 860, + 2064, + 860, + 2088, + 842, + 2088 + ], + "score": 0.782 + }, + { + "category_id": 1, + "poly": [ + 245, + 1947, + 1408, + 1947, + 1408, + 2010, + 245, + 2010 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 243, + 1841, + 1409, + 1841, + 1409, + 1933, + 243, + 1933 + ], + "score": 0.487 + }, + { + "category_id": 14, + "poly": [ + 671, + 229, + 1030, + 229, + 1030, + 301, + 671, + 301 + ], + "score": 0.93, + "latex": "\\sigma ( x _ { i } ) = \\frac { e ^ { x _ { i } } } { \\Sigma e ^ { x _ { i } } } = \\frac { e ^ { x _ { i } - m a x ( x ) } } { \\Sigma e ^ { x _ { i } - m a x ( x ) } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 977, + 398, + 977, + 398, + 1005, + 298, + 1005 + ], + "score": 0.9, + "latex": "e ^ { x } \\to 2 ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1766, + 1142, + 1766, + 1142, + 1795, + 1080, + 1795 + ], + "score": 0.88, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 787, + 1766, + 839, + 1766, + 839, + 1795, + 787, + 1795 + ], + "score": 0.88, + "latex": "\\times 2 0" + }, + { + "category_id": 13, + "poly": [ + 1138, + 643, + 1193, + 643, + 1193, + 672, + 1138, + 672 + ], + "score": 0.87, + "latex": "15 \\%" + }, + { + "category_id": 13, + "poly": [ + 705, + 1705, + 757, + 1705, + 757, + 1735, + 705, + 1735 + ], + "score": 0.87, + "latex": "19 \\%" + }, + { + "category_id": 13, + "poly": [ + 790, + 674, + 832, + 674, + 832, + 702, + 790, + 702 + ], + "score": 0.86, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 717, + 1767, + 756, + 1767, + 756, + 1795, + 717, + 1795 + ], + "score": 0.85, + "latex": "\\times 4" + }, + { + "category_id": 13, + "poly": [ + 746, + 914, + 775, + 914, + 775, + 944, + 746, + 944 + ], + "score": 0.84, + "latex": "\\dot { 2 } ^ { b }" + }, + { + "category_id": 13, + "poly": [ + 632, + 1706, + 673, + 1706, + 673, + 1734, + 632, + 1734 + ], + "score": 0.83, + "latex": "2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1675, + 1393, + 1675, + 1393, + 1706, + 1340, + 1706 + ], + "score": 0.72, + "latex": "( 2 ) +" + }, + { + "category_id": 13, + "poly": [ + 931, + 917, + 947, + 917, + 947, + 944, + 931, + 944 + ], + "score": 0.69, + "latex": "b" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2061.0, + 862.0, + 2061.0, + 862.0, + 2092.0, + 841.0, + 2092.0 + ], + "score": 1.0, + "text": "3" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 466.0, + 278.0, + 466.0, + 278.0, + 492.0, + 248.0, + 492.0 + ], + "score": 1.0, + "text": "84" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 460.0, + 1409.0, + 460.0, + 1409.0, + 496.0, + 292.0, + 496.0 + ], + "score": 0.991, + "text": "In [25] it is proposed to use basic-split calculation method, which allows to split the exponentiation" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 496.0, + 277.0, + 496.0, + 277.0, + 523.0, + 248.0, + 523.0 + ], + "score": 1.0, + "text": "85" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 1408.0, + 492.0, + 1408.0, + 524.0, + 294.0, + 524.0 + ], + "score": 0.988, + "text": "calculation of the softmax into several specific basics which are implemented by LUT (ROM). It" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 527.0, + 277.0, + 527.0, + 277.0, + 553.0, + 248.0, + 553.0 + ], + "score": 1.0, + "text": "86" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 520.0, + 1409.0, + 520.0, + 1409.0, + 555.0, + 293.0, + 555.0 + ], + "score": 0.975, + "text": " allows to simplify the complexity of hardware and signal propagation delay. However, to recover" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 558.0, + 277.0, + 558.0, + 277.0, + 584.0, + 248.0, + 584.0 + ], + "score": 1.0, + "text": "87" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 553.0, + 1408.0, + 553.0, + 1408.0, + 585.0, + 296.0, + 585.0 + ], + "score": 0.99, + "text": "the whole computed value of exponent some additional multiplications are needed. Moreover, to" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 588.0, + 277.0, + 588.0, + 277.0, + 613.0, + 248.0, + 613.0 + ], + "score": 1.0, + "text": "88" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 581.0, + 1409.0, + 581.0, + 1409.0, + 617.0, + 293.0, + 617.0 + ], + "score": 0.976, + "text": "obtain the final value of softmax the division is stillused. In [30] it is proposed to add threshold" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 619.0, + 277.0, + 619.0, + 277.0, + 646.0, + 248.0, + 646.0 + ], + "score": 1.0, + "text": "89" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1409.0, + 612.0, + 1409.0, + 648.0, + 294.0, + 648.0 + ], + "score": 0.993, + "text": "layers to accelerate the training speed and replace the Euler's base value with a dynamic base value" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 648.0, + 277.0, + 648.0, + 277.0, + 675.0, + 248.0, + 675.0 + ], + "score": 1.0, + "text": "90" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 1137.0, + 644.0, + 1137.0, + 677.0, + 294.0, + 677.0 + ], + "score": 0.991, + "text": "to improve the network accuracy. Such approach allowed to save up to" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 644.0, + 1407.0, + 644.0, + 1407.0, + 677.0, + 1194.0, + 677.0 + ], + "score": 0.992, + "text": "of training model" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 679.0, + 277.0, + 679.0, + 277.0, + 705.0, + 248.0, + 705.0 + ], + "score": 1.0, + "text": "91" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 789.0, + 673.0, + 789.0, + 709.0, + 293.0, + 709.0 + ], + "score": 0.998, + "text": "convergence time and also increase by 3 to" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 673.0, + 1408.0, + 673.0, + 1408.0, + 709.0, + 833.0, + 709.0 + ], + "score": 0.991, + "text": " the average accuracy. But during the computation" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 709.0, + 277.0, + 709.0, + 277.0, + 735.0, + 248.0, + 735.0 + ], + "score": 1.0, + "text": "92" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 701.0, + 1408.0, + 701.0, + 1408.0, + 739.0, + 292.0, + 739.0 + ], + "score": 0.979, + "text": "of softmax the divider is still used. In [17] the combination of LUT and multi-segment polynomial" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 740.0, + 277.0, + 740.0, + 277.0, + 767.0, + 248.0, + 767.0 + ], + "score": 1.0, + "text": "93" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 1411.0, + 732.0, + 1411.0, + 769.0, + 293.0, + 769.0 + ], + "score": 0.994, + "text": "fiting have been used to compute exponential operations of integer and fractional parts in separate." + }, + { + "category_id": 15, + "poly": [ + 248.0, + 769.0, + 277.0, + 769.0, + 277.0, + 795.0, + 248.0, + 795.0 + ], + "score": 1.0, + "text": "94" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 763.0, + 1409.0, + 763.0, + 1409.0, + 799.0, + 293.0, + 799.0 + ], + "score": 0.984, + "text": "In addition, they adopt radix-4 Booth-Wallce based multiplier for computing the whole value" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 800.0, + 278.0, + 800.0, + 278.0, + 826.0, + 248.0, + 826.0 + ], + "score": 1.0, + "text": "95" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 794.0, + 1411.0, + 794.0, + 1411.0, + 830.0, + 292.0, + 830.0 + ], + "score": 0.997, + "text": "of exponent,and modified shift-compare divider for computation of the final value of softmax." + }, + { + "category_id": 15, + "poly": [ + 248.0, + 830.0, + 278.0, + 830.0, + 278.0, + 857.0, + 248.0, + 857.0 + ], + "score": 1.0, + "text": "96" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 826.0, + 1408.0, + 826.0, + 1408.0, + 858.0, + 294.0, + 858.0 + ], + "score": 0.992, + "text": "To avoid big area costs for traditional divider, the authors in [8] propose to reduce the operand" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 861.0, + 277.0, + 861.0, + 277.0, + 888.0, + 248.0, + 888.0 + ], + "score": 1.0, + "text": "97" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 855.0, + 1409.0, + 855.0, + 1409.0, + 891.0, + 293.0, + 891.0 + ], + "score": 0.978, + "text": "bit-width,and approximate exponential and division operations with cost-effective addition and" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 892.0, + 277.0, + 892.0, + 277.0, + 918.0, + 248.0, + 918.0 + ], + "score": 1.0, + "text": "98" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 882.0, + 1409.0, + 882.0, + 1409.0, + 924.0, + 292.0, + 924.0 + ], + "score": 0.988, + "text": "bit shifts operations. In their design they have approximated the division operation in Eq. (2) by" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 923.0, + 278.0, + 923.0, + 278.0, + 949.0, + 248.0, + 949.0 + ], + "score": 1.0, + "text": "99" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 913.0, + 745.0, + 913.0, + 745.0, + 953.0, + 292.0, + 953.0 + ], + "score": 0.99, + "text": " replacing the denominator with closest" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 913.0, + 930.0, + 913.0, + 930.0, + 953.0, + 776.0, + 953.0 + ], + "score": 0.992, + "text": "value, where" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 913.0, + 1411.0, + 913.0, + 1411.0, + 953.0, + 948.0, + 953.0 + ], + "score": 0.989, + "text": " is some integer constant. Then division" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 951.0, + 278.0, + 951.0, + 278.0, + 980.0, + 240.0, + 980.0 + ], + "score": 0.999, + "text": "100" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 945.0, + 1409.0, + 945.0, + 1409.0, + 982.0, + 290.0, + 982.0 + ], + "score": 0.987, + "text": "is implemented just as simple bit shifts operation. In [24] it is proposed to replace the base as" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 981.0, + 277.0, + 981.0, + 277.0, + 1011.0, + 239.0, + 1011.0 + ], + "score": 1.0, + "text": "101" + }, + { + "category_id": 16, + "poly": [ + 290.0, + 972.0, + 297.0, + 972.0, + 297.0, + 1013.0, + 290.0, + 1013.0 + ], + "score": 0.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 972.0, + 1409.0, + 972.0, + 1409.0, + 1013.0, + 399.0, + 1013.0 + ], + "score": 0.993, + "text": ", then all computations are more hardware-friendly, however the division operation is still" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1012.0, + 278.0, + 1012.0, + 278.0, + 1040.0, + 240.0, + 1040.0 + ], + "score": 1.0, + "text": "102" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1007.0, + 1408.0, + 1007.0, + 1408.0, + 1043.0, + 293.0, + 1043.0 + ], + "score": 0.979, + "text": " required. Also, to restore accuracy a fine-tuning of the model is needed, what is not applicable" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1042.0, + 278.0, + 1042.0, + 278.0, + 1070.0, + 240.0, + 1070.0 + ], + "score": 1.0, + "text": "103" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1038.0, + 1408.0, + 1038.0, + 1408.0, + 1074.0, + 294.0, + 1074.0 + ], + "score": 0.988, + "text": " for post-training quantization paradigm. Although the methods described above are decreasing the" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1074.0, + 277.0, + 1074.0, + 277.0, + 1098.0, + 242.0, + 1098.0 + ], + "score": 1.0, + "text": "104" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1066.0, + 1286.0, + 1066.0, + 1286.0, + 1102.0, + 293.0, + 1102.0 + ], + "score": 0.985, + "text": "hardware complexity of softmax computation they all still rely on the division operation." + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1468.0, + 278.0, + 1468.0, + 278.0, + 1493.0, + 241.0, + 1493.0 + ], + "score": 1.0, + "text": "116" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 1408.0, + 1463.0, + 1408.0, + 1496.0, + 295.0, + 1496.0 + ], + "score": 0.988, + "text": "Despite its atractiveness,logarithmic transformation approach can be used only in the cases when" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1499.0, + 276.0, + 1499.0, + 276.0, + 1524.0, + 241.0, + 1524.0 + ], + "score": 0.995, + "text": "117" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1493.0, + 1408.0, + 1493.0, + 1408.0, + 1526.0, + 295.0, + 1526.0 + ], + "score": 0.982, + "text": " softmax layer is the last layer in DNN and its functionality is simply“scoring”among the candidates" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1529.0, + 278.0, + 1529.0, + 278.0, + 1554.0, + 241.0, + 1554.0 + ], + "score": 1.0, + "text": "118" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1517.0, + 1413.0, + 1517.0, + 1413.0, + 1562.0, + 291.0, + 1562.0 + ], + "score": 0.988, + "text": "for classification tasks. However,if softmax layer is used inside of computational graph of DNN (e.g.," + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1558.0, + 279.0, + 1558.0, + 279.0, + 1587.0, + 240.0, + 1587.0 + ], + "score": 1.0, + "text": "119" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1552.0, + 1409.0, + 1552.0, + 1409.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 0.986, + "text": "DNNs with attention-mechanism) then error caused by quantizations will be accumulated drastically," + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1587.0, + 279.0, + 1587.0, + 279.0, + 1618.0, + 240.0, + 1618.0 + ], + "score": 1.0, + "text": "120" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1578.0, + 1410.0, + 1578.0, + 1410.0, + 1623.0, + 291.0, + 1623.0 + ], + "score": 0.991, + "text": " directly impacting on the final accuracy.For example,in Table 1 there is shown the averaged accuracy" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1618.0, + 278.0, + 1618.0, + 278.0, + 1647.0, + 240.0, + 1647.0 + ], + "score": 1.0, + "text": "121" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1613.0, + 1412.0, + 1613.0, + 1412.0, + 1648.0, + 294.0, + 1648.0 + ], + "score": 0.996, + "text": "drop for DETR models caused by a softmax approximation in uint8 precision by some prior arts." + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1648.0, + 279.0, + 1648.0, + 279.0, + 1678.0, + 240.0, + 1678.0 + ], + "score": 1.0, + "text": "122" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1640.0, + 1409.0, + 1640.0, + 1409.0, + 1682.0, + 292.0, + 1682.0 + ], + "score": 0.985, + "text": " As it can be seen from the Table 1,a straightforward usage of Eq.(2) from [31] causes big accuracy" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1679.0, + 279.0, + 1679.0, + 279.0, + 1708.0, + 240.0, + 1708.0 + ], + "score": 1.0, + "text": "123" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1674.0, + 1339.0, + 1674.0, + 1339.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 0.989, + "text": "drop,and even after applying some improvements to the original method (shown as case Eq." + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1674.0, + 1410.0, + 1674.0, + 1410.0, + 1711.0, + 1394.0, + 1711.0 + ], + "score": 0.562, + "text": ")," + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1710.0, + 279.0, + 1710.0, + 279.0, + 1739.0, + 240.0, + 1739.0 + ], + "score": 1.0, + "text": "124" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1706.0, + 631.0, + 1706.0, + 631.0, + 1739.0, + 295.0, + 1739.0 + ], + "score": 0.974, + "text": "the accuracy drop is still high (" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1706.0, + 704.0, + 1706.0, + 704.0, + 1739.0, + 674.0, + 1739.0 + ], + "score": 0.993, + "text": "to" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1706.0, + 1408.0, + 1706.0, + 1408.0, + 1739.0, + 758.0, + 1739.0 + ], + "score": 0.981, + "text": ").For more details of the prior arts experiments please refer" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1741.0, + 278.0, + 1741.0, + 278.0, + 1767.0, + 241.0, + 1767.0 + ], + "score": 1.0, + "text": "125" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1735.0, + 1409.0, + 1735.0, + 1409.0, + 1771.0, + 292.0, + 1771.0 + ], + "score": 0.98, + "text": " to Appendix A.1. However, if for the same conditions we use the method proposed in Section 4.1, we" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1769.0, + 280.0, + 1769.0, + 280.0, + 1798.0, + 240.0, + 1798.0 + ], + "score": 1.0, + "text": "126" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1765.0, + 716.0, + 1765.0, + 716.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 0.998, + "text": "can see that accuracy drop reduced by" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1765.0, + 786.0, + 1765.0, + 786.0, + 1798.0, + 757.0, + 1798.0 + ], + "score": 0.991, + "text": "to" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1765.0, + 1079.0, + 1765.0, + 1079.0, + 1798.0, + 840.0, + 1798.0 + ], + "score": 0.975, + "text": "times,and it is below" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1765.0, + 1409.0, + 1765.0, + 1409.0, + 1798.0, + 1143.0, + 1798.0 + ], + "score": 0.996, + "text": "for plain DETR models" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1802.0, + 278.0, + 1802.0, + 278.0, + 1828.0, + 241.0, + 1828.0 + ], + "score": 1.0, + "text": "127" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1796.0, + 684.0, + 1796.0, + 684.0, + 1833.0, + 294.0, + 1833.0 + ], + "score": 0.988, + "text": "(no DC5 dilation at the last stage)." + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1117.0, + 279.0, + 1117.0, + 279.0, + 1147.0, + 240.0, + 1147.0 + ], + "score": 1.0, + "text": "105" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1112.0, + 1410.0, + 1112.0, + 1410.0, + 1150.0, + 294.0, + 1150.0 + ], + "score": 0.988, + "text": "To avoid division operation at all, some other solutions apply the logarithmic transformation to" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1150.0, + 278.0, + 1150.0, + 278.0, + 1176.0, + 241.0, + 1176.0 + ], + "score": 1.0, + "text": "106" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1408.0, + 1143.0, + 1408.0, + 1177.0, + 295.0, + 1177.0 + ], + "score": 0.995, + "text": "the original softmax function,and thus substitute costly division operation by subtraction of the" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1180.0, + 278.0, + 1180.0, + 278.0, + 1206.0, + 241.0, + 1206.0 + ], + "score": 1.0, + "text": "107" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1172.0, + 1409.0, + 1172.0, + 1409.0, + 1208.0, + 293.0, + 1208.0 + ], + "score": 0.992, + "text": "logarithm. In [34], for example, it is proposed to use a logarithmic operation implemented as a LUT" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1210.0, + 278.0, + 1210.0, + 278.0, + 1236.0, + 241.0, + 1236.0 + ], + "score": 1.0, + "text": "108" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1204.0, + 1408.0, + 1204.0, + 1408.0, + 1238.0, + 295.0, + 1238.0 + ], + "score": 0.991, + "text": "and a subtractor to replace the division operation, what allows to further decrease the complexity of" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1238.0, + 278.0, + 1238.0, + 278.0, + 1268.0, + 240.0, + 1268.0 + ], + "score": 0.997, + "text": "109" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1233.0, + 1410.0, + 1233.0, + 1410.0, + 1271.0, + 294.0, + 1271.0 + ], + "score": 0.984, + "text": "hardware,as well critical path of the whole design. In [10] simplified version of Integral Stochastic" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1271.0, + 278.0, + 1271.0, + 278.0, + 1297.0, + 240.0, + 1297.0 + ], + "score": 1.0, + "text": "110" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1263.0, + 1410.0, + 1263.0, + 1410.0, + 1301.0, + 294.0, + 1301.0 + ], + "score": 0.995, + "text": "Computation is used in order to build FSM-based exponentiation. Division operation is substituted" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1300.0, + 277.0, + 1300.0, + 277.0, + 1329.0, + 238.0, + 1329.0 + ], + "score": 1.0, + "text": "111" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1294.0, + 1411.0, + 1294.0, + 1411.0, + 1332.0, + 294.0, + 1332.0 + ], + "score": 0.978, + "text": "by LUT-based logarithmic operation and subtraction, similarly to [34]. In [31] the authors are further" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1332.0, + 278.0, + 1332.0, + 278.0, + 1358.0, + 240.0, + 1358.0 + ], + "score": 1.0, + "text": "112" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 1412.0, + 1324.0, + 1412.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 0.997, + "text": "developing the method proposed in [34], by applying mathematical transformations and linear fitting." + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1362.0, + 278.0, + 1362.0, + 278.0, + 1388.0, + 240.0, + 1388.0 + ], + "score": 1.0, + "text": "113" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1357.0, + 1412.0, + 1357.0, + 1412.0, + 1391.0, + 295.0, + 1391.0 + ], + "score": 0.991, + "text": "After optimization,their final design includes only shift operations,leading one detector, and adders." + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1392.0, + 278.0, + 1392.0, + 278.0, + 1418.0, + 241.0, + 1418.0 + ], + "score": 1.0, + "text": "114" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1385.0, + 1408.0, + 1385.0, + 1408.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 0.984, + "text": "Finally, there are some extreme approximation cases represented in [13] and [28], where logarithmic" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1423.0, + 278.0, + 1423.0, + 278.0, + 1449.0, + 241.0, + 1449.0 + ], + "score": 1.0, + "text": "115" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1415.0, + 823.0, + 1415.0, + 823.0, + 1452.0, + 293.0, + 1452.0 + ], + "score": 0.981, + "text": "computation and subtraction are skipped at all." + }, + { + "category_id": 15, + "poly": [ + 248.0, + 329.0, + 278.0, + 329.0, + 278.0, + 356.0, + 248.0, + 356.0 + ], + "score": 1.0, + "text": "80" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 322.0, + 1408.0, + 322.0, + 1408.0, + 361.0, + 294.0, + 361.0 + ], + "score": 0.996, + "text": "There are different ways to implement it. For example, some approaches straightforwardly compute" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 358.0, + 277.0, + 358.0, + 277.0, + 386.0, + 248.0, + 386.0 + ], + "score": 1.0, + "text": "81" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 354.0, + 1407.0, + 354.0, + 1407.0, + 389.0, + 295.0, + 389.0 + ], + "score": 0.982, + "text": "the numerator and denominator firstly,and then a division operation is performed. In such case the" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 389.0, + 278.0, + 389.0, + 278.0, + 417.0, + 248.0, + 417.0 + ], + "score": 1.0, + "text": "82" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 382.0, + 1407.0, + 382.0, + 1407.0, + 417.0, + 295.0, + 417.0 + ], + "score": 0.98, + "text": "HW accelerator should contain a divider, what requires additional HW costs and can also cause" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 420.0, + 278.0, + 420.0, + 278.0, + 447.0, + 248.0, + 447.0 + ], + "score": 1.0, + "text": "83" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 414.0, + 949.0, + 414.0, + 949.0, + 449.0, + 295.0, + 449.0 + ], + "score": 0.984, + "text": "performance degradation, if divider is not fully pipe-lined." + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1953.0, + 278.0, + 1953.0, + 278.0, + 1977.0, + 242.0, + 1977.0 + ], + "score": 1.0, + "text": "131" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1945.0, + 1408.0, + 1945.0, + 1408.0, + 1982.0, + 290.0, + 1982.0 + ], + "score": 0.991, + "text": "Previous works for HW accelerator of softmax layer are focused on the logic-centric approach and" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1977.0, + 1412.0, + 1977.0, + 1412.0, + 2013.0, + 237.0, + 2013.0 + ], + "score": 0.984, + "text": " 132used dedicated hardware for its implementation. In such case the utilization of hardware is low," + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1846.0, + 280.0, + 1846.0, + 280.0, + 1873.0, + 242.0, + 1873.0 + ], + "score": 1.0, + "text": "128" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1841.0, + 1406.0, + 1841.0, + 1406.0, + 1875.0, + 293.0, + 1875.0 + ], + "score": 0.995, + "text": "The work presented in this paper has focused on the development of methods for efficient computation" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1879.0, + 277.0, + 1879.0, + 277.0, + 1901.0, + 243.0, + 1901.0 + ], + "score": 1.0, + "text": "129" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1874.0, + 1406.0, + 1874.0, + 1406.0, + 1904.0, + 295.0, + 1904.0 + ], + "score": 0.99, + "text": "of softmax layer during the inference at the edge devices, what usually have limited computational" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1907.0, + 279.0, + 1907.0, + 279.0, + 1935.0, + 240.0, + 1935.0 + ], + "score": 1.0, + "text": "130" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1903.0, + 880.0, + 1903.0, + 880.0, + 1934.0, + 292.0, + 1934.0 + ], + "score": 0.984, + "text": " power and suffer from constraints of the bandwidth." + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 317, + 257, + 1378, + 257, + 1378, + 419, + 317, + 419 + ], + "score": 0.978, + "html": "
METHODDETR (R50)DETR+DC5(R50)DETR (R101)DETR+DC5(R101)
EQ.(2) IN [31]7.2019.3010.2525.37
EQ.(2)+ IN [31]2.5012.935.3818.85
SECTION 4.10.332.920.222.73
" + }, + { + "category_id": 1, + "poly": [ + 243, + 1160, + 1407, + 1160, + 1407, + 1285, + 243, + 1285 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 243, + 489, + 1408, + 489, + 1408, + 614, + 243, + 614 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 246, + 627, + 1408, + 627, + 1408, + 720, + 246, + 720 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 724, + 1555, + 975, + 1555, + 975, + 1622, + 724, + 1622 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 367, + 744, + 1407, + 744, + 1407, + 1049, + 367, + 1049 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 561, + 1743, + 1143, + 1743, + 1143, + 1819, + 561, + 1819 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 290, + 1378, + 1403, + 1378, + 1403, + 1441, + 290, + 1441 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 236, + 1642, + 1412, + 1642, + 1412, + 1706, + 236, + 1706 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 249, + 1453, + 1410, + 1453, + 1410, + 1518, + 249, + 1518 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 248, + 1842, + 1412, + 1842, + 1412, + 1908, + 248, + 1908 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 288, + 1321, + 874, + 1321, + 874, + 1355, + 288, + 1355 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 247, + 1091, + 615, + 1091, + 615, + 1129, + 247, + 1129 + ], + "score": 0.907 + }, + { + "category_id": 6, + "poly": [ + 300, + 213, + 1395, + 213, + 1395, + 246, + 300, + 246 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 252, + 1919, + 1368, + 1919, + 1368, + 1954, + 252, + 1954 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1574, + 1403, + 1574, + 1403, + 1604, + 1369, + 1604 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1766, + 1403, + 1766, + 1403, + 1796, + 1369, + 1796 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 842, + 2064, + 861, + 2064, + 861, + 2088, + 842, + 2088 + ], + "score": 0.804 + }, + { + "category_id": 8, + "poly": [ + 373, + 1973, + 855, + 1973, + 855, + 2015, + 373, + 2015 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 373, + 1973, + 855, + 1973, + 855, + 2015, + 373, + 2015 + ], + "score": 0.262 + }, + { + "category_id": 14, + "poly": [ + 724, + 1554, + 979, + 1554, + 979, + 1621, + 724, + 1621 + ], + "score": 0.95, + "latex": "\\sigma ^ { * } ( x _ { i } ) = \\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } }" + }, + { + "category_id": 13, + "poly": [ + 869, + 1843, + 1093, + 1843, + 1093, + 1879, + 869, + 1879 + ], + "score": 0.93, + "latex": "x _ { q } = \\lceil l n ( 2 ^ { w } - 1 ) \\rceil" + }, + { + "category_id": 14, + "poly": [ + 559, + 1742, + 1143, + 1742, + 1143, + 1820, + 559, + 1820 + ], + "score": 0.92, + "latex": "L U T _ { 1 / e } [ i ] = \\left\\lfloor \\frac { 1 } { e ^ { i } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall i = 0 , 1 , . . . , x _ { q } + 1" + }, + { + "category_id": 13, + "poly": [ + 544, + 1975, + 842, + 1975, + 842, + 2014, + 544, + 2014 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { ( \\frac { 1 } { e ^ { x } } > 0 \\forall x \\in ( - \\infty , + \\infty ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 374, + 1851, + 398, + 1851, + 398, + 1872, + 374, + 1872 + ], + "score": 0.75, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 1371, + 214, + 1397, + 214, + 1397, + 241, + 1371, + 241 + ], + "score": 0.41, + "latex": "\\%" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1316.0, + 877.0, + 1316.0, + 877.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 0.987, + "text": "4.1Normalization of reciprocal exponentiation" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1087.0, + 616.0, + 1087.0, + 616.0, + 1136.0, + 235.0, + 1136.0 + ], + "score": 0.979, + "text": "1494 Proposed methods" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 209.0, + 1370.0, + 209.0, + 1370.0, + 252.0, + 301.0, + 252.0 + ], + "score": 0.998, + "text": "Table 1: Averaged accuracy drop by different methods over DETR models (Average Precision)," + }, + { + "category_id": 16, + "poly": [ + 1398.0, + 209.0, + 1401.0, + 209.0, + 1401.0, + 252.0, + 1398.0, + 252.0 + ], + "score": 0.65, + "text": "(204" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2061.0, + 864.0, + 2061.0, + 864.0, + 2094.0, + 838.0, + 2094.0 + ], + "score": 1.0, + "text": "4" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1166.0, + 277.0, + 1166.0, + 277.0, + 1193.0, + 242.0, + 1193.0 + ], + "score": 1.0, + "text": "150" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1158.0, + 1410.0, + 1158.0, + 1410.0, + 1199.0, + 292.0, + 1199.0 + ], + "score": 0.987, + "text": " In this paper we use memory-centric approach to build the accelerator for softmax computation" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1197.0, + 277.0, + 1197.0, + 277.0, + 1224.0, + 240.0, + 1224.0 + ], + "score": 1.0, + "text": "151" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1190.0, + 1407.0, + 1190.0, + 1407.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 0.977, + "text": " in hardware platform with limited resources. We propose two LUT-based methods for efficient" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1225.0, + 280.0, + 1225.0, + 280.0, + 1256.0, + 239.0, + 1256.0 + ], + "score": 1.0, + "text": "152" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1408.0, + 1221.0, + 1408.0, + 1256.0, + 294.0, + 1256.0 + ], + "score": 0.99, + "text": "computation,which provide high performance and do not require a divider. The details of the" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1258.0, + 277.0, + 1258.0, + 277.0, + 1284.0, + 242.0, + 1284.0 + ], + "score": 1.0, + "text": "153" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1249.0, + 1316.0, + 1249.0, + 1316.0, + 1287.0, + 292.0, + 1287.0 + ], + "score": 0.994, + "text": " methods are described below and appropriate software models are shown in Appendix A.2." + }, + { + "category_id": 15, + "poly": [ + 242.0, + 497.0, + 277.0, + 497.0, + 277.0, + 522.0, + 242.0, + 522.0 + ], + "score": 1.0, + "text": "133" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 491.0, + 1408.0, + 491.0, + 1408.0, + 526.0, + 293.0, + 526.0 + ], + "score": 0.988, + "text": " performance can be slower, and no reconfigurability is provided. In our paper we have used an" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 526.0, + 279.0, + 526.0, + 279.0, + 553.0, + 240.0, + 553.0 + ], + "score": 1.0, + "text": "134" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 519.0, + 1409.0, + 519.0, + 1409.0, + 557.0, + 292.0, + 557.0 + ], + "score": 0.986, + "text": " alternative memory-centric approximate computing approach. It keeps accuracy loss small, while" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 557.0, + 277.0, + 557.0, + 277.0, + 584.0, + 240.0, + 584.0 + ], + "score": 1.0, + "text": "135" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 551.0, + 1408.0, + 551.0, + 1408.0, + 587.0, + 296.0, + 587.0 + ], + "score": 0.987, + "text": "allws computing softmax operation with no divider. The size of the required memory (i.e., LUT) is" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 588.0, + 277.0, + 588.0, + 277.0, + 613.0, + 242.0, + 613.0 + ], + "score": 1.0, + "text": "136" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 584.0, + 899.0, + 584.0, + 899.0, + 615.0, + 294.0, + 615.0 + ], + "score": 0.989, + "text": "reasonably small and can be reconfigured on demand." + }, + { + "category_id": 15, + "poly": [ + 242.0, + 632.0, + 279.0, + 632.0, + 279.0, + 659.0, + 242.0, + 659.0 + ], + "score": 1.0, + "text": "137" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 624.0, + 1409.0, + 624.0, + 1409.0, + 664.0, + 289.0, + 664.0 + ], + "score": 0.988, + "text": " The methods proposed in the paper contribute to building the alternative concept of hardware" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 665.0, + 278.0, + 665.0, + 278.0, + 688.0, + 242.0, + 688.0 + ], + "score": 1.0, + "text": "138" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 657.0, + 1413.0, + 657.0, + 1413.0, + 693.0, + 292.0, + 693.0 + ], + "score": 0.976, + "text": " architecture to accelerate essential operations for AI applications, especially for on-device inference." + }, + { + "category_id": 15, + "poly": [ + 243.0, + 695.0, + 278.0, + 695.0, + 278.0, + 718.0, + 243.0, + 718.0 + ], + "score": 1.0, + "text": "139" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 687.0, + 1086.0, + 687.0, + 1086.0, + 723.0, + 291.0, + 723.0 + ], + "score": 0.982, + "text": " To summarize,we have three-fold difference from the previous works:" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 746.0, + 1408.0, + 746.0, + 1408.0, + 781.0, + 368.0, + 781.0 + ], + "score": 0.985, + "text": "· Applicability of our methods to DNN with attention mechanism is experimentally proven" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 776.0, + 1409.0, + 776.0, + 1409.0, + 811.0, + 394.0, + 811.0 + ], + "score": 0.993, + "text": "over variety of the models for different AI applications.All previous methods were used" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 808.0, + 1326.0, + 808.0, + 1326.0, + 840.0, + 395.0, + 840.0 + ], + "score": 0.971, + "text": "only for the cases when softmax is the last layer in DNN,and is used for“scoring\"." + }, + { + "category_id": 15, + "poly": [ + 385.0, + 848.0, + 1408.0, + 848.0, + 1408.0, + 883.0, + 385.0, + 883.0 + ], + "score": 0.992, + "text": "No divider is needed to fully implement the method. Moreover, for 2D LUT method even" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 883.0, + 1406.0, + 883.0, + 1406.0, + 911.0, + 397.0, + 911.0 + ], + "score": 0.986, + "text": "multiplier is not needed.Thus, hardware overhead is minimal,and is almost free if used in" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 911.0, + 769.0, + 911.0, + 769.0, + 943.0, + 397.0, + 943.0 + ], + "score": 0.992, + "text": "the DRAM-based AI accelerator." + }, + { + "category_id": 15, + "poly": [ + 392.0, + 953.0, + 1408.0, + 953.0, + 1408.0, + 989.0, + 392.0, + 989.0 + ], + "score": 0.986, + "text": "Our solutions utilize integer precision, what makes it compatible with traditional HW" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 985.0, + 1407.0, + 985.0, + 1407.0, + 1017.0, + 395.0, + 1017.0 + ], + "score": 0.984, + "text": "accelerators used for matrix multiplication,and simplify the integration of methods into full" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1016.0, + 1103.0, + 1016.0, + 1103.0, + 1051.0, + 394.0, + 1051.0 + ], + "score": 0.986, + "text": " system (all prior methods are based on a fixed point precision)." + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1376.0, + 1405.0, + 1376.0, + 1405.0, + 1412.0, + 296.0, + 1412.0 + ], + "score": 0.993, + "text": "In this subsection we consider the method,which is based on the normalization of reciprocal" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1408.0, + 923.0, + 1408.0, + 923.0, + 1443.0, + 294.0, + 1443.0 + ], + "score": 0.99, + "text": "exponentiation, and hereafter we call it REXP for short." + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1642.0, + 1409.0, + 1642.0, + 1409.0, + 1678.0, + 242.0, + 1678.0 + ], + "score": 0.985, + "text": "159And thus,the final value of softmax can be obtained by reading from a simple LUT-table. Content of" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1673.0, + 691.0, + 1673.0, + 691.0, + 1709.0, + 235.0, + 1709.0 + ], + "score": 0.985, + "text": " 160LUT is computed as shown below:" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1452.0, + 1407.0, + 1452.0, + 1407.0, + 1491.0, + 245.0, + 1491.0 + ], + "score": 0.985, + "text": "157The original reciprocal exponentiation method was proposed in [28], where they used the inverse" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1484.0, + 1180.0, + 1484.0, + 1180.0, + 1520.0, + 238.0, + 1520.0 + ], + "score": 0.986, + "text": " I58way of max-normalization and the reciprocal of exponential function as below:" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1839.0, + 373.0, + 1839.0, + 373.0, + 1879.0, + 236.0, + 1879.0 + ], + "score": 1.0, + "text": "161where" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1839.0, + 868.0, + 1839.0, + 868.0, + 1879.0, + 399.0, + 1879.0 + ], + "score": 0.981, + "text": "is a number of bits for quantization, and" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1839.0, + 1407.0, + 1839.0, + 1407.0, + 1879.0, + 1094.0, + 1879.0 + ], + "score": 0.985, + "text": " is an efficient quantization" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1874.0, + 417.0, + 1874.0, + 417.0, + 1911.0, + 236.0, + 1911.0 + ], + "score": 1.0, + "text": "162boundary." + }, + { + "category_id": 15, + "poly": [ + 244.0, + 1915.0, + 1371.0, + 1915.0, + 1371.0, + 1959.0, + 244.0, + 1959.0 + ], + "score": 0.994, + "text": "63In addition to very low computational complexity, this method has other desired properties [28]:" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1971.0, + 543.0, + 1971.0, + 543.0, + 2018.0, + 367.0, + 2018.0 + ], + "score": 0.984, + "text": "· it is positive" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1971.0, + 857.0, + 1971.0, + 857.0, + 2018.0, + 843.0, + 2018.0 + ], + "score": 0.634, + "text": "·," + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 242, + 1302, + 1406, + 1302, + 1406, + 1426, + 242, + 1426 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 243, + 306, + 1409, + 306, + 1409, + 429, + 243, + 429 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 649, + 663, + 1054, + 663, + 1054, + 735, + 649, + 735 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 242, + 442, + 1407, + 442, + 1407, + 629, + 242, + 629 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 242, + 1439, + 1407, + 1439, + 1407, + 1594, + 242, + 1594 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 548, + 866, + 1153, + 866, + 1153, + 940, + 548, + 940 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 571, + 1085, + 1132, + 1085, + 1132, + 1161, + 571, + 1161 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 243, + 956, + 1406, + 956, + 1406, + 1050, + 243, + 1050 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 277, + 1606, + 1407, + 1606, + 1407, + 1883, + 277, + 1883 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 249, + 1179, + 1173, + 1179, + 1173, + 1215, + 249, + 1215 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 272, + 1895, + 1398, + 1895, + 1398, + 1958, + 272, + 1958 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 243, + 798, + 1409, + 798, + 1409, + 834, + 243, + 834 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 242, + 749, + 910, + 749, + 910, + 786, + 242, + 786 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1368, + 684, + 1403, + 684, + 1403, + 714, + 1368, + 714 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 268, + 1246, + 599, + 1246, + 599, + 1281, + 268, + 1281 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1369, + 893, + 1402, + 893, + 1402, + 923, + 1369, + 923 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1107, + 1403, + 1107, + 1403, + 1138, + 1368, + 1138 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 842, + 2064, + 860, + 2064, + 860, + 2088, + 842, + 2088 + ], + "score": 0.798 + }, + { + "category_id": 2, + "poly": [ + 322, + 1979, + 1363, + 1979, + 1363, + 2010, + 322, + 2010 + ], + "score": 0.694 + }, + { + "category_id": 1, + "poly": [ + 369, + 199, + 861, + 199, + 861, + 288, + 369, + 288 + ], + "score": 0.599 + }, + { + "category_id": 8, + "poly": [ + 369, + 199, + 861, + 199, + 861, + 288, + 369, + 288 + ], + "score": 0.249 + }, + { + "category_id": 1, + "poly": [ + 322, + 1979, + 1363, + 1979, + 1363, + 2010, + 322, + 2010 + ], + "score": 0.191 + }, + { + "category_id": 14, + "poly": [ + 648, + 661, + 1055, + 661, + 1055, + 731, + 648, + 731 + ], + "score": 0.95, + "latex": "\\sigma ( x _ { i } ) = \\frac { \\sigma ^ { * } ( x _ { i } ) } { P D F n o r m } \\sigma ^ { * } ( x _ { i } ) \\cdot \\alpha" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1502, + 1257, + 1502, + 1257, + 1534, + 1136, + 1534 + ], + "score": 0.92, + "latex": "e ^ { x } \\in ( 0 , 1 ]" + }, + { + "category_id": 14, + "poly": [ + 570, + 1083, + 1133, + 1083, + 1133, + 1162, + 570, + 1162 + ], + "score": 0.92, + "latex": "L U T _ { \\alpha } [ j ] = \\left\\lfloor \\frac { 1 } { j } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil , \\forall j = 0 , 1 , . . . , x _ { s } - 1" + }, + { + "category_id": 13, + "poly": [ + 996, + 1180, + 1166, + 1180, + 1166, + 1215, + 996, + 1215 + ], + "score": 0.92, + "latex": "L U T _ { \\alpha } [ x _ { s } ] = 0" + }, + { + "category_id": 14, + "poly": [ + 549, + 865, + 1152, + 865, + 1152, + 940, + 549, + 940 + ], + "score": 0.92, + "latex": "\\sigma ( x _ { i } ) = \\frac { e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) } } { e ^ { m a x \\left( x \\right) - x _ { i } } } = \\frac { 1 } { e ^ { m a x \\left( x \\right) - x _ { i } } } \\cdot e ^ { - l n \\left( \\Sigma \\sigma ^ { * } \\left( x _ { i } \\right) \\right) }" + }, + { + "category_id": 13, + "poly": [ + 429, + 1501, + 651, + 1501, + 651, + 1535, + 429, + 1535 + ], + "score": 0.92, + "latex": "x ( x - \\operatorname* { m a x } ( { \\bar { x } } ) ) )" + }, + { + "category_id": 13, + "poly": [ + 550, + 503, + 693, + 503, + 693, + 538, + 550, + 538 + ], + "score": 0.91, + "latex": "\\textstyle { \\int } P D F = { \\mathrm { \\hat { 1 } } }" + }, + { + "category_id": 13, + "poly": [ + 628, + 200, + 850, + 200, + 850, + 241, + 628, + 241 + ], + "score": 0.91, + "latex": "\\frac { 1 } { e ^ { m a x ( x ) - x _ { i } } } \\in ( 0 , 1 ] )" + }, + { + "category_id": 13, + "poly": [ + 372, + 750, + 577, + 750, + 577, + 782, + 372, + 782 + ], + "score": 0.91, + "latex": "\\alpha = e ^ { - l n \\left( \\Sigma \\sigma ^ { \\ast } \\left( x _ { i } \\right) \\right) }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1181, + 520, + 1181, + 520, + 1214, + 373, + 1214 + ], + "score": 0.91, + "latex": "j = \\Sigma \\sigma ^ { * } ( x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 560, + 248, + 698, + 248, + 698, + 288, + 560, + 288 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { ( \\frac { 1 } { e ^ { \\alpha x } } \\ne \\alpha \\frac { 1 } { e ^ { x } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1442, + 1215, + 1442, + 1215, + 1469, + 1166, + 1469 + ], + "score": 0.88, + "latex": "\\Sigma e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 810, + 1699, + 859, + 1699, + 859, + 1727, + 810, + 1727 + ], + "score": 0.87, + "latex": "\\Sigma e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 864, + 1503, + 893, + 1503, + 893, + 1529, + 864, + 1529 + ], + "score": 0.87, + "latex": "e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 638, + 1533, + 687, + 1533, + 687, + 1560, + 638, + 1560 + ], + "score": 0.87, + "latex": "\\Sigma e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 879, + 1902, + 907, + 1902, + 907, + 1923, + 879, + 1923 + ], + "score": 0.87, + "latex": "e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1443, + 1114, + 1443, + 1114, + 1468, + 1085, + 1468 + ], + "score": 0.86, + "latex": "e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1640, + 1321, + 1640, + 1321, + 1666, + 1292, + 1666 + ], + "score": 0.86, + "latex": "e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1372, + 1852, + 1400, + 1852, + 1400, + 1878, + 1372, + 1878 + ], + "score": 0.86, + "latex": "e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1273, + 1670, + 1303, + 1670, + 1303, + 1696, + 1273, + 1696 + ], + "score": 0.85, + "latex": "e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 399, + 1852, + 428, + 1852, + 428, + 1878, + 399, + 1878 + ], + "score": 0.85, + "latex": "e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 531, + 1185, + 562, + 1185, + 562, + 1212, + 531, + 1212 + ], + "score": 0.76, + "latex": "x _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1538, + 1160, + 1538, + 1160, + 1559, + 1141, + 1559 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 687, + 1857, + 705, + 1857, + 705, + 1878, + 687, + 1878 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1245.0, + 602.0, + 1245.0, + 602.0, + 1283.0, + 257.0, + 1283.0 + ], + "score": 0.985, + "text": ";4.22-Dimensional LUT" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2062.0, + 862.0, + 2062.0, + 862.0, + 2094.0, + 841.0, + 2094.0 + ], + "score": 1.0, + "text": "5" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1973.0, + 1365.0, + 1973.0, + 1365.0, + 2015.0, + 330.0, + 2015.0 + ], + "score": 0.978, + "text": "3Other hardware realization are also possible, but not considered here for simplicity of the explanation." + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1309.0, + 278.0, + 1309.0, + 278.0, + 1335.0, + 241.0, + 1335.0 + ], + "score": 1.0, + "text": "184" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1304.0, + 1409.0, + 1304.0, + 1409.0, + 1339.0, + 295.0, + 1339.0 + ], + "score": 0.994, + "text": "In this subsection we propose another method which is based on the substitution of a division" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1340.0, + 279.0, + 1340.0, + 279.0, + 1367.0, + 241.0, + 1367.0 + ], + "score": 1.0, + "text": "185" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1335.0, + 1407.0, + 1335.0, + 1407.0, + 1367.0, + 293.0, + 1367.0 + ], + "score": 0.986, + "text": "operation in Eq.(2) by 2-Dimensional (2D) LUT to speed-up and simplify the computation, while" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1368.0, + 280.0, + 1368.0, + 280.0, + 1399.0, + 239.0, + 1399.0 + ], + "score": 1.0, + "text": "186" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1363.0, + 1407.0, + 1363.0, + 1407.0, + 1399.0, + 293.0, + 1399.0 + ], + "score": 0.991, + "text": "maintaining accuracy even for attention-based DNN models. Hereafter we willrefer to this method" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1400.0, + 279.0, + 1400.0, + 279.0, + 1427.0, + 241.0, + 1427.0 + ], + "score": 1.0, + "text": "187" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1395.0, + 433.0, + 1395.0, + 433.0, + 1427.0, + 293.0, + 1427.0 + ], + "score": 0.934, + "text": " as 2D LUT." + }, + { + "category_id": 15, + "poly": [ + 242.0, + 312.0, + 277.0, + 312.0, + 277.0, + 338.0, + 242.0, + 338.0 + ], + "score": 1.0, + "text": "167" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 305.0, + 1410.0, + 305.0, + 1410.0, + 344.0, + 291.0, + 344.0 + ], + "score": 0.983, + "text": " But due to its aggressive approximation nature, it can be applied only to simple CV tasks, and if" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 342.0, + 277.0, + 342.0, + 277.0, + 369.0, + 240.0, + 369.0 + ], + "score": 1.0, + "text": "168" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 337.0, + 1409.0, + 337.0, + 1409.0, + 372.0, + 296.0, + 372.0 + ], + "score": 0.985, + "text": "used for attention-based DNN models causes the explosion of accuracy drop (see Appendix A.1 for" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 370.0, + 279.0, + 370.0, + 279.0, + 401.0, + 239.0, + 401.0 + ], + "score": 1.0, + "text": "169" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 363.0, + 1408.0, + 363.0, + 1408.0, + 404.0, + 292.0, + 404.0 + ], + "score": 0.996, + "text": "details). Thus,in this paper we further develop that method to be applicable for wider class of DNN" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 402.0, + 279.0, + 402.0, + 279.0, + 429.0, + 240.0, + 429.0 + ], + "score": 1.0, + "text": "170" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 398.0, + 392.0, + 398.0, + 392.0, + 430.0, + 293.0, + 430.0 + ], + "score": 1.0, + "text": "models." + }, + { + "category_id": 15, + "poly": [ + 241.0, + 450.0, + 276.0, + 450.0, + 276.0, + 474.0, + 241.0, + 474.0 + ], + "score": 1.0, + "text": "171" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 443.0, + 1407.0, + 443.0, + 1407.0, + 475.0, + 293.0, + 475.0 + ], + "score": 0.977, + "text": "During our initial investigations,we have noticed that method described in Eq.( 3) is just scaled" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 478.0, + 279.0, + 478.0, + 279.0, + 507.0, + 239.0, + 507.0 + ], + "score": 1.0, + "text": "172" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 475.0, + 1407.0, + 475.0, + 1407.0, + 507.0, + 295.0, + 507.0 + ], + "score": 0.992, + "text": "version of real softmax. So, we proposed to normalize it with some probability density function" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 509.0, + 278.0, + 509.0, + 278.0, + 538.0, + 239.0, + 538.0 + ], + "score": 1.0, + "text": "173" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 501.0, + 549.0, + 501.0, + 549.0, + 541.0, + 292.0, + 541.0 + ], + "score": 0.984, + "text": "(PDF) scale,such that" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 501.0, + 1411.0, + 501.0, + 1411.0, + 541.0, + 694.0, + 541.0 + ], + "score": 0.976, + "text": ". However, if used straight-forwardly, it would need to involve a" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 539.0, + 279.0, + 539.0, + 279.0, + 568.0, + 239.0, + 568.0 + ], + "score": 1.0, + "text": "174" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 533.0, + 1412.0, + 533.0, + 1412.0, + 570.0, + 293.0, + 570.0 + ], + "score": 0.989, + "text": "division operation, what is strongly un-desirable for devices with constrained computational power." + }, + { + "category_id": 15, + "poly": [ + 241.0, + 571.0, + 279.0, + 571.0, + 279.0, + 596.0, + 241.0, + 596.0 + ], + "score": 1.0, + "text": "175" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 564.0, + 1410.0, + 564.0, + 1410.0, + 600.0, + 293.0, + 600.0 + ], + "score": 0.984, + "text": "Therefore, instead of dividing, we propose to substitute division by multiplication with some PDF" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 602.0, + 279.0, + 602.0, + 279.0, + 626.0, + 241.0, + 626.0 + ], + "score": 1.0, + "text": "176" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 596.0, + 648.0, + 596.0, + 648.0, + 628.0, + 292.0, + 628.0 + ], + "score": 0.999, + "text": "normalizing constant as below:" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1446.0, + 279.0, + 1446.0, + 279.0, + 1471.0, + 241.0, + 1471.0 + ], + "score": 1.0, + "text": "188" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1441.0, + 1084.0, + 1441.0, + 1084.0, + 1474.0, + 295.0, + 1474.0 + ], + "score": 0.994, + "text": "For this purpose,we have started with the estimation of distributions of" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1441.0, + 1165.0, + 1441.0, + 1165.0, + 1474.0, + 1115.0, + 1474.0 + ], + "score": 1.0, + "text": "and" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1441.0, + 1407.0, + 1441.0, + 1407.0, + 1474.0, + 1216.0, + 1474.0 + ], + "score": 0.997, + "text": "terms for typical" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1477.0, + 278.0, + 1477.0, + 278.0, + 1502.0, + 241.0, + 1502.0 + ], + "score": 1.0, + "text": "189" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1467.0, + 1408.0, + 1467.0, + 1408.0, + 1507.0, + 292.0, + 1507.0 + ], + "score": 0.983, + "text": " inference runs. Our investigation showed that if max-based normalization is applied to the input" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1507.0, + 278.0, + 1507.0, + 278.0, + 1532.0, + 241.0, + 1532.0 + ], + "score": 1.0, + "text": "190" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1502.0, + 428.0, + 1502.0, + 428.0, + 1535.0, + 295.0, + 1535.0 + ], + "score": 0.976, + "text": "values (i.e.," + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1502.0, + 863.0, + 1502.0, + 863.0, + 1535.0, + 652.0, + 1535.0 + ], + "score": 0.975, + "text": ", the distribution of" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1502.0, + 1135.0, + 1502.0, + 1135.0, + 1535.0, + 894.0, + 1535.0 + ], + "score": 0.997, + "text": "is stable within range" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1502.0, + 1408.0, + 1502.0, + 1408.0, + 1535.0, + 1258.0, + 1535.0 + ], + "score": 0.997, + "text": "regardless of" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1538.0, + 276.0, + 1538.0, + 276.0, + 1563.0, + 241.0, + 1563.0 + ], + "score": 1.0, + "text": "191" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1530.0, + 637.0, + 1530.0, + 637.0, + 1567.0, + 293.0, + 1567.0 + ], + "score": 0.983, + "text": "the input values, and range of" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1530.0, + 1140.0, + 1530.0, + 1140.0, + 1567.0, + 688.0, + 1567.0 + ], + "score": 0.983, + "text": " term depends on the length of the input" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1530.0, + 1408.0, + 1530.0, + 1408.0, + 1567.0, + 1161.0, + 1567.0 + ], + "score": 0.974, + "text": ". Thus, it allows us to" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1568.0, + 279.0, + 1568.0, + 279.0, + 1594.0, + 241.0, + 1594.0 + ], + "score": 1.0, + "text": "192" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1563.0, + 922.0, + 1563.0, + 922.0, + 1593.0, + 292.0, + 1593.0 + ], + "score": 0.981, + "text": "have stable computation even within small size of LUT." + }, + { + "category_id": 15, + "poly": [ + 243.0, + 964.0, + 280.0, + 964.0, + 280.0, + 987.0, + 243.0, + 987.0 + ], + "score": 0.908, + "text": "179" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 957.0, + 1407.0, + 957.0, + 1407.0, + 991.0, + 285.0, + 991.0 + ], + "score": 0.981, + "text": " Thus, to compute the softmax value it requires just two LUTs of considerably small size, where" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 995.0, + 279.0, + 995.0, + 279.0, + 1018.0, + 242.0, + 1018.0 + ], + "score": 1.0, + "text": "180" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 986.0, + 1409.0, + 986.0, + 1409.0, + 1022.0, + 288.0, + 1022.0 + ], + "score": 0.985, + "text": " content of the first LUT is computed accordingly to Eq.(4), and the second LUT values can be" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1020.0, + 526.0, + 1020.0, + 526.0, + 1052.0, + 240.0, + 1052.0 + ], + "score": 0.997, + "text": "181computed as below:" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1604.0, + 1408.0, + 1604.0, + 1408.0, + 1644.0, + 295.0, + 1644.0 + ], + "score": 0.994, + "text": "Generic architecture and concept of the proposed method for efcient softmax implementation as" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1636.0, + 1291.0, + 1636.0, + 1291.0, + 1674.0, + 294.0, + 1674.0 + ], + "score": 0.965, + "text": " 2D LUT is shown in Figure 1. There are two LUTs used: 1D LUT for approximation of" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1636.0, + 1411.0, + 1636.0, + 1411.0, + 1674.0, + 1322.0, + 1674.0 + ], + "score": 1.0, + "text": "values," + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1670.0, + 1272.0, + 1670.0, + 1272.0, + 1703.0, + 295.0, + 1703.0 + ], + "score": 0.99, + "text": "and 2D LUT for storing softmax output values dependent on the values of numerator" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1670.0, + 1408.0, + 1670.0, + 1408.0, + 1703.0, + 1304.0, + 1703.0 + ], + "score": 0.997, + "text": "(used as" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1699.0, + 809.0, + 1699.0, + 809.0, + 1731.0, + 296.0, + 1731.0 + ], + "score": 0.986, + "text": "the 1-st index in the table),and denominator" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1699.0, + 1407.0, + 1699.0, + 1407.0, + 1731.0, + 860.0, + 1731.0 + ], + "score": 0.987, + "text": "(used as the 2-nd index) of Eq.(2). As it can be" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1727.0, + 1408.0, + 1727.0, + 1408.0, + 1765.0, + 292.0, + 1765.0 + ], + "score": 0.982, + "text": " seen from Figure 1(right),to calculate the indexes for corresponded value in 2D LUT table, only" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1759.0, + 1408.0, + 1759.0, + 1408.0, + 1793.0, + 294.0, + 1793.0 + ], + "score": 0.995, + "text": "most-significant bits (MSB)are needed. Thus,the simplest hardware realization can be done within" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1788.0, + 1408.0, + 1788.0, + 1408.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 0.977, + "text": " wiring only (when MSB bits are directly connected to the appropriate address selectors)3. Also, the" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 1411.0, + 1818.0, + 1411.0, + 1854.0, + 292.0, + 1854.0 + ], + "score": 0.981, + "text": " proposed method can be easily modified to the case where,1-st index of 2D LUT table is calculated" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 398.0, + 1851.0, + 398.0, + 1883.0, + 294.0, + 1883.0 + ], + "score": 0.996, + "text": "not from" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1851.0, + 686.0, + 1851.0, + 686.0, + 1883.0, + 429.0, + 1883.0 + ], + "score": 0.997, + "text": "but directly from input" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1851.0, + 1371.0, + 1851.0, + 1371.0, + 1883.0, + 706.0, + 1883.0 + ], + "score": 0.988, + "text": ". In such case there is no need to store intermediate values of" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1851.0, + 1413.0, + 1851.0, + 1413.0, + 1883.0, + 1401.0, + 1883.0 + ], + "score": 0.93, + "text": ":" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1176.0, + 372.0, + 1176.0, + 372.0, + 1219.0, + 238.0, + 1219.0 + ], + "score": 0.997, + "text": "182where" + }, + { + "category_id": 16, + "poly": [ + 521.0, + 1176.0, + 530.0, + 1176.0, + 530.0, + 1219.0, + 521.0, + 1219.0 + ], + "score": 0.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1176.0, + 995.0, + 1176.0, + 995.0, + 1219.0, + 563.0, + 1219.0 + ], + "score": 0.995, + "text": "is selected quantization boundary, and" + }, + { + "category_id": 16, + "poly": [ + 1167.0, + 1176.0, + 1177.0, + 1176.0, + 1177.0, + 1219.0, + 1167.0, + 1219.0 + ], + "score": 0.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1893.0, + 878.0, + 1893.0, + 878.0, + 1930.0, + 294.0, + 1930.0 + ], + "score": 0.997, + "text": "While the content of 1D LUT for approximation of" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1893.0, + 1405.0, + 1893.0, + 1405.0, + 1930.0, + 908.0, + 1930.0 + ], + "score": 0.986, + "text": " values is straightforward, 2D LUT contains" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1924.0, + 1405.0, + 1924.0, + 1405.0, + 1962.0, + 295.0, + 1962.0 + ], + "score": 0.993, + "text": "the family of linear approximations where each row contains the softmax output scaled according tc" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 795.0, + 1413.0, + 795.0, + 1413.0, + 839.0, + 238.0, + 839.0 + ], + "score": 0.995, + "text": " 178Then final equation to compute softmax approximation by proposed REXP method is shown below:" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 741.0, + 371.0, + 741.0, + 371.0, + 797.0, + 233.0, + 797.0 + ], + "score": 0.948, + "text": " 177where" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 741.0, + 918.0, + 741.0, + 918.0, + 797.0, + 578.0, + 797.0 + ], + "score": 0.998, + "text": "is PDF normalizing constant." + }, + { + "category_id": 15, + "poly": [ + 363.0, + 195.0, + 627.0, + 195.0, + 627.0, + 248.0, + 363.0, + 248.0 + ], + "score": 0.974, + "text": "· bounded and stable (" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 195.0, + 867.0, + 195.0, + 867.0, + 248.0, + 851.0, + 248.0 + ], + "score": 0.71, + "text": ":," + }, + { + "category_id": 15, + "poly": [ + 365.0, + 243.0, + 559.0, + 243.0, + 559.0, + 293.0, + 365.0, + 293.0 + ], + "score": 0.938, + "text": "· and nonlinear" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 243.0, + 717.0, + 243.0, + 717.0, + 293.0, + 699.0, + 293.0 + ], + "score": 0.826, + "text": ")" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1973.0, + 1365.0, + 1973.0, + 1365.0, + 2015.0, + 330.0, + 2015.0 + ], + "score": 0.978, + "text": "3Other hardware realization are also possible, but not considered here for simplicity of the explanation." + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 240, + 1289, + 1407, + 1289, + 1407, + 1507, + 240, + 1507 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 293, + 1618, + 1407, + 1618, + 1407, + 1955, + 293, + 1955 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 292, + 201, + 1401, + 201, + 1401, + 619, + 292, + 619 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 296, + 646, + 1407, + 646, + 1407, + 770, + 296, + 770 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 710, + 1192, + 985, + 1192, + 985, + 1268, + 710, + 1268 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 630, + 966, + 1070, + 966, + 1070, + 1044, + 630, + 1044 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 238, + 866, + 1404, + 866, + 1404, + 931, + 238, + 931 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 721, + 1088, + 975, + 1088, + 975, + 1165, + 721, + 1165 + ], + "score": 0.942 + }, + { + "category_id": 2, + "poly": [ + 335, + 1980, + 691, + 1980, + 691, + 2010, + 335, + 2010 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 241, + 1066, + 370, + 1066, + 370, + 1096, + 241, + 1096 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1355, + 1213, + 1402, + 1213, + 1402, + 1244, + 1355, + 1244 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 251, + 1548, + 696, + 1548, + 696, + 1587, + 251, + 1587 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1111, + 1402, + 1111, + 1402, + 1141, + 1369, + 1141 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1369, + 990, + 1403, + 990, + 1403, + 1019, + 1369, + 1019 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2064, + 861, + 2064, + 861, + 2088, + 841, + 2088 + ], + "score": 0.808 + }, + { + "category_id": 2, + "poly": [ + 238, + 1618, + 278, + 1618, + 278, + 1956, + 238, + 1956 + ], + "score": 0.312 + }, + { + "category_id": 14, + "poly": [ + 628, + 966, + 1073, + 966, + 1073, + 1043, + 628, + 1043 + ], + "score": 0.95, + "latex": "L U T _ { \\sigma } [ i ] [ j ] = \\left\\lfloor \\frac { i \\cdot s c a l e _ { e ^ { x } } } { j \\cdot s c a l e _ { \\Sigma } } \\cdot ( 2 ^ { w } - 1 ) \\right\\rceil" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1413, + 1208, + 1413, + 1208, + 1446, + 1018, + 1446 + ], + "score": 0.92, + "latex": "m a x ( \\Sigma e ^ { x } ) = 6 0" + }, + { + "category_id": 13, + "poly": [ + 1139, + 709, + 1205, + 709, + 1205, + 742, + 1139, + 742 + ], + "score": 0.92, + "latex": "\\sigma ( x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1383, + 1305, + 1383, + 1305, + 1415, + 1180, + 1415 + ], + "score": 0.92, + "latex": "m a x ( \\Sigma e ^ { x } )" + }, + { + "category_id": 13, + "poly": [ + 660, + 1474, + 734, + 1474, + 734, + 1504, + 660, + 1504 + ], + "score": 0.91, + "latex": "L U T _ { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 669, + 1353, + 830, + 1353, + 830, + 1382, + 669, + 1382 + ], + "score": 0.91, + "latex": "s c a l e _ { e ^ { x } } = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 800, + 1444, + 954, + 1444, + 954, + 1474, + 800, + 1474 + ], + "score": 0.91, + "latex": "s c a l e _ { \\Sigma } = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 368, + 1291, + 591, + 1291, + 591, + 1325, + 368, + 1325 + ], + "score": 0.91, + "latex": "x \\to ( x - \\operatorname* { m a x } ( x ) )" + }, + { + "category_id": 14, + "poly": [ + 721, + 1087, + 979, + 1087, + 979, + 1164, + 721, + 1164 + ], + "score": 0.91, + "latex": "i = 0 , . . . , \\left\\lfloor \\frac { m a x ( e ^ { x } ) } { s c a l e _ { e ^ { x } } } \\right\\rceil" + }, + { + "category_id": 13, + "poly": [ + 902, + 1475, + 994, + 1475, + 994, + 1503, + 902, + 1503 + ], + "score": 0.9, + "latex": "1 1 \\times 6 0" + }, + { + "category_id": 13, + "poly": [ + 915, + 1291, + 1099, + 1291, + 1099, + 1325, + 915, + 1325 + ], + "score": 0.9, + "latex": "m a x ( e ^ { x } ) = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 590, + 1384, + 729, + 1384, + 729, + 1414, + 590, + 1414 + ], + "score": 0.9, + "latex": "i = 0 , . . . , 1 0" + }, + { + "category_id": 14, + "poly": [ + 710, + 1190, + 992, + 1190, + 992, + 1268, + 710, + 1268 + ], + "score": 0.9, + "latex": "j = 1 , . . . , \\left\\lfloor \\frac { m a x ( \\Sigma e ^ { x } ) } { s c a l e _ { \\Sigma } } \\right\\rceil" + }, + { + "category_id": 13, + "poly": [ + 883, + 709, + 932, + 709, + 932, + 737, + 883, + 737 + ], + "score": 0.88, + "latex": "\\Sigma e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1241, + 1293, + 1328, + 1293, + 1328, + 1323, + 1241, + 1323 + ], + "score": 0.88, + "latex": "s c a l e _ { e ^ { x } }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 680, + 1403, + 680, + 1403, + 712, + 1374, + 712 + ], + "score": 0.88, + "latex": "e _ { i } ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 936, + 1383, + 1011, + 1383, + 1011, + 1413, + 936, + 1413 + ], + "score": 0.88, + "latex": "L U T _ { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 297, + 869, + 346, + 869, + 346, + 897, + 297, + 897 + ], + "score": 0.85, + "latex": "\\Sigma e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1380, + 872, + 1404, + 872, + 1404, + 896, + 1380, + 896 + ], + "score": 0.51, + "latex": "w" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 198.0, + 359.0, + 198.0, + 359.0, + 228.0, + 325.0, + 228.0 + ], + "score": 0.883, + "text": "x1" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 198.0, + 431.0, + 198.0, + 431.0, + 228.0, + 394.0, + 228.0 + ], + "score": 0.813, + "text": "x2" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 198.0, + 500.0, + 198.0, + 500.0, + 228.0, + 465.0, + 228.0 + ], + "score": 0.898, + "text": "x3" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 213.0, + 639.0, + 213.0, + 639.0, + 233.0, + 540.0, + 233.0 + ], + "score": 0.987, + "text": "*************" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 201.0, + 716.0, + 201.0, + 716.0, + 228.0, + 674.0, + 228.0 + ], + "score": 0.915, + "text": "xn" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 210.0, + 1158.0, + 210.0, + 1158.0, + 236.0, + 1110.0, + 236.0 + ], + "score": 0.999, + "text": "MSB" + }, + { + "category_id": 16, + "poly": [ + 1071.0, + 236.0, + 1081.0, + 236.0, + 1081.0, + 246.0, + 1071.0, + 246.0 + ], + "score": 0.236, + "text": "》" + }, + { + "category_id": 16, + "poly": [ + 334.0, + 243.0, + 350.0, + 243.0, + 350.0, + 261.0, + 334.0, + 261.0 + ], + "score": 0.45, + "text": "V" + }, + { + "category_id": 16, + "poly": [ + 404.0, + 246.0, + 421.0, + 246.0, + 421.0, + 261.0, + 404.0, + 261.0 + ], + "score": 0.265, + "text": "V" + }, + { + "category_id": 16, + "poly": [ + 475.0, + 246.0, + 491.0, + 246.0, + 491.0, + 261.0, + 475.0, + 261.0 + ], + "score": 0.31, + "text": "V" + }, + { + "category_id": 16, + "poly": [ + 687.0, + 244.0, + 704.0, + 244.0, + 704.0, + 261.0, + 687.0, + 261.0 + ], + "score": 0.186, + "text": "W" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 258.0, + 368.0, + 258.0, + 368.0, + 289.0, + 318.0, + 289.0 + ], + "score": 0.998, + "text": "LUT" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 258.0, + 438.0, + 258.0, + 438.0, + 288.0, + 387.0, + 288.0 + ], + "score": 0.999, + "text": "LUT" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 259.0, + 508.0, + 259.0, + 508.0, + 288.0, + 459.0, + 288.0 + ], + "score": 0.999, + "text": "LUT" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 263.0, + 637.0, + 263.0, + 637.0, + 279.0, + 542.0, + 279.0 + ], + "score": 0.979, + "text": "*************" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 257.0, + 721.0, + 257.0, + 721.0, + 289.0, + 670.0, + 289.0 + ], + "score": 0.999, + "text": "LUT" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 253.0, + 1168.0, + 253.0, + 1168.0, + 287.0, + 1098.0, + 287.0 + ], + "score": 0.973, + "text": "1index" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 261.0, + 1295.0, + 261.0, + 1295.0, + 287.0, + 1242.0, + 287.0 + ], + "score": 0.998, + "text": "ignore" + }, + { + "category_id": 16, + "poly": [ + 334.0, + 307.0, + 352.0, + 307.0, + 352.0, + 323.0, + 334.0, + 323.0 + ], + "score": 0.456, + "text": "1" + }, + { + "category_id": 16, + "poly": [ + 404.0, + 307.0, + 421.0, + 307.0, + 421.0, + 323.0, + 404.0, + 323.0 + ], + "score": 0.356, + "text": "Y" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 308.0, + 493.0, + 308.0, + 493.0, + 323.0, + 475.0, + 323.0 + ], + "score": 0.886, + "text": "Y" + }, + { + "category_id": 16, + "poly": [ + 687.0, + 307.0, + 704.0, + 307.0, + 704.0, + 323.0, + 687.0, + 323.0 + ], + "score": 0.29, + "text": "业" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 316.0, + 369.0, + 316.0, + 369.0, + 347.0, + 312.0, + 347.0 + ], + "score": 0.997, + "text": "exp1" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 315.0, + 441.0, + 315.0, + 441.0, + 346.0, + 386.0, + 346.0 + ], + "score": 0.998, + "text": "exp2" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 315.0, + 510.0, + 315.0, + 510.0, + 346.0, + 456.0, + 346.0 + ], + "score": 0.998, + "text": "exp3" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 318.0, + 639.0, + 318.0, + 639.0, + 338.0, + 540.0, + 338.0 + ], + "score": 0.979, + "text": "*************" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 318.0, + 727.0, + 318.0, + 727.0, + 348.0, + 665.0, + 348.0 + ], + "score": 0.995, + "text": "expn" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 325.0, + 1287.0, + 325.0, + 1287.0, + 358.0, + 1122.0, + 358.0 + ], + "score": 0.933, + "text": "exp1 exp2 exp3" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 326.0, + 1401.0, + 326.0, + 1401.0, + 359.0, + 1289.0, + 359.0 + ], + "score": 0.802, + "text": "***exp n" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 346.0, + 863.0, + 346.0, + 863.0, + 402.0, + 766.0, + 402.0 + ], + "score": 0.703, + "text": "(xj)" + }, + { + "category_id": 16, + "poly": [ + 1076.0, + 369.0, + 1124.0, + 369.0, + 1124.0, + 462.0, + 1076.0, + 462.0 + ], + "score": 0.288, + "text": "E" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 378.0, + 1040.0, + 378.0, + 1040.0, + 431.0, + 1015.0, + 431.0 + ], + "score": 0.596, + "text": "aoubi" + }, + { + "category_id": 16, + "poly": [ + 1304.0, + 381.0, + 1321.0, + 381.0, + 1321.0, + 396.0, + 1304.0, + 396.0 + ], + "score": 0.499, + "text": "个" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 389.0, + 700.0, + 389.0, + 700.0, + 437.0, + 498.0, + 437.0 + ], + "score": 0.868, + "text": "Accumulator∑e" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 401.0, + 915.0, + 401.0, + 915.0, + 412.0, + 903.0, + 412.0 + ], + "score": 0.966, + "text": "i" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 475.0, + 370.0, + 475.0, + 370.0, + 516.0, + 315.0, + 516.0 + ], + "score": 0.65, + "text": "LuT" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 475.0, + 440.0, + 475.0, + 440.0, + 516.0, + 384.0, + 516.0 + ], + "score": 0.592, + "text": "LUT" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 467.0, + 512.0, + 467.0, + 512.0, + 517.0, + 455.0, + 517.0 + ], + "score": 0.884, + "text": "新" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 490.0, + 637.0, + 490.0, + 637.0, + 506.0, + 542.0, + 506.0 + ], + "score": 0.915, + "text": "**************" + }, + { + "category_id": 16, + "poly": [ + 666.0, + 464.0, + 728.0, + 464.0, + 728.0, + 520.0, + 666.0, + 520.0 + ], + "score": 0.266, + "text": "新" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 490.0, + 1120.0, + 490.0, + 1120.0, + 510.0, + 1061.0, + 510.0 + ], + "score": 0.988, + "text": "****" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 495.0, + 1153.0, + 495.0, + 1153.0, + 515.0, + 1130.0, + 515.0 + ], + "score": 0.964, + "text": "个" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 497.0, + 1383.0, + 497.0, + 1383.0, + 512.0, + 1367.0, + 512.0 + ], + "score": 0.519, + "text": "Y" + }, + { + "category_id": 16, + "poly": [ + 330.0, + 533.0, + 353.0, + 533.0, + 353.0, + 552.0, + 330.0, + 552.0 + ], + "score": 0.369, + "text": "1" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 536.0, + 422.0, + 536.0, + 422.0, + 551.0, + 404.0, + 551.0 + ], + "score": 0.714, + "text": "Y" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 533.0, + 495.0, + 533.0, + 495.0, + 552.0, + 471.0, + 552.0 + ], + "score": 0.954, + "text": "Y" + }, + { + "category_id": 16, + "poly": [ + 683.0, + 532.0, + 709.0, + 532.0, + 709.0, + 552.0, + 683.0, + 552.0 + ], + "score": 0.372, + "text": "1" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 521.0, + 989.0, + 521.0, + 989.0, + 561.0, + 952.0, + 561.0 + ], + "score": 0.626, + "text": "28" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 503.0, + 1039.0, + 503.0, + 1039.0, + 577.0, + 1009.0, + 577.0 + ], + "score": 0.716, + "text": "xapupu" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 531.0, + 1126.0, + 531.0, + 1126.0, + 574.0, + 1074.0, + 574.0 + ], + "score": 0.916, + "text": "£m" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 542.0, + 357.0, + 542.0, + 357.0, + 572.0, + 325.0, + 572.0 + ], + "score": 0.668, + "text": "o1" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 542.0, + 431.0, + 542.0, + 431.0, + 572.0, + 396.0, + 572.0 + ], + "score": 0.895, + "text": "2" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 542.0, + 501.0, + 542.0, + 501.0, + 571.0, + 466.0, + 571.0 + ], + "score": 0.812, + "text": "3" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 547.0, + 639.0, + 547.0, + 639.0, + 563.0, + 540.0, + 563.0 + ], + "score": 0.828, + "text": "*************" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 547.0, + 714.0, + 547.0, + 714.0, + 569.0, + 676.0, + 569.0 + ], + "score": 0.806, + "text": "on" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 556.0, + 1320.0, + 556.0, + 1320.0, + 572.0, + 1304.0, + 572.0 + ], + "score": 0.776, + "text": "Y" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 597.0, + 676.0, + 597.0, + 676.0, + 620.0, + 362.0, + 620.0 + ], + "score": 0.991, + "text": "Can be speed-up if run in parallel (extra HW cost)" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 331.5, + 943.0, + 331.5, + 943.0, + 362.5, + 877.0, + 362.5 + ], + "score": 0.892, + "text": "et" + }, + { + "category_id": 16, + "poly": [ + 512.0, + 383.5, + 559.0, + 383.5, + 559.0, + 400.5, + 512.0, + 400.5 + ], + "score": 0.315, + "text": "2" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 376.5, + 960.0, + 376.5, + 960.0, + 403.5, + 899.0, + 403.5 + ], + "score": 0.895, + "text": "et" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 647.0, + 1408.0, + 647.0, + 1408.0, + 684.0, + 294.0, + 684.0 + ], + "score": 0.985, + "text": "Figure 1: Generic concept of the proposed 2D LUT method (left). Reading softmax output value" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 678.0, + 1373.0, + 678.0, + 1373.0, + 714.0, + 294.0, + 714.0 + ], + "score": 0.991, + "text": "from pre-computed 2D LUT(right). Computational flow consists from two steps: a) obtaining of" + }, + { + "category_id": 16, + "poly": [ + 1404.0, + 678.0, + 1407.0, + 678.0, + 1407.0, + 714.0, + 1404.0, + 714.0 + ], + "score": 0.728, + "text": "(204" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 706.0, + 882.0, + 706.0, + 882.0, + 748.0, + 291.0, + 748.0 + ], + "score": 0.99, + "text": " values by reading from 1D LUT and accumulation of" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 706.0, + 1138.0, + 706.0, + 1138.0, + 748.0, + 933.0, + 748.0 + ], + "score": 0.997, + "text": "term, b) obtaining" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 706.0, + 1408.0, + 706.0, + 1408.0, + 748.0, + 1206.0, + 748.0 + ], + "score": 0.972, + "text": "values by reading" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 740.0, + 464.0, + 740.0, + 464.0, + 770.0, + 295.0, + 770.0 + ], + "score": 0.984, + "text": "from 2D LUT." + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1977.0, + 694.0, + 1977.0, + 694.0, + 2012.0, + 333.0, + 2012.0 + ], + "score": 0.979, + "text": "4 See more details in Appendix A.3." + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1545.0, + 700.0, + 1545.0, + 700.0, + 1593.0, + 238.0, + 1593.0 + ], + "score": 0.996, + "text": ":145Experimental validation" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 2062.0, + 863.0, + 2062.0, + 863.0, + 2093.0, + 842.0, + 2093.0 + ], + "score": 1.0, + "text": "6" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1625.0, + 280.0, + 1625.0, + 280.0, + 1654.0, + 237.0, + 1654.0 + ], + "score": 1.0, + "text": "215" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1655.0, + 280.0, + 1655.0, + 280.0, + 1684.0, + 237.0, + 1684.0 + ], + "score": 1.0, + "text": "216" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1685.0, + 280.0, + 1685.0, + 280.0, + 1716.0, + 237.0, + 1716.0 + ], + "score": 1.0, + "text": "217" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1716.0, + 280.0, + 1716.0, + 280.0, + 1746.0, + 237.0, + 1746.0 + ], + "score": 1.0, + "text": "218" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1746.0, + 279.0, + 1746.0, + 279.0, + 1776.0, + 237.0, + 1776.0 + ], + "score": 1.0, + "text": "219" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1776.0, + 279.0, + 1776.0, + 279.0, + 1808.0, + 238.0, + 1808.0 + ], + "score": 1.0, + "text": "220" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1807.0, + 278.0, + 1807.0, + 278.0, + 1838.0, + 238.0, + 1838.0 + ], + "score": 1.0, + "text": "221" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1837.0, + 278.0, + 1837.0, + 278.0, + 1868.0, + 239.0, + 1868.0 + ], + "score": 0.898, + "text": "222" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1867.0, + 278.0, + 1867.0, + 278.0, + 1898.0, + 239.0, + 1898.0 + ], + "score": 1.0, + "text": "223" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1899.0, + 277.0, + 1899.0, + 277.0, + 1927.0, + 240.0, + 1927.0 + ], + "score": 1.0, + "text": "224" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1930.0, + 277.0, + 1930.0, + 277.0, + 1956.0, + 240.0, + 1956.0 + ], + "score": 1.0, + "text": "225" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1296.0, + 277.0, + 1296.0, + 277.0, + 1323.0, + 239.0, + 1323.0 + ], + "score": 1.0, + "text": "207" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1291.0, + 367.0, + 1291.0, + 367.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "Since" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1291.0, + 914.0, + 1291.0, + 914.0, + 1326.0, + 592.0, + 1326.0 + ], + "score": 0.972, + "text": "normalization was used, so" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1291.0, + 1240.0, + 1291.0, + 1240.0, + 1326.0, + 1100.0, + 1326.0 + ], + "score": 0.938, + "text": ",Therefore," + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 1291.0, + 1407.0, + 1291.0, + 1407.0, + 1326.0, + 1329.0, + 1326.0 + ], + "score": 1.0, + "text": "factor" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1328.0, + 277.0, + 1328.0, + 277.0, + 1352.0, + 239.0, + 1352.0 + ], + "score": 1.0, + "text": "208" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1322.0, + 1406.0, + 1322.0, + 1406.0, + 1353.0, + 297.0, + 1353.0 + ], + "score": 0.984, + "text": "allows to define the number of columns in LUT to make it small enough for practical applications. In" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1358.0, + 278.0, + 1358.0, + 278.0, + 1386.0, + 238.0, + 1386.0 + ], + "score": 1.0, + "text": "209" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1353.0, + 668.0, + 1353.0, + 668.0, + 1384.0, + 293.0, + 1384.0 + ], + "score": 0.975, + "text": " our experiment we have selected" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1353.0, + 1407.0, + 1353.0, + 1407.0, + 1384.0, + 831.0, + 1384.0 + ], + "score": 0.993, + "text": "for all precisions,what allows us to reduce the size" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1389.0, + 277.0, + 1389.0, + 277.0, + 1413.0, + 239.0, + 1413.0 + ], + "score": 1.0, + "text": "210" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1384.0, + 589.0, + 1384.0, + 589.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 0.984, + "text": "of LUT significantly (i.e.," + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1384.0, + 935.0, + 1384.0, + 935.0, + 1415.0, + 730.0, + 1415.0 + ], + "score": 0.992, + "text": "for all versions of" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1384.0, + 1179.0, + 1384.0, + 1179.0, + 1415.0, + 1012.0, + 1415.0 + ], + "score": 0.925, + "text": "). The value of" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1384.0, + 1407.0, + 1384.0, + 1407.0, + 1415.0, + 1306.0, + 1415.0 + ], + "score": 1.0, + "text": "depends" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1418.0, + 277.0, + 1418.0, + 277.0, + 1445.0, + 238.0, + 1445.0 + ], + "score": 1.0, + "text": "211" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1412.0, + 1017.0, + 1412.0, + 1017.0, + 1446.0, + 293.0, + 1446.0 + ], + "score": 0.988, + "text": " on the distribution of input values. Our experiments showed that" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1412.0, + 1408.0, + 1412.0, + 1408.0, + 1446.0, + 1209.0, + 1446.0 + ], + "score": 0.992, + "text": "is big enough for" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1449.0, + 280.0, + 1449.0, + 280.0, + 1475.0, + 238.0, + 1475.0 + ], + "score": 1.0, + "text": "212" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1444.0, + 799.0, + 1444.0, + 799.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 0.989, + "text": "the tested NLP applications.We also selected" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1444.0, + 1412.0, + 1444.0, + 1412.0, + 1479.0, + 955.0, + 1479.0 + ], + "score": 0.982, + "text": "for simplicity of the computations. Thus," + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1479.0, + 278.0, + 1479.0, + 278.0, + 1506.0, + 239.0, + 1506.0 + ], + "score": 1.0, + "text": "213" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1474.0, + 659.0, + 1474.0, + 659.0, + 1509.0, + 296.0, + 1509.0 + ], + "score": 0.989, + "text": "finally, those parameters give us" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1474.0, + 901.0, + 1474.0, + 901.0, + 1509.0, + 735.0, + 1509.0 + ], + "score": 0.989, + "text": "of typical size" + }, + { + "category_id": 16, + "poly": [ + 995.0, + 1474.0, + 1004.0, + 1474.0, + 1004.0, + 1509.0, + 995.0, + 1509.0 + ], + "score": 0.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1619.0, + 1408.0, + 1619.0, + 1408.0, + 1654.0, + 295.0, + 1654.0 + ], + "score": 0.993, + "text": "To validate the proposed methods and check how well they generalize we have conducted several" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1650.0, + 1408.0, + 1650.0, + 1408.0, + 1685.0, + 295.0, + 1685.0 + ], + "score": 0.994, + "text": "experiments with different models (DETR,Transformer,and BERT) for diferent applications (object" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1680.0, + 1411.0, + 1680.0, + 1411.0, + 1714.0, + 295.0, + 1714.0 + ], + "score": 0.988, + "text": "detection, machine translation,sentiment analysis,and semantic equivalence) over variety of datasets." + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1711.0, + 1411.0, + 1711.0, + 1411.0, + 1746.0, + 295.0, + 1746.0 + ], + "score": 0.99, + "text": "In all those experiments we have used available pre-trained models, where we applied dynamic post-" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1738.0, + 1411.0, + 1738.0, + 1411.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 0.987, + "text": " training quantization (hereafter we referred to quantized models as PTQ-D) 4. Then we substituted a" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1803.0, + 295.0, + 1803.0 + ], + "score": 0.992, + "text": "conventional softmax layer in quantized models with the LUT-based computation as described in" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1801.0, + 1408.0, + 1801.0, + 1408.0, + 1836.0, + 295.0, + 1836.0 + ], + "score": 0.987, + "text": "Section 4. We did not consider any retraining or fine-tuning of the models after quantization, and" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1831.0, + 1408.0, + 1831.0, + 1408.0, + 1865.0, + 294.0, + 1865.0 + ], + "score": 0.989, + "text": " the same off-line generated LUTs were used among all models. Our code allows to select LUTs" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1862.0, + 1408.0, + 1862.0, + 1408.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 0.981, + "text": "with different precision from int16 down to uint2, what allows to analyze the sensitivity of the model" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1895.0, + 1408.0, + 1895.0, + 1408.0, + 1926.0, + 295.0, + 1926.0 + ], + "score": 0.989, + "text": "to softmax approximation even for ultra-low 2-bits quantization. The details of experiments are" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1923.0, + 1408.0, + 1923.0, + 1408.0, + 1958.0, + 295.0, + 1958.0 + ], + "score": 0.973, + "text": "described below,and results are summarized in Figure 2, Figure 3,and Table 2 .For more details" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 862.0, + 296.0, + 862.0, + 296.0, + 906.0, + 239.0, + 906.0 + ], + "score": 1.0, + "text": "204" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 862.0, + 1379.0, + 862.0, + 1379.0, + 906.0, + 347.0, + 906.0 + ], + "score": 0.979, + "text": " term as shown in Eq.(8). The indexes of LUT are computed according to Eq.(9) and Eq.(10)," + }, + { + "category_id": 16, + "poly": [ + 1405.0, + 862.0, + 1408.0, + 862.0, + 1408.0, + 906.0, + 1405.0, + 906.0 + ], + "score": 0.73, + "text": "(20" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 897.0, + 971.0, + 897.0, + 971.0, + 933.0, + 235.0, + 933.0 + ], + "score": 0.99, + "text": " 205means the number of bits for the value in selected precision." + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1063.0, + 373.0, + 1063.0, + 373.0, + 1097.0, + 237.0, + 1097.0 + ], + "score": 1.0, + "text": "206where" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1446, + 1408, + 1446, + 1408, + 1631, + 297, + 1631 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1713, + 1407, + 1713, + 1407, + 1868, + 299, + 1868 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 386, + 1407, + 386, + 1407, + 631, + 297, + 631 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 315, + 862, + 1348, + 862, + 1348, + 1171, + 315, + 1171 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 295, + 645, + 1406, + 645, + 1406, + 798, + 295, + 798 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 296, + 1214, + 1409, + 1214, + 1409, + 1337, + 296, + 1337 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 330, + 1888, + 792, + 1888, + 792, + 2010, + 330, + 2010 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 282, + 202, + 1404, + 202, + 1404, + 295, + 282, + 295 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 296, + 331, + 559, + 331, + 559, + 363, + 296, + 363 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 1661, + 631, + 1661, + 631, + 1694, + 299, + 1694 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 249, + 1390, + 486, + 1390, + 486, + 1422, + 249, + 1422 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 844, + 2064, + 859, + 2064, + 859, + 2087, + 844, + 2087 + ], + "score": 0.779 + }, + { + "category_id": 13, + "poly": [ + 585, + 600, + 659, + 600, + 659, + 631, + 585, + 631 + ], + "score": 0.91, + "latex": "L U T _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 974, + 234, + 1034, + 234, + 1034, + 263, + 974, + 263 + ], + "score": 0.9, + "latex": "1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 720, + 600, + 813, + 600, + 813, + 629, + 720, + 629 + ], + "score": 0.9, + "latex": "1 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 1197, + 600, + 1289, + 600, + 1289, + 629, + 1197, + 629 + ], + "score": 0.9, + "latex": "1 \\times 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 364, + 675, + 447, + 675, + 447, + 706, + 364, + 706 + ], + "score": 0.87, + "latex": "( < 1 \\% )" + }, + { + "category_id": 13, + "poly": [ + 1364, + 1275, + 1405, + 1275, + 1405, + 1305, + 1364, + 1305 + ], + "score": 0.86, + "latex": "1 \\%" + }, + { + "category_id": 13, + "poly": [ + 935, + 600, + 1028, + 600, + 1028, + 630, + 935, + 630 + ], + "score": 0.85, + "latex": "1 \\times 3 2 0" + }, + { + "category_id": 13, + "poly": [ + 1333, + 676, + 1404, + 676, + 1404, + 705, + 1333, + 705 + ], + "score": 0.85, + "latex": "+ \\mathrm { D C } 5" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 863.0, + 370.0, + 863.0, + 370.0, + 889.0, + 336.0, + 889.0 + ], + "score": 0.985, + "text": "101" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 877.0, + 743.0, + 877.0, + 743.0, + 899.0, + 621.0, + 899.0 + ], + "score": 0.987, + "text": "DETR_R50 (int16)" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 877.0, + 1291.0, + 877.0, + 1291.0, + 899.0, + 1168.0, + 899.0 + ], + "score": 0.987, + "text": "DETR_R50 (int16)" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 893.0, + 776.0, + 893.0, + 776.0, + 919.0, + 622.0, + 919.0 + ], + "score": 0.982, + "text": "DETR_DC5_R50 (int16)" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 892.0, + 1325.0, + 892.0, + 1325.0, + 920.0, + 1168.0, + 920.0 + ], + "score": 0.99, + "text": "DETR_DC5_R50(int16)" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 915.0, + 751.0, + 915.0, + 751.0, + 937.0, + 621.0, + 937.0 + ], + "score": 0.969, + "text": "DETR_R101 (int16)" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 914.0, + 1300.0, + 914.0, + 1300.0, + 940.0, + 1167.0, + 940.0 + ], + "score": 0.966, + "text": "DETR_R101 (int16)" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 935.0, + 782.0, + 935.0, + 782.0, + 957.0, + 621.0, + 957.0 + ], + "score": 0.988, + "text": "DETR_DC5_R101 (int16)" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 935.0, + 1331.0, + 935.0, + 1331.0, + 957.0, + 1169.0, + 957.0 + ], + "score": 0.988, + "text": "DETR_DC5_R101 (int16)" + }, + { + "category_id": 16, + "poly": [ + 316.0, + 946.0, + 343.0, + 946.0, + 343.0, + 1072.0, + 316.0, + 1072.0 + ], + "score": 0.276, + "text": "Hrer edebeot" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 953.0, + 744.0, + 953.0, + 744.0, + 978.0, + 621.0, + 978.0 + ], + "score": 0.978, + "text": "DETR_R50 (uint8)" + }, + { + "category_id": 16, + "poly": [ + 861.0, + 945.0, + 888.0, + 945.0, + 888.0, + 1072.0, + 861.0, + 1072.0 + ], + "score": 0.243, + "text": "Hdeg eebeo" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 954.0, + 1291.0, + 954.0, + 1291.0, + 976.0, + 1170.0, + 976.0 + ], + "score": 0.968, + "text": "DETR_R50 (uint8)" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 974.0, + 777.0, + 974.0, + 777.0, + 996.0, + 623.0, + 996.0 + ], + "score": 0.969, + "text": "DETR_DC5_R50 (uint8)" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 974.0, + 1324.0, + 974.0, + 1324.0, + 996.0, + 1170.0, + 996.0 + ], + "score": 0.976, + "text": "DETR_DC5_R50 (uint8)" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 991.0, + 752.0, + 991.0, + 752.0, + 1016.0, + 621.0, + 1016.0 + ], + "score": 0.954, + "text": "DETR_R101 (uint8)" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 993.0, + 1298.0, + 993.0, + 1298.0, + 1015.0, + 1170.0, + 1015.0 + ], + "score": 0.966, + "text": "DETR_R101 (uint8)" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1010.0, + 370.0, + 1010.0, + 370.0, + 1035.0, + 335.0, + 1035.0 + ], + "score": 0.998, + "text": "10" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1013.0, + 784.0, + 1013.0, + 784.0, + 1035.0, + 604.0, + 1035.0 + ], + "score": 0.992, + "text": "DETR_DC5_R101(uint8)" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1009.0, + 914.0, + 1009.0, + 914.0, + 1030.0, + 880.0, + 1030.0 + ], + "score": 0.99, + "text": "10" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1012.0, + 1332.0, + 1012.0, + 1332.0, + 1034.0, + 1149.0, + 1034.0 + ], + "score": 0.984, + "text": "DETR_DC5_R101(uint8)" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1147.0, + 417.0, + 1147.0, + 417.0, + 1170.0, + 364.0, + 1170.0 + ], + "score": 0.996, + "text": "case1" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1147.0, + 608.0, + 1147.0, + 608.0, + 1170.0, + 554.0, + 1170.0 + ], + "score": 0.939, + "text": "case 2" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1147.0, + 798.0, + 1147.0, + 798.0, + 1170.0, + 747.0, + 1170.0 + ], + "score": 0.995, + "text": "case3" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1147.0, + 964.0, + 1147.0, + 964.0, + 1170.0, + 911.0, + 1170.0 + ], + "score": 0.996, + "text": "case1" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1145.0, + 1156.0, + 1145.0, + 1156.0, + 1170.0, + 1102.0, + 1170.0 + ], + "score": 0.934, + "text": "case 2" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1147.0, + 1346.0, + 1147.0, + 1346.0, + 1170.0, + 1293.0, + 1170.0 + ], + "score": 0.996, + "text": "case3" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1215.0, + 1406.0, + 1215.0, + 1406.0, + 1248.0, + 295.0, + 1248.0 + ], + "score": 0.991, + "text": "Figure 2: DETR averaged accuracy drop of PTQ-D models with softmax approximations Vs. original" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 1410.0, + 1243.0, + 1410.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 0.985, + "text": "FP32 models: average precision (left) and average recall(right). As it can be seen from the figure, for" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1274.0, + 1363.0, + 1274.0, + 1363.0, + 1310.0, + 293.0, + 1310.0 + ], + "score": 0.987, + "text": "DETR models without dilation at the last stage (no DC5) the accuracy drop for all cases is below" + }, + { + "category_id": 16, + "poly": [ + 1406.0, + 1274.0, + 1410.0, + 1274.0, + 1410.0, + 1310.0, + 1406.0, + 1310.0 + ], + "score": 0.708, + "text": "(204号" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1307.0, + 668.0, + 1307.0, + 668.0, + 1339.0, + 297.0, + 1339.0 + ], + "score": 0.989, + "text": "and shows very similar behavior." + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1883.0, + 760.0, + 1883.0, + 760.0, + 1925.0, + 329.0, + 1925.0 + ], + "score": 0.983, + "text": "5https://ithub.com/facebookresearch/detr" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1915.0, + 666.0, + 1915.0, + 666.0, + 1953.0, + 329.0, + 1953.0 + ], + "score": 0.995, + "text": "6https://opennmt.net/Models-py/" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1945.0, + 752.0, + 1945.0, + 752.0, + 1985.0, + 329.0, + 1985.0 + ], + "score": 0.986, + "text": "7https://gitub.com/google/sentencepiece" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1977.0, + 793.0, + 1977.0, + 793.0, + 2011.0, + 331.0, + 2011.0 + ], + "score": 0.994, + "text": "8https://github.com/moses-smt/mosesdecoder" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 325.0, + 563.0, + 325.0, + 563.0, + 371.0, + 292.0, + 371.0 + ], + "score": 0.982, + "text": " 5.1 Object detection" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 634.0, + 1657.0, + 634.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "5.2.1Machine Translation" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1385.0, + 490.0, + 1385.0, + 490.0, + 1429.0, + 239.0, + 1429.0 + ], + "score": 0.981, + "text": "2435.2 NLP tasks" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 2062.0, + 861.0, + 2062.0, + 861.0, + 2093.0, + 842.0, + 2093.0 + ], + "score": 1.0, + "text": "7" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1446.0, + 1411.0, + 1446.0, + 1411.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 0.996, + "text": "Next, we have validated the proposed methods by experimenting with several NLP tasks. Similarly," + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1477.0, + 1409.0, + 1477.0, + 1409.0, + 1509.0, + 295.0, + 1509.0 + ], + "score": 0.994, + "text": "to DETR case,Table 8 in Appendix shows the LUTs size for several pre-selected cases for those" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1507.0, + 1411.0, + 1507.0, + 1411.0, + 1541.0, + 292.0, + 1541.0 + ], + "score": 0.989, + "text": "experiments. In Table 2 below there are accumulated values from the experiments with NLP models." + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1535.0, + 1408.0, + 1535.0, + 1408.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 0.994, + "text": "The bold values in the table shows highest values per model per method after applying quantization" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1568.0, + 1406.0, + 1568.0, + 1406.0, + 1600.0, + 296.0, + 1600.0 + ], + "score": 0.98, + "text": "and softmax approximation. As it follows from the analysis of experiment results,about 7Oo Bytes for" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1597.0, + 1406.0, + 1597.0, + 1406.0, + 1634.0, + 294.0, + 1634.0 + ], + "score": 0.967, + "text": "2D LUT method, and up to 50 Bytes for REXP method would be enough for practical applications." + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1745.0, + 298.0, + 1745.0 + ], + "score": 0.985, + "text": "Among NLP tasks we have started with machine translation.For our experiments we have used" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1743.0, + 1408.0, + 1743.0, + 1408.0, + 1780.0, + 296.0, + 1780.0 + ], + "score": 0.989, + "text": "transofmer-base model for En-Ge translation [12] from OpenNMT library, with available pre-trained" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1408.0, + 1773.0, + 1408.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 0.985, + "text": "model 6,configured to replicate the results from original paper. To avoid dependency of the evaluation" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1804.0, + 1409.0, + 1804.0, + 1409.0, + 1840.0, + 293.0, + 1840.0 + ], + "score": 0.978, + "text": "results on the selected tokenization scheme,we have used spm_decode 7to detokenize the output of" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1834.0, + 1229.0, + 1834.0, + 1229.0, + 1872.0, + 296.0, + 1872.0 + ], + "score": 0.973, + "text": "translation,and then applied multi - bleu.perl script 8 to calculate BLEU score." + }, + { + "category_id": 15, + "poly": [ + 294.0, + 385.0, + 1409.0, + 385.0, + 1409.0, + 421.0, + 294.0, + 421.0 + ], + "score": 0.987, + "text": "For our first experiments we have used DEtection TRansofmer (DETR) models for object detection [2]," + }, + { + "category_id": 15, + "poly": [ + 294.0, + 416.0, + 1408.0, + 416.0, + 1408.0, + 450.0, + 294.0, + 450.0 + ], + "score": 0.984, + "text": "with available pre-trained models 5.As it can be seen from Table 6, we were able to reproduce the" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 447.0, + 1408.0, + 447.0, + 1408.0, + 480.0, + 292.0, + 480.0 + ], + "score": 0.985, + "text": " same results for original FP32 reference model over COCO dataset. We have used the same IoU" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 479.0, + 1409.0, + 479.0, + 1409.0, + 512.0, + 295.0, + 512.0 + ], + "score": 0.978, + "text": "metric by Average Precision (AP) as in Table 1 in [2]. Then we run a bunch of experiments to" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 508.0, + 1409.0, + 508.0, + 1409.0, + 542.0, + 295.0, + 542.0 + ], + "score": 0.979, + "text": "check how accuracy of object detection willbe decreased due to PTQ-D quantization and LUT-based" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 538.0, + 1410.0, + 538.0, + 1410.0, + 573.0, + 292.0, + 573.0 + ], + "score": 0.994, + "text": "approximation as proposed in REXP method (see Section 4.1). Table 5 in Appendix shows the LUTs" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 570.0, + 1409.0, + 570.0, + 1409.0, + 601.0, + 292.0, + 601.0 + ], + "score": 0.988, + "text": "size for several pre-selected cases in int16 and uint8 precision. There are three cases selected which" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 601.0, + 584.0, + 601.0, + 584.0, + 631.0, + 296.0, + 631.0 + ], + "score": 0.979, + "text": "are different in the size of" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 601.0, + 719.0, + 601.0, + 719.0, + 631.0, + 660.0, + 631.0 + ], + "score": 0.958, + "text": ": it is" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 601.0, + 934.0, + 601.0, + 934.0, + 631.0, + 814.0, + 631.0 + ], + "score": 0.971, + "text": "for case 1," + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 601.0, + 1196.0, + 601.0, + 1196.0, + 631.0, + 1029.0, + 631.0 + ], + "score": 0.967, + "text": "for case 2,and" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 601.0, + 1410.0, + 601.0, + 1410.0, + 631.0, + 1290.0, + 631.0 + ], + "score": 0.958, + "text": "for case 3." + }, + { + "category_id": 15, + "poly": [ + 295.0, + 644.0, + 1408.0, + 644.0, + 1408.0, + 681.0, + 295.0, + 681.0 + ], + "score": 0.992, + "text": "Analysis of Figure 2 shows that accuracy drop caused by application of softmax approximation is" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 674.0, + 363.0, + 674.0, + 363.0, + 711.0, + 295.0, + 711.0 + ], + "score": 0.996, + "text": "small" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 674.0, + 1332.0, + 674.0, + 1332.0, + 711.0, + 448.0, + 711.0 + ], + "score": 0.993, + "text": "and acceptable for plain DETR models (no DC5 used). Bigger accuracy drop for" + }, + { + "category_id": 16, + "poly": [ + 1405.0, + 674.0, + 1408.0, + 674.0, + 1408.0, + 711.0, + 1405.0, + 711.0 + ], + "score": 0.683, + "text": "(204号" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 706.0, + 1408.0, + 706.0, + 1408.0, + 740.0, + 293.0, + 740.0 + ], + "score": 0.983, + "text": "cases is caused by the bigger size of self-atentions of the encoder (see details in Section 5.3). We" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 735.0, + 1409.0, + 735.0, + 1409.0, + 773.0, + 293.0, + 773.0 + ], + "score": 0.986, + "text": " expect that increasing size ofLUTs will help to solve this issue. The behavior of average recall values" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 769.0, + 719.0, + 769.0, + 719.0, + 802.0, + 295.0, + 802.0 + ], + "score": 0.999, + "text": "is similar to average precision values." + }, + { + "category_id": 15, + "poly": [ + 294.0, + 201.0, + 1408.0, + 201.0, + 1408.0, + 239.0, + 294.0, + 239.0 + ], + "score": 0.986, + "text": " please refer to Table 6,and Table 7 in Appendix.As it can be seen from figures, proposed LUT-based" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 233.0, + 973.0, + 233.0, + 973.0, + 270.0, + 294.0, + 270.0 + ], + "score": 0.987, + "text": " softmax computation methods maintain accuracy drop below" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 233.0, + 1408.0, + 233.0, + 1408.0, + 270.0, + 1035.0, + 270.0 + ], + "score": 0.998, + "text": "down to 8-bit quantization for all" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 265.0, + 686.0, + 265.0, + 686.0, + 296.0, + 296.0, + 296.0 + ], + "score": 0.977, + "text": "NLP and DETR (no DC5) models." + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 240, + 681, + 1408, + 681, + 1408, + 897, + 240, + 897 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 295, + 1566, + 1408, + 1566, + 1408, + 1750, + 295, + 1750 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 331, + 960, + 1345, + 960, + 1345, + 1284, + 331, + 1284 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 296, + 1312, + 1409, + 1312, + 1409, + 1465, + 296, + 1465 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 325, + 1919, + 1018, + 1919, + 1018, + 2010, + 325, + 2010 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 281, + 1834, + 1401, + 1834, + 1401, + 1897, + 281, + 1897 + ], + "score": 0.943 + }, + { + "category_id": 6, + "poly": [ + 442, + 213, + 1258, + 213, + 1258, + 245, + 442, + 245 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 1783, + 640, + 1783, + 640, + 1815, + 299, + 1815 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 297, + 1515, + 605, + 1515, + 605, + 1547, + 297, + 1547 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 842, + 2064, + 859, + 2064, + 859, + 2088, + 842, + 2088 + ], + "score": 0.836 + }, + { + "category_id": 2, + "poly": [ + 239, + 1561, + 279, + 1561, + 279, + 1891, + 239, + 1891 + ], + "score": 0.242 + }, + { + "category_id": 13, + "poly": [ + 1316, + 1373, + 1358, + 1373, + 1358, + 1403, + 1316, + 1403 + ], + "score": 0.88, + "latex": "1 \\%" + }, + { + "category_id": 13, + "poly": [ + 457, + 803, + 560, + 803, + 560, + 835, + 457, + 835 + ], + "score": 0.87, + "latex": "( < 0 . { \\bar { 5 } } \\% )" + }, + { + "category_id": 13, + "poly": [ + 1059, + 1866, + 1115, + 1866, + 1115, + 1895, + 1059, + 1895 + ], + "score": 0.85, + "latex": "32 \\%" + }, + { + "category_id": 13, + "poly": [ + 894, + 1866, + 950, + 1866, + 950, + 1895, + 894, + 1895 + ], + "score": 0.85, + "latex": "6 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1317, + 1025, + 1317, + 1025, + 1340, + 1002, + 1340 + ], + "score": 0.77, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 677, + 1347, + 701, + 1347, + 701, + 1371, + 677, + 1371 + ], + "score": 0.77, + "latex": "^ +" + }, + { + "category_id": 5, + "poly": [ + 315, + 256, + 1381, + 256, + 1381, + 613, + 315, + 613 + ], + "score": 0.927, + "html": "
PRECISIONTRANSFORMERBERT
2D LUTREXP2D LUTREXP
WMT 2014WMT 2017WMT 2014WMT 2017SST-2MRPCSST-2MRPC
FP32(BLEU) 26.98(BLEU) 28.09(BLEU) 26.98(BLEU) 28.09(%) 92.32(F1) 90.19(%) 92.32(F1) 90.19
PTQ-D26.8627.9526.8627.9591.7489.5391.7489.53
INT1626.8728.0226.8927.6491.6389.5091.7489.26
UINT826.7627.926.827.6691.6389.3591.1789.34
UINT426.2627.4326.6828.0291.4088.0191.1788.77
UINT224.4225.0625.2925.8689.2256.6791.6386.12
" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 962.0, + 367.0, + 962.0, + 367.0, + 979.0, + 352.0, + 979.0 + ], + "score": 1.0, + "text": "5" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 962.0, + 913.0, + 962.0, + 913.0, + 979.0, + 900.0, + 979.0 + ], + "score": 1.0, + "text": "5" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 975.0, + 518.0, + 975.0, + 518.0, + 998.0, + 412.0, + 998.0 + ], + "score": 0.999, + "text": "WMT14_2DLUT" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 975.0, + 1065.0, + 975.0, + 1065.0, + 998.0, + 959.0, + 998.0 + ], + "score": 0.999, + "text": "WMT14_2DLUT" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 992.0, + 519.0, + 992.0, + 519.0, + 1018.0, + 412.0, + 1018.0 + ], + "score": 0.999, + "text": "WMT17_2DLUT" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 992.0, + 1065.0, + 992.0, + 1065.0, + 1018.0, + 959.0, + 1018.0 + ], + "score": 0.999, + "text": "WMT17_2DLUT" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1014.0, + 368.0, + 1014.0, + 368.0, + 1029.0, + 352.0, + 1029.0 + ], + "score": 1.0, + "text": "4" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1014.0, + 511.0, + 1014.0, + 511.0, + 1036.0, + 412.0, + 1036.0 + ], + "score": 0.999, + "text": "WMT14_REXP" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1012.0, + 915.0, + 1012.0, + 915.0, + 1029.0, + 900.0, + 1029.0 + ], + "score": 1.0, + "text": "4" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1012.0, + 1057.0, + 1012.0, + 1057.0, + 1036.0, + 960.0, + 1036.0 + ], + "score": 0.999, + "text": "WMT14_REXP" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1033.0, + 510.0, + 1033.0, + 510.0, + 1056.0, + 412.0, + 1056.0 + ], + "score": 1.0, + "text": "WMT17_REXP" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1032.0, + 1056.0, + 1032.0, + 1056.0, + 1056.0, + 960.0, + 1056.0 + ], + "score": 1.0, + "text": "WMT17_REXP" + }, + { + "category_id": 16, + "poly": [ + 331.0, + 1045.0, + 370.0, + 1045.0, + 370.0, + 1171.0, + 331.0, + 1171.0 + ], + "score": 0.356, + "text": "eg recot" + }, + { + "category_id": 16, + "poly": [ + 384.0, + 1052.0, + 407.0, + 1052.0, + 407.0, + 1094.0, + 384.0, + 1094.0 + ], + "score": 0.234, + "text": "+" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1051.0, + 506.0, + 1051.0, + 506.0, + 1094.0, + 412.0, + 1094.0 + ], + "score": 0.896, + "text": "SST2_2DLUT" + }, + { + "category_id": 16, + "poly": [ + 877.0, + 1046.0, + 913.0, + 1046.0, + 913.0, + 1172.0, + 877.0, + 1172.0 + ], + "score": 0.308, + "text": "re cecot" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1050.0, + 955.0, + 1050.0, + 955.0, + 1075.0, + 932.0, + 1075.0 + ], + "score": 0.705, + "text": "+" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1051.0, + 1054.0, + 1051.0, + 1054.0, + 1094.0, + 960.0, + 1094.0 + ], + "score": 0.873, + "text": "SST2_2DLUT" + }, + { + "category_id": 16, + "poly": [ + 1315.0, + 1049.0, + 1323.0, + 1049.0, + 1323.0, + 1058.0, + 1315.0, + 1058.0 + ], + "score": 0.453, + "text": "C" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1091.0, + 495.0, + 1091.0, + 495.0, + 1114.0, + 412.0, + 1114.0 + ], + "score": 0.999, + "text": "SST2_REXP" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1089.0, + 1042.0, + 1089.0, + 1042.0, + 1114.0, + 960.0, + 1114.0 + ], + "score": 0.998, + "text": "SST2_REXP" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1115.0, + 368.0, + 1115.0, + 368.0, + 1136.0, + 351.0, + 1136.0 + ], + "score": 1.0, + "text": "2" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1110.0, + 499.0, + 1110.0, + 499.0, + 1133.0, + 411.0, + 1133.0 + ], + "score": 1.0, + "text": "MRPC_REXP" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1117.0, + 912.0, + 1117.0, + 912.0, + 1135.0, + 898.0, + 1135.0 + ], + "score": 1.0, + "text": "2" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1109.0, + 1043.0, + 1109.0, + 1043.0, + 1132.0, + 958.0, + 1132.0 + ], + "score": 0.999, + "text": "MRPC_REXP" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1169.0, + 366.0, + 1169.0, + 366.0, + 1186.0, + 353.0, + 1186.0 + ], + "score": 0.999, + "text": "1" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1171.0, + 910.0, + 1171.0, + 910.0, + 1185.0, + 901.0, + 1185.0 + ], + "score": 0.99, + "text": "1" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1221.0, + 367.0, + 1221.0, + 367.0, + 1238.0, + 353.0, + 1238.0 + ], + "score": 0.997, + "text": "0" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1221.0, + 913.0, + 1221.0, + 913.0, + 1238.0, + 900.0, + 1238.0 + ], + "score": 0.998, + "text": "0" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1214.0, + 1040.0, + 1214.0, + 1040.0, + 1233.0, + 1026.0, + 1233.0 + ], + "score": 0.571, + "text": "+" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1245.0, + 416.0, + 1245.0, + 416.0, + 1269.0, + 366.0, + 1269.0 + ], + "score": 0.997, + "text": "PTQ-D" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1244.0, + 508.0, + 1244.0, + 508.0, + 1268.0, + 464.0, + 1268.0 + ], + "score": 0.999, + "text": "int16" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1244.0, + 604.0, + 1244.0, + 604.0, + 1269.0, + 558.0, + 1269.0 + ], + "score": 1.0, + "text": "uint8" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1244.0, + 699.0, + 1244.0, + 699.0, + 1268.0, + 655.0, + 1268.0 + ], + "score": 1.0, + "text": "uint4" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1246.0, + 793.0, + 1246.0, + 793.0, + 1267.0, + 751.0, + 1267.0 + ], + "score": 0.999, + "text": "uint2" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1245.0, + 963.0, + 1245.0, + 963.0, + 1269.0, + 913.0, + 1269.0 + ], + "score": 0.997, + "text": "PTQ-D" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1244.0, + 1056.0, + 1244.0, + 1056.0, + 1268.0, + 1011.0, + 1268.0 + ], + "score": 0.999, + "text": "int16" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1244.0, + 1150.0, + 1244.0, + 1150.0, + 1266.0, + 1104.0, + 1266.0 + ], + "score": 0.998, + "text": "uint8" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1244.0, + 1246.0, + 1244.0, + 1246.0, + 1268.0, + 1201.0, + 1268.0 + ], + "score": 0.999, + "text": "uint4" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1245.0, + 1340.0, + 1245.0, + 1340.0, + 1269.0, + 1296.0, + 1269.0 + ], + "score": 0.999, + "text": "uint2" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1264.0, + 614.0, + 1264.0, + 614.0, + 1285.0, + 549.0, + 1285.0 + ], + "score": 0.997, + "text": "Precision" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1264.0, + 1161.0, + 1264.0, + 1161.0, + 1285.0, + 1096.0, + 1285.0 + ], + "score": 0.997, + "text": "Precision" + }, + { + "category_id": 16, + "poly": [ + 925.75, + 1065.5, + 958.75, + 1065.5, + 958.75, + 1092.5, + 925.75, + 1092.5 + ], + "score": 0.194, + "text": "?" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1001.0, + 1311.0, + 1001.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 0.992, + "text": "Figure 3: Accuracy drop for NLP experiments: PTQ-D models" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1311.0, + 1408.0, + 1311.0, + 1408.0, + 1348.0, + 1026.0, + 1348.0 + ], + "score": 0.991, + "text": "softmax approximations vs. FP32" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1344.0, + 676.0, + 1344.0, + 676.0, + 1377.0, + 295.0, + 1377.0 + ], + "score": 0.987, + "text": "models (left),and PTQ-D models" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1344.0, + 1408.0, + 1344.0, + 1408.0, + 1377.0, + 702.0, + 1377.0 + ], + "score": 0.978, + "text": "softmax approximations vs. plain PTQ-D models (right). As it" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1374.0, + 1315.0, + 1374.0, + 1315.0, + 1407.0, + 295.0, + 1407.0 + ], + "score": 0.983, + "text": "can be seen from the figure,down to uint8 precision the accuracy drop for all cases is below" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1374.0, + 1407.0, + 1374.0, + 1407.0, + 1407.0, + 1359.0, + 1407.0 + ], + "score": 1.0, + "text": "and" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1399.0, + 1410.0, + 1399.0, + 1410.0, + 1443.0, + 292.0, + 1443.0 + ], + "score": 0.99, + "text": " shows very similar behavior. This confirm very good generalization of the proposed method over" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1435.0, + 679.0, + 1435.0, + 679.0, + 1468.0, + 297.0, + 1468.0 + ], + "score": 0.996, + "text": "different models and applications." + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1915.0, + 795.0, + 1915.0, + 795.0, + 1954.0, + 330.0, + 1954.0 + ], + "score": 0.996, + "text": "9https://github.com/huggingface/transformers" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1940.0, + 746.0, + 1940.0, + 746.0, + 1988.0, + 320.0, + 1988.0 + ], + "score": 0.878, + "text": "10https://githubcom/googleresearchbert" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1971.0, + 1021.0, + 1971.0, + 1021.0, + 2017.0, + 320.0, + 2017.0 + ], + "score": 0.951, + "text": "11ttps://www.microsoft.com/en-us/download/detailsaspx?id=52398" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 210.0, + 1262.0, + 210.0, + 1262.0, + 249.0, + 442.0, + 249.0 + ], + "score": 0.988, + "text": "Table 2: Experimental validation over different NLP models and datasets" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1777.0, + 643.0, + 1777.0, + 643.0, + 1822.0, + 293.0, + 1822.0 + ], + "score": 0.99, + "text": " 5.2.3Semantic equivalence" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1512.0, + 609.0, + 1512.0, + 609.0, + 1552.0, + 295.0, + 1552.0 + ], + "score": 0.999, + "text": "5.2.2Sentiment analysis" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2061.0, + 861.0, + 2061.0, + 861.0, + 2092.0, + 841.0, + 2092.0 + ], + "score": 1.0, + "text": "8" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1572.0, + 279.0, + 1572.0, + 279.0, + 1604.0, + 238.0, + 1604.0 + ], + "score": 0.994, + "text": "264" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1602.0, + 279.0, + 1602.0, + 279.0, + 1634.0, + 238.0, + 1634.0 + ], + "score": 1.0, + "text": "265" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1633.0, + 279.0, + 1633.0, + 279.0, + 1664.0, + 238.0, + 1664.0 + ], + "score": 1.0, + "text": "266" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1663.0, + 279.0, + 1663.0, + 279.0, + 1696.0, + 238.0, + 1696.0 + ], + "score": 1.0, + "text": "267" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1694.0, + 279.0, + 1694.0, + 279.0, + 1726.0, + 238.0, + 1726.0 + ], + "score": 1.0, + "text": "268" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1723.0, + 280.0, + 1723.0, + 280.0, + 1760.0, + 237.0, + 1760.0 + ], + "score": 1.0, + "text": "269" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1788.0, + 279.0, + 1788.0, + 279.0, + 1821.0, + 237.0, + 1821.0 + ], + "score": 1.0, + "text": "270" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1840.0, + 278.0, + 1840.0, + 278.0, + 1874.0, + 238.0, + 1874.0 + ], + "score": 1.0, + "text": "271" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1869.0, + 281.0, + 1869.0, + 281.0, + 1905.0, + 236.0, + 1905.0 + ], + "score": 1.0, + "text": "272" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 687.0, + 277.0, + 687.0, + 277.0, + 713.0, + 239.0, + 713.0 + ], + "score": 1.0, + "text": "256" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 1408.0, + 680.0, + 1408.0, + 716.0, + 293.0, + 716.0 + ], + "score": 0.992, + "text": "Thus,as it can be seen from Table 2, we were able to reproduce the same BLEU score for FP32" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 717.0, + 277.0, + 717.0, + 277.0, + 744.0, + 239.0, + 744.0 + ], + "score": 1.0, + "text": "257" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 710.0, + 1409.0, + 710.0, + 1409.0, + 747.0, + 293.0, + 747.0 + ], + "score": 0.994, + "text": "reference model as in original model. Then we run several experiments to check how accuracy of" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 748.0, + 277.0, + 748.0, + 277.0, + 775.0, + 239.0, + 775.0 + ], + "score": 1.0, + "text": "258" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 741.0, + 1408.0, + 741.0, + 1408.0, + 778.0, + 293.0, + 778.0 + ], + "score": 0.99, + "text": "the translation wil be changed due to LUT-based quantization in different precisions,and we can" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 776.0, + 280.0, + 776.0, + 280.0, + 806.0, + 238.0, + 806.0 + ], + "score": 1.0, + "text": "259" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 775.0, + 1406.0, + 775.0, + 1406.0, + 806.0, + 296.0, + 806.0 + ], + "score": 0.99, + "text": "confirm that down up to 8-bit quantization the deviation of BLEU score from reference is small for" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 807.0, + 280.0, + 807.0, + 280.0, + 837.0, + 238.0, + 837.0 + ], + "score": 1.0, + "text": "260" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 803.0, + 456.0, + 803.0, + 456.0, + 838.0, + 294.0, + 838.0 + ], + "score": 0.999, + "text": "both datasets" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 803.0, + 1408.0, + 803.0, + 1408.0, + 838.0, + 561.0, + 838.0 + ], + "score": 0.977, + "text": ". Also, if we consider impact of the proposed methods only, then we can" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 837.0, + 278.0, + 837.0, + 278.0, + 868.0, + 238.0, + 868.0 + ], + "score": 1.0, + "text": "261" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 831.0, + 1408.0, + 831.0, + 1408.0, + 869.0, + 293.0, + 869.0 + ], + "score": 0.988, + "text": " see that accuracy drop is much smaller, and sometimes even recovers vs. PTQ-D quantization (see" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 869.0, + 277.0, + 869.0, + 277.0, + 896.0, + 239.0, + 896.0 + ], + "score": 1.0, + "text": "262" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 864.0, + 490.0, + 864.0, + 490.0, + 900.0, + 294.0, + 900.0 + ], + "score": 0.988, + "text": "Figure 3 (right))." + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1568.0, + 1410.0, + 1568.0, + 1410.0, + 1600.0, + 296.0, + 1600.0 + ], + "score": 0.988, + "text": "To extend the variety of NLP applications,we also tested the same LUTs with BERT model [5]." + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1598.0, + 1409.0, + 1598.0, + 1409.0, + 1630.0, + 296.0, + 1630.0 + ], + "score": 0.982, + "text": "We have used sentiment analysis task from GLUE benchmark [29] to test the model. We have used" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1623.0, + 1410.0, + 1623.0, + 1410.0, + 1663.0, + 289.0, + 1663.0 + ], + "score": 0.983, + "text": " huggingface library 9,and trained the model with the hyper-parameters described in 10. The results" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1658.0, + 1407.0, + 1658.0, + 1407.0, + 1694.0, + 293.0, + 1694.0 + ], + "score": 0.984, + "text": "of our experiments showed, that similarly to machine translation, the impact of proposed method" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1687.0, + 1407.0, + 1687.0, + 1407.0, + 1724.0, + 292.0, + 1724.0 + ], + "score": 0.981, + "text": "(softmax layer approximation by LUTs) is smallr vs. accuracy drop caused by PTQ-D quantization" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 464.0, + 1720.0, + 464.0, + 1753.0, + 294.0, + 1753.0 + ], + "score": 0.988, + "text": "(see Figure 3)." + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1830.0, + 1409.0, + 1830.0, + 1409.0, + 1869.0, + 295.0, + 1869.0 + ], + "score": 0.99, + "text": "For semantic equivalence test we used The Microsoft Research Paraphrase Corpus (MRPC) 11 in" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1862.0, + 893.0, + 1862.0, + 893.0, + 1901.0, + 295.0, + 1901.0 + ], + "score": 0.988, + "text": "GLUE benchmark.As the classes are imbalanced (" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1862.0, + 1058.0, + 1862.0, + 1058.0, + 1901.0, + 951.0, + 1901.0 + ], + "score": 1.0, + "text": "positive," + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1862.0, + 1407.0, + 1862.0, + 1407.0, + 1901.0, + 1116.0, + 1901.0 + ], + "score": 0.988, + "text": "negative), we follow the" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 239, + 449, + 1409, + 449, + 1409, + 845, + 239, + 845 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1618, + 1408, + 1618, + 1408, + 1924, + 296, + 1924 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 328, + 924, + 1345, + 924, + 1345, + 1238, + 328, + 1238 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 242, + 203, + 1406, + 203, + 1406, + 325, + 242, + 325 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 296, + 1280, + 1409, + 1280, + 1409, + 1435, + 296, + 1435 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 243, + 383, + 884, + 383, + 884, + 417, + 243, + 417 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 320, + 1981, + 1169, + 1981, + 1169, + 2010, + 320, + 2010 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 243, + 1537, + 510, + 1537, + 510, + 1573, + 243, + 1573 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 842, + 2064, + 860, + 2064, + 860, + 2087, + 842, + 2087 + ], + "score": 0.822 + }, + { + "category_id": 2, + "poly": [ + 240, + 1620, + 275, + 1620, + 275, + 1924, + 240, + 1924 + ], + "score": 0.351 + }, + { + "category_id": 2, + "poly": [ + 240, + 444, + 277, + 444, + 277, + 847, + 240, + 847 + ], + "score": 0.145 + }, + { + "category_id": 13, + "poly": [ + 860, + 510, + 900, + 510, + 900, + 539, + 860, + 539 + ], + "score": 0.9, + "latex": "\\times 2" + }, + { + "category_id": 13, + "poly": [ + 449, + 752, + 525, + 752, + 525, + 782, + 449, + 782 + ], + "score": 0.89, + "latex": "L U { \\bar { T } } _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 1196, + 570, + 1401, + 570, + 1401, + 603, + 1196, + 603 + ], + "score": 0.89, + "latex": "\\mathtt { r a n g e } = ( 0 , 5 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 560, + 1282, + 609, + 1282, + 609, + 1309, + 560, + 1309 + ], + "score": 0.88, + "latex": "\\Sigma e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1354, + 540, + 1403, + 540, + 1403, + 567, + 1354, + 567 + ], + "score": 0.87, + "latex": "\\Sigma e ^ { x }" + }, + { + "category_id": 13, + "poly": [ + 1333, + 753, + 1375, + 753, + 1375, + 781, + 1333, + 781 + ], + "score": 0.85, + "latex": "9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1122, + 572, + 1187, + 572, + 1187, + 600, + 1122, + 600 + ], + "score": 0.84, + "latex": "= 5 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 783, + 338, + 783, + 338, + 812, + 297, + 812 + ], + "score": 0.83, + "latex": "3 \\%" + }, + { + "category_id": 13, + "poly": [ + 581, + 480, + 654, + 480, + 654, + 509, + 581, + 509 + ], + "score": 0.76, + "latex": "+ \\mathrm { D C } 5" + }, + { + "category_id": 13, + "poly": [ + 954, + 601, + 1023, + 601, + 1023, + 629, + 954, + 629 + ], + "score": 0.53, + "latex": "+ \\mathrm { D C } 5" + }, + { + "category_id": 13, + "poly": [ + 512, + 1312, + 645, + 1312, + 645, + 1341, + 512, + 1341 + ], + "score": 0.38, + "latex": ") \\mathrm { E T R } { + } \\mathrm { D C } 5" + }, + { + "category_id": 13, + "poly": [ + 370, + 1373, + 442, + 1373, + 442, + 1402, + 370, + 1402 + ], + "score": 0.34, + "latex": "+ \\mathrm { D C } 5" + }, + { + "category_id": 13, + "poly": [ + 380, + 783, + 521, + 783, + 521, + 813, + 380, + 813 + ], + "score": 0.27, + "latex": "\\mathrm { D E T R + D C } 5" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 928.0, + 365.0, + 928.0, + 365.0, + 948.0, + 329.0, + 948.0 + ], + "score": 0.997, + "text": "10-1" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 926.0, + 916.0, + 926.0, + 916.0, + 950.0, + 876.0, + 950.0 + ], + "score": 0.966, + "text": "10-1" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1019.0, + 368.0, + 1019.0, + 368.0, + 1040.0, + 330.0, + 1040.0 + ], + "score": 0.966, + "text": "10-2" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1019.0, + 914.0, + 1019.0, + 914.0, + 1040.0, + 877.0, + 1040.0 + ], + "score": 0.932, + "text": "10-2" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1108.0, + 369.0, + 1108.0, + 369.0, + 1133.0, + 329.0, + 1133.0 + ], + "score": 0.975, + "text": "10-3" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1108.0, + 916.0, + 1108.0, + 916.0, + 1133.0, + 876.0, + 1133.0 + ], + "score": 0.975, + "text": "10-3" + }, + { + "category_id": 16, + "poly": [ + 1239.0, + 1182.0, + 1269.0, + 1182.0, + 1269.0, + 1199.0, + 1239.0, + 1199.0 + ], + "score": 0.485, + "text": "W" + }, + { + "category_id": 16, + "poly": [ + 1267.0, + 1188.0, + 1276.0, + 1188.0, + 1276.0, + 1197.0, + 1267.0, + 1197.0 + ], + "score": 0.212, + "text": "A" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1200.0, + 367.0, + 1200.0, + 367.0, + 1220.0, + 327.0, + 1220.0 + ], + "score": 0.994, + "text": "10-4" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1201.0, + 913.0, + 1201.0, + 913.0, + 1220.0, + 876.0, + 1220.0 + ], + "score": 0.998, + "text": "10-4" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1217.0, + 398.0, + 1217.0, + 398.0, + 1234.0, + 384.0, + 1234.0 + ], + "score": 0.983, + "text": "0" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1214.0, + 482.0, + 1214.0, + 482.0, + 1236.0, + 456.0, + 1236.0 + ], + "score": 0.999, + "text": "10" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1214.0, + 560.0, + 1214.0, + 560.0, + 1236.0, + 534.0, + 1236.0 + ], + "score": 1.0, + "text": "20" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1215.0, + 635.0, + 1215.0, + 635.0, + 1235.0, + 613.0, + 1235.0 + ], + "score": 1.0, + "text": "30" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1214.0, + 714.0, + 1214.0, + 714.0, + 1236.0, + 689.0, + 1236.0 + ], + "score": 1.0, + "text": "40" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1214.0, + 792.0, + 1214.0, + 792.0, + 1236.0, + 767.0, + 1236.0 + ], + "score": 1.0, + "text": "50" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1215.0, + 947.0, + 1215.0, + 947.0, + 1235.0, + 930.0, + 1235.0 + ], + "score": 0.993, + "text": "0" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1214.0, + 1028.0, + 1214.0, + 1028.0, + 1236.0, + 1003.0, + 1236.0 + ], + "score": 0.999, + "text": "10" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1214.0, + 1108.0, + 1214.0, + 1108.0, + 1236.0, + 1080.0, + 1236.0 + ], + "score": 0.999, + "text": "20" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1214.0, + 1184.0, + 1214.0, + 1184.0, + 1236.0, + 1158.0, + 1236.0 + ], + "score": 0.999, + "text": "30" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1215.0, + 1260.0, + 1215.0, + 1260.0, + 1235.0, + 1238.0, + 1235.0 + ], + "score": 1.0, + "text": "40" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1215.0, + 1338.0, + 1215.0, + 1338.0, + 1234.0, + 1316.0, + 1234.0 + ], + "score": 1.0, + "text": "50" + }, + { + "category_id": 16, + "poly": [ + 1228.0, + 1197.0, + 1266.0, + 1197.0, + 1266.0, + 1213.5, + 1228.0, + 1213.5 + ], + "score": 0.451, + "text": "VIVv" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1282.0, + 559.0, + 1282.0, + 559.0, + 1315.0, + 295.0, + 1315.0 + ], + "score": 0.993, + "text": "Figure 4: Histogram of" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1282.0, + 1410.0, + 1282.0, + 1410.0, + 1315.0, + 610.0, + 1315.0 + ], + "score": 0.981, + "text": "values distributions for DETR model variants: plain DETR (R5O) (left)," + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1308.0, + 511.0, + 1308.0, + 511.0, + 1347.0, + 293.0, + 1347.0 + ], + "score": 0.997, + "text": "and with dilation I" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1308.0, + 1408.0, + 1308.0, + 1408.0, + 1347.0, + 646.0, + 1347.0 + ], + "score": 0.988, + "text": "(R50) (right). Red dot line represents the average of the all values" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1340.0, + 1408.0, + 1340.0, + 1408.0, + 1377.0, + 293.0, + 1377.0 + ], + "score": 0.986, + "text": "per one run of the inference of DETR model. It is clearly seen from the figure that distribution of" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1369.0, + 369.0, + 1369.0, + 369.0, + 1411.0, + 293.0, + 1411.0 + ], + "score": 0.999, + "text": "DETR" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1369.0, + 1410.0, + 1369.0, + 1410.0, + 1411.0, + 443.0, + 1411.0 + ], + "score": 0.982, + "text": "(R50) variant is more flat, having more high-magnitude values. This causes the bigger" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 1261.0, + 1401.0, + 1261.0, + 1440.0, + 294.0, + 1440.0 + ], + "score": 0.995, + "text": " accuracy drop for the quantized model due to lack of the discrepancy for those values." + }, + { + "category_id": 15, + "poly": [ + 234.0, + 379.0, + 889.0, + 379.0, + 889.0, + 423.0, + 234.0, + 423.0 + ], + "score": 0.982, + "text": " 2775.3 Ablation study of DETR models experiment" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1973.0, + 1173.0, + 1973.0, + 1173.0, + 2017.0, + 322.0, + 2017.0 + ], + "score": 0.991, + "text": "12https://pytorch.org/tutorials/intermediate/dynamic_quantization_bert_tutorial.html" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1532.0, + 516.0, + 1532.0, + 516.0, + 1579.0, + 231.0, + 1579.0 + ], + "score": 0.999, + "text": "2916Conclusion" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2063.0, + 862.0, + 2063.0, + 862.0, + 2095.0, + 841.0, + 2095.0 + ], + "score": 1.0, + "text": "9" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1624.0, + 279.0, + 1624.0, + 279.0, + 1654.0, + 239.0, + 1654.0 + ], + "score": 1.0, + "text": "292" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1654.0, + 279.0, + 1654.0, + 279.0, + 1685.0, + 239.0, + 1685.0 + ], + "score": 1.0, + "text": "293" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1685.0, + 279.0, + 1685.0, + 279.0, + 1715.0, + 239.0, + 1715.0 + ], + "score": 1.0, + "text": "294" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1715.0, + 279.0, + 1715.0, + 279.0, + 1745.0, + 239.0, + 1745.0 + ], + "score": 1.0, + "text": "295" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1746.0, + 279.0, + 1746.0, + 279.0, + 1776.0, + 239.0, + 1776.0 + ], + "score": 1.0, + "text": "296" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1776.0, + 279.0, + 1776.0, + 279.0, + 1806.0, + 240.0, + 1806.0 + ], + "score": 1.0, + "text": "297" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1807.0, + 279.0, + 1807.0, + 279.0, + 1837.0, + 240.0, + 1837.0 + ], + "score": 1.0, + "text": "298" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1837.0, + 279.0, + 1837.0, + 279.0, + 1867.0, + 239.0, + 1867.0 + ], + "score": 1.0, + "text": "299" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1867.0, + 279.0, + 1867.0, + 279.0, + 1897.0, + 239.0, + 1897.0 + ], + "score": 1.0, + "text": "300" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1897.0, + 276.0, + 1897.0, + 276.0, + 1927.0, + 239.0, + 1927.0 + ], + "score": 1.0, + "text": "301" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 454.0, + 279.0, + 454.0, + 279.0, + 484.0, + 238.0, + 484.0 + ], + "score": 1.0, + "text": "278" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 484.0, + 279.0, + 484.0, + 279.0, + 515.0, + 238.0, + 515.0 + ], + "score": 1.0, + "text": "279" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 515.0, + 279.0, + 515.0, + 279.0, + 545.0, + 238.0, + 545.0 + ], + "score": 1.0, + "text": "280" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 545.0, + 278.0, + 545.0, + 278.0, + 576.0, + 238.0, + 576.0 + ], + "score": 1.0, + "text": "281" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 576.0, + 279.0, + 576.0, + 279.0, + 606.0, + 238.0, + 606.0 + ], + "score": 1.0, + "text": "282" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 606.0, + 279.0, + 606.0, + 279.0, + 638.0, + 238.0, + 638.0 + ], + "score": 1.0, + "text": "283" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 637.0, + 279.0, + 637.0, + 279.0, + 667.0, + 238.0, + 667.0 + ], + "score": 1.0, + "text": "284" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 667.0, + 279.0, + 667.0, + 279.0, + 697.0, + 238.0, + 697.0 + ], + "score": 1.0, + "text": "285" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 698.0, + 279.0, + 698.0, + 279.0, + 728.0, + 239.0, + 728.0 + ], + "score": 1.0, + "text": "286" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 727.0, + 278.0, + 727.0, + 278.0, + 758.0, + 238.0, + 758.0 + ], + "score": 1.0, + "text": "287" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 757.0, + 279.0, + 757.0, + 279.0, + 788.0, + 238.0, + 788.0 + ], + "score": 1.0, + "text": "288" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 788.0, + 279.0, + 788.0, + 279.0, + 818.0, + 238.0, + 818.0 + ], + "score": 1.0, + "text": "289" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 818.0, + 279.0, + 818.0, + 279.0, + 848.0, + 238.0, + 848.0 + ], + "score": 1.0, + "text": "290" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 455.0, + 278.0, + 455.0, + 278.0, + 479.0, + 239.0, + 479.0 + ], + "score": 1.0, + "text": "278" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 449.0, + 1409.0, + 449.0, + 1409.0, + 482.0, + 294.0, + 482.0 + ], + "score": 0.981, + "text": "As it is stated in [2],to increase the feature resolution for smallobjects,a dilation to the last stage of" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 483.0, + 279.0, + 483.0, + 279.0, + 511.0, + 239.0, + 511.0 + ], + "score": 1.0, + "text": "279" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 479.0, + 580.0, + 479.0, + 580.0, + 511.0, + 295.0, + 511.0 + ], + "score": 0.981, + "text": "the backbone was added (" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 479.0, + 1407.0, + 479.0, + 1407.0, + 511.0, + 655.0, + 511.0 + ], + "score": 0.994, + "text": "cases of DETR models). This modification increases the cost in the" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 515.0, + 278.0, + 515.0, + 278.0, + 540.0, + 239.0, + 540.0 + ], + "score": 1.0, + "text": "280" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 507.0, + 859.0, + 507.0, + 859.0, + 545.0, + 291.0, + 545.0 + ], + "score": 0.978, + "text": " self-attentions of the encoder, leading to an overall" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 507.0, + 1410.0, + 507.0, + 1410.0, + 545.0, + 901.0, + 545.0 + ], + "score": 0.991, + "text": "increase in computational cost. Such changes" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 544.0, + 278.0, + 544.0, + 278.0, + 572.0, + 238.0, + 572.0 + ], + "score": 1.0, + "text": "281" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 539.0, + 1353.0, + 539.0, + 1353.0, + 572.0, + 293.0, + 572.0 + ], + "score": 0.989, + "text": " also reflect on the properties of softmax factors. In Figure 4 there are shown the histogram of" + }, + { + "category_id": 16, + "poly": [ + 1404.0, + 539.0, + 1409.0, + 539.0, + 1409.0, + 572.0, + 1404.0, + 572.0 + ], + "score": 0.593, + "text": "(20" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 576.0, + 278.0, + 576.0, + 278.0, + 601.0, + 239.0, + 601.0 + ], + "score": 1.0, + "text": "282" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 569.0, + 1121.0, + 569.0, + 1121.0, + 606.0, + 292.0, + 606.0 + ], + "score": 0.99, + "text": " values distributions for the first 2OO tensors of DETR model run for bins" + }, + { + "category_id": 16, + "poly": [ + 1188.0, + 569.0, + 1195.0, + 569.0, + 1195.0, + 606.0, + 1188.0, + 606.0 + ], + "score": 0.0, + "text": "" + }, + { + "category_id": 16, + "poly": [ + 1402.0, + 569.0, + 1411.0, + 569.0, + 1411.0, + 606.0, + 1402.0, + 606.0 + ], + "score": 0.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 604.0, + 279.0, + 604.0, + 279.0, + 633.0, + 238.0, + 633.0 + ], + "score": 1.0, + "text": "283" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 599.0, + 953.0, + 599.0, + 953.0, + 635.0, + 294.0, + 635.0 + ], + "score": 0.985, + "text": "As it can be seen from the figure, the distribution of DETR" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 599.0, + 1410.0, + 599.0, + 1410.0, + 635.0, + 1024.0, + 635.0 + ], + "score": 0.982, + "text": "(R50) variant is more right-tailed," + }, + { + "category_id": 15, + "poly": [ + 238.0, + 635.0, + 279.0, + 635.0, + 279.0, + 664.0, + 238.0, + 664.0 + ], + "score": 1.0, + "text": "284" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1410.0, + 630.0, + 1410.0, + 666.0, + 294.0, + 666.0 + ], + "score": 0.994, + "text": "due to the bigger number of high-magnitude values. This causes the bigger accuracy drop when" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 665.0, + 279.0, + 665.0, + 279.0, + 693.0, + 238.0, + 693.0 + ], + "score": 1.0, + "text": "285" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 656.0, + 1413.0, + 656.0, + 1413.0, + 699.0, + 291.0, + 699.0 + ], + "score": 0.987, + "text": " LUT-based quantization method is used, due to the lack of the discrepancy for those values. Thus," + }, + { + "category_id": 15, + "poly": [ + 238.0, + 696.0, + 279.0, + 696.0, + 279.0, + 725.0, + 238.0, + 725.0 + ], + "score": 1.0, + "text": "286" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 690.0, + 1410.0, + 690.0, + 1410.0, + 727.0, + 292.0, + 727.0 + ], + "score": 0.99, + "text": "for such models (DETR with added dilation at the last stage) the accuracy of object detection after" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 726.0, + 279.0, + 726.0, + 279.0, + 755.0, + 238.0, + 755.0 + ], + "score": 1.0, + "text": "287" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 718.0, + 1410.0, + 718.0, + 1410.0, + 761.0, + 292.0, + 761.0 + ], + "score": 0.99, + "text": " application of the proposed method can be limited. However, as we can see from Figure 2) increasing" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 758.0, + 278.0, + 758.0, + 278.0, + 783.0, + 239.0, + 783.0 + ], + "score": 1.0, + "text": "288" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 750.0, + 448.0, + 750.0, + 448.0, + 787.0, + 295.0, + 787.0 + ], + "score": 0.991, + "text": "of the size of" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 750.0, + 1332.0, + 750.0, + 1332.0, + 787.0, + 526.0, + 787.0 + ], + "score": 0.994, + "text": "from 256 Bytes to 512 Bytes allows to decrease the accuracy drop from" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 750.0, + 1409.0, + 750.0, + 1409.0, + 787.0, + 1376.0, + 787.0 + ], + "score": 0.979, + "text": "to" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 787.0, + 279.0, + 787.0, + 279.0, + 815.0, + 238.0, + 815.0 + ], + "score": 1.0, + "text": "289" + }, + { + "category_id": 16, + "poly": [ + 292.0, + 779.0, + 296.0, + 779.0, + 296.0, + 818.0, + 292.0, + 818.0 + ], + "score": 0.647, + "text": "(204号" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 779.0, + 379.0, + 779.0, + 379.0, + 818.0, + 339.0, + 818.0 + ], + "score": 1.0, + "text": "for" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 779.0, + 1409.0, + 779.0, + 1409.0, + 818.0, + 522.0, + 818.0 + ], + "score": 0.981, + "text": "(R101) unit8 case. Thus, we expect that further increasing the size of LUTs will" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 819.0, + 278.0, + 819.0, + 278.0, + 843.0, + 239.0, + 843.0 + ], + "score": 1.0, + "text": "290" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 814.0, + 1118.0, + 814.0, + 1118.0, + 846.0, + 294.0, + 846.0 + ], + "score": 0.993, + "text": "help to obtain even more accurate results for DETR models with dilation." + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1617.0, + 1407.0, + 1617.0, + 1407.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 0.996, + "text": "In this paper two alternative methods for efficient softmax computation for DNN models with" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1650.0, + 1409.0, + 1650.0, + 1409.0, + 1682.0, + 295.0, + 1682.0 + ], + "score": 0.992, + "text": "atention mechanism are proposed. The methods are memory-centric in contrast to known logic-" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1680.0, + 1410.0, + 1680.0, + 1410.0, + 1713.0, + 293.0, + 1713.0 + ], + "score": 0.986, + "text": "centric approach and are based on the usage ofLUTs for reading of the pre-computed values, instead" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1409.0, + 1709.0, + 1409.0, + 1743.0, + 293.0, + 1743.0 + ], + "score": 0.985, + "text": "of the direct computation. Thus,it allows to build the HW accelerator without usage of costly and" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1409.0, + 1741.0, + 1409.0, + 1774.0, + 293.0, + 1774.0 + ], + "score": 0.986, + "text": "power-hungry divider. In turn, it allows to decrease the power consumption and latency of the whole" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1770.0, + 1409.0, + 1770.0, + 1409.0, + 1805.0, + 293.0, + 1805.0 + ], + "score": 0.981, + "text": " inference,what is crucial for edge computing. All results obtained in the paper were validated" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1800.0, + 1407.0, + 1800.0, + 1407.0, + 1834.0, + 293.0, + 1834.0 + ], + "score": 0.982, + "text": "over different AI tasks (object detection, machine translation, sentiment analysis, and semantic" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1829.0, + 1410.0, + 1829.0, + 1410.0, + 1866.0, + 293.0, + 1866.0 + ], + "score": 0.962, + "text": "equivalence) and models (DETR,Transformer, BERT) by variety of benchmarks (COCO2017," + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1857.0, + 1411.0, + 1857.0, + 1411.0, + 1899.0, + 292.0, + 1899.0 + ], + "score": 0.994, + "text": "WMT14, WMT17, GLUE), showing acceptable accuracy and good generalization of the proposed" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1892.0, + 405.0, + 1892.0, + 405.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "methods." + }, + { + "category_id": 15, + "poly": [ + 241.0, + 209.0, + 278.0, + 209.0, + 278.0, + 235.0, + 241.0, + 235.0 + ], + "score": 1.0, + "text": "273" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 203.0, + 1407.0, + 203.0, + 1407.0, + 238.0, + 295.0, + 238.0 + ], + "score": 0.992, + "text": "common practice and used F1 score as a metric. We have used huggingface library and followed" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 239.0, + 278.0, + 239.0, + 278.0, + 265.0, + 239.0, + 265.0 + ], + "score": 1.0, + "text": "274" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1409.0, + 231.0, + 1409.0, + 270.0, + 295.0, + 270.0 + ], + "score": 0.987, + "text": "the guidelines from PyTorch tutorial 12 to obtain PTQ-D quantized model. Then,similarly to previous" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 268.0, + 280.0, + 268.0, + 280.0, + 297.0, + 238.0, + 297.0 + ], + "score": 1.0, + "text": "275" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 264.0, + 1407.0, + 264.0, + 1407.0, + 297.0, + 293.0, + 297.0 + ], + "score": 0.983, + "text": " tests we have substituted a conventional softmax layer with the proposed LUT-based methods. The" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 299.0, + 280.0, + 299.0, + 280.0, + 328.0, + 238.0, + 328.0 + ], + "score": 1.0, + "text": "276" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 293.0, + 1191.0, + 293.0, + 1191.0, + 329.0, + 291.0, + 329.0 + ], + "score": 0.994, + "text": " results of our experiments showed the similar trend with sentiment analysis test." + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 837, + 2063, + 868, + 2063, + 868, + 2089, + 837, + 2089 + ], + "score": 0.847 + }, + { + "category_id": 0, + "poly": [ + 282, + 199, + 456, + 199, + 456, + 234, + 282, + 234 + ], + "score": 0.775 + }, + { + "category_id": 1, + "poly": [ + 291, + 145, + 1413, + 145, + 1413, + 2021, + 291, + 2021 + ], + "score": 0.75 + }, + { + "category_id": 2, + "poly": [ + 238, + 211, + 286, + 211, + 286, + 2038, + 238, + 2038 + ], + "score": 0.245 + }, + { + "category_id": 15, + "poly": [ + 834.0, + 2060.0, + 872.0, + 2060.0, + 872.0, + 2099.0, + 834.0, + 2099.0 + ], + "score": 1.0, + "text": "10" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 195.0, + 460.0, + 195.0, + 460.0, + 239.0, + 295.0, + 239.0 + ], + "score": 1.0, + "text": "References" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 207.0, + 280.0, + 207.0, + 280.0, + 239.0, + 237.0, + 239.0 + ], + "score": 1.0, + "text": "302" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 253.0, + 280.0, + 253.0, + 280.0, + 287.0, + 237.0, + 287.0 + ], + "score": 1.0, + "text": "303" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 285.0, + 280.0, + 285.0, + 280.0, + 318.0, + 237.0, + 318.0 + ], + "score": 1.0, + "text": "304" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 318.0, + 280.0, + 318.0, + 280.0, + 352.0, + 237.0, + 352.0 + ], + "score": 1.0, + "text": "305" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 366.0, + 280.0, + 366.0, + 280.0, + 400.0, + 237.0, + 400.0 + ], + "score": 1.0, + "text": "306" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 396.0, + 283.0, + 396.0, + 283.0, + 436.0, + 234.0, + 436.0 + ], + "score": 1.0, + "text": "307" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 446.0, + 280.0, + 446.0, + 280.0, + 480.0, + 237.0, + 480.0 + ], + "score": 1.0, + "text": "308" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 478.0, + 280.0, + 478.0, + 280.0, + 510.0, + 237.0, + 510.0 + ], + "score": 1.0, + "text": "309" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 510.0, + 280.0, + 510.0, + 280.0, + 542.0, + 237.0, + 542.0 + ], + "score": 1.0, + "text": "310" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 538.0, + 280.0, + 538.0, + 280.0, + 581.0, + 234.0, + 581.0 + ], + "score": 1.0, + "text": "311" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 591.0, + 280.0, + 591.0, + 280.0, + 623.0, + 237.0, + 623.0 + ], + "score": 1.0, + "text": "312" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 621.0, + 283.0, + 621.0, + 283.0, + 661.0, + 234.0, + 661.0 + ], + "score": 1.0, + "text": "313" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 671.0, + 280.0, + 671.0, + 280.0, + 703.0, + 237.0, + 703.0 + ], + "score": 1.0, + "text": "314" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 703.0, + 280.0, + 703.0, + 280.0, + 737.0, + 237.0, + 737.0 + ], + "score": 1.0, + "text": "315" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 751.0, + 280.0, + 751.0, + 280.0, + 785.0, + 237.0, + 785.0 + ], + "score": 1.0, + "text": "316" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 783.0, + 280.0, + 783.0, + 280.0, + 815.0, + 237.0, + 815.0 + ], + "score": 1.0, + "text": "317" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 815.0, + 280.0, + 815.0, + 280.0, + 847.0, + 237.0, + 847.0 + ], + "score": 1.0, + "text": "318" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 843.0, + 283.0, + 843.0, + 283.0, + 886.0, + 234.0, + 886.0 + ], + "score": 1.0, + "text": "319" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 896.0, + 280.0, + 896.0, + 280.0, + 928.0, + 237.0, + 928.0 + ], + "score": 1.0, + "text": "320" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 926.0, + 278.0, + 926.0, + 278.0, + 958.0, + 237.0, + 958.0 + ], + "score": 1.0, + "text": "321" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 958.0, + 280.0, + 958.0, + 280.0, + 990.0, + 237.0, + 990.0 + ], + "score": 1.0, + "text": "322" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1008.0, + 280.0, + 1008.0, + 280.0, + 1040.0, + 237.0, + 1040.0 + ], + "score": 1.0, + "text": "323" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1038.0, + 280.0, + 1038.0, + 280.0, + 1070.0, + 237.0, + 1070.0 + ], + "score": 1.0, + "text": "324" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1068.0, + 280.0, + 1068.0, + 280.0, + 1100.0, + 237.0, + 1100.0 + ], + "score": 1.0, + "text": "325" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1096.0, + 283.0, + 1096.0, + 283.0, + 1137.0, + 234.0, + 1137.0 + ], + "score": 1.0, + "text": "326" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1149.0, + 280.0, + 1149.0, + 280.0, + 1181.0, + 237.0, + 1181.0 + ], + "score": 1.0, + "text": "327" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1181.0, + 280.0, + 1181.0, + 280.0, + 1213.0, + 237.0, + 1213.0 + ], + "score": 1.0, + "text": "328" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1211.0, + 280.0, + 1211.0, + 280.0, + 1243.0, + 237.0, + 1243.0 + ], + "score": 1.0, + "text": "329" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1239.0, + 283.0, + 1239.0, + 283.0, + 1279.0, + 234.0, + 1279.0 + ], + "score": 1.0, + "text": "330" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1291.0, + 278.0, + 1291.0, + 278.0, + 1325.0, + 237.0, + 1325.0 + ], + "score": 1.0, + "text": "331" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1321.0, + 280.0, + 1321.0, + 280.0, + 1353.0, + 237.0, + 1353.0 + ], + "score": 1.0, + "text": "332" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1351.0, + 283.0, + 1351.0, + 283.0, + 1391.0, + 234.0, + 1391.0 + ], + "score": 0.992, + "text": "333" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1402.0, + 280.0, + 1402.0, + 280.0, + 1436.0, + 237.0, + 1436.0 + ], + "score": 0.932, + "text": "334" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1434.0, + 280.0, + 1434.0, + 280.0, + 1466.0, + 237.0, + 1466.0 + ], + "score": 1.0, + "text": "335" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1466.0, + 283.0, + 1466.0, + 283.0, + 1504.0, + 239.0, + 1504.0 + ], + "score": 0.998, + "text": "336" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1514.0, + 280.0, + 1514.0, + 280.0, + 1546.0, + 237.0, + 1546.0 + ], + "score": 1.0, + "text": "337" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1544.0, + 283.0, + 1544.0, + 283.0, + 1584.0, + 234.0, + 1584.0 + ], + "score": 1.0, + "text": "338" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1594.0, + 280.0, + 1594.0, + 280.0, + 1628.0, + 237.0, + 1628.0 + ], + "score": 1.0, + "text": "339" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1626.0, + 280.0, + 1626.0, + 280.0, + 1660.0, + 237.0, + 1660.0 + ], + "score": 1.0, + "text": "340" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1679.0, + 280.0, + 1679.0, + 280.0, + 1711.0, + 237.0, + 1711.0 + ], + "score": 1.0, + "text": "341" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1707.0, + 283.0, + 1707.0, + 283.0, + 1753.0, + 234.0, + 1753.0 + ], + "score": 1.0, + "text": "342" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1759.0, + 280.0, + 1759.0, + 280.0, + 1791.0, + 237.0, + 1791.0 + ], + "score": 1.0, + "text": "343" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1791.0, + 280.0, + 1791.0, + 280.0, + 1825.0, + 237.0, + 1825.0 + ], + "score": 1.0, + "text": "344" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1839.0, + 280.0, + 1839.0, + 280.0, + 1871.0, + 237.0, + 1871.0 + ], + "score": 1.0, + "text": "345" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1869.0, + 283.0, + 1869.0, + 283.0, + 1911.0, + 234.0, + 1911.0 + ], + "score": 1.0, + "text": "346" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1921.0, + 280.0, + 1921.0, + 280.0, + 1954.0, + 237.0, + 1954.0 + ], + "score": 1.0, + "text": "347" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1952.0, + 280.0, + 1952.0, + 280.0, + 1984.0, + 237.0, + 1984.0 + ], + "score": 1.0, + "text": "348" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1984.0, + 280.0, + 1984.0, + 280.0, + 2016.0, + 237.0, + 2016.0 + ], + "score": 1.0, + "text": "349" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 193.0, + 463.0, + 193.0, + 463.0, + 242.0, + 294.0, + 242.0 + ], + "score": 1.0, + "text": "References" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 249.0, + 1411.0, + 249.0, + 1411.0, + 288.0, + 307.0, + 288.0 + ], + "score": 0.988, + "text": "[1] Aishwarya Bhandare, Vamsi Sripathi, Deepthi Karkada, Vivek Menon, Sun Choi, Kushal Datta," + }, + { + "category_id": 15, + "poly": [ + 352.0, + 276.0, + 1411.0, + 276.0, + 1411.0, + 326.0, + 352.0, + 326.0 + ], + "score": 0.982, + "text": " and Vikram Saletore.Eficient 8-bit quantization of transformer neural machine language" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 311.0, + 908.0, + 311.0, + 908.0, + 348.0, + 351.0, + 348.0 + ], + "score": 0.995, + "text": "translation model. CoRR,abs/1906.00532,2019." + }, + { + "category_id": 15, + "poly": [ + 307.0, + 363.0, + 1409.0, + 363.0, + 1409.0, + 402.0, + 307.0, + 402.0 + ], + "score": 0.987, + "text": "[2] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 393.0, + 1174.0, + 393.0, + 1174.0, + 430.0, + 352.0, + 430.0 + ], + "score": 0.982, + "text": " Sergey Zagoruyko. End-to-end object detection with transformers, 2020." + }, + { + "category_id": 15, + "poly": [ + 307.0, + 441.0, + 1411.0, + 441.0, + 1411.0, + 486.0, + 307.0, + 486.0 + ], + "score": 0.979, + "text": "[3] Ming Chen, Yingming_Li, Zhongfei Zhang, and Siyu_Huang. Tvt: Two-view transformer" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 474.0, + 1409.0, + 474.0, + 1409.0, + 513.0, + 354.0, + 513.0 + ], + "score": 0.989, + "text": "network for video captioning. In Jun Zhu and Ichiro Takeuchi, editors, Proceedings of The" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 500.0, + 1409.0, + 500.0, + 1409.0, + 546.0, + 354.0, + 546.0 + ], + "score": 0.981, + "text": "l0th Asian Conference on Machine Learning, volume 95 of Proceedings of Machine Learning" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 535.0, + 944.0, + 535.0, + 944.0, + 575.0, + 354.0, + 575.0 + ], + "score": 0.99, + "text": "Research, pages 847-862. PMLR,14-16 Nov 2018." + }, + { + "category_id": 15, + "poly": [ + 303.0, + 583.0, + 1411.0, + 583.0, + 1411.0, + 626.0, + 303.0, + 626.0 + ], + "score": 0.986, + "text": "[4] Jacek Czaja, Michal Galus, Tomasz Patejko,and Jian Tang. Softmax optimizations for intel" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 618.0, + 1065.0, + 618.0, + 1065.0, + 653.0, + 349.0, + 653.0 + ], + "score": 0.984, + "text": " xeon processor-based platforms. CoRR,abs/1904.12380,2019." + }, + { + "category_id": 15, + "poly": [ + 305.0, + 665.0, + 1413.0, + 665.0, + 1413.0, + 710.0, + 305.0, + 710.0 + ], + "score": 0.988, + "text": "[5] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: pre-training of" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 698.0, + 1373.0, + 698.0, + 1373.0, + 737.0, + 354.0, + 737.0 + ], + "score": 0.985, + "text": "deep bidirectional transformers for language understanding. CoRR,abs/1810.04805, 2018." + }, + { + "category_id": 15, + "poly": [ + 311.0, + 752.0, + 1409.0, + 752.0, + 1409.0, + 785.0, + 311.0, + 785.0 + ], + "score": 0.982, + "text": "[6] Alexey Dosovitskiy,Lucas Beyer,Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai," + }, + { + "category_id": 15, + "poly": [ + 352.0, + 774.0, + 1411.0, + 774.0, + 1411.0, + 822.0, + 352.0, + 822.0 + ], + "score": 0.976, + "text": "Thomas Unterthiner, Mostafa Dehghani, Mathias Minderer, Georg Heigold, Sylvain Gely," + }, + { + "category_id": 15, + "poly": [ + 350.0, + 803.0, + 1411.0, + 803.0, + 1411.0, + 853.0, + 350.0, + 853.0 + ], + "score": 0.98, + "text": " Jakob Uszkoreit,and Neil Houlsby.An image is worth 16x16 words: Transformers for image" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 840.0, + 659.0, + 840.0, + 659.0, + 877.0, + 349.0, + 877.0 + ], + "score": 0.999, + "text": "recognition at scale,2020." + }, + { + "category_id": 15, + "poly": [ + 303.0, + 887.0, + 1415.0, + 887.0, + 1415.0, + 931.0, + 303.0, + 931.0 + ], + "score": 0.99, + "text": "[7] Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Botom-up abstractive summarization." + }, + { + "category_id": 15, + "poly": [ + 350.0, + 916.0, + 1411.0, + 916.0, + 1411.0, + 966.0, + 350.0, + 966.0 + ], + "score": 0.973, + "text": " In Proceedings of the2O18 Conference on Empirical Methods in Natural Language Processing," + }, + { + "category_id": 15, + "poly": [ + 351.0, + 952.0, + 634.0, + 952.0, + 634.0, + 986.0, + 351.0, + 986.0 + ], + "score": 0.98, + "text": "pages 4098-4109,2018." + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1003.0, + 1413.0, + 1003.0, + 1413.0, + 1042.0, + 307.0, + 1042.0 + ], + "score": 0.987, + "text": "[8] Xue Geng, Jie Lin, Bin Zhao, Anmin Kong, Mohamed M. Sabry Aly, and Vijay Chandrasekhar." + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1034.0, + 1407.0, + 1034.0, + 1407.0, + 1073.0, + 356.0, + 1073.0 + ], + "score": 0.99, + "text": "Hardware-aware softmax approximation for deep neural networks. In C.V. Jawahar, Hongdong" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1058.0, + 1407.0, + 1058.0, + 1407.0, + 1106.0, + 354.0, + 1106.0 + ], + "score": 0.978, + "text": "Li, Greg Mori,and Konrad Schindler, editors, Computer Vision- ACCV 2018, pages 107-12," + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1091.0, + 892.0, + 1091.0, + 892.0, + 1135.0, + 354.0, + 1135.0 + ], + "score": 0.987, + "text": "Cham, 2019. Springer International Publishing." + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1143.0, + 1413.0, + 1143.0, + 1413.0, + 1184.0, + 305.0, + 1184.0 + ], + "score": 0.977, + "text": "[9] Yanzhang He, Tara N. Sainath, Rohit Prabhavalkar, Ian McGraw, Raziel Alvarez, Ding Zhao," + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1176.0, + 1409.0, + 1176.0, + 1409.0, + 1215.0, + 354.0, + 1215.0 + ], + "score": 0.977, + "text": "David Rybach, Anjuli Kannan, Yonghui Wu, Ruoming Pang, Qiao Liang, Deepti Bhatia, Yuan" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1207.0, + 1411.0, + 1207.0, + 1411.0, + 1246.0, + 356.0, + 1246.0 + ], + "score": 0.976, + "text": "Shangguan, Bo Li, Golan Pundak, Khe Chai Sim, Tom Bagby, Shuo yiin Chang, Kanishka Rao," + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1239.0, + 1411.0, + 1239.0, + 1411.0, + 1272.0, + 356.0, + 1272.0 + ], + "score": 0.991, + "text": "and Alexander Gruenstein. Streaming end-to-end speech recognition for mobile devices,2018." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1287.0, + 1409.0, + 1287.0, + 1409.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 0.972, + "text": "[10] R. Hu, B. Tian, S. Yin,and S. Wei. Efcient hardware architecture of softmax layer in deep" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1311.0, + 1411.0, + 1311.0, + 1411.0, + 1361.0, + 350.0, + 1361.0 + ], + "score": 0.98, + "text": "neural network. In2018 IEEE23rd International Conference on Digital Signal Procesing" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1351.0, + 687.0, + 1351.0, + 687.0, + 1384.0, + 356.0, + 1384.0 + ], + "score": 0.984, + "text": "(DSP), pages 1-5, Nov 2018." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1396.0, + 1407.0, + 1396.0, + 1407.0, + 1435.0, + 293.0, + 1435.0 + ], + "score": 0.978, + "text": "[11] Andrey Ignatov, Radu Timofte, Wilim Chou, Ke Wang, Max Wu, Tim Hartley,and Luc Van" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1429.0, + 1411.0, + 1429.0, + 1411.0, + 1468.0, + 354.0, + 1468.0 + ], + "score": 0.995, + "text": "Gool.AI benchmark: Running deep neural networks on android smartphones. CoRR," + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1462.0, + 619.0, + 1462.0, + 619.0, + 1495.0, + 356.0, + 1495.0 + ], + "score": 1.0, + "text": "abs/1810.01109,2018." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1509.0, + 1411.0, + 1509.0, + 1411.0, + 1548.0, + 293.0, + 1548.0 + ], + "score": 0.991, + "text": "[12] Guillume Klein, Yoon Kim, Yuntian Deng, Jean Senellart, and Alexander M. Rush. OpenNMT:" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1540.0, + 1168.0, + 1540.0, + 1168.0, + 1579.0, + 356.0, + 1579.0 + ], + "score": 0.995, + "text": "Open-source toolkit for neural machine translation. In Proc. ACL, 2017." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 1407.0, + 1591.0, + 1407.0, + 1631.0, + 293.0, + 1631.0 + ], + "score": 0.992, + "text": "[13] Ioannis Kouretas and Vassilis Paliouras. Hardware implementation of a softmax-like function" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1622.0, + 854.0, + 1622.0, + 854.0, + 1661.0, + 354.0, + 1661.0 + ], + "score": 0.99, + "text": "for deep learning. Technologies, 8(3), 2020." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1672.0, + 1411.0, + 1672.0, + 1411.0, + 1711.0, + 293.0, + 1711.0 + ], + "score": 0.983, + "text": "[14] Guillaume Lample and Frangois Charton. Deep learning for symbolic mathematics. CoRR," + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1703.0, + 621.0, + 1703.0, + 621.0, + 1742.0, + 354.0, + 1742.0 + ], + "score": 0.989, + "text": "abs/1912.01412, 2019." + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1752.0, + 1411.0, + 1752.0, + 1411.0, + 1797.0, + 291.0, + 1797.0 + ], + "score": 0.983, + "text": "[15] Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1783.0, + 1365.0, + 1783.0, + 1365.0, + 1828.0, + 352.0, + 1828.0 + ], + "score": 0.985, + "text": " Soricut. Albert: A lite bert for self-supervised learning of language representations, 2019." + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1838.0, + 1409.0, + 1838.0, + 1409.0, + 1871.0, + 295.0, + 1871.0 + ], + "score": 0.98, + "text": "[16] Bo Li, Shuo yiin Chang,Tara N. Sainath,Ruoming Pang, Yanzhang He, Trevor Strohman, and" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1865.0, + 1163.0, + 1865.0, + 1163.0, + 1902.0, + 354.0, + 1902.0 + ], + "score": 0.978, + "text": "Yonghui Wu. Towards fast and accurate streaming end-to-end asr, 2020." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1917.0, + 1411.0, + 1917.0, + 1411.0, + 1956.0, + 293.0, + 1956.0 + ], + "score": 0.978, + "text": "[17] Z. Li, H. Li, X. Jiang, B. Chen, Y. Zhang, and G. Du.Efficient fpga implementation of" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1941.0, + 1415.0, + 1941.0, + 1415.0, + 1989.0, + 350.0, + 1989.0 + ], + "score": 0.982, + "text": "softmax function for dnn applications. In 2018 12th IEEE International Conference on Anti-" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1978.0, + 1230.0, + 1978.0, + 1230.0, + 2017.0, + 354.0, + 2017.0 + ], + "score": 0.981, + "text": "counterfeiting, Security, and Identification (ASID), pages 212-216, Nov 2018." + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 837, + 2063, + 865, + 2063, + 865, + 2090, + 837, + 2090 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 255, + 108, + 1413, + 108, + 1413, + 2035, + 255, + 2035 + ], + "score": 0.763 + }, + { + "category_id": 2, + "poly": [ + 239, + 187, + 284, + 187, + 284, + 2042, + 239, + 2042 + ], + "score": 0.139 + }, + { + "category_id": 15, + "poly": [ + 833.0, + 2061.0, + 870.0, + 2061.0, + 870.0, + 2100.0, + 833.0, + 2100.0 + ], + "score": 0.999, + "text": "11" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 208.0, + 282.0, + 208.0, + 282.0, + 241.0, + 237.0, + 241.0 + ], + "score": 1.0, + "text": "350" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 237.0, + 277.0, + 237.0, + 277.0, + 271.0, + 237.0, + 271.0 + ], + "score": 1.0, + "text": "351" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 265.0, + 282.0, + 265.0, + 282.0, + 306.0, + 234.0, + 306.0 + ], + "score": 1.0, + "text": "352" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 324.0, + 280.0, + 324.0, + 280.0, + 357.0, + 237.0, + 357.0 + ], + "score": 1.0, + "text": "353" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 355.0, + 280.0, + 355.0, + 280.0, + 390.0, + 237.0, + 390.0 + ], + "score": 1.0, + "text": "354" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 408.0, + 280.0, + 408.0, + 280.0, + 442.0, + 237.0, + 442.0 + ], + "score": 1.0, + "text": "355" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 438.0, + 284.0, + 438.0, + 284.0, + 481.0, + 234.0, + 481.0 + ], + "score": 1.0, + "text": "356" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 495.0, + 280.0, + 495.0, + 280.0, + 530.0, + 237.0, + 530.0 + ], + "score": 1.0, + "text": "357" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 522.0, + 284.0, + 522.0, + 284.0, + 561.0, + 234.0, + 561.0 + ], + "score": 1.0, + "text": "358" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 557.0, + 282.0, + 557.0, + 282.0, + 589.0, + 237.0, + 589.0 + ], + "score": 1.0, + "text": "359" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 587.0, + 280.0, + 587.0, + 280.0, + 620.0, + 237.0, + 620.0 + ], + "score": 1.0, + "text": "360" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 618.0, + 277.0, + 618.0, + 277.0, + 652.0, + 237.0, + 652.0 + ], + "score": 1.0, + "text": "361" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 646.0, + 284.0, + 646.0, + 284.0, + 685.0, + 234.0, + 685.0 + ], + "score": 0.999, + "text": "362" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 703.0, + 282.0, + 703.0, + 282.0, + 736.0, + 237.0, + 736.0 + ], + "score": 1.0, + "text": "363" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 732.0, + 280.0, + 732.0, + 280.0, + 766.0, + 237.0, + 766.0 + ], + "score": 1.0, + "text": "364" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 762.0, + 282.0, + 762.0, + 282.0, + 807.0, + 234.0, + 807.0 + ], + "score": 1.0, + "text": "365" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 815.0, + 284.0, + 815.0, + 284.0, + 854.0, + 234.0, + 854.0 + ], + "score": 1.0, + "text": "366" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 850.0, + 280.0, + 850.0, + 280.0, + 882.0, + 237.0, + 882.0 + ], + "score": 1.0, + "text": "367" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 876.0, + 284.0, + 876.0, + 284.0, + 915.0, + 234.0, + 915.0 + ], + "score": 1.0, + "text": "368" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 909.0, + 282.0, + 909.0, + 282.0, + 950.0, + 234.0, + 950.0 + ], + "score": 1.0, + "text": "369" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 964.0, + 280.0, + 964.0, + 280.0, + 998.0, + 237.0, + 998.0 + ], + "score": 1.0, + "text": "370" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 996.0, + 280.0, + 996.0, + 280.0, + 1029.0, + 237.0, + 1029.0 + ], + "score": 1.0, + "text": "371" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1025.0, + 282.0, + 1025.0, + 282.0, + 1070.0, + 234.0, + 1070.0 + ], + "score": 1.0, + "text": "372" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1080.0, + 284.0, + 1080.0, + 284.0, + 1119.0, + 234.0, + 1119.0 + ], + "score": 1.0, + "text": "373" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1112.0, + 280.0, + 1112.0, + 280.0, + 1145.0, + 237.0, + 1145.0 + ], + "score": 1.0, + "text": "374" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1141.0, + 282.0, + 1141.0, + 282.0, + 1182.0, + 234.0, + 1182.0 + ], + "score": 1.0, + "text": "375" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1198.0, + 282.0, + 1198.0, + 282.0, + 1231.0, + 237.0, + 1231.0 + ], + "score": 1.0, + "text": "376" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1227.0, + 282.0, + 1227.0, + 282.0, + 1271.0, + 234.0, + 1271.0 + ], + "score": 1.0, + "text": "377" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1281.0, + 284.0, + 1281.0, + 284.0, + 1320.0, + 234.0, + 1320.0 + ], + "score": 0.878, + "text": "378" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1314.0, + 282.0, + 1314.0, + 282.0, + 1361.0, + 234.0, + 1361.0 + ], + "score": 0.965, + "text": "379" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1369.0, + 280.0, + 1369.0, + 280.0, + 1404.0, + 237.0, + 1404.0 + ], + "score": 1.0, + "text": "380" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1402.0, + 277.0, + 1402.0, + 277.0, + 1436.0, + 237.0, + 1436.0 + ], + "score": 1.0, + "text": "381" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1455.0, + 280.0, + 1455.0, + 280.0, + 1489.0, + 237.0, + 1489.0 + ], + "score": 1.0, + "text": "382" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1485.0, + 280.0, + 1485.0, + 280.0, + 1520.0, + 237.0, + 1520.0 + ], + "score": 1.0, + "text": "383" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1514.0, + 286.0, + 1514.0, + 286.0, + 1567.0, + 232.0, + 1567.0 + ], + "score": 0.999, + "text": "384" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1569.0, + 284.0, + 1569.0, + 284.0, + 1607.0, + 234.0, + 1607.0 + ], + "score": 1.0, + "text": "385" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1603.0, + 280.0, + 1603.0, + 280.0, + 1636.0, + 237.0, + 1636.0 + ], + "score": 1.0, + "text": "386" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1632.0, + 280.0, + 1632.0, + 280.0, + 1666.0, + 237.0, + 1666.0 + ], + "score": 1.0, + "text": "387" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1664.0, + 280.0, + 1664.0, + 280.0, + 1699.0, + 237.0, + 1699.0 + ], + "score": 1.0, + "text": "388" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1715.0, + 284.0, + 1715.0, + 284.0, + 1754.0, + 234.0, + 1754.0 + ], + "score": 0.993, + "text": "389" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1750.0, + 280.0, + 1750.0, + 280.0, + 1782.0, + 237.0, + 1782.0 + ], + "score": 1.0, + "text": "390" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1778.0, + 280.0, + 1778.0, + 280.0, + 1821.0, + 234.0, + 1821.0 + ], + "score": 1.0, + "text": "391" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1833.0, + 284.0, + 1833.0, + 284.0, + 1872.0, + 234.0, + 1872.0 + ], + "score": 0.999, + "text": "392" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1864.0, + 282.0, + 1864.0, + 282.0, + 1905.0, + 234.0, + 1905.0 + ], + "score": 0.999, + "text": "393" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1921.0, + 282.0, + 1921.0, + 282.0, + 1954.0, + 237.0, + 1954.0 + ], + "score": 1.0, + "text": "394" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1951.0, + 280.0, + 1951.0, + 280.0, + 1986.0, + 237.0, + 1986.0 + ], + "score": 1.0, + "text": "395" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1980.0, + 284.0, + 1980.0, + 284.0, + 2019.0, + 234.0, + 2019.0 + ], + "score": 0.999, + "text": "396" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 202.0, + 1411.0, + 202.0, + 1411.0, + 242.0, + 246.0, + 242.0 + ], + "score": 0.982, + "text": " 50[18] Yinhan Liu,Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy," + }, + { + "category_id": 15, + "poly": [ + 248.0, + 240.0, + 277.0, + 240.0, + 277.0, + 267.0, + 248.0, + 267.0 + ], + "score": 1.0, + "text": "51" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 233.0, + 1409.0, + 233.0, + 1409.0, + 273.0, + 352.0, + 273.0 + ], + "score": 0.984, + "text": " Mike Lewis, Luke Zettemoyer, and Veselin Stoyanov. Roberta: A robustly optimized BERT" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 269.0, + 279.0, + 269.0, + 279.0, + 303.0, + 246.0, + 303.0 + ], + "score": 1.0, + "text": "52" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 263.0, + 946.0, + 263.0, + 946.0, + 301.0, + 352.0, + 301.0 + ], + "score": 0.974, + "text": "pretraining approach. CoRR, abs/1907.11692, 2019." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 318.0, + 1411.0, + 318.0, + 1411.0, + 358.0, + 246.0, + 358.0 + ], + "score": 0.979, + "text": " 53[19] M. G. Sarwar Murshed, Christopher Murphy, Daqing Hou, Nazar Khan, Ganesh Anantha-" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 354.0, + 279.0, + 354.0, + 279.0, + 387.0, + 246.0, + 387.0 + ], + "score": 1.0, + "text": "54" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 349.0, + 1324.0, + 349.0, + 1324.0, + 389.0, + 352.0, + 389.0 + ], + "score": 0.992, + "text": " narayanan, and Faraz Hussain. Machine learning at the network edge: A survey, 2019." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 404.0, + 1409.0, + 404.0, + 1409.0, + 444.0, + 246.0, + 444.0 + ], + "score": 0.99, + "text": " 55[20] Gabriele Prato,Ella Charlaix,and Mehdi Rezagholizadeh.Fully quantized transformer for" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 440.0, + 279.0, + 440.0, + 279.0, + 474.0, + 246.0, + 474.0 + ], + "score": 1.0, + "text": "56" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 436.0, + 675.0, + 436.0, + 675.0, + 476.0, + 354.0, + 476.0 + ], + "score": 0.998, + "text": "improved translation, 2019." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 495.0, + 284.0, + 495.0, + 284.0, + 527.0, + 246.0, + 527.0 + ], + "score": 1.0, + "text": "57" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 491.0, + 1411.0, + 491.0, + 1411.0, + 531.0, + 290.0, + 531.0 + ], + "score": 0.981, + "text": "[21] Tara N. Sainath, Yanzhang He, Bo Li, Arun Narayanan,Ruoming Pang, Antoine Bruguier, Shuo" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 525.0, + 282.0, + 525.0, + 282.0, + 558.0, + 246.0, + 558.0 + ], + "score": 1.0, + "text": "58" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 520.0, + 1409.0, + 520.0, + 1409.0, + 561.0, + 354.0, + 561.0 + ], + "score": 0.985, + "text": "yiin Chang, Wei Li, Raziel Alvarez, Zhifeng Chen, Chung-Cheng Chiu, David Garcia, Alex" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 556.0, + 282.0, + 556.0, + 282.0, + 590.0, + 246.0, + 590.0 + ], + "score": 1.0, + "text": "59" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 552.0, + 1409.0, + 552.0, + 1409.0, + 592.0, + 354.0, + 592.0 + ], + "score": 0.989, + "text": "Gruenstein, Ke Hu, Minho Jin, Anjuli Kannan, Qiao Liang, Ian McGraw, Cal Peyser, Rohit" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 586.0, + 279.0, + 586.0, + 279.0, + 620.0, + 246.0, + 620.0 + ], + "score": 1.0, + "text": "60" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 582.0, + 1411.0, + 582.0, + 1411.0, + 622.0, + 354.0, + 622.0 + ], + "score": 0.99, + "text": "Prabhavalkar, Golan Pundak, David Rybach, Yuan Shangguan, Yash Sheth, Trevor Strohman," + }, + { + "category_id": 15, + "poly": [ + 246.0, + 615.0, + 279.0, + 615.0, + 279.0, + 649.0, + 246.0, + 649.0 + ], + "score": 1.0, + "text": "61" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 607.0, + 1411.0, + 607.0, + 1411.0, + 656.0, + 350.0, + 656.0 + ], + "score": 0.986, + "text": "Mirko Visontai, Yonghui Wu, Yu Zhang,and Ding Zhao. A streaming on-device end-to-end" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 647.0, + 279.0, + 647.0, + 279.0, + 681.0, + 246.0, + 681.0 + ], + "score": 1.0, + "text": "62" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 643.0, + 1204.0, + 643.0, + 1204.0, + 683.0, + 354.0, + 683.0 + ], + "score": 0.997, + "text": "model surpassing server-side conventional model quality and latency, 2020." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 698.0, + 1413.0, + 698.0, + 1413.0, + 738.0, + 246.0, + 738.0 + ], + "score": 0.976, + "text": " 63[22] Sheng Shen, Zhen Dong, Jiayu Ye, Linjian Ma, Zhewei Yao,Amir Gholami, Michael W." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 734.0, + 282.0, + 734.0, + 282.0, + 765.0, + 246.0, + 765.0 + ], + "score": 1.0, + "text": "64" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 725.0, + 1411.0, + 725.0, + 1411.0, + 765.0, + 354.0, + 765.0 + ], + "score": 0.989, + "text": "Mahoney,and Kurt Keutzer. Q-bert: Hessian based ultra low precision quantization of bert," + }, + { + "category_id": 15, + "poly": [ + 246.0, + 763.0, + 279.0, + 763.0, + 279.0, + 797.0, + 246.0, + 797.0 + ], + "score": 1.0, + "text": "65" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 757.0, + 433.0, + 757.0, + 433.0, + 799.0, + 352.0, + 799.0 + ], + "score": 1.0, + "text": "2019." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 818.0, + 284.0, + 818.0, + 284.0, + 850.0, + 246.0, + 850.0 + ], + "score": 0.999, + "text": "66" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 814.0, + 1409.0, + 814.0, + 1409.0, + 854.0, + 292.0, + 854.0 + ], + "score": 0.984, + "text": "[23] Hyunsung Shin, Dongyoung Kim, Eunhyeok Park, Sungho Park, Yongsik Park, and Sungjoo" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 852.0, + 277.0, + 852.0, + 277.0, + 879.0, + 248.0, + 879.0 + ], + "score": 1.0, + "text": "67" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 846.0, + 1411.0, + 846.0, + 1411.0, + 886.0, + 356.0, + 886.0 + ], + "score": 0.98, + "text": "Yoo. Mcdram: Low latency and energy-effcient matrix computations in dram. IEEE Trans-" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 879.0, + 282.0, + 879.0, + 282.0, + 911.0, + 246.0, + 911.0 + ], + "score": 0.999, + "text": "68" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 875.0, + 1411.0, + 875.0, + 1411.0, + 915.0, + 354.0, + 915.0 + ], + "score": 0.993, + "text": "actions on Computer-Aided Design of Integrated Circuits and Systems, 37(11):2613-2622," + }, + { + "category_id": 15, + "poly": [ + 246.0, + 911.0, + 279.0, + 911.0, + 279.0, + 945.0, + 246.0, + 945.0 + ], + "score": 1.0, + "text": "69" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 903.0, + 433.0, + 903.0, + 433.0, + 945.0, + 352.0, + 945.0 + ], + "score": 1.0, + "text": "2018." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 960.0, + 1411.0, + 960.0, + 1411.0, + 1000.0, + 246.0, + 1000.0 + ], + "score": 0.982, + "text": " 70[24] Jacob R. Stevens, Rangharajan Venkatesan, Steve Dai, Brucek Khailany,and Anand Raghu-" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 995.0, + 279.0, + 995.0, + 279.0, + 1029.0, + 246.0, + 1029.0 + ], + "score": 1.0, + "text": "71" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 989.0, + 1413.0, + 989.0, + 1413.0, + 1031.0, + 352.0, + 1031.0 + ], + "score": 0.984, + "text": " nathan. Softermax: Hardware/software co-design of an eficient softmax for transformers." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1027.0, + 279.0, + 1027.0, + 279.0, + 1061.0, + 246.0, + 1061.0 + ], + "score": 0.999, + "text": "72" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1023.0, + 695.0, + 1023.0, + 695.0, + 1057.0, + 356.0, + 1057.0 + ], + "score": 0.999, + "text": "CoRR,abs/2103.09301,2021." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1080.0, + 284.0, + 1080.0, + 284.0, + 1114.0, + 246.0, + 1114.0 + ], + "score": 0.999, + "text": "73" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1078.0, + 1409.0, + 1078.0, + 1409.0, + 1118.0, + 290.0, + 1118.0 + ], + "score": 0.977, + "text": "[25] Q. Sun, Z. Di,Z. Lv, F. Song, Q. Xiang, Q. Feng, Y. Fan, X. Yu,and W. Wang. A high speed" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1112.0, + 279.0, + 1112.0, + 279.0, + 1145.0, + 246.0, + 1145.0 + ], + "score": 1.0, + "text": "74" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1105.0, + 1409.0, + 1105.0, + 1409.0, + 1148.0, + 350.0, + 1148.0 + ], + "score": 0.989, + "text": "softmax vlsi architecture based on basic-split. In 2018 14th IEEE International Conference on" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1141.0, + 279.0, + 1141.0, + 279.0, + 1177.0, + 246.0, + 1177.0 + ], + "score": 1.0, + "text": "75" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1141.0, + 1227.0, + 1141.0, + 1227.0, + 1175.0, + 356.0, + 1175.0 + ], + "score": 0.977, + "text": "Solid-State and Integrated Circuit Technology (ICSICT), pages 1-3, Oct 2018." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1198.0, + 284.0, + 1198.0, + 284.0, + 1230.0, + 246.0, + 1230.0 + ], + "score": 1.0, + "text": "76" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1194.0, + 1409.0, + 1194.0, + 1409.0, + 1234.0, + 290.0, + 1234.0 + ], + "score": 0.975, + "text": "[26] Hugo Touvron,Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1228.0, + 279.0, + 1228.0, + 279.0, + 1262.0, + 246.0, + 1262.0 + ], + "score": 0.999, + "text": "77" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1228.0, + 1397.0, + 1228.0, + 1397.0, + 1262.0, + 356.0, + 1262.0 + ], + "score": 0.985, + "text": "Hervé Jégou. Training data-efficient image transformers distillation through attention, 2021." + }, + { + "category_id": 15, + "poly": [ + 244.0, + 1278.0, + 1411.0, + 1278.0, + 1411.0, + 1319.0, + 244.0, + 1319.0 + ], + "score": 0.988, + "text": "78[27] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit,Llion Jones,Aidan N. Gomez," + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1314.0, + 279.0, + 1314.0, + 279.0, + 1348.0, + 246.0, + 1348.0 + ], + "score": 1.0, + "text": "79" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1310.0, + 1397.0, + 1310.0, + 1397.0, + 1344.0, + 356.0, + 1344.0 + ], + "score": 0.978, + "text": "Lukasz Kaiser, and Ilia Polosukhin. Attention is all you need. CoRR,abs/1706.03762, 2017." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1369.0, + 286.0, + 1369.0, + 286.0, + 1401.0, + 246.0, + 1401.0 + ], + "score": 0.999, + "text": "80" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1365.0, + 1409.0, + 1365.0, + 1409.0, + 1405.0, + 290.0, + 1405.0 + ], + "score": 0.993, + "text": "[28] Ihor Vasyltsov and Wooseok Chang. Lightweight Approximation of Softmax Layer for On-Device" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1401.0, + 279.0, + 1401.0, + 279.0, + 1435.0, + 246.0, + 1435.0 + ], + "score": 1.0, + "text": "81" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1399.0, + 931.0, + 1399.0, + 931.0, + 1433.0, + 356.0, + 1433.0 + ], + "score": 0.984, + "text": "Inference. Springer International Publishing, 2021." + }, + { + "category_id": 15, + "poly": [ + 244.0, + 1452.0, + 1411.0, + 1452.0, + 1411.0, + 1490.0, + 244.0, + 1490.0 + ], + "score": 0.987, + "text": "82[29] Alex Wang,Amanpreet Singh, Julian Michael,Felix Hil,Omer Levy,and Samuel R. Bowman." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1485.0, + 282.0, + 1485.0, + 282.0, + 1519.0, + 246.0, + 1519.0 + ], + "score": 0.999, + "text": "83" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1477.0, + 1411.0, + 1477.0, + 1411.0, + 1523.0, + 352.0, + 1523.0 + ], + "score": 0.989, + "text": " GLUE: A multi-task benchmark and analysis platform for natural language understanding." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1517.0, + 279.0, + 1517.0, + 279.0, + 1551.0, + 246.0, + 1551.0 + ], + "score": 1.0, + "text": "84" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1515.0, + 697.0, + 1515.0, + 697.0, + 1549.0, + 358.0, + 1549.0 + ], + "score": 0.999, + "text": "CoRR,abs/1804.07461,2018." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1566.0, + 1411.0, + 1566.0, + 1411.0, + 1608.0, + 246.0, + 1608.0 + ], + "score": 0.986, + "text": " 85[30] K. Wang, Y. Huang, Y. Ho,and W. Fang. A customized convolutional neural network design" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1604.0, + 282.0, + 1604.0, + 282.0, + 1637.0, + 246.0, + 1637.0 + ], + "score": 1.0, + "text": "86" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1595.0, + 1413.0, + 1595.0, + 1413.0, + 1639.0, + 352.0, + 1639.0 + ], + "score": 0.982, + "text": "using improved softmax layer for real-time human emotion recognition. In 2019 IEEE Inter-" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1631.0, + 282.0, + 1631.0, + 282.0, + 1667.0, + 246.0, + 1667.0 + ], + "score": 1.0, + "text": "87" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1629.0, + 1411.0, + 1629.0, + 1411.0, + 1669.0, + 354.0, + 1669.0 + ], + "score": 0.982, + "text": "national Conference on Artificial Intelligence Circuits and Systems (AICAS), pages 102-106," + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1663.0, + 282.0, + 1663.0, + 282.0, + 1696.0, + 246.0, + 1696.0 + ], + "score": 0.999, + "text": "88" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1661.0, + 511.0, + 1661.0, + 511.0, + 1694.0, + 354.0, + 1694.0 + ], + "score": 0.997, + "text": "March 2019." + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1713.0, + 1411.0, + 1713.0, + 1411.0, + 1754.0, + 248.0, + 1754.0 + ], + "score": 0.988, + "text": " 89[31] M. Wang,S.Lu,D. Zhu, J.Lin,and Z. Wang. A high-speed and low-complexity architecture" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1747.0, + 279.0, + 1747.0, + 279.0, + 1781.0, + 246.0, + 1781.0 + ], + "score": 1.0, + "text": "90" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1747.0, + 1409.0, + 1747.0, + 1409.0, + 1781.0, + 356.0, + 1781.0 + ], + "score": 0.985, + "text": "for softmax function in deep learning. In 2O18 IEEE Asia Pacific Conference on Circuits and" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1779.0, + 279.0, + 1779.0, + 279.0, + 1813.0, + 246.0, + 1813.0 + ], + "score": 1.0, + "text": "91" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1775.0, + 884.0, + 1775.0, + 884.0, + 1815.0, + 354.0, + 1815.0 + ], + "score": 0.998, + "text": "Systems (APCCAS), pages 223-226, Oct 2018." + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1832.0, + 1409.0, + 1832.0, + 1409.0, + 1872.0, + 246.0, + 1872.0 + ], + "score": 0.992, + "text": " 92[32] Siqi Wang,Anuj Pathania,and Tulika Mitra. Neural network inference on mobile socs. IEEE" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1865.0, + 282.0, + 1865.0, + 282.0, + 1899.0, + 246.0, + 1899.0 + ], + "score": 1.0, + "text": "93" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1861.0, + 695.0, + 1861.0, + 695.0, + 1901.0, + 352.0, + 1901.0 + ], + "score": 0.989, + "text": "Design Test, page 1-1,2020." + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1916.0, + 1411.0, + 1916.0, + 1411.0, + 1956.0, + 242.0, + 1956.0 + ], + "score": 0.957, + "text": " 94[33] Zhilin_ Yang, Zihang Dai, Yiming Yang, Jaime G. Carbonell,Ruslan Salakhutdinov, and" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1950.0, + 282.0, + 1950.0, + 282.0, + 1984.0, + 246.0, + 1984.0 + ], + "score": 1.0, + "text": "95" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1948.0, + 1411.0, + 1948.0, + 1411.0, + 1988.0, + 354.0, + 1988.0 + ], + "score": 0.989, + "text": "Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding. CoRR," + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1979.0, + 279.0, + 1979.0, + 279.0, + 2015.0, + 246.0, + 2015.0 + ], + "score": 1.0, + "text": "96" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1979.0, + 617.0, + 1979.0, + 617.0, + 2013.0, + 356.0, + 2013.0 + ], + "score": 0.999, + "text": "abs/1906.08237,2019." + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 407, + 954, + 1408, + 954, + 1408, + 1328, + 407, + 1328 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 408, + 1377, + 1406, + 1377, + 1406, + 1756, + 408, + 1756 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 407, + 570, + 1409, + 570, + 1409, + 794, + 407, + 794 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 405, + 841, + 1258, + 841, + 1258, + 908, + 405, + 908 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 365, + 915, + 672, + 915, + 672, + 947, + 365, + 947 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 367, + 801, + 841, + 801, + 841, + 833, + 367, + 833 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 366, + 529, + 582, + 529, + 582, + 560, + 366, + 560 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 837, + 2064, + 866, + 2064, + 866, + 2089, + 837, + 2089 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 366, + 1765, + 1202, + 1765, + 1202, + 1797, + 366, + 1797 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 408, + 1805, + 1407, + 1805, + 1407, + 1997, + 408, + 1997 + ], + "score": 0.819 + }, + { + "category_id": 1, + "poly": [ + 365, + 1338, + 1403, + 1338, + 1403, + 1371, + 365, + 1371 + ], + "score": 0.813 + }, + { + "category_id": 0, + "poly": [ + 294, + 473, + 435, + 473, + 435, + 509, + 294, + 509 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1410, + 202, + 1410, + 425, + 298, + 425 + ], + "score": 0.629 + }, + { + "category_id": 2, + "poly": [ + 237, + 232, + 285, + 232, + 285, + 2016, + 237, + 2016 + ], + "score": 0.24 + }, + { + "category_id": 2, + "poly": [ + 237, + 205, + 284, + 205, + 284, + 422, + 237, + 422 + ], + "score": 0.092 + }, + { + "category_id": 15, + "poly": [ + 833.0, + 2061.0, + 871.0, + 2061.0, + 871.0, + 2100.0, + 833.0, + 2100.0 + ], + "score": 1.0, + "text": "12" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 471.0, + 440.0, + 471.0, + 440.0, + 515.0, + 297.0, + 515.0 + ], + "score": 1.0, + "text": "Checklist" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 239.0, + 282.0, + 239.0, + 282.0, + 268.0, + 236.0, + 268.0 + ], + "score": 1.0, + "text": "398" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 286.0, + 279.0, + 286.0, + 279.0, + 319.0, + 236.0, + 319.0 + ], + "score": 1.0, + "text": "399" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 317.0, + 282.0, + 317.0, + 282.0, + 355.0, + 238.0, + 355.0 + ], + "score": 0.937, + "text": "400" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 366.0, + 279.0, + 366.0, + 279.0, + 396.0, + 238.0, + 396.0 + ], + "score": 1.0, + "text": "401" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 396.0, + 282.0, + 396.0, + 282.0, + 427.0, + 238.0, + 427.0 + ], + "score": 1.0, + "text": "402" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 482.0, + 279.0, + 482.0, + 279.0, + 516.0, + 238.0, + 516.0 + ], + "score": 1.0, + "text": "403" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 531.0, + 284.0, + 531.0, + 284.0, + 569.0, + 233.0, + 569.0 + ], + "score": 1.0, + "text": "404" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 573.0, + 282.0, + 573.0, + 282.0, + 604.0, + 236.0, + 604.0 + ], + "score": 1.0, + "text": "405" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 604.0, + 282.0, + 604.0, + 282.0, + 635.0, + 236.0, + 635.0 + ], + "score": 1.0, + "text": "406" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 637.0, + 279.0, + 637.0, + 279.0, + 671.0, + 238.0, + 671.0 + ], + "score": 1.0, + "text": "407" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 673.0, + 282.0, + 673.0, + 282.0, + 704.0, + 238.0, + 704.0 + ], + "score": 1.0, + "text": "408" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 706.0, + 282.0, + 706.0, + 282.0, + 735.0, + 236.0, + 735.0 + ], + "score": 0.999, + "text": "409" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 737.0, + 282.0, + 737.0, + 282.0, + 767.0, + 236.0, + 767.0 + ], + "score": 1.0, + "text": "410" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 769.0, + 279.0, + 769.0, + 279.0, + 800.0, + 238.0, + 800.0 + ], + "score": 1.0, + "text": "411" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 808.0, + 282.0, + 808.0, + 282.0, + 837.0, + 238.0, + 837.0 + ], + "score": 1.0, + "text": "412" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 847.0, + 282.0, + 847.0, + 282.0, + 877.0, + 236.0, + 877.0 + ], + "score": 1.0, + "text": "413" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 881.0, + 282.0, + 881.0, + 282.0, + 912.0, + 236.0, + 912.0 + ], + "score": 1.0, + "text": "414" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 920.0, + 282.0, + 920.0, + 282.0, + 951.0, + 236.0, + 951.0 + ], + "score": 1.0, + "text": "415" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 959.0, + 282.0, + 959.0, + 282.0, + 991.0, + 236.0, + 991.0 + ], + "score": 1.0, + "text": "416" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 989.0, + 282.0, + 989.0, + 282.0, + 1020.0, + 236.0, + 1020.0 + ], + "score": 1.0, + "text": "417" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1020.0, + 282.0, + 1020.0, + 282.0, + 1051.0, + 236.0, + 1051.0 + ], + "score": 1.0, + "text": "418" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1053.0, + 282.0, + 1053.0, + 282.0, + 1085.0, + 236.0, + 1085.0 + ], + "score": 1.0, + "text": "419" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1085.0, + 282.0, + 1085.0, + 282.0, + 1114.0, + 236.0, + 1114.0 + ], + "score": 1.0, + "text": "420" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1114.0, + 279.0, + 1114.0, + 279.0, + 1146.0, + 238.0, + 1146.0 + ], + "score": 1.0, + "text": "421" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1148.0, + 282.0, + 1148.0, + 282.0, + 1179.0, + 236.0, + 1179.0 + ], + "score": 0.999, + "text": "422" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1179.0, + 279.0, + 1179.0, + 279.0, + 1210.0, + 236.0, + 1210.0 + ], + "score": 1.0, + "text": "423" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1208.0, + 282.0, + 1208.0, + 282.0, + 1242.0, + 238.0, + 1242.0 + ], + "score": 1.0, + "text": "424" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1242.0, + 282.0, + 1242.0, + 282.0, + 1273.0, + 238.0, + 1273.0 + ], + "score": 1.0, + "text": "425" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1273.0, + 279.0, + 1273.0, + 279.0, + 1305.0, + 238.0, + 1305.0 + ], + "score": 1.0, + "text": "426" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1303.0, + 279.0, + 1303.0, + 279.0, + 1336.0, + 238.0, + 1336.0 + ], + "score": 0.999, + "text": "427" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1342.0, + 279.0, + 1342.0, + 279.0, + 1375.0, + 236.0, + 1375.0 + ], + "score": 1.0, + "text": "428" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1381.0, + 279.0, + 1381.0, + 279.0, + 1414.0, + 238.0, + 1414.0 + ], + "score": 1.0, + "text": "429" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1412.0, + 279.0, + 1412.0, + 279.0, + 1444.0, + 236.0, + 1444.0 + ], + "score": 1.0, + "text": "430" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1442.0, + 279.0, + 1442.0, + 279.0, + 1475.0, + 236.0, + 1475.0 + ], + "score": 1.0, + "text": "431" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1473.0, + 284.0, + 1473.0, + 284.0, + 1511.0, + 233.0, + 1511.0 + ], + "score": 1.0, + "text": "432" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1507.0, + 279.0, + 1507.0, + 279.0, + 1540.0, + 236.0, + 1540.0 + ], + "score": 1.0, + "text": "433" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1540.0, + 279.0, + 1540.0, + 279.0, + 1571.0, + 238.0, + 1571.0 + ], + "score": 1.0, + "text": "434" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1571.0, + 279.0, + 1571.0, + 279.0, + 1603.0, + 238.0, + 1603.0 + ], + "score": 1.0, + "text": "435" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1601.0, + 279.0, + 1601.0, + 279.0, + 1634.0, + 236.0, + 1634.0 + ], + "score": 1.0, + "text": "436" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1634.0, + 279.0, + 1634.0, + 279.0, + 1666.0, + 238.0, + 1666.0 + ], + "score": 1.0, + "text": "437" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1664.0, + 284.0, + 1664.0, + 284.0, + 1701.0, + 233.0, + 1701.0 + ], + "score": 1.0, + "text": "438" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1699.0, + 282.0, + 1699.0, + 282.0, + 1730.0, + 238.0, + 1730.0 + ], + "score": 1.0, + "text": "439" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1730.0, + 282.0, + 1730.0, + 282.0, + 1762.0, + 236.0, + 1762.0 + ], + "score": 0.99, + "text": "440" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1770.0, + 279.0, + 1770.0, + 279.0, + 1801.0, + 238.0, + 1801.0 + ], + "score": 1.0, + "text": "441" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1809.0, + 282.0, + 1809.0, + 282.0, + 1838.0, + 236.0, + 1838.0 + ], + "score": 0.977, + "text": "442" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1840.0, + 282.0, + 1840.0, + 282.0, + 1870.0, + 236.0, + 1870.0 + ], + "score": 1.0, + "text": "443" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1874.0, + 282.0, + 1874.0, + 282.0, + 1903.0, + 236.0, + 1903.0 + ], + "score": 1.0, + "text": "444" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1903.0, + 282.0, + 1903.0, + 282.0, + 1935.0, + 236.0, + 1935.0 + ], + "score": 1.0, + "text": "445" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1936.0, + 282.0, + 1936.0, + 282.0, + 1968.0, + 236.0, + 1968.0 + ], + "score": 1.0, + "text": "446" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1968.0, + 279.0, + 1968.0, + 279.0, + 1999.0, + 236.0, + 1999.0 + ], + "score": 1.0, + "text": "447" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 208.0, + 277.0, + 208.0, + 277.0, + 238.0, + 239.0, + 238.0 + ], + "score": 1.0, + "text": "397" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 240.0, + 277.0, + 240.0, + 277.0, + 270.0, + 239.0, + 270.0 + ], + "score": 1.0, + "text": "398" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 288.0, + 277.0, + 288.0, + 277.0, + 317.0, + 239.0, + 317.0 + ], + "score": 1.0, + "text": "399" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 317.0, + 278.0, + 317.0, + 278.0, + 352.0, + 238.0, + 352.0 + ], + "score": 1.0, + "text": "400" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 367.0, + 276.0, + 367.0, + 276.0, + 398.0, + 239.0, + 398.0 + ], + "score": 1.0, + "text": "401" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 398.0, + 277.0, + 398.0, + 277.0, + 428.0, + 239.0, + 428.0 + ], + "score": 1.0, + "text": "402" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 952.0, + 1412.0, + 952.0, + 1412.0, + 989.0, + 405.0, + 989.0 + ], + "score": 0.983, + "text": "(a) Did you include the code,data,and instructions needed to reproduce the main experi-" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 981.0, + 1411.0, + 981.0, + 1411.0, + 1019.0, + 449.0, + 1019.0 + ], + "score": 0.982, + "text": "mental results (either in the supplemental material or as a URL)? [Yes] See supplemen-" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1016.0, + 600.0, + 1016.0, + 600.0, + 1045.0, + 451.0, + 1045.0 + ], + "score": 0.995, + "text": "tal materials." + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1046.0, + 1408.0, + 1046.0, + 1408.0, + 1085.0, + 406.0, + 1085.0 + ], + "score": 0.985, + "text": "(b) Did you specify all the training details (e.g., data splits,hyperparameters, how they" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1077.0, + 1409.0, + 1077.0, + 1409.0, + 1116.0, + 449.0, + 1116.0 + ], + "score": 0.989, + "text": "were chosen)? [N/A] In our paper we do not consider any training, or fine-tuning. We" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1107.0, + 767.0, + 1107.0, + 767.0, + 1143.0, + 450.0, + 1143.0 + ], + "score": 0.999, + "text": "focus on the inference only." + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1143.0, + 1410.0, + 1143.0, + 1410.0, + 1179.0, + 410.0, + 1179.0 + ], + "score": 0.981, + "text": "(c) Did you report error bars (e.g., with respect to the random seed after running experi-" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1173.0, + 1409.0, + 1173.0, + 1409.0, + 1208.0, + 449.0, + 1208.0 + ], + "score": 0.979, + "text": " ments multiple times)? [N/A] Since we did not do any training, we did not need to run" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1206.0, + 1140.0, + 1206.0, + 1140.0, + 1238.0, + 452.0, + 1238.0 + ], + "score": 0.984, + "text": "experiment multiple times (inference output is deterministic)." + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1236.0, + 1408.0, + 1236.0, + 1408.0, + 1274.0, + 409.0, + 1274.0 + ], + "score": 0.978, + "text": "(d) Did you include the total amount of compute and the type of resources used (e.g., type" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1265.0, + 1411.0, + 1265.0, + 1411.0, + 1305.0, + 450.0, + 1305.0 + ], + "score": 0.99, + "text": "of GPUs, internal cluster, or cloud provider)? [N/A] Since we did not do any training," + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1301.0, + 768.0, + 1301.0, + 768.0, + 1329.0, + 452.0, + 1329.0 + ], + "score": 0.975, + "text": "it is not related to our work." + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1377.0, + 1407.0, + 1377.0, + 1407.0, + 1412.0, + 407.0, + 1412.0 + ], + "score": 0.979, + "text": "(a) If your work uses existing assets, did you cite the creators?[Yes] Al used assets are" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1405.0, + 1407.0, + 1405.0, + 1407.0, + 1442.0, + 448.0, + 1442.0 + ], + "score": 0.989, + "text": "cited either as a reference,or by direct URL link in the footnote,or in the body of the" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1443.0, + 527.0, + 1443.0, + 527.0, + 1473.0, + 447.0, + 1473.0 + ], + "score": 1.0, + "text": "paper." + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1474.0, + 447.0, + 1474.0, + 447.0, + 1505.0, + 406.0, + 1505.0 + ], + "score": 0.989, + "text": "(b)" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1471.0, + 1408.0, + 1471.0, + 1408.0, + 1507.0, + 448.0, + 1507.0 + ], + "score": 0.994, + "text": "Did you mention the license of the assets? [Yes] The license of the used assets are" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1503.0, + 1240.0, + 1503.0, + 1240.0, + 1535.0, + 451.0, + 1535.0 + ], + "score": 0.988, + "text": "noticed either in the appropriate reference,or direct URL link of asset." + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1535.0, + 1407.0, + 1535.0, + 1407.0, + 1571.0, + 408.0, + 1571.0 + ], + "score": 0.981, + "text": "(c) Did you include any new assets either in the supplemental material or as a URL? [Yes]" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1567.0, + 1407.0, + 1567.0, + 1407.0, + 1602.0, + 450.0, + 1602.0 + ], + "score": 0.985, + "text": " Some code and generated LUTs to reproduce our results are provided in supplemental" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1599.0, + 566.0, + 1599.0, + 566.0, + 1626.0, + 450.0, + 1626.0 + ], + "score": 1.0, + "text": "materials." + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1633.0, + 447.0, + 1633.0, + 447.0, + 1664.0, + 407.0, + 1664.0 + ], + "score": 0.992, + "text": "(d)" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1630.0, + 1407.0, + 1630.0, + 1407.0, + 1666.0, + 448.0, + 1666.0 + ], + "score": 0.99, + "text": "Did you discuss whether and how consent was obtained from people whose data you're" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1662.0, + 706.0, + 1662.0, + 706.0, + 1695.0, + 452.0, + 1695.0 + ], + "score": 0.993, + "text": "using/curating? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1692.0, + 1406.0, + 1692.0, + 1406.0, + 1732.0, + 408.0, + 1732.0 + ], + "score": 0.992, + "text": "(e) Did you discuss whether the data you are using/curating contains personally identifiable" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1723.0, + 906.0, + 1723.0, + 906.0, + 1761.0, + 450.0, + 1761.0 + ], + "score": 0.997, + "text": "information or offensive content? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 568.0, + 1408.0, + 568.0, + 1408.0, + 603.0, + 406.0, + 603.0 + ], + "score": 0.988, + "text": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper's" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 599.0, + 1412.0, + 599.0, + 1412.0, + 634.0, + 451.0, + 634.0 + ], + "score": 0.986, + "text": "contributions and scope?[Yes] See also Section 3,where key contributions were listed." + }, + { + "category_id": 15, + "poly": [ + 405.0, + 633.0, + 1232.0, + 633.0, + 1232.0, + 666.0, + 405.0, + 666.0 + ], + "score": 0.982, + "text": "(b) Did you describe the limitations of your work?[Yes] See Section 5.3." + }, + { + "category_id": 15, + "poly": [ + 406.0, + 667.0, + 1310.0, + 667.0, + 1310.0, + 702.0, + 406.0, + 702.0 + ], + "score": 0.989, + "text": "(c) Did you discuss any potential negative societal impacts of your work? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 700.0, + 1409.0, + 700.0, + 1409.0, + 737.0, + 406.0, + 737.0 + ], + "score": 0.982, + "text": "(d) Have you read the ethics review guidelines and ensured that your paper conforms to" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 729.0, + 1409.0, + 729.0, + 1409.0, + 768.0, + 449.0, + 768.0 + ], + "score": 0.99, + "text": " them? [Yes] We read the ethics review guidelines and confirm that content of our paper" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 762.0, + 1412.0, + 762.0, + 1412.0, + 797.0, + 449.0, + 797.0 + ], + "score": 0.984, + "text": " is not related to any ethics issue, since it is focused on the optimization of computations." + }, + { + "category_id": 15, + "poly": [ + 405.0, + 840.0, + 1261.0, + 840.0, + 1261.0, + 876.0, + 405.0, + 876.0 + ], + "score": 0.994, + "text": "(a) Did you state the full set of assumptions of all theoretical results? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 874.0, + 1183.0, + 874.0, + 1183.0, + 910.0, + 404.0, + 910.0 + ], + "score": 0.99, + "text": "(b) Did you include complete proofs of all theoretical results? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 912.0, + 675.0, + 912.0, + 675.0, + 952.0, + 360.0, + 952.0 + ], + "score": 0.977, + "text": "3. If you ran experiments..." + }, + { + "category_id": 15, + "poly": [ + 359.0, + 798.0, + 847.0, + 798.0, + 847.0, + 836.0, + 359.0, + 836.0 + ], + "score": 0.988, + "text": "2. If you are including theoretical results..." + }, + { + "category_id": 15, + "poly": [ + 362.0, + 525.0, + 586.0, + 525.0, + 586.0, + 564.0, + 362.0, + 564.0 + ], + "score": 0.952, + "text": "1. For all authors.." + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1760.0, + 1207.0, + 1760.0, + 1207.0, + 1804.0, + 357.0, + 1804.0 + ], + "score": 0.994, + "text": " 5. If you used crowdsourcing or conducted research with human subjects..." + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1802.0, + 1411.0, + 1802.0, + 1411.0, + 1839.0, + 404.0, + 1839.0 + ], + "score": 0.984, + "text": "(a) Did you include the full text of instructions given to participants and screenshots, if" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1833.0, + 661.0, + 1833.0, + 661.0, + 1870.0, + 449.0, + 1870.0 + ], + "score": 0.978, + "text": "applicable? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1868.0, + 1408.0, + 1868.0, + 1408.0, + 1903.0, + 406.0, + 1903.0 + ], + "score": 0.984, + "text": "(b) Did you describe any potential participant risks,with links to Institutional Review" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1899.0, + 953.0, + 1899.0, + 953.0, + 1934.0, + 451.0, + 1934.0 + ], + "score": 0.985, + "text": "Board (IRB) approvals,if applicable? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1932.0, + 1407.0, + 1932.0, + 1407.0, + 1967.0, + 410.0, + 1967.0 + ], + "score": 0.989, + "text": "(c) Did you include the estimated hourly wage paid to participants and the total amount" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1965.0, + 928.0, + 1965.0, + 928.0, + 1999.0, + 450.0, + 1999.0 + ], + "score": 0.993, + "text": " spent on participant compensation? [N/A]" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1333.0, + 1408.0, + 1333.0, + 1408.0, + 1377.0, + 355.0, + 1377.0 + ], + "score": 0.98, + "text": " 4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets.." + }, + { + "category_id": 15, + "poly": [ + 296.0, + 202.0, + 1407.0, + 202.0, + 1407.0, + 238.0, + 296.0, + 238.0 + ], + "score": 0.976, + "text": "[34] B. Yuan. Efcient hardware architecture of softmax layer in deep neural network. In 2016 29th" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 233.0, + 1302.0, + 233.0, + 1302.0, + 268.0, + 355.0, + 268.0 + ], + "score": 0.991, + "text": "IEEE International System-on-Chip Conference (SOCC), pages 323-326, Sep.2016." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 281.0, + 1411.0, + 281.0, + 1411.0, + 320.0, + 293.0, + 320.0 + ], + "score": 0.988, + "text": "[35] Ofir Zafrir, Guy Boudoukh,Peter Izsak,and Moshe Wasserblat. Q8bert: Quantized 8bit bert," + }, + { + "category_id": 15, + "poly": [ + 354.0, + 311.0, + 429.0, + 311.0, + 429.0, + 346.0, + 354.0, + 346.0 + ], + "score": 1.0, + "text": "2019." + }, + { + "category_id": 15, + "poly": [ + 296.0, + 361.0, + 1407.0, + 361.0, + 1407.0, + 397.0, + 296.0, + 397.0 + ], + "score": 0.98, + "text": "[36] Xingzhou Zhang, Yifan Wang, Sidi Lu,Liangkai Liu, Lanyu Xu,and Weisong Shi. Openei: An" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 393.0, + 1130.0, + 393.0, + 1130.0, + 426.0, + 355.0, + 426.0 + ], + "score": 0.987, + "text": "open framework for edge intelligence. CoRR,abs/1906.01864,2019." + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/lQdXeXDoWtI/lQdXeXDoWtI.md b/parse/train/lQdXeXDoWtI/lQdXeXDoWtI.md new file mode 100644 index 0000000000000000000000000000000000000000..f8b745d723b0aa6868f7143a1d07b4530a2b9d04 --- /dev/null +++ b/parse/train/lQdXeXDoWtI/lQdXeXDoWtI.md @@ -0,0 +1,533 @@ +# IN SEARCH OF LOST DOMAIN GENERALIZATION + +Ishaan Gulrajani∗ Stanford University igul222@gmail.com + +David Lopez-Paz Facebook AI Research dlp@fb.com + +# ABSTRACT + +The goal of domain generalization algorithms is to predict well on distributions different from those seen during training. While a myriad of domain generalization algorithms exist, inconsistencies in experimental conditions—datasets, network architectures, and model selection criteria—render fair comparisons difficult. The goal of this paper is to understand how useful domain generalization algorithms are in realistic settings. As a first step, we realize that model selection is non-trivial for domain generalization tasks, and we argue that algorithms without a model selection criterion remain incomplete. Next we implement DOMAINBED, a testbed for domain generalization including seven benchmarks, fourteen algorithms, and three model selection criteria. When conducting extensive experiments using DOMAINBED we find that when carefully implemented and tuned, ERM outperforms the state-of-the-art in terms of average performance. Furthermore, no algorithm included in DOMAINBED outperforms ERM by more than one point when evaluated under the same experimental conditions. We hope that the release of DOMAINBED, alongside contributions from fellow researchers, will streamline reproducible and rigorous advances in domain generalization. + +# 1 INTRODUCTION + +Machine learning systems often fail to generalize out-of-distribution, crashing in spectacular ways when tested outside the domain of training examples (Torralba and Efros, 2011). The overreliance of learning systems on the training distribution manifests widely. For instance, self-driving car systems struggle to perform under conditions different to those of training, including variations in light (Dai and Van Gool, 2018), weather (Volk et al., 2019), and object poses (Alcorn et al., 2019). As another example, systems trained on medical data collected in one hospital do not generalize to other health centers (Castro et al., 2019; AlBadawy et al., 2018; Perone et al., 2019; Heaven, 2020). Arjovsky et al. (2019) suggest that failing to generalize out-of-distribution is failing to capture the causal factors of variation in data, clinging instead to easier-to-fit spurious correlations prone to change across domains. Examples of spurious correlations commonly absorbed by learning machines include racial biases (Stock and Cisse, 2018), texture statistics (Geirhos et al., 2018), and object backgrounds (Beery et al., 2018). Alas, the capricious behaviour of machine learning systems out-of-distribution is a roadblock to their deployment in critical applications. + +Aware of this problem, the research community has spent significant efforts during the last decade to develop algorithms able to generalize out-of-distribution. In particular, the literature in Domain Generalization $( D G )$ assumes access to multiple datasets during training, each of them containing examples about the same task, but collected under a different domain or experimental condition (Blanchard et al., 2011; Muandet et al., 2013). The goal of DG algorithms is to incorporate the invariances across these training domains into a classifier, in hopes that such invariances will also hold in novel test domains. Different DG solutions assume different types of invariances, and propose algorithms to estimate them from data. + +Despite the enormous importance of DG, the literature is scattered: a plethora of different algorithms appear yearly, each of them evaluated under different datasets, neural network architectures, and model selection criteria. Borrowing from the success of standardized computer vision benchmarks such as ImageNet (Russakovsky et al., 2015), the purpose of this work is to perform a rigorous comparison of DG algorithms, as well as to open-source our software for anyone to replicate and extend our analyses. This manuscript investigates the question: How useful are different $_ { D G }$ algorithms when evaluated in a consistent and realistic setting? + +Table 1: Our ERM baseline outperforms the state-of-the-art in terms of average domain generalization performance, even when picking the best competitor per dataset. + +
Dataset /algorithmDG accuracy per test domainAverage
Rotated MNIST (full)15°30°45°60°75°
DIVA (Ilse et al., 2019)95.398.798.798.497.794.597.2
Our ERM95.998.998.898.998.996.498.0
VLCSCLSV
G2DM (Albuquerque et al., 2019)95.567.669.471.175.9
Our ERM97.764.373.474.677.5
PACSACPS
RSC (Huang et al., 2020)87.982.197.983.487.8
Our ERM84.780.897.279.385.5
OfficeHomeACPR
DDAIG (Zhou et al., 2020)59.252.374.676.065.5
Our ERM61.352.475.876.666.5
All datasets
Best SOTA competitor Our ERM81.6 81.9
+ +To answer this question, we implement and tune fourteen DG algorithms carefully, to compare them across seven benchmark datasets and three model selection criteria. There are three major takeaways from our investigations: + +• Claim 1: A careful implementation of ERM outperforms the state-of-the-art in terms of average performance across common benchmarks (Table 1, full list in Appendix A.5). Claim 2: When implementing fourteen DG algorithms in a consistent and realistic setting, no competitor outperforms ERM by more than one point (Table 3). • Claim 3: Model selection is non-trivial for DG, yet affects results (Table 3). As such, we argue that DG algorithms should specify their own model selection criteria. + +As a result of our research, we release DOMAINBED, a framework to streamline rigorous and reproducible experimentation in DG. Using DOMAINBED, adding a new algorithm or dataset is a matter of a few lines of code. A single command runs all experiments, performs all model selections, and auto-generates all the result tables included in this work. DOMAINBED is a living project: we welcome pull requests from fellow researchers to update the available algorithms, datasets, model selection criteria, and result tables. + +Section 2 kicks off our exposition with a review of the DG setup. Section 3 discusses the difficulties of model selection in DG and makes recommendations for a path forward. Section 4 introduces DOMAINBED, describing the features included in the initial release. Section 5 discusses the experimental results of running the entire DOMAINBED suite, illustrating the competitive performance of ERM and the importance of model selection criteria. Finally, Section 6 offers our view on future research directions in DG. Appendix A reviews one hundred articles spanning a decade of research in DG, summarizing the experimental performance of over thirty algorithms. + +Table 2: Learning setups. $L ^ { d }$ and $U ^ { d }$ denote the labeled and unlabeled distributions from domain $d$ . + +
SetupTraining inputsTest inputs
Generative learningU1D
Unsupervised learningU1U1
Supervised learningL1U1
Semi-supervised learningL1,U1 L1U1
Multitask learningLdtrU1, ..,Udtr
Continual (or lifelong) learningL8U1 ....,U8
Domain adaptationL1 Ldtr,Udtr+1Udtr+1
Transfer learningU1 ,Udtr,Ldtr+1Udtr+1
Domain generalizationL1.,...,LdtrUdtr+1
+ +# 2 THE PROBLEM OF DOMAIN GENERALIZATION + +The goal of supervised learning is to predict values $y \in \mathcal { V }$ of a target random variable $Y$ , given values $x \in \mathcal { X }$ of an input random variable $X$ . Predictions ${ \hat { y } } = f ( x )$ about $x$ originate from a predictor $f : \mathcal { X } \mathcal { Y }$ . We often decompose predictors as $f = w \circ \phi$ , where we call $\phi : \mathcal { X } \to \mathcal { H }$ the featurizer, and $w : \mathcal { H } \to \mathcal { V }$ the classifier. To solve the prediction task we collect the training dataset $D = \{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { n }$ , which contains identically and independently distributed (i.i.d.) examples from the joint probability distribution $P ( X , Y )$ . Given a loss function $\ell : \mathcal { V } \times \mathcal { V } [ 0 , \infty )$ measuring prediction error, supervised learning seeks the predictor minimizing the risk $\mathbb { E } _ { ( x , y ) \sim P } [ \ell ( f ( x ) , y ) ]$ Since we only have access to the data distribution $P ( X , Y )$ via the dataset $D$ , we instead search a predictor minimizing the empirical risk $\textstyle { \frac { 1 } { n } } \sum _ { i = 1 } ^ { n } \ell ( f ( { \dot { x } } _ { i } ) , y _ { i } )$ (Vapnik, 1998). + +The rest of this paper studies the problem of Domain Generalization $( D G )$ , an extension of supervised learning where training datasets from multiple domaour predictor (Blanchard et al., 2011). Each domain $d$ s (or environments)produces a dataset $D ^ { d } = \{ ( x _ { i } ^ { d } , y _ { i } ^ { d } ) \} _ { d = 1 } ^ { n _ { d } }$ containing i.i.d. examples from some probability distribution $P ( X ^ { d } , Y ^ { d } )$ , for all training domains $d \in \{ 1 , \ldots , d _ { \mathrm { t r } } \}$ . The goal of DG is out-of-distribution generalization: learning a predictor able to perform well at some unseen test domain $d _ { \mathrm { t r } } + 1$ . Since no data about the test domain is available during training, we must assume the existence of statistical invariances across training and testing domains, and incorporate such invariances (but nothing else) into our predictor. The type of invariance assumed, as well as how to estimate it from the training datasets, varies between DG algorithms. We review a hundred articles in DG spanning a decade of research and thirty algorithms in Appendix A.5. + +DG differs from unsupervised domain adaptation. In the latter, unlabeled data from the test domain is available during training (Pan and Yang, 2009; Patel et al., 2015; Wilson and Cook, 2018). Table 2 compares different machine learning setups to highlight the nature of DG problems. The causality literature refers to DG as learning from multiple environments (Peters et al., 2016; Arjovsky et al., 2019). Although challenging, the DG framework can capture some of the difficulty of real prediction problems, where unforeseen distributional discrepancies between training and testing data are surely expected. At the same time, the framework can be limiting: in many real world scenarios there may be external variables informing about task relatedness (space, time, annotations) that the DG framework ignores. + +# 3 MODEL SELECTION AS PART OF THE LEARNING PROBLEM + +Here we discuss issues surrounding model selection (choosing hyperparameters, training checkpoints, architecture variants) in DG and make specific recommendations for a path forward. Because we lack access to a validation set identically distributed to the test data, model selection in DG is not as straightforward as in supervised learning. Some works adopt heuristic strategies whose behavior is not well-studied, while others simply omit a description of how to choose hyperparameters. This leaves open the possibility that hyperparameters were chosen using the test data, which is not methodologically sound. Differences in results arising from inconsistent tuning practices may be misattributed to the algorithms under study, complicating fair assessments. + +We believe that much of the confusion surrounding model selection in DG arises from treating it as merely a question of experimental design. To the contrary, model selection requires making theoretical assumptions about how the test data relates to the training data. Different DG algorithms make different assumptions, and it is not clear a priori which ones are correct, or how they influence the model selection criterion. Indeed, choosing reasonable assumptions is at the heart of DG research. Therefore, a DG algorithm without a strategy to choose its hyperparameters should be regarded as incomplete. + +Recommendation 1 A DG algorithm should be responsible for specifying a model selection method. + +While algorithms without well-justified model selection methods are incomplete, they may be useful stepping-stones in a research agenda. In this case, instead of using an ad-hoc model selection method, we can evaluate incomplete algorithms by considering an oracle model selection method, where we select hyperparameters using some data from the test domain. Of course, it is important to avoid invalid comparisons between oracle results and baselines tuned without an oracle method. Also, unless we restrict access to the test domain data somehow, we risk obtaining meaningless results (we could just train on such test domain data using supervised learning). + +Recommendation 2 Researchers should disclaim any oracle-selection results as such and specify policies to limit access to the test domain. + +# 3.1 THREE MODEL SELECTION METHODS FOR DG + +Having made broad recommendations, we review and justify three model selection criteria for DG. +Appendix B.3 illustrates these with an specific example. + +Training-domain validation We split each training domain into training and validation subsets. We train models using the training subsets, and choose the model maximizing the accuracy on the union of validation subsets. This strategy assumes that the training and test examples follow similar distributions. For example, Ben-David et al. (2010) bound the test error of a classifier with the divergence between training and test domains. + +Leave-one-domain-out validation Given $d _ { \mathrm { t r } }$ training domains, we train $d _ { \mathrm { t r } }$ models with equal hyperparameters, each holding one of the training domains out. We evaluate each model on its held-out domain, and average the accuracies of these $d _ { \mathrm { t r } }$ models over their held-out domains. Finally, we choose the model maximizing this average accuracy, retrained on all $d _ { \mathrm { t r } }$ domains. This strategy assumes that training and test domains follow a meta-distribution over domains, and that our goal is to maximize the expected performance under this meta-distribution. Note that leaving $k > 1$ domains out would increase greatly the number of experiments, and introduces a hyperparameter $k$ . + +Test-domain validation (oracle) We choose the model maximizing the accuracy on a validation set that follows the distribution of the test domain. Following our earlier recommendation to limit test domain access, we allow one query (the last checkpoint) per choice of hyperparameters, disallowing early stopping. Recall that this is not a valid benchmarking methodology. Oracle-based results can be either optimistic, because we select models using the test distribution, or pessimistic, because the query limit reduces the number of considered hyperparameters. We also tried limiting the size of the oracle test set instead of the number of queries, but this led to unacceptably high variance. + +# 3.2 CONSIDERATIONS FROM THE LITERATURE + +Some references in prior work discuss additional strategies to choose hyperparameters in DG. For instance, Krueger et al. (2020, Appendix B.1) suggest choosing hyperparameters to maximize the performance across all domains of an external dataset. This “leave-one-dataset out” is akin to the second strategy outlined above. Albuquerque et al. (2019, Section 5.3.2) suggest performing model selection based on the loss function (which often incorporates an algorithm-specific regularizer), and D’Innocente and Caputo (2018, Section 3) derive an strategy specific to their algorithm. Finally, tools from differential privacy enable multiple reuses of a validation set (Dwork et al., 2015), which could be a tool to control the power of test-domain validation (oracle). + +# 4 DOMAINBED: A PYTORCH TESTBED FOR DOMAIN GENERALIZATION + +At the heart of our large scale experimentation is DOMAINBED, a PyTorch (Paszke et al., 2019) testbed to streamline reproducible and rigorous research in DG: + +# https://github.com/facebookresearch/DomainBed/. + +The initial release comprises fourteen algorithms, seven datasets, and three model selection methods (those described in Section 3), as well as the infrastructure to run all the experiments and generate all the LATEX tables below with a single command. The first version of DOMAINBED focuses on image classification, leaving for future work other types of tasks. DOMAINBED is a living project: together with pull requests from collaborators, we continuously update the above repository with new algorithms, datasets, and result tables. As illustrated in Appendix B.5, adding a new algorithm or dataset to DOMAINBED is a matter of a few lines of code. + +Algorithms DOMAINBED currently includes fourteen algorithms chosen based on their impact over the years, their published performance, and a desire to include varied DG strategies. These are Empirical Risk Minimization (ERM, Vapnik (1998)), Group Distributionally Robust Optimization (GroupDRO, Sagawa et al. (2019)), Inter-domain Mixup (Mixup, Xu et al. (2019); Yan et al. (2020); Wang et al. (2020b)), Meta-Learning for Domain Generalization (MLDG, Li et al. (2018a)), DomainAdversarial Neural Networks (DANN, Ganin et al. (2016)), Class-conditional DANN (C-DANN, Li et al. (2018d)), Deep CORrelation ALignment (CORAL, Sun and Saenko (2016)), Maximum Mean Discrepancy (MMD, Li et al. (2018b)), Invariant Risk Minimization (IRM Arjovsky et al. (2019)), Adaptive Risk Minimization (ARM, Zhang et al. (2020)), Marginal Transfer Learning (MTL, Blanchard et al. (2011; 2017)), Style-Agnostic Networks (SagNet, Nam et al. (2019)), and Representation Self Challenging (RSC, Huang et al. (2020)). Appendix B.1 describes these algorithms, and Appendix B.4 lists their network architectures and hyperparameter search distributions. + +Datasets DOMAINBED currently includes downloaders and loaders for seven standard DG image classification benchmarks. These are Colored MNIST (Arjovsky et al., 2019), Rotated MNIST (Ghifary et al., 2015), PACS (Li et al., 2017), VLCS (Fang et al., 2013), OfficeHome (Venkateswara et al., 2017), Terra Incognita (Beery et al., 2018), and DomainNet (Peng et al., 2019). The datasets based on MNIST are “synthetic” since changes across domains are well understood (colors and rotations). The rest of the datasets are “real” since domains vary in unknown ways. Appendix B.2 describes these datasets. + +Implementation choices We highlight three implementation choices made towards a consistent and realistic evaluation setting. First, whereas prior work is inconsistent in its choice of network architecture, we finetune ResNet-50 models (He et al., 2016) pretrained on ImageNet for all nonMNIST experiments. We note that recent state-of-the-art results (Balaji et al., 2018; Nam et al., 2019; Huang et al., 2020) also use ResNet-50 models. Second, for all non-MNIST datasets, we augment training data using the following protocol: crops of random size and aspect ratio, resizing to $2 2 4 \times 2 2 4$ pixels, random horizontal flips, random color jitter, grayscaling the image with $10 \%$ probability, and normalization using the ImageNet channel statistics. This augmentation protocol is increasingly standard in state-of-the-art DG work (Nam et al., 2019; Huang et al., 2020; Krueger et al., 2020; Carlucci et al., 2019a; Zhou et al., 2020; Dou et al., 2019; Hendrycks et al., 2020; Wang et al., 2020a; Seo et al., 2020; Chattopadhyay et al., 2020). We use no augmentation for MNIST-based datasets. Third, and for RotatedMNIST, we divide all the digits evenly among domains, instead of replicating the same 1000 digits to construct all domains. We deviate from standard practice for two reasons: using the same digits across training and test domains leaks test data, and reducing the amount of training data complicates the task in an unrealistic way. + +# 5 EXPERIMENTS + +We run experiments for all algorithms, datasets, and model selection criteria shipped in DOMAINBED. We consider all configurations of a dataset where we hide one domain for testing, resulting in the training of 58,000 models. To generate the following results, we simply run sweep.py at commit $0 \times 7 \mathrm { d } \pounds 6 \pounds 0 6$ from DOMAINBED’s repository. + +Hyperparameter search For each algorithm and test domain, we conduct a random search (Bergstra and Bengio, 2012) of 20 trials over a joint distribution of all hyperparameters (Appendix B.4). Appendix C.4 shows that running more than 20 trials does not improve our results significantly. We use each model selection criterion to select amongst the 20 models from the random search. We split the data from each domain into $80 \%$ and $20 \%$ splits. We use the larger splits for training and final evaluation, and the smaller splits to select hyperparameters (for an illustration, see Appendix B.3). All hyperparameters are optimized anew for each algorithm and test domain, including hyperparameters like learning rates which are common to multiple algorithms. + +Standard error bars While some DG literature reports error bars across seeds, randomness arising from model selection is often ignored. This is acceptable if the goal is best-versus-best comparison, but prohibits analyses concerning the model selection process itself. Instead, we repeat our entire study three times, making every random choice anew: hyperparameters, weight initializations, and dataset splits. Every number we report is a mean (and its standard error) over these repetitions. + +# 5.1 RESULTS + +Table 3 summarizes the results of our experiments. Appendix C contains the full results per dataset and domain. As anticipated in our introduction, we draw three conclusions from our results. + +Claim 1: Carefully tuned ERM outperforms the previously published state-of-the-art Table 1 (full version in Appendix A.5) shows this result, when we provide ERM with a training-domain validation set for hyperparameter selection. Such state-of-the-art average performance of our ERM baseline holds even when we select the best competitor available in the literature separately for each benchmark. One reason for ERM’s strong performance is that we use ResNet-50, whereas some prior work uses smaller ResNet-18 models. As recently shown in the literature (Hendrycks et al., 2020), this suggests that better in-distribution generalization is a dominant factor behind better out-of-distribution generalization. Our result does not refute prior work: it is possible that with stronger implementations, some competing methods may improve upon ERM. Rather, we provide a strong, realistic, and reproducible baseline for future work to build upon. + +Claim 2: When evaluated in a consistent setting, no algorithm outperforms ERM in more than one point We observe this result in Table 3, obtained by running from scratch every combination of dataset, algorithm, and model selection criterion in DOMAINBED. Given any model selection criterion, no method improves the average performance of ERM in more than one point. At the number of trials performed, no improvement over ERM is statistically significant according to a $t$ -test at a significance level $\alpha = 0 . 0 5$ . While new algorithms could improve upon ERM (an exciting premise!), getting substantial DG improvements in a rigorous way proved challenging. Most of our baselines can achieve ERM-like performance because there have hyperparameter configurations under which they behave like ERM (e.g. regularization coefficients that can be set to zero). Our advice to DG practitioners is to use ERM (which is a safe contender) or CORAL (Sun and Saenko, 2016) (which achieved the highest average score). + +Claim 3: Model selection methods matter We observe that model selection with a training domain validation set outperforms leave-one-domain-out cross-validation across multiple datasets and algorithms. This does not mean that using a training domain validation set is the right way to tune hyperparameters. In fact, the stronger performance of oracle-selection $+ 2 . 3$ points for ERM) suggests headroom to develop improved DG model selection criteria. + +Table 3: DG accuracy for all algorithms, datasets and model selection criteria in DOMAINBED. These experiments compare fourteen popular DG algorithms across seven benchmarks in the exact same conditions, showing the competitive performance of ERM. + +
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM51.5 ± 0.198.0 ± 0.077.5 ± 0.485.5± 0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
IRM52.0 ± 0.197.7 ± 0.178.5 ± 0.583.5 ± 0.864.3 ± 2.247.6 ± 0.833.9 ± 2.865.4
GroupDRO52.1 ± 0.098.0± 0.076.7 ± 0.684.4 ± 0.866.0 ± 0.743.2 ± 1.133.3 ± 0.264.8
Mixup52.1 ± 0.298.0± 0.177.4 ± 0.684.6 ± 0.668.1 ± 0.347.9 ± 0.839.2 ± 0.166.7
MLDG51.5 ± 0.197.9 ± 0.077.2 ± 0.484.9 ± 1.066.8 ± 0.647.7 ± 0.941.2 ± 0.166.7
CORAL51.5 ± 0.198.0 ± 0.178.8 ± 0.686.2 ± 0.368.7 ± 0.347.6 ± 1.041.5 ± 0.167.5
MMD51.5 ± 0.297.9 ± 0.077.5 ± 0.984.6 ± 0.566.3 ± 0.142.2 ± 1.623.4 ± 9.563.3
DANN51.5 ± 0.397.8 ± 0.178.6 ± 0.483.6 ± 0.465.9 ± 0.646.7 ± 0.538.3 ± 0.166.1
CDANN51.7 ± 0.197.9 ± 0.177.5 ± 0.182.6 ± 0.965.8 ± 1.345.8 ± 1.638.3 ± 0.365.6
MTL51.4 ± 0.197.9 ± 0.077.2 ± 0.484.6 ± 0.566.4 ± 0.545.6 ± 1.240.6 ± 0.166.2
SagNet51.7 ± 0.098.0± 0.077.8 ± 0.586.3 ± 0.268.1 ± 0.148.6 ± 1.040.3 ± 0.167.2
ARM56.2 ± 0.298.2 ± 0.177.6 ± 0.385.1 ± 0.464.8 ± 0.345.5 ± 0.335.5 ± 0.266.1
VREx51.8 ± 0.197.9 ± 0.178.3 ± 0.284.9 ± 0.666.4 ± 0.646.4 ± 0.633.6 ± 2.965.6
RSC51.7 ± 0.297.6 ± 0.177.1 ± 0.585.2 ± 0.965.5 ± 0.946.6 ± 1.038.9 ± 0.566.1
+ +Model selection: training-domain validation set + +
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM36.7 ± 0.197.7 ± 0.077.2 ± 0.483.0 ± 0.765.7 ± 0.541.4 ± 1.440.6 ± 0.263.2
IRM40.3 ± 4.297.0 ± 0.276.3 ± 0.681.5 ± 0.864.3 ± 1.541.2 ± 3.633.5 ± 3.062.0
GroupDRO36.8 ± 0.197.6 ± 0.177.9 ± 0.583.5 ± 0.265.2 ± 0.244.9 ± 1.433.0 ± 0.362.7
Mixup33.4 ± 4.797.8 ± 0.077.7 ± 0.683.2 ± 0.467.0 ± 0.248.7 ± 0.438.5 ± 0.363.8
MLDG36.7 ± 0.297.6 ± 0.077.2 ± 0.982.9 ± 1.766.1 ± 0.546.2 ± 0.941.0 ± 0.264.0
CORAL39.7 ± 2.897.8 ± 0.178.7 ± 0.482.6 ± 0.568.5 ± 0.246.3 ± 1.741.1 ± 0.165.0
MMD36.8 ± 0.197.8 ± 0.177.3 ± 0.583.2 ± 0.260.2 ± 5.246.5 ± 1.523.4 ± 9.560.7
DANN40.7 ± 2.397.6 ± 0.276.9 ± 0.481.0 ± 1.164.9 ± 1.244.4 ± 1.138.2 ± 0.263.4
CDANN39.1 ± 4.497.5 ± 0.277.5 ± 0.278.8 ± 2.264.3 ± 1.739.9 ± 3.238.0 ± 0.162.2
MTL35.0 ± 1.797.8 ± 0.176.6 ± 0.583.7 ± 0.465.7 ± 0.544.9 ± 1.240.6 ± 0.163.5
SagNet36.5 ± 0.194.0 ± 3.077.5± 0.382.3 ± 0.167.6 ± 0.347.2 ± 0.940.2 ± 0.263.6
ARM36.8 ± 0.098.1 ± 0.176.6 ± 0.581.7 ± 0.264.4 ± 0.242.6 ± 2.735.2 ± 0.162.2
VREx36.9 ± 0.393.6 ± 3.476.7 ± 1.081.3 ± 0.964.9 ± 1.337.3 ± 3.033.4 ± 3.160.6
RSC36.5 ± 0.297.6 ± 0.177.5 ± 0.582.6 ± 0.765.8 ± 0.740.0±0.838.9 ± 0.562.7
+ +Model selection: leave-one-domain-out cross-validation + +
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM57.8 ± 0.297.8 ± 0.177.6 ± 0.386.7 ± 0.366.4 ± 0.553.0 ± 0.341.3 ± 0.168.7
IRM67.7 ± 1.297.5 ± 0.276.9 ± 0.684.5 ± 1.163.0 ± 2.750.5 ± 0.728.0 ± 5.166.9
GroupDRO61.1 ± 0.997.9 ± 0.177.4 ± 0.587.1 ± 0.166.2 ± 0.652.4 ± 0.133.4 ± 0.367.9
Mixup58.4 ± 0.298.0 ± 0.178.1 ± 0.386.8 ± 0.368.0 ± 0.254.4 ± 0.339.6 ± 0.169.0
MLDG58.2 ± 0.497.8 ± 0.177.5 ± 0.186.8 ± 0.466.6 ± 0.352.0 ± 0.141.6 ± 0.168.7
CORAL58.6 ± 0.598.0 ± 0.077.7 ± 0.287.1 ± 0.568.4 ± 0.252.8 ± 0.241.8 ± 0.169.2
MMD63.3 ± 1.398.0 ± 0.177.9 ± 0.187.2 ± 0.166.2 ± 0.352.0 ± 0.423.5 ± 9.466.9
DANN57.0 ± 1.097.9 ± 0.179.7 ± 0.585.2 ± 0.265.3 ± 0.850.6 ± 0.438.3 ± 0.167.7
CDANN59.5 ± 2.097.9 ± 0.079.9 ± 0.285.8 ± 0.865.3 ± 0.550.8 ± 0.638.5 ± 0.268.2
MTL57.6 ± 0.397.9 ± 0.177.7 ± 0.586.7 ± 0.266.5 ± 0.452.2 ± 0.440.8 ± 0.168.5
SagNet58.2 ± 0.397.9 ± 0.077.6 ± 0.186.4 ± 0.467.5 ± 0.252.5 ± 0.440.8 ± 0.268.7
ARM63.2 ± 0.798.1 ± 0.177.8 ± 0.385.8 ± 0.264.8 ± 0.451.2 ± 0.536.0 ± 0.268.1
VREx67.0 ± 1.397.9 ± 0.178.1 ± 0.287.2 ± 0.665.7 ± 0.351.4 ± 0.530.1 ± 3.768.2
RSC58.5 ± 0.597.6 ± 0.177.8 ± 0.686.2 ± 0.566.5 ± 0.652.1 ± 0.238.9 ± 0.668.2
+ +Model selection: test-domain validation set (oracle) + +Table 4: Ablation study on ERM showing the impact of (i) using raw images versus data augmentation, and (ii) using ResNet-18 versus ResNet-50 models. Model selection: training-domain validation set. + +
AlgorithmVLCSPACSOfficeHomeTerraIncDomainNetAvg
ERM (raw, 18)75.8 ± 0.379.6 ± 0.361.0 ± 0.135.0 ± 1.335.8 ± 0.262.4
ERM (aug, 18)75.8 ± 0.179.1 ± 0.860.0 ± 0.640.0 ± 0.635.3 ± 0.062.8
ERM (raw, 50)78.6 ± 0.183.2 ± 0.667.7 ± 0.241.5 ± 2.541.4 ± 0.166.0
ERM (aug, 50)77.5 ± 0.485.5 ± 0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
+ +# 5.2 ABLATION STUDY ON ERM + +To better understand our ERM performance, we perform an ablation study on the neural network architecture and the data augmentation protocol. Table 5.2 shows that using a ResNet-50 neural network architecture, instead of a smaller ResNet-18, improves DG test accuracy by 3.7 points. Using data augmentation improves DG test accuracy by 0.5 points. However, these ResNet models were pretrained on ImageNet using data augmentation, so the benefits of augmentation are partly absorbed by the model. In fact, we hypothesize that among models pretrained on ImageNet, domain generalization performance is mainly influenced by the model’s original test accuracy on ImageNet. + +# 6 DISCUSSIONS + +We provide several discussions to help the reader interpret our results and motivate future work. + +Our negative claims are fundamentally limited Broad negative claims (e.g. “algorithm X does not outperform ERM”) do not specify an exact experimental setting and are therefore impossible to rigorously prove. In order to be verifiable, such claims must be restricted to a specific setting. This limitation is fundamental to all negative result claims, and ours (Claim 2) is no exception. We have shown that many algorithms don’t substantially improve on ERM in our setting, but the relevance of that setting is a subjective matter ultimately left for the reader. + +In making this judgement, the reader should consider whether they agree with our methodological and implementation choices, which we have explained and motivated throughout the paper. We also note that our implementation can outperform previous results (Table 1). Finally, DomainBed is not a black box: our implementation is open-source and actively maintained, and we invite the research community to improve on our results. + +Is this as good as it gets? We question whether DG is possible in some of the considered datasets. Why do we assume that a neural network should be able to classify cartoons, given only photorealistic training data? In the case of Rotated MNIST, do truly rotation-invariant features discriminative of the digit class exist? Are those features expressible by a neural network? Even in the presence of correct model selection, is the out-of-distribution performance of modern ERM implementations as good as it gets? Or is it simply as poor as every other alternative? How far are we from the achievable DG performance? Is this upper-bound simply the test error in-domain? + +Are these the right datasets? Most datasets considered in the DG literature do not reflect realistic situations. If one wanted to classify cartoons, the easiest option would be to collect a small labeled dataset of cartoons. Should we consider more realistic, impactful tasks for better research in DG? Some alternatives are medical imaging in different hospitals and self-driving cars in different cities. + +Generalization requires untestable assumptions Every time we use ERM, we assume that training and testing examples follow the same distribution. This is an untestable assumption in every single instance. The same applies for DG: each algorithm assumes a different (untestable) type of invariance across domains. Therefore, the performance of a DG algorithm depends on the problem at hand, and only time can tell if we have made a good choice. This is akin to the generalization of a scientific theory such as Newton’s gravitation, which cannot be proven, but rather only resist falsification. + +# 7 CONCLUSION + +Our extensive empirical evaluation of DG algorithms leads to three conclusions. First, a carefully tuned ERM baseline outperforms the previously published state-of-the-art results in terms of average performance (Claim 1). Second, when compared to thirteen popular DG alternatives on the exact same experimental conditions, we find out that no competitor is able to outperform ERM by more than one point (Claim 2). Third, model selection is non-trivial for DG, and it should be an integral part of any proposed method (Claim 3). Going forward, we hope that our results and DOMAINBED promote realistic and rigorous evaluation and enable advances in domain generalization. + +# REFERENCES + +Kartik Ahuja, Karthikeyan Shanmugam, Kush Varshney, and Amit Dhurandhar. Invariant risk minimization games. arXiv, 2020. +Kei Akuzawa, Yusuke Iwasawa, and Yutaka Matsuo. Adversarial invariant feature learning with accuracy constraint for domain generalization. arXiv, 2019. +Ehab A AlBadawy, Ashirbani Saha, and Maciej A Mazurowski. Deep learning for segmentation of brain tumors: Impact of cross-institutional training and testing. Medical physics, 2018. +Isabela Albuquerque, Joao Monteiro, Tiago H Falk, and Ioannis Mitliagkas. Adversarial target- ˜ invariant representation learning for domain generalization. arXiv, 2019. +Isabela Albuquerque, Nikhil Naik, Junnan Li, Nitish Keskar, and Richard Socher. Improving out-of-distribution generalization via multi-task self-supervised pretraining. arXiv, 2020. +Michael A Alcorn, Qi Li, Zhitao Gong, Chengfei Wang, Long Mai, Wei-Shinn Ku, and Anh Nguyen. Strike (with) a pose: Neural networks are easily fooled by strange poses of familiar objects. CVPR, 2019. +Martin Arjovsky, Leon Bottou, Ishaan Gulrajani, and David Lopez-Paz. Invariant risk minimization. ´ arXiv preprint arXiv:1907.02893, 2019. +Yogesh Balaji, Swami Sankaranarayanan, and Rama Chellappa. MetaReg: Towards domain generalization using meta-regularization. NIPS, 2018. +Sara Beery, Grant Van Horn, and Pietro Perona. Recognition in terra incognita. ECCV, 2018. +Shai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jennifer Wortman Vaughan. A theory of learning from different domains. Machine learning, 2010. +James Bergstra and Yoshua Bengio. Random search for hyper-parameter optimization. JMLR, 2012. +Gilles Blanchard, Gyemin Lee, and Clayton Scott. Generalizing from several related classification tasks to a new unlabeled sample. NIPS, 2011. +Gilles Blanchard, Aniket Anand Deshmukh, Urun Dogan, Gyemin Lee, and Clayton Scott. Domain generalization by marginal transfer learning. arXiv, 2017. +Victor Bouvier, Philippe Very, Celine Hudelot, and Cl ´ ement Chastagnol. Hidden covariate shift: A ´ minimal assumption for domain adaptation. arXiv, 2019. +Fabio M Carlucci, Antonio D’Innocente, Silvia Bucci, Barbara Caputo, and Tatiana Tommasi. Domain generalization by solving jigsaw puzzles. CVPR, 2019a. +Fabio Maria Carlucci, Paolo Russo, Tatiana Tommasi, and Barbara Caputo. Hallucinating agnostic images to generalize across domains. ICCVW, 2019b. +Daniel C Castro, Ian Walker, and Ben Glocker. Causality matters in medical imaging. arXiv, 2019. +Prithvijit Chattopadhyay, Yogesh Balaji, and Judy Hoffman. Learning to balance specificity and invariance for in and out of domain generalization, 2020. + +Dengxin Dai and Luc Van Gool. Dark model adaptation: Semantic image segmentation from daytime to nighttime. ITSC, 2018. + +Aniket Anand Deshmukh, Yunwen Lei, Srinagesh Sharma, Urun Dogan, James W Cutler, and Clayton Scott. A generalization error bound for multi-class domain generalization. arXiv, 2019. + +Zhengming Ding and Yun Fu. Deep domain generalization with structured low-rank constraint. IEEE Transactions on Image Processing, 2017. + +Qi Dou, Daniel Coelho de Castro, Konstantinos Kamnitsas, and Ben Glocker. Domain generalization via model-agnostic learning of semantic features. NIPS, 2019. + +Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Roth. The reusable holdout: Preserving validity in adaptive data analysis. Science, 2015. + +Antonio D’Innocente and Barbara Caputo. Domain generalization with domain-specific aggregation modules. German Conference on Pattern Recognition, 2018. + +Chen Fang, Ye Xu, and Daniel N Rockmore. Unbiased metric learning: On the utilization of multiple datasets and web images for softening bias. ICCV, 2013. + +Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. ICML, 2017. + +Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, Franc¸ois Laviolette, Mario Marchand, and Victor Lempitsky. Domain-adversarial training of neural networks. JMLR, 2016. + +Robert Geirhos, Patricia Rubisch, Claudio Michaelis, Matthias Bethge, Felix A Wichmann, and Wieland Brendel. ImageNet-trained CNNs are biased towards texture; increasing shape bias improves accuracy and robustness. arXiv, 2018. + +Muhammad Ghifary, W Bastiaan Kleijn, Mengjie Zhang, and David Balduzzi. Domain generalization for object recognition with multi-task autoencoders. ICCV, 2015. + +Muhammad Ghifary, David Balduzzi, W Bastiaan Kleijn, and Mengjie Zhang. Scatter component analysis: A unified framework for domain adaptation and domain generalization. IEEE TPAMI, 2016. + +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. NIPS, 2014. + +Arthur Gretton, Karsten M Borgwardt, Malte J Rasch, Bernhard Scholkopf, and Alexander Smola. A ¨ kernel two-sample test. JMLR, 2012. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. CVPR, 2016. + +Will D. Heaven. Google’s medical AI was super accurate in a lab. real life was a different story. MIT Technology Review, 2020. + +Dan Hendrycks, Steven Basart, Norman Mu, Saurav Kadavath, Frank Wang, Evan Dorundo, Rahul Desai, Tyler Zhu, Samyak Parajuli, Mike Guo, Dawn Song, Jacob Steinhardt, and Justin Gilmer. The many faces of robustness: A critical analysis of out-of-distribution generalization, 2020. + +Shoubo Hu, Kun Zhang, Zhitang Chen, and Laiwan Chan. Domain generalization via multidomain discriminant analysis. UAI, 2019. + +Weihua Hu, Gang Niu, Issei Sato, and Masashi Sugiyama. Does distributionally robust supervised learning give robust classifiers? arXiv, 2016. + +Zeyi Huang, Haohan Wang, Eric P Xing, and Dong Huang. Self-challenging improves cross-domain generalization. arXiv preprint arXiv:2007.02454, 2020. + +Maximilian Ilse, Jakub M Tomczak, Christos Louizos, and Max Welling. DIVA: Domain invariant variational autoencoders. arXiv preprint arXiv:1905.10427, 2019. + +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv, 2015. + +Fredrik D Johansson, David Sontag, and Rajesh Ranganath. Support and invertibility in domaininvariant representations. arXiv, 2019. + +Aditya Khosla, Tinghui Zhou, Tomasz Malisiewicz, Alexei A Efros, and Antonio Torralba. Undoing the damage of dataset bias. ECCV, 2012. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. ICLR, 2015. + +Diederik P Kingma and Max Welling. Auto-encoding variational bayes. ICLR, 2014. + +David Krueger, Ethan Caballero, Joern-Henrik Jacobsen, Amy Zhang, Jonathan Binas, Remi Le Priol, and Aaron Courville. Out-of-distribution generalization via risk extrapolation (REx). arXiv, 2020. + +Yann LeCun. The mnist database of handwritten digits. http://yann. lecun. com/exdb/mnist/, 1998. + +Da Li, Yongxin Yang, Yi-Zhe Song, and Timothy M. Hospedales. Deeper, broader and artier domain generalization. 2017. + +Da Li, Yongxin Yang, Yi-Zhe Song, and Timothy M Hospedales. Learning to generalize: Metalearning for domain generalization. AAAI, 2018a. + +Da Li, Jianshu Zhang, Yongxin Yang, Cong Liu, Yi-Zhe Song, and Timothy M Hospedales. Episodic training for domain generalization. ICCV, 2019a. + +Da Li, Yongxin Yang, Yi-Zhe Song, and Timothy Hospedales. Sequential learning for domain generalization. arXiv, 2020. + +Haoliang Li, Sinno Jialin Pan, Shiqi Wang, and Alex C Kot. Domain generalization with adversarial feature learning. CVPR, 2018b. + +Ya Li, Mingming Gong, Xinmei Tian, Tongliang Liu, and Dacheng Tao. Domain generalization via conditional invariant representations. AAAI, 2018c. + +Ya Li, Xinmei Tian, Mingming Gong, Yajing Liu, Tongliang Liu, Kun Zhang, and Dacheng Tao. Deep domain generalization via conditional invariant adversarial networks. ECCV, 2018d. + +Yiying Li, Yongxin Yang, Wei Zhou, and Timothy M Hospedales. Feature-critic networks for heterogeneous domain generalization. arXiv, 2019b. + +Massimiliano Mancini, Samuel Rota Bulo, Barbara Caputo, and Elisa Ricci. Best sources forward: \` domain generalization through source-specific nets. ICIP, 2018a. + +Massimiliano Mancini, Samuel Rota Bulo, Barbara Caputo, and Elisa Ricci. Robust place categorization with deep domain generalization. IEEE Robotics and Automation Letters, 2018b. + +Toshihiko Matsuura and Tatsuya Harada. Domain generalization using a mixture of multiple latent domains. arXiv, 2019. + +Saeid Motiian, Marco Piccirilli, Donald A Adjeroh, and Gianfranco Doretto. Unified deep supervised domain adaptation and generalization. ICCV, 2017. + +Krikamol Muandet, David Balduzzi, and Bernhard Scholkopf. Domain generalization via invariant ¨ feature representation. ICML, 2013. + +Krikamol Muandet, Kenji Fukumizu, Bharath Sriperumbudur, Bernhard Scholkopf, et al. Kernel ¨ mean embedding of distributions: A review and beyond. Foundations and Trends in Machine Learning, 2017. + +Hyeonseob Nam, HyunJae Lee, Jongchan Park, Wonjun Yoon, and Donggeun Yoo. Reducing domain gap via style-agnostic networks. arXiv, 2019. + +Sinno Jialin Pan and Qiang Yang. A survey on transfer learning. IEEE TKDE, 2009. + +Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. PyTorch: An imperative style, high-performance deep learning library. NIPS, 2019. + +Vishal M Patel, Raghuraman Gopalan, Ruonan Li, and Rama Chellappa. Visual domain adaptation: A survey of recent advances. IEEE Signal Processing, 2015. + +Xingchao Peng, Qinxun Bai, Xide Xia, Zijun Huang, Kate Saenko, and Bo Wang. Moment matching for multi-source domain adaptation. ICCV, 2019. + +Christian S Perone, Pedro Ballester, Rodrigo C Barros, and Julien Cohen-Adad. Unsupervised domain adaptation for medical imaging segmentation with self-ensembling. NeuroImage, 2019. + +Jonas Peters, Peter Buhlmann, and Nicolai Meinshausen. Causal inference by using invariant ¨ prediction: identification and confidence intervals. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 2016. + +Mohammad Mahfujur Rahman, Clinton Fookes, Mahsa Baktashmotlagh, and Sridha Sridharan. Correlation-aware adversarial domain adaptation and generalization. Pattern Recognition, 2019a. + +Mohammad Mahfujur Rahman, Clinton Fookes, Mahsa Baktashmotlagh, and Sridha Sridharan. Multi-component image translation for deep domain generalization. WACV, 2019b. + +Mateo Rojas-Carulla, Bernhard Scholkopf, Richard Turner, and Jonas Peters. Invariant models for ¨ causal transfer learning. JMLR, 2018. + +Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. ImageNET large scale visual recognition challenge. IJCV, 2015. + +Shiori Sagawa, Pang Wei Koh, Tatsunori B Hashimoto, and Percy Liang. Distributionally robust neural networks for group shifts: On the importance of regularization for worst-case generalization. arXiv, 2019. + +Seonguk Seo, Yumin Suh, Dongwan Kim, Geeho Kim, Jongwoo Han, and Bohyung Han. Learning to optimize domain specific normalization for domain generalization, 2020. + +Shiv Shankar, Vihari Piratla, Soumen Chakrabarti, Siddhartha Chaudhuri, Preethi Jyothi, and Sunita Sarawagi. Generalizing across domains via cross-gradient training. arXiv, 2018. + +Pierre Stock and Moustapha Cisse. Convnets and imagenet beyond accuracy: Understanding mistakes and uncovering biases. ECCV, 2018. + +Baochen Sun and Kate Saenko. Deep CORAL: Correlation alignment for deep domain adaptation. ECCV, 2016. + +Baochen Sun, Jiashi Feng, and Kate Saenko. Return of frustratingly easy domain adaptation. AAAI, 2016. + +Damien Teney, Ehsan Abbasnejad, and Anton van den Hengel. Unshuffling data for improved generalization. arxiv, 2020. + +Antonio Torralba and Alexei Efros. Unbiased look at dataset bias. CVPR, 2011. + +Vladimir Vapnik. Statistical learning theory wiley. New York, 1998. + +Hemanth Venkateswara, Jose Eusebio, Shayok Chakraborty, and Sethuraman Panchanathan. Deep hashing network for unsupervised domain adaptation. CVPR, 2017. + +Georg Volk, Stefan Muller, Alexander von Bernuth, Dennis Hospach, and Oliver Bringmann. Towards ¨ robust cnn-based object detection through augmentation with synthetic rain variations. ITSC, 2019. + +Riccardo Volpi, Hongseok Namkoong, Ozan Sener, John C Duchi, Vittorio Murino, and Silvio Savarese. Generalizing to unseen domains via adversarial data augmentation. NIPS, 2018. + +Haohan Wang, Zexue He, Zachary C Lipton, and Eric P Xing. Learning robust representations by projecting superficial statistics out. arXiv, 2019. + +Shujun Wang, Lequan Yu, Caizi Li, Chi-Wing Fu, and Pheng-Ann Heng. Learning from extrinsic and intrinsic supervisions for domain generalization, 2020a. + +Yufei Wang, Haoliang Li, and Alex C Kot. Heterogeneous domain generalization via domain mixup. ICASSP, 2020b. + +Garrett Wilson and Diane J Cook. A survey of unsupervised deep domain adaptation. arXiv, 2018. + +Minghao Xu, Jian Zhang, Bingbing Ni, Teng Li, Chengjie Wang, Qi Tian, and Wenjun Zhang. Adversarial domain adaptation with domain mixup. arXiv, 2019. + +Shen Yan, Huan Song, Nanxiang Li, Lincan Zou, and Liu Ren. Improve unsupervised domain adaptation with mixup training. arXiv, 2020. + +Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. ICLR, 2018. + +Ling Zhang, Xiaosong Wang, Dong Yang, Thomas Sanford, Stephanie Harmon, Baris Turkbey, Holger Roth, Andriy Myronenko, Daguang Xu, and Ziyue Xu. When unseen domain generalization is unnecessary? rethinking data augmentation. arXiv, 2019. + +Marvin Zhang, Henrik Marklund, Abhishek Gupta, Sergey Levine, and Chelsea Finn. Adaptive risk minimization: A meta-learning approach for tackling group shift. arXiv, 2020. + +Han Zhao, Remi Tachet des Combes, Kun Zhang, and Geoffrey J Gordon. On learning invariant representation for domain adaptation. arXiv, 2019. + +Kaiyang Zhou, Yongxin Yang, Timothy Hospedales, and Tao Xiang. Deep domain-adversarial image generation for domain generalisation. arXiv preprint arXiv:2003.06054, 2020. + +# A A DECADE OF LITERATURE ON DOMAIN GENERALIZATION + +In this section, we provide an exhaustive literature review on a decade of domain generalization research. The following classifies domain generalization algorithms according into four strategies to learn invariant predictors: learning invariant features, sharing parameters, meta-learning, or performing data augmentation. + +# A.1 LEARNING INVARIANT FEATURES + +Muandet et al. (2013) use kernel methods to find a feature transformation that (i) minimizes the distance between transformed feature distributions across domains, and (ii) does not destroy any of the information between the original features and the targets. In their pioneering work, Ganin et al. (2016) propose Domain Adversarial Neural Networks (DANN), a domain adaptation technique which uses generative adversarial networks (GANs, Goodfellow et al. (2014)), to learn a feature representation that matches across training domains. Akuzawa et al. (2019) extend DANN by considering cases where there exists an statistical dependence between the domain and the class label variables. Albuquerque et al. (2019) extend DANN by considering one-versus-all adversaries that try to predict to which training domain does each of the examples belong to. Li et al. (2018b) employ GANs and the maximum mean discrepancy criteria (Gretton et al., 2012) to align feature distributions across domains. Matsuura and Harada (2019) leverages clustering techniques to learn domaininvariant features even when the separation between training domains is not given. Li et al. (2018c;d) learns a feature transformation $\phi$ such that the conditional distributions $P ( \mathcal { \bar { \phi } } ( X ^ { d } ) \mid Y ^ { d } = y )$ match for all training domains $d$ and label values $y$ . Shankar et al. (2018) use a domain classifier to construct adversarial examples for a label classifier, and use a label classifier to construct adversarial examples for the domain classifier. This results in a label classifier with better domain generalization. Li et al. (2019a) train a robust feature extractor and classifier. The robustness comes from (i) asking the feature extractor to produce features such that a classifier trained on domain $d$ can classify instances for domain $d ^ { \prime } \neq d$ , and (ii) asking the classifier to predict labels on domain $d$ using features produced by a feature extractor trained on domain $d ^ { \prime } \neq d$ . Li et al. (2020) adopt a lifelong learning strategy to attack the problem of domain generalization. Motiian et al. (2017) learn a feature representation such that (i) examples from different domains but the same class are close, (ii) examples from different domains and classes are far, and (iii) training examples can be correctly classified. Ilse et al. (2019) train a variational autoencoder (Kingma and Welling, 2014) where the bottleneck representation factorizes knowledge about domain, class label, and residual variations in the input space. Fang et al. (2013) learn a structural SVM metric such that the neighborhood of each example contains examples from the same category and all training domains. The algorithms of Sun and Saenko (2016); Sun et al. (2016); Rahman et al. (2019a) match the feature covariance (second order statistics) across training domains at some level of representation. The algorithms of Ghifary et al. (2016); Hu et al. (2019) use kernel-based multivariate component analysis to minimize the mismatch between training domains while maximizing class separability. + +Although popular, learning domain-invariant features has received some criticism (Zhao et al., 2019; Johansson et al., 2019). Some alternatives exist, as we review next. Peters et al. (2016); Rojas-Carulla et al. (2018) considered that one should search for features that lead to the same optimal classifier across training domains. In their pioneering work, Peters et al. (2016) linked this type of invariance to the causal structure of data, and provided a basic algorithm to learn invariant linear models, based on feature selection. Arjovsky et al. (2019) extend the previous to general gradient-based models, including neural networks, in their Invariant Risk Minimization (IRM) principle. Teney et al. (2020) build on IRM to learn a feature transformation that minimizes the relative variance of classifier weights across training datasets. The authors apply their method to reduce the learning of spurious correlations in Visual Question Answering (VQA) tasks. Ahuja et al. (2020) analyze IRM under a game-theoretic perspective to develop an alternative algorithm. Krueger et al. (2020) propose an approximation to the IRM problem consisting in reducing the variance of error averages across domains. Bouvier et al. (2019) attack the same problem as IRM by re-weighting data samples. + +# A.2 SHARING PARAMETERS + +Blanchard et al. (2011) build classifiers $f ( x ^ { d } , \mu ^ { d } )$ , where $\mu ^ { d }$ is a kernel mean embedding (Muandet et al., 2017) that summarizes the dataset associated to the example $x ^ { d }$ . Since the distributional identity of test instances is unknown, these embeddings are estimated using single test examples at test time. See Blanchard et al. (2017); Deshmukh et al. (2019) for theoretical results on this family of algorithms (only applicable when using RKHS-based learners). Zhang et al. (2020) is an extension of Blanchard et al. (2011) where a separate CNN computes the domain embedding, appended to the input image as additional channels. Khosla et al. (2012) learn one max-margin linear classifier $w ^ { d } = \dot { w } + \Delta ^ { \overline { { d } } }$ per domain $d$ , from which they distill their final, invariant predictor $w$ . Ghifary et al. (2015) use a multitask autoencoder to learn invariances across domains. To achieve this, the authors assume that each training dataset contains the same examples; for instance, photographs about the same objects under different views. Mancini et al. (2018b) train a deep neural network with one set of dedicated batch-normalization layers (Ioffe and Szegedy, 2015) per training dataset. Then, a softmax domain classifier predicts how to linearly-combine the batch-normalization layers at test time. Seo et al. (2020) combines instance normalization with batch-normalization to learn a normalization module per domain, enhancing out-of-distribution generalization. Similarly, Mancini et al. (2018a) learn a softmax domain classifier used to linearly-combine domain-specific predictors at test time. D’Innocente and Caputo (2018) explore more sophisticated ways of aggregating domain-specific predictors. Li et al. (2017) extends Khosla et al. (2012) to deep neural networks by extending each of their parameter tensors with one additional dimension, indexed by the training domains, and set to a neutral value to predict domain-agnostic test examples. Ding and Fu (2017) implement parametertying and low-rank reconstruction losses to learn a predictor that relies on common knowledge across training domains. Hu et al. (2016); Sagawa et al. (2019) weight the importance of the minibatches of the training distributions proportional to their error. Chattopadhyay et al. (2020) overlays multiple weight masks over a single network to learn domain-invariant and domain-specific features. + +# A.3 META-LEARNING + +Li et al. (2018a) employ Model-Agnostic Meta-Learning, or MAML (Finn et al., 2017), to build a predictor that learns how to adapt fast between training domains. Dou et al. (2019) use a similar MAML strategy, together with two regularizers that encourage features from different domains to respect inter-class relationships, and be compactly clustered by class labels. Li et al. (2019b) extend the MAML meta-learning strategy to instances of domain generalization where the categories vary from domain to domain. Balaji et al. (2018) use MAML to meta-learn a regularizer encouraging the model trained on one domain to perform well on another domain. + +# A.4 AUGMENTING DATA + +Data augmentation is an effective strategy to address domain generalization (Zhang et al., 2019). Unfortunately, how to design efficient data augmentation routines depends on the type of data at hand, and demands a significant amount of work from human experts. Xu et al. (2019); Yan et al. (2020); Wang et al. (2020b) use mixup (Zhang et al., 2018) to blend examples from the different training distributions. Carlucci et al. (2019a) constructs an auxiliary classification task aimed at solving jigsaw puzzles of image patches. The authors show that this self-supervised learning task learns features that improve domain generalization. Similarly, Wang et al. (2020a) use metric learning and self-supervised learning to augment the out-of-distribution performance of an image classifier. Albuquerque et al. (2020) introduce the self-supervised task of predicting responses to Gabor filter banks, in order to learn more transferrable features. Wang et al. (2019) remove textural information from images to improve domain generalization. Volpi et al. (2018) show that training with adversarial data augmentation on a single domain is sufficient to improve domain generalization. Nam et al. (2019) promote representations of data that ignore image style and focus on content. Rahman et al. (2019b); Zhou et al. (2020); Carlucci et al. (2019a) are three alternatives that use GANs to augment the data available during training time. Representation Self-Challenging (Huang et al., 2020) learns robust neural networks by iteratively dropping-out important features. Hendrycks et al. (2020) show that, together with larger models and data, data augmentation improves out-of-distribution performance. + +# A.5 PREVIOUS STATE-OF-THE-ART NUMBERS + +Table 5 compiles the best out-of-distribution test accuracies reported across a decade of domain generalization research. + +Table 5: Previous state-of-the-art in the literature of domain generalization. + +
Benchmark Accuracy (by domain) Algorithm
0 15 30 45 60 75 Average82.5096.3093.40 78.60 94.2080.50 87.58 D-MTAE (Ghifary et al., 2015)84.6095.60 94.60 82.90 94.80 82.10 89.10 CCSA (Motiian et al., 2017)83.70 96.9095.70 85.20 95.9081.20 89.80 MMD-AAE (Li et al., 2018b)85.6095.0095.6095.5095.9084.30 92.00 BestSources (Mancini et al.,2018a)RotatedMNIST 88.8097.6097.50 97.8097.6091.90 95.20 ADAGE(Carlucci et al.,2019b)98.0097.7097.7091.4095.28CrossGrad (Shankar et al.,2018)88.3098.6090.1098.9098.9098.8098.3090.00 95.80 HEX (Wang et al., 2019)89.23 99.68 99.20 99.24 99.5391.44 96.39 FeatureCritic (Li et al.,2019b)93.50 99.3099.10 99.20 99.3093.00 97.20 DIVA (Ilse et al.,2019)95.9098.9098.80 98.9098.9096.40 98.00 Our ERM
82.50
84.60
83.70
85.60Rotated95.0095.60
MNIST 88.8088.3097.6097.50
98.60
90.1098.90
89.2399.6899.20
93.5099.3099.10
95.9098.9098.80
CLSV Average64.36 64.06 SCA (Ghifary et al., 2016)67.10 65.00 CCSA (Motiian et al., 2017)62.59 67.67 MTSSL (Albuquerque et al., 2020)63.90 68.60 D-MTAE (Ghifaryetal.,15)65.65 69.41 CIDG (Li et al., 2018c)64.38 69.59 CIDDG (Li et al., 2018d)66.86 70.22 MDA (Hu et al., 2019)65.25 70.97 MDA (Ding and Fu, 2017)69.99 72.11 DBADG (Li et al., 2017)67.60 72.30 MMD-AAE (Li et al.,2018b)67.10 72.90 Epi-FCR (Li et al.,2019a)70.62 73.19 JiGen (Carlucci et al.,2019a)70.49 73.30 VREx (Krueger et al., 2020)68.70 73.50 S-MLDG (Li et al., 2020)71.96 73.88 MMLD (Matsura and Harada, 2019)69.14 74.11 MASF (Dou et al., 2019)69.83 74.67 EISNet (Wang et al., 2020a)73.93 75.43 RSC (Huang et al.,2020)71.14 75.92 G2DM (Albuquerque et al., 2019)74.60 77.50 Our ERM
88.9259.6059.2064.36
92.3062.1059.1067.10
89.1564.9958.8862.59
89.0560.1361.3363.90
91.1260.4360.8565.65
88.8363.0662.1064.38
92.6461.7859.6066.8670.22
92.7662.3463.5465.2570.97
VLCS93.6363.4961.3269.9972.11
94.4062.6064.4067.6072.30
94.1064.3065.9067.1072.90
96.9360.9064.3070.6273.19
96.7260.4063.6870.4973.30
96.4064.8064.0068.7073.50
96.6658.7768.1371.96
94.7864.9067.6469.14
97.3363.4968.0269.8374.67
97.6161.8668.3273.9375.43
95.5267.6369.3771.1475.92
97.7064.3073.4074.6077.50
ACPSDBADG (Li et al., 2017)MTSSL (Albuquerque et al., 2020)CIDDG (Li et al., 2018d)JAN-COMBO (Rahman et al., 2019b)MLDG (Li et al., 2018a)HEX (Wang et al., 2019)BestSources (Mancini et al.,2018a)FeatureCritic (Lietal.,019b)VREx (Krueger et al.,2020)CAADG (Rahman et al., 2019a)Epi-FCR (Li et al., 2019a)G2DM (Albuquerque et al., 2019)MASF (Dou et al., 2019)JiGen (Carlucci et al.,2019a)S-MLDG (Li et al., 2020)
62.8666.9789.5057.5169.21
61.6767.4184.3163.9169.32
62.7069.7378.6564.4569.40
62.6465.9890.4458.7669.45
66.2366.8888.0058.9670.01
66.8069.7087.9056.3070.20
64.1066.8090.2060.1070.30
64.4068.6090.1058.4070.40
67.0467.9789.7459.8171.14
65.5269.9089.1663.3771.98
64.7072.3086.1065.0072.00
PACS66.6073.3688.1266.1973.55
70.3572.4690.6867.3375.21
79.4275.2596.0371.3580.51
80.5077.8094.8072.8081.50
79.4877.1394.3075.30 81.55 D-SAM-A (D'Innocente and Caputo, 2018)72.29 81.83 MMLD (Matsuura and Harada,2019)74.70 83.10 DDAIG (Zhou et al., 2020)76.30 83.25 SagNets (Nam et al., 2019)78.32 83.37 DMG (Chattopadhyay et al.,2020)70.30 83.60 MetaReg (Balaji et al.,2018)79.30 85.50 Our ERM78.07 85.84 EISNet (Wang et al.,2020a)82.90 86.64 DSON (Seo et al., 2020)83.35 87.83 RSC (Huang et al.,2020)
81.2877.1696.0972.2981.83
84.2078.1095.3074.7083.10
83.5877.6695.4776.3083.25
82.5778.1194.4978.3283.37
87.2079.2097.6070.3083.60
84.7080.8097.2079.3085.50
86.6481.5397.1178.07
87.0480.6295.9982.90
87.8982.1697.92
ACPR Average68.35 57.04 JAN-COMBO (Rahman et al., 2019b)72.79 61.20 JiGen (Carlucci et al.,2019a)71.90 61.76 D-SAM-△ (D'Innocente and Caputo,2018)73.38 62.34 SagNets (Nam et al.,2019)74.68 62.90 DSON (Seo et al., 2020)74.54 63.12 RSC (Huang et al.,2020)76.00 65.50 DDAIG (Zhou et al.,2020)76.60 66.50 Our ERM
48.0945.2066.5268.3557.04
53.0447.5171.4772.7961.20
54.5349.0471.5771.9061.76
Office60.2045.3870.4273.3862.34
Home59.3745.7071.8474.6862.90
58.4247.9071.6374.5463.12
59.2052.3074.60
61.3052.40 75.80
+ +# B MORE ABOUT DOMAINBED + +B.1 ALGORITHMS + +1. Empirical Risk Minimization (ERM, Vapnik (1998)) minimizes the errors across domains. +2. Group Distributionally Robust Optimization (DRO, Sagawa et al. (2019)) performs ERM while increasing the importance of domains with larger errors. +3. Inter-domain Mixup (Mixup, Xu et al. (2019); Yan et al. (2020); Wang et al. (2020b)) performs ERM on linear interpolations of examples from random pairs of domains and their labels. +4. Meta-Learning for Domain Generalization (MLDG, Li et al. (2018a)) leverages MAML (Finn et al., 2017) to meta-learn how to generalize across domains. +5. Domain-Adversarial Neural Networks (DANN, Ganin et al. (2016)) employ an adversarial network to match feature distributions across environments. +6. Class-conditional DANN (C-DANN, Li et al. (2018d)) is a variant of DANN matching the conditional distributions $P ( \phi ( X ^ { d } ) | Y ^ { d } = y )$ across domains, for all labels $y$ . +7. CORAL (Sun and Saenko, 2016) matches the mean and covariance of feature distributions. +8. MMD (Li et al., 2018b) matches the MMD (Gretton et al., 2012) of feature distributions. +9. Invariant Risk Minimization (IRM Arjovsky et al. (2019)) learns a feature representation $\phi ( X ^ { d } )$ such that the optimal linear classifier on top of that representation matches across domains. +10. Risk Extrapolation (VREx, Krueger et al. (2020)) approximates IRM with a variance penalty. +11. Marginal Transfer Learning (MTL, Blanchard et al. (2011; 2017)) estimates a mean embedding per domain, passed as a second argument to the classifier. +12. Adaptive Risk Min. (ARM, Zhang et al. (2020)) extends MTL with a separate embedding CNN. +13. Style-Agnostic Networks (SagNets, Nam et al. (2019)) learns neural networks by keeping image content and randomizing style. +14. Representation Self-Challenging (RSC, Huang et al. (2020)) learns robust neural networks by iteratively discarding (challenging) the most activated features. + +# B.2 DATASETS + +DOMAINBED includes downloaders and loaders for seven multi-domain image classification tasks: + +1. Colored MNIST (Arjovsky et al., 2019) is a variant of the MNIST handwritten digit classification dataset (LeCun, 1998). Domain $d \in \{ 0 . 1 , 0 . 3 , 0 . 9 \}$ contains a disjoint set of digits colored either red or blue. The label is a noisy function of the digit and color, such that color bears correlation $d$ with the label and the digit bears correlation 0.75 with the label. This dataset contains 70, 000 examples of dimension $( 2 , 2 8 , 2 8 )$ and 2 classes. +2. Rotated MNIST (Ghifary et al., 2015) is a variant of MNIST where domain $d \in \{ 0 , 1 5 , 3 0 , 4 5 .$ , $6 0 , 7 5 \ \}$ contains digits rotated by $d$ degrees. Our dataset contains 70, 000 examples of dimension (1, 28, 28) and 10 classes. +3. PACS (Li et al., 2017) comprises four domains $d \in \{$ { art, cartoons, photos, sketches $\}$ . This dataset contains 9, 991 examples of dimension $( 3 , 2 2 4 , 2 2 4 )$ and 7 classes. +4. VLCS (Fang et al., 2013) comprises photographic domains $d \in \{$ Caltech101, LabelMe, SUN09, VOC2007 }. This dataset contains 10, 729 examples of dimension (3, 224, 224) and 5 classes. +5. OfficeHome (Venkateswara et al., 2017) includes domains $d \in \{$ { art, clipart, product, real $\}$ . This dataset contains 15, 588 examples of dimension $( 3 , 2 2 4 , 2 2 4 )$ and 65 classes. +6. Terra Incognita (Beery et al., 2018) contains photographs of wild animals taken by camera traps at locations $d \in \{ \mathrm { L 1 0 0 , L 3 8 , L 4 3 , L 4 6 } \}$ . Our version of this dataset contains 24, 788 examples of dimension $( 3 , 2 2 4 , 2 2 4 )$ and 10 classes. +7. DomainNet (Peng et al., 2019) has six domains $d \in \{$ clipart, infograph, painting, quickdraw, real, sketch $\}$ . This dataset contains 586, 575 examples of size $( 3 , 2 2 4 , 2 2 4 )$ and 345 classes. + +For all datasets, we first pool the raw training, validation, and testing images together. For each random seed, we then instantiate random training, validation, and testing splits. + +# B.3 MODEL SELECTION CRITERIA, ILLUSTRATED + +Consider Figure 1, and let $T _ { i } = \{ A _ { i } , B _ { i } , C _ { i } \}$ for $i \in \{ 1 , 2 \}$ . Training-domain validation trains each hyperparameter configuration on $T _ { 1 }$ and chooses the configuration with the highest performance in $T _ { 2 }$ . Leave-one-out validation trains one clone $F _ { Z }$ of each hyperparameter configuration on $T _ { 1 } \backslash Z$ , for $Z \in T _ { 1 }$ ; then, it chooses the configuration with highest $\sum { _ { Z \in T _ { 1 } } }$ Performance $( F _ { Z } , Z )$ . Test-domain validation trains each hyperparameter configuration on $T _ { 1 }$ and chooses the configuration with the highest performance on $D _ { 2 }$ , only looking at its final epoch. Finally, result tables show the performance of selected models on $D _ { 1 }$ . + +![](images/9ba7746fffce965e4bc35feae1b7eb5d2689f91d8d3c777c598bfa2a16f700a6.jpg) +Figure 1: Data configuration for a benchmark with four domains A, B, C, D, where the test domain is D. We shuffle and divide the data from each domain into a big split and a small split. + +# B.4 ARCHITECTURES AND HYPERPARAMETERS + +Neural network architectures used for each dataset: + +
DatasetArchitecture
Colored MNIST Rotated MNISTMNIST ConvNet
PACS
VLCS
OfficeHomeResNet-50
TerraIncognita
+ +Neural network architecture for MNIST experiments: + +
#Layer
1Conv2D (in=d,out=64)
2ReLU
3GroupNorm (groups=8)
4Conv2D (in=64,out=128,stride=2)
5ReLU
6GroupNorm (8 groups)
7Conv2D (in=128,out=128)
8ReLU
9GroupNorm (8 groups)
10Conv2D (in=128,out=128)
11ReLU
12 13GroupNorm (8 groups) Global average-pooling
+ +For “ResNet- $5 0 ^ { \circ }$ , we replace the final (softmax) layer of a ResNet50 pretrained on ImageNet and fine-tune the entire network. Since minibatches from different domains follow different distributions, batch normalization degrades domain generalization algorithms (Seo et al., 2020). Therefore, we freeze all batch normalization layers before fine-tuning. We insert a dropout layer before the final ResNet-50 linear layer. + +Table 6 lists all algorithm hyperparameters, their default values, and their sweep random search distribution. We optimize all models using Adam (Kingma and Ba, 2015). + +Table 6: Hyperparameters, their default values and distributions for random search. + +
Default valueRandom distribution
ConditionParameter
ResNetlearning rate0.0000510Uniform(-5,-3.5)
batch size322Uniform(3,5.5)
batch size (if ARM)88
ResNet dropout0RandomChoice([0,0.1,0.5])
generator learning rate0.0000510Uniform(-5,-3.5)
discriminator learning rate0.0000510Uniform(-5,-3.5)
not ResNetlearning rate0.00110Uniform(-4.5,-3.5)
batch size642Uniform(3.9)
generator learning rate0.00110Uniform(-4.5,-2.5)
discriminator learning rate0.00110Uniform(-4.5,-2.5)
MNIST weight decay00
generator weight decay00
not MNISTweight decay010Uniform(-6,-2)
generator weight decay010Uniform(−6,−2)
DANN, C-DANNlambda1.010Uniform(−2,2)
discriminator weight decay010Uniform(-6,−2)
discriminator steps12Uniform(0,3)
discriminator width256int(2Uniform(6,10))
discriminator depth3RandomChoice([3,4,5])
discriminator dropout0RandomChoice([0,0.1,0.5])
discriminator grad penalty010Uniform(-2,1)
Adam β10.5RandomChoice([0,0.5])
DROeta0.0110Uniform(-1,1)
IRMlambda10010Uniform(-1,5)
warmup iterations50010Uniform(0,4)
Mixupalpha0.210Uniform(0,4)
MLDGbeta110Uniform(−1,1)
MMD gamma110Uniform(-1,1)
MTLema0.99RandomChoice([.5,.9,.99,1])
RSCfeature drop percentage1/3Uniform(0, 0.5)
batch drop percentage1/3Uniform(0, 0.5)
SagNetadversary weight0.110Uniform(−2,1)
VRExlambda1010Uniform(-1,5)
warmup iterations50010Uniform(0,4)
+ +# B.5 EXTENDING DOMAINBED + +Algorithms are classes that implement two methods: .update(minibatches) and .predict(x). The update method receives a list of minibatches, one minibatch per training domain, and each minibatch containing one input and one output tensor. For example, to implement group DRO (Sagawa et al., 2019, Algorithm 1), we simply write the following in algorithms.py: + +class GroupDRO(ERM): def _init__(self, input_shape, num_classes, num_domains, hparams): super().__init__(input_shape, num_classes, num_domains, hparams) self.register_buffer("q", torch.Tensor()) def update(self, minibatches): device $=$ "cuda" if minibatches[0][0].is_cuda else "cpu" if not len(self.q): self.q $=$ torch.ones(len(minibatches)).to(device) losses $=$ torch.zeros(len(minibatches)).to(device) for m in range(len(minibatches)): x, $\begin{array} { r l } { \mathrm { y } } & { { } = } \end{array}$ minibatches[m] losses[m] $=$ F.cross_entropy(self.predict(x), y) self.q[m] $\star =$ (self.hparams["dro_eta"] $^ { \star }$ losses[m].data).exp() self.q $/ =$ self.q.sum() loss $=$ torch.dot(losses, self.q) / len(minibatches) self.optimizer.zero_grad() loss.backward() self.optimizer.step() return {’loss’: loss.item()} + +By inheriting from ERM, the new GroupDRO class has access to a default classifier .network, optimizer .optimizer, and prediction method .predict(x). Finally, we tell DOMAINBED about the default values and hyperparameter search distributions of the hyperparameters of this new algorithm. We do so by adding the following to the function hparams in hparams registry.py: + +hparams[’dro_eta’] $=$ (1e-2, ${ \bf 1 0 \star \star }$ random_state.uniform(-3, -1)) + +To add a new image classification dataset to DOMAINBED, arrange your image files as /root/MyDataset/domain/class/image.jpg. Then, append to datasets.py: + +class MyDataset(MultipleEnvironmentImageFolder): ENVIRONMENTS $=$ [’Env1’, ’Env2’, ’Env3’] def __init__(self, root, test_envs, augment $=$ True): self.dir $=$ os.path.join(root, "MyDataset/") super().__init__(self.dir, test_envs, augment) + +DATASETS.append(’MyDataset’) + +We are now ready to train our new algorithm on our new dataset, using the second domain as test: + +python train.py --model DRO --dataset MyDataset --data_dir /root --test_envs 1 \ --hparams ’{"dro_eta": 0.2}’ + +Finally, we can run a fully automated sweep on all datasets, algorithms, test domains, and model selection criteria by simply invoking python sweep.py, after extending the file command launchers.py to your computing infrastructure. When the sweep finishes, the script collect results.py automatically generates all the result tables shown in this manuscript. + +Extension to UDA One can use DOMAINBED to perform experimentation on unsupervised domain adaptation by extending the .update(minibatches) methods to accept unlabeled examples from the test domain. + +# C FULL DOMAINBED RESULTS + +C.1 MODEL SELECTION: TRAINING-DOMAIN VALIDATION SET + +C.1.1 COLOREDMNIST + +C.1.2 ROTATEDMNIST + +
Algorithm+90%+80%-90%Avg
ERM71.7 ± 0.172.9 ± 0.210.0 ± 0.151.5
IRM72.5 ± 0.173.3 ± 0.510.2 ± 0.352.0
GroupDRO73.1 ± 0.373.2 ± 0.210.0 ± 0.252.1
Mixup72.7 ± 0.473.4 ± 0.110.1 ± 0.152.1
MLDG71.5 ± 0.273.1 ± 0.29.8 ± 0.151.5
CORAL71.6 ± 0.373.1 ± 0.19.9 ± 0.151.5
MMD71.4 ± 0.373.1 ± 0.29.9 ± 0.351.5
DANN71.4 ± 0.973.1 ± 0.110.0 ± 0.051.5
CDANN72.0 ± 0.273.0 ± 0.210.2 ± 0.151.7
MTL70.9 ± 0.272.8 ± 0.310.5 ± 0.151.4
SagNet71.8 ± 0.273.0 ± 0.210.3 ± 0.051.7
ARM82.0 ± 0.576.5 ± 0.310.2 ± 0.056.2
VREx72.4 ± 0.372.9 ± 0.410.2 ± 0.051.8
RSC71.9 ± 0.373.1 ± 0.210.0 ± 0.251.7
+ +
Algorithm01530456075Avg
ERM95.9 ± 0.198.9 ± 0.098.8 ± 0.098.9 ± 0.098.9 ± 0.096.4 ± 0.098.0
IRM95.5 ± 0.198.8 ± 0.298.7 ± 0.198.6 ± 0.198.7 ± 0.095.9 ± 0.297.7
GroupDRO95.6 ± 0.198.9 ± 0.198.9 ± 0.199.0 ± 0.098.9 ± 0.096.5 ± 0.298.0
Mixup95.8 ± 0.398.9 ± 0.098.9 ± 0.098.9 ± 0.098.8 ± 0.196.5 ± 0.398.0
MLDG95.8 ± 0.198.9 ± 0.199.0 ± 0.098.9 ± 0.199.0 ± 0.095.8 ± 0.397.9
CORAL95.8 ± 0.398.8 ± 0.098.9 ± 0.099.0 ± 0.098.9 ± 0.196.4 ± 0.298.0
MMD95.6 ± 0.198.9 ± 0.199.0 ± 0.099.0 ± 0.098.9 ± 0.096.0 ± 0.297.9
DANN95.0 ± 0.598.9 ± 0.199.0 ± 0.099.0 ± 0.198.9 ± 0.096.3 ± 0.297.8
CDANN95.7 ± 0.298.8 ± 0.098.9 ± 0.198.9 ± 0.198.9 ± 0.196.1 ± 0.397.9
MTL95.6 ± 0.199.0 ± 0.199.0 ± 0.098.9 ± 0.199.0 ± 0.195.8 ± 0.297.9
SagNet95.9 ± 0.398.9 ± 0.199.0 ± 0.199.1 ± 0.099.0 ± 0.196.3 ± 0.198.0
ARM96.7 ± 0.299.1 ± 0.099.0 ± 0.099.0 ± 0.199.1 ± 0.196.5 ± 0.498.2
VREx95.9 ± 0.299.0 ± 0.198.9 ± 0.198.9 ± 0.198.7 ± 0.196.2 ± 0.297.9
RSC94.8 ± 0.598.7 ± 0.198.8 ± 0.198.8 ± 0.098.9 ± 0.195.9 ± 0.297.6
+ +# C.1.3 VLCS + +
AlgorithmCLSVAvg
ERM97.7 ± 0.464.3 ± 0.973.4 ± 0.574.6 ± 1.377.5
IRM98.6 ± 0.164.9 ± 0.973.4 ± 0.677.3 ± 0.978.5
GroupDRO97.3 ± 0.363.4 ± 0.969.5 ± 0.876.7 ± 0.776.7
Mixup98.3 ± 0.664.8 ± 1.072.1 ± 0.574.3 ± 0.877.4
MLDG97.4 ± 0.265.2 ± 0.771.0 ± 1.475.3 ± 1.077.2
CORAL98.3 ± 0.166.1 ± 1.273.4 ± 0.377.5 ± 1.278.8
MMD97.7 ± 0.164.0 ± 1.172.8 ± 0.275.3 ± 3.377.5
DANN99.0 ± 0.365.1 ± 1.473.1 ± 0.377.2 ± 0.678.6
CDANN97.1 ± 0.365.1 ± 1.270.7 ± 0.877.1 ± 1.577.5
MTL97.8 ± 0.464.3 ± 0.371.5 ± 0.775.3 ± 1.777.2
SagNet97.9 ± 0.464.5 ± 0.571.4 ± 1.377.5 ± 0.577.8
ARM98.7 ± 0.263.6 ± 0.771.3 ± 1.276.7 ± 0.677.6
VREx98.4 ± 0.364.4 ± 1.474.1 ± 0.476.2 ± 1.378.3
RSC97.9 ± 0.162.5 ± 0.772.3 ± 1.275.6 ± 0.877.1
+ +C.1.4 PACS + +
AlgorithmACPSAvg
ERM84.7 ± 0.480.8 ± 0.697.2 ± 0.379.3 ± 1.085.5
IRM84.8 ± 1.376.4 ± 1.196.7 ± 0.676.1 ± 1.083.5
GroupDRO83.5 ± 0.979.1 ± 0.696.7 ± 0.378.3 ± 2.084.4
Mixup86.1 ± 0.578.9 ± 0.897.6 ± 0.175.8 ± 1.884.6
MLDG85.5 ± 1.480.1 ± 1.797.4 ± 0.376.6 ± 1.184.9
CORAL88.3 ± 0.280.0 ± 0.597.5 ± 0.378.8 ± 1.386.2
MMD86.1 ± 1.479.4 ± 0.996.6 ± 0.276.5 ± 0.584.6
DANN86.4 ± 0.877.4 ± 0.897.3 ± 0.473.5 ± 2.383.6
CDANN84.6 ± 1.875.5 ± 0.996.8 ± 0.373.5 ± 0.682.6
MTL87.5 ± 0.877.1 ± 0.596.4 ± 0.877.3 ± 1.884.6
SagNet87.4 ± 1.080.7 ± 0.697.1 ± 0.180.0 ± 0.486.3
ARM86.8 ± 0.676.8 ± 0.597.4 ± 0.379.3 ± 1.285.1
VREx86.0 ± 1.679.1 ± 0.696.9 ± 0.577.7 ± 1.784.9
RSC85.4 ± 0.879.7 ± 1.897.6 ± 0.378.2 ± 1.285.2
+ +C.1.5 OFFICEHOME + +
AlgorithmACPRAvg
ERM61.3 ± 0.752.4 ± 0.375.8 ± 0.176.6 ± 0.366.5
IRM58.9 ± 2.352.2 ± 1.672.1 ± 2.974.0 ± 2.564.3
GroupDRO60.4 ± 0.752.7 ± 1.075.0 ± 0.776.0 ± 0.766.0
Mixup62.4 ± 0.854.8 ± 0.676.9 ± 0.378.3 ± 0.268.1
MLDG61.5 ± 0.953.2 ± 0.675.0 ± 1.277.5 ± 0.466.8
CORAL65.3 ± 0.454.4 ± 0.576.5 ± 0.178.4 ± 0.568.7
MMD60.4 ± 0.253.3 ± 0.374.3 ± 0.177.4 ± 0.666.3
DANN59.9 ± 1.353.0 ± 0.373.6 ± 0.776.9 ± 0.565.9
CDANN61.5 ± 1.450.4 ± 2.474.4 ± 0.976.6 ± 0.865.8
MTL61.5 ± 0.752.4 ± 0.674.9 ± 0.476.8 ± 0.466.4
SagNet63.4 ± 0.254.8 ± 0.475.8 ± 0.478.3 ± 0.368.1
ARM58.9 ± 0.851.0 ± 0.574.1 ± 0.175.2 ± 0.364.8
VREx60.7 ± 0.953.0 ± 0.975.3 ± 0.176.6 ± 0.566.4
RSC60.7 ± 1.451.4 ± 0.374.8 ± 1.175.1 ± 1.365.5
+ +C.1.6 TERRAINCOGNITA + +
AlgorithmL100L38L43L46Avg
ERM49.8 ± 4.442.1 ± 1.456.9 ± 1.835.7 ± 3.946.1
IRM54.6 ± 1.339.8 ± 1.956.2 ± 1.839.6 ± 0.847.6
GroupDRO41.2 ± 0.738.6 ± 2.156.7 ± 0.936.4 ± 2.143.2
Mixup59.6 ± 2.042.2 ± 1.455.9 ± 0.833.9 ± 1.447.9
MLDG54.2 ± 3.044.3± 1.155.6 ± 0.336.9 ± 2.247.7
CORAL51.6 ± 2.442.2 ± 1.057.0 ± 1.039.8 ± 2.947.6
MMD41.9 ± 3.034.8 ± 1.057.0 ± 1.935.2 ± 1.842.2
DANN51.1 ± 3.540.6 ± 0.657.4 ± 0.537.7 ± 1.846.7
CDANN47.0 ± 1.941.3 ± 4.854.9 ± 1.739.8 ± 2.345.8
MTL49.3 ± 1.239.6 ± 6.355.6 ± 1.137.8 ± 0.845.6
SagNet53.0 ± 2.943.0 ± 2.557.9 ± 0.640.4 ± 1.348.6
ARM49.3 ± 0.738.3 ± 2.455.8 ± 0.838.7 ± 1.345.5
VREx48.2 ± 4.341.7 ± 1.356.8 ± 0.838.7 ± 3.146.4
RSC50.2 ± 2.239.2 ± 1.456.3 ± 1.440.8 ± 0.646.6
+ +# C.1.7 DOMAINNET + +
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.1 ± 0.318.8 ± 0.346.7 ± 0.312.2 ± 0.459.6 ± 0.149.8 ± 0.440.9
IRM48.5 ± 2.815.0 ± 1.538.3 ± 4.310.9 ± 0.548.2 ± 5.242.3 ± 3.133.9
GroupDRO47.2 ± 0.517.5 ± 0.433.8 ± 0.59.3 ± 0.351.6 ± 0.440.1 ± 0.633.3
Mixup55.7 ± 0.318.5 ± 0.544.3 ± 0.512.5 ± 0.455.8 ± 0.348.2 ± 0.539.2
MLDG59.1 ± 0.219.1 ± 0.345.8 ± 0.713.4 ± 0.359.6 ± 0.250.2 ± 0.441.2
CORAL59.2 ± 0.119.7 ± 0.246.6± 0.313.4 ± 0.459.8 ± 0.250.1 ± 0.641.5
MMD32.1 ± 13.311.0 ± 4.626.8 ± 11.38.7 ± 2.132.7 ± 13.828.9 ± 11.923.4
DANN53.1± 0.218.3 ± 0.144.2 ± 0.711.8 ± 0.155.5 ± 0.446.8 ± 0.638.3
CDANN54.6 ± 0.417.3 ± 0.143.7 ± 0.912.1 ± 0.756.2 ± 0.445.9 ± 0.538.3
MTL57.9 ± 0.518.5 ± 0.446.0 ± 0.112.5 ± 0.159.5 ± 0.349.2 ± 0.140.6
SagNet57.7 ± 0.319.0 ± 0.245.3 ± 0.312.7 ± 0.558.1 ± 0.548.8 ± 0.240.3
ARM49.7 ± 0.316.3 ± 0.540.9 ± 1.19.4 ± 0.153.4 ± 0.443.5 ± 0.435.5
VREx47.3 ± 3.516.0 ± 1.535.8 ± 4.610.9 ± 0.349.6 ± 4.942.0 ± 3.033.6
RSC55.0 ± 1.218.3 ± 0.544.4 ± 0.612.2 ± 0.255.7 ± 0.747.8 ± 0.938.9
+ +# C.1.8 AVERAGES + +
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM51.5 ± 0.198.0±0.077.5 ± 0.485.5±0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
IRM52.0 ± 0.197.7 ± 0.178.5 ± 0.583.5±0.864.3 ±2.247.6 ± 0.833.9 ±2.865.4
GroupDRO52.1 ± 0.098.0±0.076.7 ± 0.684.4 ±0.866.0± 0.743.2 ±1.133.3±0.264.8
Mixup52.1 ± 0.298.0± 0.177.4 ± 0.684.6±0.668.1± 0.347.9 ± 0.839.2 ± 0.166.7
MLDG51.5 ± 0.197.9 ± 0.077.2 ± 0.484.9 ± 1.066.8±0.647.7 ± 0.941.2 ± 0.166.7
CORAL51.5 ± 0.198.0± 0.178.8 ±0.686.2 ±0.368.7 ±0.347.6 ±1.041.5 ± 0.167.5
MMD51.5 ± 0.297.9 ± 0.077.5 ± 0.984.6± 0.566.3 ± 0.142.2 ±1.623.4 ± 9.563.3
DANN51.5 ± 0.397.8 ± 0.178.6± 0.483.6±0.465.9 ±0.646.7 ± 0.538.3 ±0.166.1
CDANN51.7 ± 0.197.9 ± 0.177.5 ± 0.182.6±0.965.8 ±1.345.8 ±1.638.3 ±0.365.6
MTL51.4 ± 0.197.9 ± 0.077.2 ± 0.484.6±0.566.4 ± 0.545.6 ±1.240.6 ± 0.166.2
SagNet51.7 ± 0.098.0±0.077.8 ± 0.586.3 ±0.268.1±0.148.6±1.040.3 ± 0.167.2
ARM56.2 ±0.298.2 ±0.177.6± 0.385.1±0.464.8±0.345.5± 0.335.5±0.266.1
VREx51.8 ± 0.197.9 ± 0.178.3 ±0.284.9±0.666.4±0.646.4±0.633.6±2.965.6
RSC51.7 ± 0.297.6 ± 0.177.1 ± 0.585.2 ±0.965.5 ± 0.946.6 ±1.038.9± 0.566.1
+ +C.2 MODEL SELECTION: LEAVE-ONE-DOMAIN-OUT CROSS-VALIDATION + +# C.2.1 COLOREDMNIST + +
Algorithm+90%+80%-90%Avg
ERM50.0 ± 0.250.1 ± 0.210.0 ± 0.036.7
IRM46.7 ± 2.451.2 ± 0.323.1 ± 10.740.3
GroupDRO50.1 ± 0.550.0 ± 0.510.2 ± 0.136.8
Mixup36.6 ± 10.953.4 ± 5.910.2 ± 0.133.4
MLDG50.1 ± 0.650.1 ± 0.310.0 ± 0.136.7
CORAL49.5 ± 0.059.5 ± 8.210.2 ± 0.139.7
MMD50.3 ± 0.250.0 ± 0.49.9 ± 0.236.8
DANN49.9 ± 0.162.1 ± 7.010.0 ± 0.140.7
CDANN63.2 ± 10.144.4 ± 4.59.9 ± 0.239.1
MTL44.3 ± 4.950.7 ± 0.010.1 ± 0.135.0
SagNet49.9 ± 0.449.7 ± 0.310.0 ± 0.136.5
ARM50.0 ± 0.350.1 ± 0.310.2 ± 0.036.8
VREx50.2 ± 0.450.5 ± 0.510.1 ± 0.036.9
RSC49.6 ± 0.349.7 ± 0.410.1 ± 0.036.5
+ +# C.2.2 ROTATEDMNIST + +
Algorithm01530456075Avg
ERM95.3 ± 0.298.9 ± 0.198.9 ± 0.198.8 ± 0.198.5 ± 0.196.2 ± 0.297.7
IRM94.5 ± 0.598.2 ± 0.298.7 ± 0.196.6 ± 1.598.4 ± 0.195.8 ± 0.197.0
GroupDRO95.7 ± 0.398.7 ± 0.198.9 ± 0.198.6± 0.298.6 ± 0.295.3 ± 0.997.6
Mixup94.8 ± 0.498.8 ± 0.098.9 ± 0.199.0 ± 0.198.9 ± 0.096.4 ± 0.397.8
MLDG94.3 ± 0.498.8 ±0.199.0 ± 0.198.8 ± 0.198.8 ± 0.196.0 ± 0.397.6
CORAL95.7 ± 0.598.5 ± 0.298.9 ± 0.298.6± 0.298.8 ± 0.196.3 ± 0.297.8
MMD95.8 ± 0.298.7 ± 0.199.0 ± 0.098.8 ± 0.198.7 ± 0.196.1 ± 0.297.8
DANN95.1 ± 0.598.3 ± 0.598.5 ± 0.199.0 ± 0.198.6 ± 0.196.1 ± 0.397.6
CDANN94.3 ± 0.598.4 ± 0.398.9 ± 0.198.7 ± 0.198.9 ± 0.195.7 ± 0.497.5
MTL95.5 ± 0.398.6 ± 0.398.8 ± 0.199.0 ± 0.199.0 ± 0.195.6 ± 0.397.8
SagNet94.0 ± 1.698.7 ±0.298.9 ± 0.199.1 ± 0.098.8 ± 0.174.2 ± 16.594.0
ARM95.8 ± 0.199.0 ± 0.199.0 ± 0.098.9 ± 0.198.8 ± 0.196.9 ± 0.398.1
VREx95.8 ± 0.298.7 ± 0.098.5 ± 0.198.9 ± 0.174.0 ± 20.195.5 ± 0.593.6
RSC94.6 ± 0.098.4 ± 0.299.0 ± 0.198.9 ± 0.098.8 ± 0.195.9 ± 0.497.6
+ +# C.2.3 VLCS + +
AlgorithmCLSVAvg
ERM98.0 ± 0.462.6 ± 0.970.8 ± 1.977.5 ± 1.977.2
IRM98.6 ± 0.366.0 ± 1.169.3 ± 0.971.5 ± 1.976.3
GroupDRO98.1 ± 0.366.4 ± 0.971.0 ± 0.376.1 ± 1.477.9
Mixup98.4 ± 0.363.4 ± 0.772.9 ± 0.876.1 ± 1.277.7
MLDG98.5 ± 0.361.7 ± 1.273.6 ± 1.875.0 ± 0.877.2
CORAL96.9 ± 0.965.7 ± 1.273.3 ± 0.778.7 ± 0.878.7
MMD98.3 ± 0.165.6 ± 0.769.7 ± 1.075.7 ± 0.977.3
DANN97.3 ± 1.363.7 ± 1.372.6 ± 1.474.2 ± 1.776.9
CDANN97.6 ± 0.663.4 ± 0.870.5 ± 1.478.6 ± 0.577.5
MTL97.6 ± 0.660.6 ± 1.371.0 ± 1.277.2 ± 0.776.6
SagNet97.3 ± 0.461.6 ± 0.873.4 ± 1.977.6 ± 0.477.5
ARM97.2 ± 0.562.7 ± 1.570.6 ± 0.675.8 ± 0.976.6
VREx96.9 ± 0.364.8 ± 2.069.7 ± 1.875.5 ± 1.776.7
RSC97.5 ± 0.663.1 ± 1.273.0 ± 1.376.2 ± 0.577.5
+ +# C.2.4 PACS + +
AlgorithmACPSAvg
ERM83.2 ± 1.376.8 ± 1.797.2 ± 0.374.8 ± 1.383.0
IRM81.7 ± 2.477.0 ± 1.396.3 ± 0.271.1 ± 2.281.5
GroupDRO84.4 ± 0.777.3 ± 0.896.8 ± 0.875.6 ± 1.483.5
Mixup85.2 ± 1.977.0 ± 1.796.8 ± 0.873.9 ± 1.683.2
MLDG81.4 ± 3.677.9 ± 2.396.2 ± 0.376.1 ± 2.182.9
CORAL80.5± 2.874.5 ± 0.496.8 ± 0.378.6 ± 1.482.6
MMD84.9 ± 1.775.1 ± 2.096.1 ± 0.976.5 ± 1.583.2
DANN84.3 ± 2.872.4 ± 2.896.5 ± 0.870.8 ± 1.381.0
CDANN78.3 ± 2.873.8 ± 1.696.4 ± 0.566.8 ± 5.578.8
MTL85.6 ± 1.578.9 ± 0.697.1 ± 0.373.1 ± 2.783.7
SagNet81.1 ± 1.975.4 ± 1.395.7 ± 0.977.2 ± 0.682.3
ARM85.9 ± 0.373.3 ± 1.995.6 ± 0.472.1 ± 2.481.7
VREx81.6 ± 4.074.1 ± 0.396.9 ± 0.472.8 ± 2.181.3
RSC83.7 ± 1.782.9 ± 1.195.6 ± 0.768.1 ± 1.582.6
+ +C.2.5 OFFICEHOME + +
AlgorithmACPRAvg
ERM61.1 ± 0.950.7 ± 0.674.6 ± 0.376.4 ± 0.665.7
IRM58.2 ±1.251.6 ± 1.273.3 ± 2.274.1 ± 1.764.3
GroupDRO59.9 ± 0.451.0 ± 0.473.7 ± 0.376.0 ± 0.265.2
Mixup61.4 ± 0.553.0 ± 0.375.8 ± 0.277.7 ± 0.367.0
MLDG60.5 ± 1.451.9 ± 0.274.4 ± 0.677.6 ± 0.466.1
CORAL64.5 ± 0.854.8 ± 0.276.6 ± 0.378.1 ± 0.268.5
MMD60.8 ± 0.753.7 ± 0.550.2 ± 19.976.0 ± 0.760.2
DANN60.2 ± 1.352.2 ± 0.971.3 ± 2.076.0 ± 0.664.9
CDANN58.7 ± 2.949.0 ± 2.173.6 ± 1.076.0 ± 1.164.3
MTL59.1 ± 0.352.1 ± 1.274.7 ± 0.477.0 ± 0.665.7
SagNet63.0 ± 0.854.0 ± 0.376.6 ± 0.376.8 ± 0.467.6
ARM58.7 ± 0.849.8 ± 1.173.1 ± 0.575.9 ± 0.164.4
VREx57.6 ± 3.451.3 ± 1.374.9 ± 0.275.8 ± 0.764.9
RSC61.6 ± 1.051.1 ± 0.874.8 ± 1.175.7 ± 0.965.8
+ +C.2.6 TERRAINCOGNITA + +
AlgorithmL100L38L43L46Avg
ERM34.4 ± 5.638.1 ± 4.055.7 ± 1.037.4 ± 1.141.4
IRM46.7 ± 1.840.9 ± 2.152.2 ± 3.324.9 ± 10.041.2
GroupDRO45.2 ± 6.240.1 ± 2.055.8 ± 1.438.3 ± 4.244.9
Mixup59.7 ± 1.541.3 ± 2.155.9 ± 0.837.9 ± 1.548.7
MLDG51.0 ± 1.939.2 ± 0.256.2 ± 1.138.3 ± 2.446.2
CORAL52.4± 7.239.7 ± 1.556.1 ± 0.937.1 ± 2.246.3
MMD49.1 ± 2.242.0 ± 1.655.3 ± 1.939.5 ± 2.046.5
DANN46.9 ± 3.938.8 ±1.155.5 ± 1.436.2 ± 1.144.4
CDANN43.9 ± 7.332.5 ± 4.441.0 ± 7.842.4 ± 1.839.9
MTL42.8 ± 4.643.9 ± 1.155.5 ± 0.837.5 ± 1.944.9
SagNet48.1 ± 2.447.1 ± 0.854.4 ± 1.139.1 ± 1.847.2
ARM48.9 ± 5.334.4 ± 3.551.9 ± 0.835.4 ± 2.342.6
VREx46.4 ± 1.425.5 ± 5.839.6 ± 12.837.8 ± 3.637.3
RSC40.0 ± 1.332.1 ± 2.553.9 ± 0.534.2 ± 0.240.0
+ +# C.2.7 DOMAINNET + +
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.1 ± 0.317.8 ± 0.347.0 ± 0.312.2 ± 0.459.2 ± 0.749.5 ± 0.640.6
IRM47.5 ± 2.715.0 ± 1.537.3 ± 5.110.9 ± 0.548.0 ± 5.442.3 ± 3.133.5
GroupDRO47.2 ± 0.517.0 ± 0.633.8 ± 0.59.2 ± 0.451.6 ± 0.439.2 ± 1.233.0
Mixup54.4 ± 0.618.0 ± 0.444.5 ± 0.511.5 ± 0.255.8 ± 1.146.9 ± 0.238.5
MLDG58.3 ± 0.719.3 ± 0.245.8 ± 0.713.2 ± 0.359.4 ± 0.249.8 ± 0.341.0
CORAL59.2 ± 0.119.5 ± 0.346.2 ± 0.113.4 ± 0.459.1 ± 0.549.5 ± 0.841.1
MMD32.2 ± 13.311.0 ± 4.626.8 ± 11.38.7 ± 2.132.7 ± 13.828.9 ± 11.923.4
DANN52.7 ± 0.118.0 ± 0.344.2 ± 0.711.8 ± 0.155.5 ± 0.446.8 ± 0.638.2
CDANN53.1 ± 0.917.3 ± 0.143.7 ± 0.911.6 ± 0.656.2 ± 0.445.9 ± 0.538.0
MTL57.3 ± 0.319.3 ± 0.245.7 ± 0.412.5 ± 0.159.3 ± 0.249.2 ± 0.140.6
SagNet56.2 ± 0.318.9 ± 0.246.2 ± 0.512.6 ± 0.658.2 ± 0.649.1 ± 0.240.2
ARM49.0 ± 0.715.8 ± 0.340.8 ± 1.19.4 ± 0.253.0 ± 0.443.4 ± 0.335.2
VREx46.5 ± 4.115.6 ± 1.835.8 ± 4.610.9 ± 0.349.6 ± 4.942.0 ± 3.033.4
RSC55.0 ± 1.218.3 ± 0.544.4 ± 0.612.2 ± 0.255.7 ± 0.747.8 ± 0.938.9
+ +# C.2.8 AVERAGES + +
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM36.7 ± 0.197.7 ± 0.077.2 ± 0.483.0±0.765.7±0.541.4 ± 1.440.6±0.263.2
IRM40.3± 4.297.0± 0.276.3 ± 0.681.5 ± 0.864.3 ± 1.541.2 ± 3.633.5 ± 3.062.0
GroupDRO36.8 ± 0.197.6 ± 0.177.9 ± 0.583.5± 0.265.2 ± 0.244.9 ± 1.433.0±0.362.7
Mixup33.4 ± 4.797.8 ± 0.077.7 ± 0.683.2 ± 0.467.0±0.248.7 ± 0.438.5 ± 0.363.8
MLDG36.7 ±0.297.6± 0.077.2 ± 0.982.9 ±1.766.1± 0.546.2 ± 0.941.0 ± 0.264.0
CORAL39.7 ± 2.897.8 ± 0.178.7 ± 0.482.6±0.568.5±0.246.3 ± 1.741.1 ± 0.165.0
MMD36.8 ±0.197.8 ± 0.177.3 ± 0.583.2±0.260.2±5.246.5 ± 1.523.4± 9.560.7
DANN40.7 ±2.397.6± 0.276.9 ± 0.481.0 ±1.164.9 ±1.244.4 ± 1.138.2±0.263.4
CDANN39.1 ± 4.497.5 ± 0.277.5 ± 0.278.8±2.264.3 ±1.739.9 ±3.238.0±0.162.2
MTL35.0 ±1.797.8 ± 0.176.6± 0.583.7 ±0.465.7 ± 0.544.9 ± 1.240.6 ±0.163.5
SagNet36.5 ± 0.194.0±3.077.5 ± 0.382.3 ±0.167.6± 0.347.2 ± 0.940.2 ±0.263.6
ARM36.8 ±0.098.1± 0.176.6± 0.581.7 ±0.264.4±0.242.6 ± 2.735.2 ±0.162.2
VREx36.9 ± 0.393.6±3.476.7 ± 1.081.3 ± 0.964.9 ±1.337.3 ±3.033.4 ±3.160.6
RSC36.5± 0.297.6 ± 0.177.5 ± 0.582.6±0.765.8±0.740.0±0.838.9 ±0.562.7
+ +C.3 MODEL SELECTION: TEST-DOMAIN VALIDATION SET (ORACLE) + +# C.3.1 COLOREDMNIST + +C.3.2 ROTATEDMNIST + +
Algorithm+90%+80%-90%Avg
ERM71.8 ± 0.472.9 ± 0.128.7 ± 0.557.8
IRM72.0 ± 0.172.5 ± 0.358.5 ± 3.367.7
GroupDRO73.5 ± 0.373.0 ± 0.336.8 ± 2.861.1
Mixup72.5 ± 0.273.9 ± 0.428.6 ± 0.258.4
MLDG71.9 ± 0.373.5 ± 0.229.1 ± 0.958.2
CORAL71.1 ± 0.273.4 ± 0.231.1 ± 1.658.6
MMD69.0 ± 2.370.4 ±1.650.6 ± 0.263.3
DANN72.4 ± 0.573.9 ± 0.524.9 ± 2.757.0
CDANN71.8 ± 0.572.9 ± 0.133.8 ± 6.459.5
MTL71.2 ± 0.273.5 ± 0.228.0 ±0.657.6
SagNet72.1 ± 0.373.2 ± 0.329.4 ± 0.558.2
ARM84.9 ± 0.976.8 ± 0.627.9 ± 2.163.2
VREx72.8 ± 0.373.0 ± 0.355.2 ± 4.067.0
RSC72.0 ± 0.173.2 ± 0.130.2 ± 1.658.5
+ +
Algorithm01530456075Avg
ERM95.3 ± 0.298.7 ± 0.198.9 ± 0.198.7 ± 0.298.9 ± 0.096.2 ± 0.297.8
IRM94.9 ± 0.698.7 ± 0.298.6 ± 0.198.6 ±0.298.7 ± 0.195.2 ± 0.397.5
GroupDRO95.9 ± 0.199.0 ± 0.198.9 ± 0.198.8 ± 0.198.6 ± 0.196.3 ± 0.497.9
Mixup95.8 ± 0.398.7 ± 0.099.0 ± 0.198.8 ± 0.198.8 ± 0.196.6 ± 0.298.0
MLDG95.7 ± 0.298.9 ± 0.198.8 ± 0.198.9 ± 0.198.6 ± 0.195.8 ± 0.497.8
CORAL96.2 ± 0.298.8 ± 0.198.8 ± 0.198.8 ± 0.198.9 ± 0.196.4 ± 0.298.0
MMD96.1 ± 0.298.9 ± 0.099.0 ± 0.098.8 ± 0.098.9 ± 0.096.4 ± 0.298.0
DANN95.9 ± 0.198.9 ± 0.198.6 ± 0.298.7 ± 0.198.9 ± 0.096.3 ± 0.397.9
CDANN95.9 ± 0.298.8 ± 0.098.7 ± 0.198.9 ± 0.198.8 ± 0.196.1 ± 0.397.9
MTL96.1 ± 0.298.9 ± 0.099.0 ± 0.098.7 ± 0.199.0 ± 0.095.8 ± 0.397.9
SagNet95.9 ± 0.199.0 ± 0.198.9 ± 0.198.6 ± 0.198.8 ± 0.196.3 ± 0.197.9
ARM95.9 ± 0.499.0 ± 0.198.8 ± 0.198.9 ± 0.199.1 ± 0.196.7 ± 0.298.1
VREx95.5 ± 0.299.0 ± 0.098.7 ± 0.298.8 ±0.198.8 ± 0.096.4 ± 0.097.9
RSC95.4 ± 0.198.6 ± 0.198.6 ± 0.198.9 ± 0.098.8 ± 0.195.4 ± 0.397.6
+ +C.3.3 VLCS + +
AlgorithmCLSVAvg
ERM97.6 ± 0.367.9 ± 0.770.9 ± 0.274.0 ± 0.677.6
IRM97.3 ± 0.266.7 ± 0.171.0 ± 2.372.8 ± 0.476.9
GroupDRO97.7 ± 0.265.9 ± 0.272.8 ± 0.873.4 ± 1.377.4
Mixup97.8 ± 0.467.2 ± 0.471.5 ± 0.275.7 ± 0.678.1
MLDG97.1 ± 0.566.6 ± 0.571.5 ± 0.175.0 ± 0.977.5
CORAL97.3 ± 0.267.5 ± 0.671.6 ± 0.674.5 ± 0.077.7
MMD98.8 ± 0.066.4 ± 0.470.8 ± 0.575.6 ± 0.477.9
DANN99.0 ± 0.266.3 ± 1.273.4 ± 1.480.1 ± 0.579.7
CDANN98.2 ± 0.168.8 ± 0.574.3 ± 0.678.1 ± 0.579.9
MTL97.9 ± 0.766.1 ± 0.772.0 ± 0.474.9 ± 1.177.7
SagNet97.4 ± 0.366.4 ± 0.471.6 ± 0.175.0 ± 0.877.6
ARM97.6 ± 0.666.5 ± 0.372.7 ± 0.674.4 ± 0.777.8
VREx98.4 ± 0.266.4 ± 0.772.8 ± 0.175.0 ± 1.478.1
RSC98.0 ± 0.467.2 ± 0.370.3 ± 1.375.6 ± 0.477.8
+ +C.3.4 PACS + +
AlgorithmACPSAvg
ERM86.5 ± 1.081.3 ± 0.696.2 ± 0.382.7 ± 1.186.7
IRM84.2 ± 0.979.7 ± 1.595.9 ± 0.478.3 ± 2.184.5
GroupDRO87.5 ± 0.582.9 ± 0.697.1 ± 0.381.1 ± 1.287.1
Mixup87.5 ± 0.481.6 ± 0.797.4 ± 0.280.8 ± 0.986.8
MLDG87.0 ± 1.282.5 ± 0.996.7 ± 0.381.2 ± 0.686.8
CORAL86.6 ± 0.881.8 ± 0.997.1 ± 0.582.7 ± 0.687.1
MMD88.1 ± 0.882.6 ± 0.797.1 ± 0.581.2 ± 1.287.2
DANN87.0 ± 0.480.3 ± 0.696.8 ± 0.376.9 ± 1.185.2
CDANN87.7 ± 0.680.7 ± 1.297.3 ± 0.477.6 ± 1.585.8
MTL87.0 ± 0.282.7 ± 0.896.5 ± 0.780.5 ± 0.886.7
SagNet87.4 ± 0.581.2 ± 1.296.3 ± 0.880.7 ± 1.186.4
ARM85.0 ± 1.281.4 ± 0.295.9 ± 0.380.9 ± 0.585.8
VREx87.8 ± 1.281.8 ± 0.797.4 ± 0.282.1 ± 0.787.2
RSC86.0 ± 0.781.8 ± 0.996.8 ± 0.780.4 ± 0.586.2
+ +C.3.5 OFFICEHOME + +
AlgorithmACPRAvg
ERM61.7 ± 0.753.4 ± 0.374.1 ± 0.476.2 ± 0.666.4
IRM56.4 ± 3.251.2 ± 2.371.7 ± 2.772.7 ± 2.763.0
GroupDRO60.5 ± 1.653.1 ± 0.375.5 ± 0.375.9 ± 0.766.2
Mixup63.5 ± 0.254.6 ± 0.476.0 ± 0.378.0 ± 0.768.0
MLDG60.5 ± 0.754.2 ± 0.575.0 ± 0.276.7 ± 0.566.6
CORAL64.8 ± 0.854.1 ± 0.976.5 ± 0.478.2 ± 0.468.4
MMD60.4 ± 1.053.4 ± 0.574.9 ± 0.176.1 ± 0.766.2
DANN60.6 ± 1.451.8 ± 0.773.4 ± 0.575.5 ± 0.965.3
CDANN57.9 ± 0.252.1 ± 1.274.9 ± 0.776.2 ± 0.265.3
MTL60.7 ± 0.853.5 ± 1.375.2 ± 0.676.6 ± 0.666.5
SagNet62.7 ± 0.553.6 ± 0.576.0 ± 0.377.8 ± 0.167.5
ARM58.8 ± 0.551.8 ± 0.774.0 ± 0.174.4 ± 0.264.8
VREx59.6 ± 1.053.3 ± 0.373.2 ± 0.576.6 ± 0.465.7
RSC61.7 ± 0.853.0 ± 0.974.8 ± 0.876.3 ± 0.566.5
+ +C.3.6 TERRAINCOGNITA + +
AlgorithmL100L38L43L46Avg
ERM59.4 ± 0.949.3 ± 0.660.1 ± 1.143.2 ± 0.553.0
IRM56.5 ± 2.549.8 ± 1.557.1 ± 2.238.6 ± 1.050.5
GroupDRO60.4 ± 1.548.3 ± 0.458.6 ± 0.842.2 ± 0.852.4
Mixup67.6 ± 1.851.0 ± 1.359.0 ± 0.040.0 ± 1.154.4
MLDG59.2 ± 0.149.0 ± 0.958.4 ± 0.941.4 ± 1.052.0
CORAL60.4 ± 0.947.2 ± 0.559.3 ± 0.444.4 ± 0.452.8
MMD60.6 ± 1.145.9 ± 0.357.8 ± 0.543.8 ±1.252.0
DANN55.2 ± 1.947.0 ± 0.757.2 ± 0.942.9 ± 0.950.6
CDANN56.3 ± 2.047.1 ± 0.957.2 ± 1.142.4 ± 0.850.8
MTL58.4 ± 2.148.4 ± 0.858.9 ± 0.643.0 ± 1.352.2
SagNet56.4 ± 1.950.5 ± 2.359.1 ± 0.544.1 ± 0.652.5
ARM60.1 ± 1.548.3 ± 1.655.3 ± 0.640.9 ± 1.151.2
VREx56.8 ± 1.746.5 ± 0.558.4 ± 0.343.8 ± 0.351.4
RSC59.9 ± 1.446.7 ± 0.457.8 ± 0.544.3 ± 0.652.1
+ +# C.3.7 DOMAINNET + +
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.6 ± 0.319.2 ± 0.247.0 ± 0.313.2 ± 0.259.9 ± 0.349.8 ± 0.441.3
IRM40.4 ± 6.612.1 ± 2.731.4 ± 5.79.8 ±1.237.7 ± 9.036.7 ± 5.328.0
GroupDRO47.2 ± 0.517.5 ± 0.434.2 ± 0.39.2 ± 0.451.9 ± 0.540.1 ± 0.633.4
Mixup55.6 ± 0.118.7 ± 0.445.1 ± 0.512.8 ± 0.357.6± 0.548.2 ± 0.439.6
MLDG59.3 ± 0.119.6 ± 0.246.8± 0.213.4±0.260.1 ± 0.450.4 ± 0.341.6
CORAL59.2 ± 0.119.9 ± 0.247.4 ± 0.214.0 ± 0.459.8 ± 0.250.4 ± 0.441.8
MMD32.2 ±13.311.2 ± 4.526.8 ± 11.38.8±2.232.7 ± 13.829.0 ± 11.823.5
DANN53.1 ± 0.218.3 ± 0.144.2 ± 0.711.9 ± 0.155.5± 0.446.8 ± 0.638.3
CDANN54.6 ± 0.417.3 ± 0.144.2 ± 0.712.8 ± 0.256.2 ± 0.445.9 ± 0.538.5
MTL58.0± 0.419.2 ± 0.246.2 ± 0.112.7 ± 0.259.9 ± 0.149.0 ± 0.040.8
SagNet57.7 ± 0.319.1 ± 0.146.3 ± 0.513.5 ± 0.458.9 ± 0.449.5 ± 0.240.8
ARM49.6 ± 0.416.5 ± 0.341.5 ± 0.810.8 ± 0.153.5 ± 0.343.9 ± 0.436.0
VREx43.3 ± 4.514.1 ± 1.832.5 ± 5.09.8 ± 1.143.5 ± 5.637.7 ± 4.530.1
RSC55.0 ±1.218.3 ± 0.544.4 ± 0.612.5 ± 0.155.7 ± 0.747.8 ± 0.938.9
+ +# C.3.8 AVERAGES + +
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM57.8 ± 0.297.8 ± 0.177.6± 0.386.7±0.366.4 ± 0.553.0±0.341.3 ± 0.168.7
IRM67.7 ± 1.297.5 ± 0.276.9 ±0.684.5 ±1.163.0±2.750.5± 0.728.0±5.166.9
GroupDRO61.1 ± 0.997.9 ± 0.177.4 ± 0.587.1 ± 0.166.2 ±0.652.4 ± 0.133.4±0.367.9
Mixup58.4±0.298.0±0.178.1 ±0.386.8 ±0.368.0±0.254.4 ± 0.339.6 ±0.169.0
MLDG58.2 ± 0.497.8 ± 0.177.5 ± 0.186.8 ±0.466.6± 0.352.0 ± 0.141.6 ± 0.168.7
CORAL58.6± 0.598.0±0.077.7 ± 0.287.1 ± 0.568.4±0.252.8±0.241.8 ± 0.169.2
MMD63.3 ± 1.398.0± 0.177.9 ± 0.187.2 ± 0.166.2 ±0.352.0 ±0.423.5±9.466.9
DANN57.0 ± 1.097.9 ± 0.179.7 ± 0.585.2 ±0.265.3 ±0.850.6 ± 0.438.3 ±0.167.7
CDANN59.5± 2.097.9 ± 0.079.9 ± 0.285.8 ±0.865.3 ± 0.550.8±0.638.5±0.268.2
MTL57.6 ± 0.397.9 ± 0.177.7 ± 0.586.7 ±0.266.5 ± 0.452.2 ±0.440.8 ± 0.168.5
SagNet58.2±0.397.9 ± 0.077.6 ± 0.186.4±0.467.5 ± 0.252.5 ± 0.440.8 ± 0.268.7
ARM63.2 ±0.798.1 ± 0.177.8 ±0.385.8±0.264.8 ±0.451.2 ± 0.536.0±0.268.1
VREx67.0 ±1.397.9 ± 0.178.1 ±0.287.2 ±0.665.7 ± 0.351.4 ± 0.530.1 ±3.768.2
RSC58.5± 0.597.6 ± 0.177.8 ±0.686.2 ±0.566.5 ±0.652.1 ±0.238.9±0.668.2
+ +C.4 RESULTS OF A LARGER PACS SWEEP WITH 100 HYPERPARAMETER TRIALS + +
ERM, model selection:ACPSAvg
training-domain86.6±0.879.7± 0.696.6± 0.477.8± 0.885.2
leave-one-out-domain86.4 ± 1.178.2 ± 1.096.8± 0.276.0 ± 2.184.4
test-domain (oracle)89.3 ± 0.382.2 ± 0.597.6 ± 0.282.7 ± 1.188.0
\ No newline at end of file diff --git a/parse/train/lQdXeXDoWtI/lQdXeXDoWtI_content_list.json b/parse/train/lQdXeXDoWtI/lQdXeXDoWtI_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..d385ab366836aceeb5abd58ca1fc911d89814505 --- /dev/null +++ b/parse/train/lQdXeXDoWtI/lQdXeXDoWtI_content_list.json @@ -0,0 +1,2733 @@ +[ + { + "type": "text", + "text": "IN SEARCH OF LOST DOMAIN GENERALIZATION ", + "text_level": 1, + "bbox": [ + 174, + 98, + 756, + 122 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ishaan Gulrajani∗ Stanford University igul222@gmail.com ", + "bbox": [ + 183, + 145, + 352, + 188 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "David Lopez-Paz Facebook AI Research dlp@fb.com ", + "bbox": [ + 516, + 145, + 666, + 186 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 452, + 224, + 544, + 239 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The goal of domain generalization algorithms is to predict well on distributions different from those seen during training. While a myriad of domain generalization algorithms exist, inconsistencies in experimental conditions—datasets, network architectures, and model selection criteria—render fair comparisons difficult. The goal of this paper is to understand how useful domain generalization algorithms are in realistic settings. As a first step, we realize that model selection is non-trivial for domain generalization tasks, and we argue that algorithms without a model selection criterion remain incomplete. Next we implement DOMAINBED, a testbed for domain generalization including seven benchmarks, fourteen algorithms, and three model selection criteria. When conducting extensive experiments using DOMAINBED we find that when carefully implemented and tuned, ERM outperforms the state-of-the-art in terms of average performance. Furthermore, no algorithm included in DOMAINBED outperforms ERM by more than one point when evaluated under the same experimental conditions. We hope that the release of DOMAINBED, alongside contributions from fellow researchers, will streamline reproducible and rigorous advances in domain generalization. ", + "bbox": [ + 233, + 256, + 766, + 477 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 506, + 334, + 522 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Machine learning systems often fail to generalize out-of-distribution, crashing in spectacular ways when tested outside the domain of training examples (Torralba and Efros, 2011). The overreliance of learning systems on the training distribution manifests widely. For instance, self-driving car systems struggle to perform under conditions different to those of training, including variations in light (Dai and Van Gool, 2018), weather (Volk et al., 2019), and object poses (Alcorn et al., 2019). As another example, systems trained on medical data collected in one hospital do not generalize to other health centers (Castro et al., 2019; AlBadawy et al., 2018; Perone et al., 2019; Heaven, 2020). Arjovsky et al. (2019) suggest that failing to generalize out-of-distribution is failing to capture the causal factors of variation in data, clinging instead to easier-to-fit spurious correlations prone to change across domains. Examples of spurious correlations commonly absorbed by learning machines include racial biases (Stock and Cisse, 2018), texture statistics (Geirhos et al., 2018), and object backgrounds (Beery et al., 2018). Alas, the capricious behaviour of machine learning systems out-of-distribution is a roadblock to their deployment in critical applications. ", + "bbox": [ + 173, + 539, + 825, + 718 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Aware of this problem, the research community has spent significant efforts during the last decade to develop algorithms able to generalize out-of-distribution. In particular, the literature in Domain Generalization $( D G )$ assumes access to multiple datasets during training, each of them containing examples about the same task, but collected under a different domain or experimental condition (Blanchard et al., 2011; Muandet et al., 2013). The goal of DG algorithms is to incorporate the invariances across these training domains into a classifier, in hopes that such invariances will also hold in novel test domains. Different DG solutions assume different types of invariances, and propose algorithms to estimate them from data. ", + "bbox": [ + 174, + 727, + 825, + 837 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Despite the enormous importance of DG, the literature is scattered: a plethora of different algorithms appear yearly, each of them evaluated under different datasets, neural network architectures, and model selection criteria. Borrowing from the success of standardized computer vision benchmarks such as ImageNet (Russakovsky et al., 2015), the purpose of this work is to perform a rigorous comparison of DG algorithms, as well as to open-source our software for anyone to replicate and extend our analyses. This manuscript investigates the question: How useful are different $_ { D G }$ algorithms when evaluated in a consistent and realistic setting? ", + "bbox": [ + 174, + 844, + 825, + 887 + ], + "page_idx": 0 + }, + { + "type": "table", + "img_path": "images/a0c4d3464d159f7ed64a2c91c3eb5058f42226bf23fbf07c2d0b6733fe21d9e1.jpg", + "table_caption": [ + "Table 1: Our ERM baseline outperforms the state-of-the-art in terms of average domain generalization performance, even when picking the best competitor per dataset. " + ], + "table_footnote": [], + "table_body": "
Dataset /algorithmDG accuracy per test domainAverage
Rotated MNIST (full)15°30°45°60°75°
DIVA (Ilse et al., 2019)95.398.798.798.497.794.597.2
Our ERM95.998.998.898.998.996.498.0
VLCSCLSV
G2DM (Albuquerque et al., 2019)95.567.669.471.175.9
Our ERM97.764.373.474.677.5
PACSACPS
RSC (Huang et al., 2020)87.982.197.983.487.8
Our ERM84.780.897.279.385.5
OfficeHomeACPR
DDAIG (Zhou et al., 2020)59.252.374.676.065.5
Our ERM61.352.475.876.666.5
All datasets
Best SOTA competitor Our ERM81.6 81.9
", + "bbox": [ + 184, + 145, + 812, + 428 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 465, + 825, + 522 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To answer this question, we implement and tune fourteen DG algorithms carefully, to compare them across seven benchmark datasets and three model selection criteria. There are three major takeaways from our investigations: ", + "bbox": [ + 187, + 549, + 812, + 592 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• Claim 1: A careful implementation of ERM outperforms the state-of-the-art in terms of average performance across common benchmarks (Table 1, full list in Appendix A.5). Claim 2: When implementing fourteen DG algorithms in a consistent and realistic setting, no competitor outperforms ERM by more than one point (Table 3). • Claim 3: Model selection is non-trivial for DG, yet affects results (Table 3). As such, we argue that DG algorithms should specify their own model selection criteria. ", + "bbox": [ + 197, + 603, + 810, + 698 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "As a result of our research, we release DOMAINBED, a framework to streamline rigorous and reproducible experimentation in DG. Using DOMAINBED, adding a new algorithm or dataset is a matter of a few lines of code. A single command runs all experiments, performs all model selections, and auto-generates all the result tables included in this work. DOMAINBED is a living project: we welcome pull requests from fellow researchers to update the available algorithms, datasets, model selection criteria, and result tables. ", + "bbox": [ + 174, + 734, + 825, + 819 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Section 2 kicks off our exposition with a review of the DG setup. Section 3 discusses the difficulties of model selection in DG and makes recommendations for a path forward. Section 4 introduces DOMAINBED, describing the features included in the initial release. Section 5 discusses the experimental results of running the entire DOMAINBED suite, illustrating the competitive performance of ERM and the importance of model selection criteria. Finally, Section 6 offers our view on future research directions in DG. Appendix A reviews one hundred articles spanning a decade of research in DG, summarizing the experimental performance of over thirty algorithms. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/5db0112704627a186f621562de7ef29ba142fb829968975a3f8d82c39f02b891.jpg", + "table_caption": [ + "Table 2: Learning setups. $L ^ { d }$ and $U ^ { d }$ denote the labeled and unlabeled distributions from domain $d$ . " + ], + "table_footnote": [], + "table_body": "
SetupTraining inputsTest inputs
Generative learningU1D
Unsupervised learningU1U1
Supervised learningL1U1
Semi-supervised learningL1,U1 L1U1
Multitask learningLdtrU1, ..,Udtr
Continual (or lifelong) learningL8U1 ....,U8
Domain adaptationL1 Ldtr,Udtr+1Udtr+1
Transfer learningU1 ,Udtr,Ldtr+1Udtr+1
Domain generalizationL1.,...,LdtrUdtr+1
", + "bbox": [ + 251, + 133, + 745, + 296 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 THE PROBLEM OF DOMAIN GENERALIZATION ", + "text_level": 1, + "bbox": [ + 173, + 337, + 581, + 352 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The goal of supervised learning is to predict values $y \\in \\mathcal { V }$ of a target random variable $Y$ , given values $x \\in \\mathcal { X }$ of an input random variable $X$ . Predictions ${ \\hat { y } } = f ( x )$ about $x$ originate from a predictor $f : \\mathcal { X } \\mathcal { Y }$ . We often decompose predictors as $f = w \\circ \\phi$ , where we call $\\phi : \\mathcal { X } \\to \\mathcal { H }$ the featurizer, and $w : \\mathcal { H } \\to \\mathcal { V }$ the classifier. To solve the prediction task we collect the training dataset $D = \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }$ , which contains identically and independently distributed (i.i.d.) examples from the joint probability distribution $P ( X , Y )$ . Given a loss function $\\ell : \\mathcal { V } \\times \\mathcal { V } [ 0 , \\infty )$ measuring prediction error, supervised learning seeks the predictor minimizing the risk $\\mathbb { E } _ { ( x , y ) \\sim P } [ \\ell ( f ( x ) , y ) ]$ Since we only have access to the data distribution $P ( X , Y )$ via the dataset $D$ , we instead search a predictor minimizing the empirical risk $\\textstyle { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( { \\dot { x } } _ { i } ) , y _ { i } )$ (Vapnik, 1998). ", + "bbox": [ + 173, + 369, + 825, + 500 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The rest of this paper studies the problem of Domain Generalization $( D G )$ , an extension of supervised learning where training datasets from multiple domaour predictor (Blanchard et al., 2011). Each domain $d$ s (or environments)produces a dataset $D ^ { d } = \\{ ( x _ { i } ^ { d } , y _ { i } ^ { d } ) \\} _ { d = 1 } ^ { n _ { d } }$ containing i.i.d. examples from some probability distribution $P ( X ^ { d } , Y ^ { d } )$ , for all training domains $d \\in \\{ 1 , \\ldots , d _ { \\mathrm { t r } } \\}$ . The goal of DG is out-of-distribution generalization: learning a predictor able to perform well at some unseen test domain $d _ { \\mathrm { t r } } + 1$ . Since no data about the test domain is available during training, we must assume the existence of statistical invariances across training and testing domains, and incorporate such invariances (but nothing else) into our predictor. The type of invariance assumed, as well as how to estimate it from the training datasets, varies between DG algorithms. We review a hundred articles in DG spanning a decade of research and thirty algorithms in Appendix A.5. ", + "bbox": [ + 173, + 505, + 825, + 646 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "DG differs from unsupervised domain adaptation. In the latter, unlabeled data from the test domain is available during training (Pan and Yang, 2009; Patel et al., 2015; Wilson and Cook, 2018). Table 2 compares different machine learning setups to highlight the nature of DG problems. The causality literature refers to DG as learning from multiple environments (Peters et al., 2016; Arjovsky et al., 2019). Although challenging, the DG framework can capture some of the difficulty of real prediction problems, where unforeseen distributional discrepancies between training and testing data are surely expected. At the same time, the framework can be limiting: in many real world scenarios there may be external variables informing about task relatedness (space, time, annotations) that the DG framework ignores. ", + "bbox": [ + 174, + 651, + 825, + 777 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 MODEL SELECTION AS PART OF THE LEARNING PROBLEM ", + "text_level": 1, + "bbox": [ + 176, + 806, + 684, + 820 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here we discuss issues surrounding model selection (choosing hyperparameters, training checkpoints, architecture variants) in DG and make specific recommendations for a path forward. Because we lack access to a validation set identically distributed to the test data, model selection in DG is not as straightforward as in supervised learning. Some works adopt heuristic strategies whose behavior is not well-studied, while others simply omit a description of how to choose hyperparameters. This leaves open the possibility that hyperparameters were chosen using the test data, which is not methodologically sound. Differences in results arising from inconsistent tuning practices may be misattributed to the algorithms under study, complicating fair assessments. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 821, + 132 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We believe that much of the confusion surrounding model selection in DG arises from treating it as merely a question of experimental design. To the contrary, model selection requires making theoretical assumptions about how the test data relates to the training data. Different DG algorithms make different assumptions, and it is not clear a priori which ones are correct, or how they influence the model selection criterion. Indeed, choosing reasonable assumptions is at the heart of DG research. Therefore, a DG algorithm without a strategy to choose its hyperparameters should be regarded as incomplete. ", + "bbox": [ + 174, + 138, + 825, + 236 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Recommendation 1 A DG algorithm should be responsible for specifying a model selection method. ", + "bbox": [ + 174, + 248, + 823, + 263 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "While algorithms without well-justified model selection methods are incomplete, they may be useful stepping-stones in a research agenda. In this case, instead of using an ad-hoc model selection method, we can evaluate incomplete algorithms by considering an oracle model selection method, where we select hyperparameters using some data from the test domain. Of course, it is important to avoid invalid comparisons between oracle results and baselines tuned without an oracle method. Also, unless we restrict access to the test domain data somehow, we risk obtaining meaningless results (we could just train on such test domain data using supervised learning). ", + "bbox": [ + 174, + 276, + 825, + 375 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Recommendation 2 Researchers should disclaim any oracle-selection results as such and specify policies to limit access to the test domain. ", + "bbox": [ + 174, + 387, + 821, + 415 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 THREE MODEL SELECTION METHODS FOR DG ", + "text_level": 1, + "bbox": [ + 174, + 433, + 532, + 445 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Having made broad recommendations, we review and justify three model selection criteria for DG. \nAppendix B.3 illustrates these with an specific example. ", + "bbox": [ + 176, + 458, + 823, + 486 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Training-domain validation We split each training domain into training and validation subsets. We train models using the training subsets, and choose the model maximizing the accuracy on the union of validation subsets. This strategy assumes that the training and test examples follow similar distributions. For example, Ben-David et al. (2010) bound the test error of a classifier with the divergence between training and test domains. ", + "bbox": [ + 174, + 502, + 825, + 571 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Leave-one-domain-out validation Given $d _ { \\mathrm { t r } }$ training domains, we train $d _ { \\mathrm { t r } }$ models with equal hyperparameters, each holding one of the training domains out. We evaluate each model on its held-out domain, and average the accuracies of these $d _ { \\mathrm { t r } }$ models over their held-out domains. Finally, we choose the model maximizing this average accuracy, retrained on all $d _ { \\mathrm { t r } }$ domains. This strategy assumes that training and test domains follow a meta-distribution over domains, and that our goal is to maximize the expected performance under this meta-distribution. Note that leaving $k > 1$ domains out would increase greatly the number of experiments, and introduces a hyperparameter $k$ . ", + "bbox": [ + 174, + 587, + 825, + 684 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Test-domain validation (oracle) We choose the model maximizing the accuracy on a validation set that follows the distribution of the test domain. Following our earlier recommendation to limit test domain access, we allow one query (the last checkpoint) per choice of hyperparameters, disallowing early stopping. Recall that this is not a valid benchmarking methodology. Oracle-based results can be either optimistic, because we select models using the test distribution, or pessimistic, because the query limit reduces the number of considered hyperparameters. We also tried limiting the size of the oracle test set instead of the number of queries, but this led to unacceptably high variance. ", + "bbox": [ + 174, + 699, + 825, + 797 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 CONSIDERATIONS FROM THE LITERATURE ", + "text_level": 1, + "bbox": [ + 174, + 814, + 508, + 828 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Some references in prior work discuss additional strategies to choose hyperparameters in DG. For instance, Krueger et al. (2020, Appendix B.1) suggest choosing hyperparameters to maximize the performance across all domains of an external dataset. This “leave-one-dataset out” is akin to the second strategy outlined above. Albuquerque et al. (2019, Section 5.3.2) suggest performing model selection based on the loss function (which often incorporates an algorithm-specific regularizer), and D’Innocente and Caputo (2018, Section 3) derive an strategy specific to their algorithm. Finally, tools from differential privacy enable multiple reuses of a validation set (Dwork et al., 2015), which could be a tool to control the power of test-domain validation (oracle). ", + "bbox": [ + 174, + 840, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 DOMAINBED: A PYTORCH TESTBED FOR DOMAIN GENERALIZATION ", + "text_level": 1, + "bbox": [ + 171, + 162, + 777, + 179 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "At the heart of our large scale experimentation is DOMAINBED, a PyTorch (Paszke et al., 2019) testbed to streamline reproducible and rigorous research in DG: ", + "bbox": [ + 174, + 200, + 823, + 228 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "https://github.com/facebookresearch/DomainBed/. ", + "text_level": 1, + "bbox": [ + 271, + 246, + 725, + 260 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The initial release comprises fourteen algorithms, seven datasets, and three model selection methods (those described in Section 3), as well as the infrastructure to run all the experiments and generate all the LATEX tables below with a single command. The first version of DOMAINBED focuses on image classification, leaving for future work other types of tasks. DOMAINBED is a living project: together with pull requests from collaborators, we continuously update the above repository with new algorithms, datasets, and result tables. As illustrated in Appendix B.5, adding a new algorithm or dataset to DOMAINBED is a matter of a few lines of code. ", + "bbox": [ + 174, + 276, + 825, + 373 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithms DOMAINBED currently includes fourteen algorithms chosen based on their impact over the years, their published performance, and a desire to include varied DG strategies. These are Empirical Risk Minimization (ERM, Vapnik (1998)), Group Distributionally Robust Optimization (GroupDRO, Sagawa et al. (2019)), Inter-domain Mixup (Mixup, Xu et al. (2019); Yan et al. (2020); Wang et al. (2020b)), Meta-Learning for Domain Generalization (MLDG, Li et al. (2018a)), DomainAdversarial Neural Networks (DANN, Ganin et al. (2016)), Class-conditional DANN (C-DANN, Li et al. (2018d)), Deep CORrelation ALignment (CORAL, Sun and Saenko (2016)), Maximum Mean Discrepancy (MMD, Li et al. (2018b)), Invariant Risk Minimization (IRM Arjovsky et al. (2019)), Adaptive Risk Minimization (ARM, Zhang et al. (2020)), Marginal Transfer Learning (MTL, Blanchard et al. (2011; 2017)), Style-Agnostic Networks (SagNet, Nam et al. (2019)), and Representation Self Challenging (RSC, Huang et al. (2020)). Appendix B.1 describes these algorithms, and Appendix B.4 lists their network architectures and hyperparameter search distributions. ", + "bbox": [ + 173, + 398, + 826, + 565 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Datasets DOMAINBED currently includes downloaders and loaders for seven standard DG image classification benchmarks. These are Colored MNIST (Arjovsky et al., 2019), Rotated MNIST (Ghifary et al., 2015), PACS (Li et al., 2017), VLCS (Fang et al., 2013), OfficeHome (Venkateswara et al., 2017), Terra Incognita (Beery et al., 2018), and DomainNet (Peng et al., 2019). The datasets based on MNIST are “synthetic” since changes across domains are well understood (colors and rotations). The rest of the datasets are “real” since domains vary in unknown ways. Appendix B.2 describes these datasets. ", + "bbox": [ + 174, + 592, + 825, + 689 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Implementation choices We highlight three implementation choices made towards a consistent and realistic evaluation setting. First, whereas prior work is inconsistent in its choice of network architecture, we finetune ResNet-50 models (He et al., 2016) pretrained on ImageNet for all nonMNIST experiments. We note that recent state-of-the-art results (Balaji et al., 2018; Nam et al., 2019; Huang et al., 2020) also use ResNet-50 models. Second, for all non-MNIST datasets, we augment training data using the following protocol: crops of random size and aspect ratio, resizing to $2 2 4 \\times 2 2 4$ pixels, random horizontal flips, random color jitter, grayscaling the image with $10 \\%$ probability, and normalization using the ImageNet channel statistics. This augmentation protocol is increasingly standard in state-of-the-art DG work (Nam et al., 2019; Huang et al., 2020; Krueger et al., 2020; Carlucci et al., 2019a; Zhou et al., 2020; Dou et al., 2019; Hendrycks et al., 2020; Wang et al., 2020a; Seo et al., 2020; Chattopadhyay et al., 2020). We use no augmentation for MNIST-based datasets. Third, and for RotatedMNIST, we divide all the digits evenly among domains, instead of replicating the same 1000 digits to construct all domains. We deviate from standard practice for two reasons: using the same digits across training and test domains leaks test data, and reducing the amount of training data complicates the task in an unrealistic way. ", + "bbox": [ + 174, + 715, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 326, + 117 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We run experiments for all algorithms, datasets, and model selection criteria shipped in DOMAINBED. We consider all configurations of a dataset where we hide one domain for testing, resulting in the training of 58,000 models. To generate the following results, we simply run sweep.py at commit $0 \\times 7 \\mathrm { d } \\pounds 6 \\pounds 0 6$ from DOMAINBED’s repository. ", + "bbox": [ + 174, + 137, + 825, + 193 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Hyperparameter search For each algorithm and test domain, we conduct a random search (Bergstra and Bengio, 2012) of 20 trials over a joint distribution of all hyperparameters (Appendix B.4). Appendix C.4 shows that running more than 20 trials does not improve our results significantly. We use each model selection criterion to select amongst the 20 models from the random search. We split the data from each domain into $80 \\%$ and $20 \\%$ splits. We use the larger splits for training and final evaluation, and the smaller splits to select hyperparameters (for an illustration, see Appendix B.3). All hyperparameters are optimized anew for each algorithm and test domain, including hyperparameters like learning rates which are common to multiple algorithms. ", + "bbox": [ + 174, + 214, + 825, + 327 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Standard error bars While some DG literature reports error bars across seeds, randomness arising from model selection is often ignored. This is acceptable if the goal is best-versus-best comparison, but prohibits analyses concerning the model selection process itself. Instead, we repeat our entire study three times, making every random choice anew: hyperparameters, weight initializations, and dataset splits. Every number we report is a mean (and its standard error) over these repetitions. ", + "bbox": [ + 174, + 348, + 825, + 417 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 440, + 277, + 454 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 3 summarizes the results of our experiments. Appendix C contains the full results per dataset and domain. As anticipated in our introduction, we draw three conclusions from our results. ", + "bbox": [ + 176, + 469, + 823, + 497 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Claim 1: Carefully tuned ERM outperforms the previously published state-of-the-art Table 1 (full version in Appendix A.5) shows this result, when we provide ERM with a training-domain validation set for hyperparameter selection. Such state-of-the-art average performance of our ERM baseline holds even when we select the best competitor available in the literature separately for each benchmark. One reason for ERM’s strong performance is that we use ResNet-50, whereas some prior work uses smaller ResNet-18 models. As recently shown in the literature (Hendrycks et al., 2020), this suggests that better in-distribution generalization is a dominant factor behind better out-of-distribution generalization. Our result does not refute prior work: it is possible that with stronger implementations, some competing methods may improve upon ERM. Rather, we provide a strong, realistic, and reproducible baseline for future work to build upon. ", + "bbox": [ + 174, + 518, + 825, + 659 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Claim 2: When evaluated in a consistent setting, no algorithm outperforms ERM in more than one point We observe this result in Table 3, obtained by running from scratch every combination of dataset, algorithm, and model selection criterion in DOMAINBED. Given any model selection criterion, no method improves the average performance of ERM in more than one point. At the number of trials performed, no improvement over ERM is statistically significant according to a $t$ -test at a significance level $\\alpha = 0 . 0 5$ . While new algorithms could improve upon ERM (an exciting premise!), getting substantial DG improvements in a rigorous way proved challenging. Most of our baselines can achieve ERM-like performance because there have hyperparameter configurations under which they behave like ERM (e.g. regularization coefficients that can be set to zero). Our advice to DG practitioners is to use ERM (which is a safe contender) or CORAL (Sun and Saenko, 2016) (which achieved the highest average score). ", + "bbox": [ + 174, + 679, + 825, + 832 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Claim 3: Model selection methods matter We observe that model selection with a training domain validation set outperforms leave-one-domain-out cross-validation across multiple datasets and algorithms. This does not mean that using a training domain validation set is the right way to tune hyperparameters. In fact, the stronger performance of oracle-selection $+ 2 . 3$ points for ERM) suggests headroom to develop improved DG model selection criteria. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/36e50de8e3e8a779ea8c1b16f08a783ca37292925f539cf0cbaa0f2ed07a3c6b.jpg", + "table_caption": [ + "Table 3: DG accuracy for all algorithms, datasets and model selection criteria in DOMAINBED. These experiments compare fourteen popular DG algorithms across seven benchmarks in the exact same conditions, showing the competitive performance of ERM. " + ], + "table_footnote": [ + "Model selection: training-domain validation set " + ], + "table_body": "
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM51.5 ± 0.198.0 ± 0.077.5 ± 0.485.5± 0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
IRM52.0 ± 0.197.7 ± 0.178.5 ± 0.583.5 ± 0.864.3 ± 2.247.6 ± 0.833.9 ± 2.865.4
GroupDRO52.1 ± 0.098.0± 0.076.7 ± 0.684.4 ± 0.866.0 ± 0.743.2 ± 1.133.3 ± 0.264.8
Mixup52.1 ± 0.298.0± 0.177.4 ± 0.684.6 ± 0.668.1 ± 0.347.9 ± 0.839.2 ± 0.166.7
MLDG51.5 ± 0.197.9 ± 0.077.2 ± 0.484.9 ± 1.066.8 ± 0.647.7 ± 0.941.2 ± 0.166.7
CORAL51.5 ± 0.198.0 ± 0.178.8 ± 0.686.2 ± 0.368.7 ± 0.347.6 ± 1.041.5 ± 0.167.5
MMD51.5 ± 0.297.9 ± 0.077.5 ± 0.984.6 ± 0.566.3 ± 0.142.2 ± 1.623.4 ± 9.563.3
DANN51.5 ± 0.397.8 ± 0.178.6 ± 0.483.6 ± 0.465.9 ± 0.646.7 ± 0.538.3 ± 0.166.1
CDANN51.7 ± 0.197.9 ± 0.177.5 ± 0.182.6 ± 0.965.8 ± 1.345.8 ± 1.638.3 ± 0.365.6
MTL51.4 ± 0.197.9 ± 0.077.2 ± 0.484.6 ± 0.566.4 ± 0.545.6 ± 1.240.6 ± 0.166.2
SagNet51.7 ± 0.098.0± 0.077.8 ± 0.586.3 ± 0.268.1 ± 0.148.6 ± 1.040.3 ± 0.167.2
ARM56.2 ± 0.298.2 ± 0.177.6 ± 0.385.1 ± 0.464.8 ± 0.345.5 ± 0.335.5 ± 0.266.1
VREx51.8 ± 0.197.9 ± 0.178.3 ± 0.284.9 ± 0.666.4 ± 0.646.4 ± 0.633.6 ± 2.965.6
RSC51.7 ± 0.297.6 ± 0.177.1 ± 0.585.2 ± 0.965.5 ± 0.946.6 ± 1.038.9 ± 0.566.1
", + "bbox": [ + 173, + 236, + 825, + 412 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/8e5c9a1918061bd97c079cbdf8ac9decdce53739516f27fc383dfc7fd8266da7.jpg", + "table_caption": [], + "table_footnote": [ + "Model selection: leave-one-domain-out cross-validation " + ], + "table_body": "
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM36.7 ± 0.197.7 ± 0.077.2 ± 0.483.0 ± 0.765.7 ± 0.541.4 ± 1.440.6 ± 0.263.2
IRM40.3 ± 4.297.0 ± 0.276.3 ± 0.681.5 ± 0.864.3 ± 1.541.2 ± 3.633.5 ± 3.062.0
GroupDRO36.8 ± 0.197.6 ± 0.177.9 ± 0.583.5 ± 0.265.2 ± 0.244.9 ± 1.433.0 ± 0.362.7
Mixup33.4 ± 4.797.8 ± 0.077.7 ± 0.683.2 ± 0.467.0 ± 0.248.7 ± 0.438.5 ± 0.363.8
MLDG36.7 ± 0.297.6 ± 0.077.2 ± 0.982.9 ± 1.766.1 ± 0.546.2 ± 0.941.0 ± 0.264.0
CORAL39.7 ± 2.897.8 ± 0.178.7 ± 0.482.6 ± 0.568.5 ± 0.246.3 ± 1.741.1 ± 0.165.0
MMD36.8 ± 0.197.8 ± 0.177.3 ± 0.583.2 ± 0.260.2 ± 5.246.5 ± 1.523.4 ± 9.560.7
DANN40.7 ± 2.397.6 ± 0.276.9 ± 0.481.0 ± 1.164.9 ± 1.244.4 ± 1.138.2 ± 0.263.4
CDANN39.1 ± 4.497.5 ± 0.277.5 ± 0.278.8 ± 2.264.3 ± 1.739.9 ± 3.238.0 ± 0.162.2
MTL35.0 ± 1.797.8 ± 0.176.6 ± 0.583.7 ± 0.465.7 ± 0.544.9 ± 1.240.6 ± 0.163.5
SagNet36.5 ± 0.194.0 ± 3.077.5± 0.382.3 ± 0.167.6 ± 0.347.2 ± 0.940.2 ± 0.263.6
ARM36.8 ± 0.098.1 ± 0.176.6 ± 0.581.7 ± 0.264.4 ± 0.242.6 ± 2.735.2 ± 0.162.2
VREx36.9 ± 0.393.6 ± 3.476.7 ± 1.081.3 ± 0.964.9 ± 1.337.3 ± 3.033.4 ± 3.160.6
RSC36.5 ± 0.297.6 ± 0.177.5 ± 0.582.6 ± 0.765.8 ± 0.740.0±0.838.9 ± 0.562.7
", + "bbox": [ + 173, + 446, + 825, + 622 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/c54abd4d3fa730f9c90560253c19b8c0c7614b8921fd026b719b15140cdd58df.jpg", + "table_caption": [], + "table_footnote": [ + "Model selection: test-domain validation set (oracle) " + ], + "table_body": "
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM57.8 ± 0.297.8 ± 0.177.6 ± 0.386.7 ± 0.366.4 ± 0.553.0 ± 0.341.3 ± 0.168.7
IRM67.7 ± 1.297.5 ± 0.276.9 ± 0.684.5 ± 1.163.0 ± 2.750.5 ± 0.728.0 ± 5.166.9
GroupDRO61.1 ± 0.997.9 ± 0.177.4 ± 0.587.1 ± 0.166.2 ± 0.652.4 ± 0.133.4 ± 0.367.9
Mixup58.4 ± 0.298.0 ± 0.178.1 ± 0.386.8 ± 0.368.0 ± 0.254.4 ± 0.339.6 ± 0.169.0
MLDG58.2 ± 0.497.8 ± 0.177.5 ± 0.186.8 ± 0.466.6 ± 0.352.0 ± 0.141.6 ± 0.168.7
CORAL58.6 ± 0.598.0 ± 0.077.7 ± 0.287.1 ± 0.568.4 ± 0.252.8 ± 0.241.8 ± 0.169.2
MMD63.3 ± 1.398.0 ± 0.177.9 ± 0.187.2 ± 0.166.2 ± 0.352.0 ± 0.423.5 ± 9.466.9
DANN57.0 ± 1.097.9 ± 0.179.7 ± 0.585.2 ± 0.265.3 ± 0.850.6 ± 0.438.3 ± 0.167.7
CDANN59.5 ± 2.097.9 ± 0.079.9 ± 0.285.8 ± 0.865.3 ± 0.550.8 ± 0.638.5 ± 0.268.2
MTL57.6 ± 0.397.9 ± 0.177.7 ± 0.586.7 ± 0.266.5 ± 0.452.2 ± 0.440.8 ± 0.168.5
SagNet58.2 ± 0.397.9 ± 0.077.6 ± 0.186.4 ± 0.467.5 ± 0.252.5 ± 0.440.8 ± 0.268.7
ARM63.2 ± 0.798.1 ± 0.177.8 ± 0.385.8 ± 0.264.8 ± 0.451.2 ± 0.536.0 ± 0.268.1
VREx67.0 ± 1.397.9 ± 0.178.1 ± 0.287.2 ± 0.665.7 ± 0.351.4 ± 0.530.1 ± 3.768.2
RSC58.5 ± 0.597.6 ± 0.177.8 ± 0.686.2 ± 0.566.5 ± 0.652.1 ± 0.238.9 ± 0.668.2
", + "bbox": [ + 173, + 657, + 825, + 833 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/95c1c298ff6893ebcbf1dec48e4922dde6316823fff2f5782056a00dc5aa994b.jpg", + "table_caption": [ + "Table 4: Ablation study on ERM showing the impact of (i) using raw images versus data augmentation, and (ii) using ResNet-18 versus ResNet-50 models. Model selection: training-domain validation set. " + ], + "table_footnote": [], + "table_body": "
AlgorithmVLCSPACSOfficeHomeTerraIncDomainNetAvg
ERM (raw, 18)75.8 ± 0.379.6 ± 0.361.0 ± 0.135.0 ± 1.335.8 ± 0.262.4
ERM (aug, 18)75.8 ± 0.179.1 ± 0.860.0 ± 0.640.0 ± 0.635.3 ± 0.062.8
ERM (raw, 50)78.6 ± 0.183.2 ± 0.667.7 ± 0.241.5 ± 2.541.4 ± 0.166.0
ERM (aug, 50)77.5 ± 0.485.5 ± 0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
", + "bbox": [ + 212, + 146, + 785, + 223 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 ABLATION STUDY ON ERM ", + "text_level": 1, + "bbox": [ + 176, + 256, + 405, + 270 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To better understand our ERM performance, we perform an ablation study on the neural network architecture and the data augmentation protocol. Table 5.2 shows that using a ResNet-50 neural network architecture, instead of a smaller ResNet-18, improves DG test accuracy by 3.7 points. Using data augmentation improves DG test accuracy by 0.5 points. However, these ResNet models were pretrained on ImageNet using data augmentation, so the benefits of augmentation are partly absorbed by the model. In fact, we hypothesize that among models pretrained on ImageNet, domain generalization performance is mainly influenced by the model’s original test accuracy on ImageNet. ", + "bbox": [ + 174, + 281, + 826, + 380 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 DISCUSSIONS ", + "text_level": 1, + "bbox": [ + 174, + 400, + 320, + 416 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We provide several discussions to help the reader interpret our results and motivate future work. ", + "bbox": [ + 173, + 433, + 799, + 446 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Our negative claims are fundamentally limited Broad negative claims (e.g. “algorithm X does not outperform ERM”) do not specify an exact experimental setting and are therefore impossible to rigorously prove. In order to be verifiable, such claims must be restricted to a specific setting. This limitation is fundamental to all negative result claims, and ours (Claim 2) is no exception. We have shown that many algorithms don’t substantially improve on ERM in our setting, but the relevance of that setting is a subjective matter ultimately left for the reader. ", + "bbox": [ + 174, + 463, + 825, + 546 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In making this judgement, the reader should consider whether they agree with our methodological and implementation choices, which we have explained and motivated throughout the paper. We also note that our implementation can outperform previous results (Table 1). Finally, DomainBed is not a black box: our implementation is open-source and actively maintained, and we invite the research community to improve on our results. ", + "bbox": [ + 174, + 554, + 825, + 623 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Is this as good as it gets? We question whether DG is possible in some of the considered datasets. Why do we assume that a neural network should be able to classify cartoons, given only photorealistic training data? In the case of Rotated MNIST, do truly rotation-invariant features discriminative of the digit class exist? Are those features expressible by a neural network? Even in the presence of correct model selection, is the out-of-distribution performance of modern ERM implementations as good as it gets? Or is it simply as poor as every other alternative? How far are we from the achievable DG performance? Is this upper-bound simply the test error in-domain? ", + "bbox": [ + 173, + 640, + 825, + 738 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Are these the right datasets? Most datasets considered in the DG literature do not reflect realistic situations. If one wanted to classify cartoons, the easiest option would be to collect a small labeled dataset of cartoons. Should we consider more realistic, impactful tasks for better research in DG? Some alternatives are medical imaging in different hospitals and self-driving cars in different cities. ", + "bbox": [ + 174, + 753, + 825, + 810 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Generalization requires untestable assumptions Every time we use ERM, we assume that training and testing examples follow the same distribution. This is an untestable assumption in every single instance. The same applies for DG: each algorithm assumes a different (untestable) type of invariance across domains. Therefore, the performance of a DG algorithm depends on the problem at hand, and only time can tell if we have made a good choice. This is akin to the generalization of a scientific theory such as Newton’s gravitation, which cannot be proven, but rather only resist falsification. ", + "bbox": [ + 174, + 827, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 102, + 318, + 117 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Our extensive empirical evaluation of DG algorithms leads to three conclusions. First, a carefully tuned ERM baseline outperforms the previously published state-of-the-art results in terms of average performance (Claim 1). Second, when compared to thirteen popular DG alternatives on the exact same experimental conditions, we find out that no competitor is able to outperform ERM by more than one point (Claim 2). Third, model selection is non-trivial for DG, and it should be an integral part of any proposed method (Claim 3). Going forward, we hope that our results and DOMAINBED promote realistic and rigorous evaluation and enable advances in domain generalization. ", + "bbox": [ + 174, + 133, + 825, + 231 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 252, + 285, + 267 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kartik Ahuja, Karthikeyan Shanmugam, Kush Varshney, and Amit Dhurandhar. Invariant risk minimization games. arXiv, 2020. \nKei Akuzawa, Yusuke Iwasawa, and Yutaka Matsuo. Adversarial invariant feature learning with accuracy constraint for domain generalization. arXiv, 2019. \nEhab A AlBadawy, Ashirbani Saha, and Maciej A Mazurowski. Deep learning for segmentation of brain tumors: Impact of cross-institutional training and testing. Medical physics, 2018. \nIsabela Albuquerque, Joao Monteiro, Tiago H Falk, and Ioannis Mitliagkas. Adversarial target- ˜ invariant representation learning for domain generalization. arXiv, 2019. \nIsabela Albuquerque, Nikhil Naik, Junnan Li, Nitish Keskar, and Richard Socher. Improving out-of-distribution generalization via multi-task self-supervised pretraining. arXiv, 2020. \nMichael A Alcorn, Qi Li, Zhitao Gong, Chengfei Wang, Long Mai, Wei-Shinn Ku, and Anh Nguyen. Strike (with) a pose: Neural networks are easily fooled by strange poses of familiar objects. CVPR, 2019. \nMartin Arjovsky, Leon Bottou, Ishaan Gulrajani, and David Lopez-Paz. Invariant risk minimization. ´ arXiv preprint arXiv:1907.02893, 2019. \nYogesh Balaji, Swami Sankaranarayanan, and Rama Chellappa. MetaReg: Towards domain generalization using meta-regularization. NIPS, 2018. \nSara Beery, Grant Van Horn, and Pietro Perona. Recognition in terra incognita. ECCV, 2018. \nShai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jennifer Wortman Vaughan. A theory of learning from different domains. Machine learning, 2010. \nJames Bergstra and Yoshua Bengio. Random search for hyper-parameter optimization. JMLR, 2012. \nGilles Blanchard, Gyemin Lee, and Clayton Scott. Generalizing from several related classification tasks to a new unlabeled sample. NIPS, 2011. \nGilles Blanchard, Aniket Anand Deshmukh, Urun Dogan, Gyemin Lee, and Clayton Scott. Domain generalization by marginal transfer learning. arXiv, 2017. \nVictor Bouvier, Philippe Very, Celine Hudelot, and Cl ´ ement Chastagnol. Hidden covariate shift: A ´ minimal assumption for domain adaptation. arXiv, 2019. \nFabio M Carlucci, Antonio D’Innocente, Silvia Bucci, Barbara Caputo, and Tatiana Tommasi. Domain generalization by solving jigsaw puzzles. CVPR, 2019a. \nFabio Maria Carlucci, Paolo Russo, Tatiana Tommasi, and Barbara Caputo. Hallucinating agnostic images to generalize across domains. ICCVW, 2019b. \nDaniel C Castro, Ian Walker, and Ben Glocker. Causality matters in medical imaging. arXiv, 2019. \nPrithvijit Chattopadhyay, Yogesh Balaji, and Judy Hoffman. Learning to balance specificity and invariance for in and out of domain generalization, 2020. ", + "bbox": [ + 171, + 276, + 828, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Dengxin Dai and Luc Van Gool. Dark model adaptation: Semantic image segmentation from daytime to nighttime. ITSC, 2018. ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Aniket Anand Deshmukh, Yunwen Lei, Srinagesh Sharma, Urun Dogan, James W Cutler, and Clayton Scott. A generalization error bound for multi-class domain generalization. arXiv, 2019. ", + "bbox": [ + 173, + 141, + 823, + 171 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhengming Ding and Yun Fu. Deep domain generalization with structured low-rank constraint. IEEE Transactions on Image Processing, 2017. ", + "bbox": [ + 173, + 180, + 823, + 210 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Qi Dou, Daniel Coelho de Castro, Konstantinos Kamnitsas, and Ben Glocker. Domain generalization via model-agnostic learning of semantic features. NIPS, 2019. ", + "bbox": [ + 176, + 219, + 823, + 248 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Roth. The reusable holdout: Preserving validity in adaptive data analysis. Science, 2015. ", + "bbox": [ + 176, + 257, + 823, + 287 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Antonio D’Innocente and Barbara Caputo. Domain generalization with domain-specific aggregation modules. German Conference on Pattern Recognition, 2018. ", + "bbox": [ + 174, + 296, + 823, + 327 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chen Fang, Ye Xu, and Daniel N Rockmore. Unbiased metric learning: On the utilization of multiple datasets and web images for softening bias. ICCV, 2013. ", + "bbox": [ + 174, + 335, + 823, + 364 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. ICML, 2017. ", + "bbox": [ + 173, + 375, + 823, + 404 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, Franc¸ois Laviolette, Mario Marchand, and Victor Lempitsky. Domain-adversarial training of neural networks. JMLR, 2016. ", + "bbox": [ + 173, + 412, + 825, + 455 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Robert Geirhos, Patricia Rubisch, Claudio Michaelis, Matthias Bethge, Felix A Wichmann, and Wieland Brendel. ImageNet-trained CNNs are biased towards texture; increasing shape bias improves accuracy and robustness. arXiv, 2018. ", + "bbox": [ + 174, + 465, + 823, + 508 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Muhammad Ghifary, W Bastiaan Kleijn, Mengjie Zhang, and David Balduzzi. Domain generalization for object recognition with multi-task autoencoders. ICCV, 2015. ", + "bbox": [ + 169, + 518, + 823, + 547 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Muhammad Ghifary, David Balduzzi, W Bastiaan Kleijn, and Mengjie Zhang. Scatter component analysis: A unified framework for domain adaptation and domain generalization. IEEE TPAMI, 2016. ", + "bbox": [ + 173, + 556, + 825, + 599 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. NIPS, 2014. ", + "bbox": [ + 173, + 609, + 823, + 638 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Arthur Gretton, Karsten M Borgwardt, Malte J Rasch, Bernhard Scholkopf, and Alexander Smola. A ¨ kernel two-sample test. JMLR, 2012. ", + "bbox": [ + 173, + 648, + 823, + 678 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. CVPR, 2016. ", + "bbox": [ + 173, + 686, + 823, + 717 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Will D. Heaven. Google’s medical AI was super accurate in a lab. real life was a different story. MIT Technology Review, 2020. ", + "bbox": [ + 173, + 726, + 823, + 756 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dan Hendrycks, Steven Basart, Norman Mu, Saurav Kadavath, Frank Wang, Evan Dorundo, Rahul Desai, Tyler Zhu, Samyak Parajuli, Mike Guo, Dawn Song, Jacob Steinhardt, and Justin Gilmer. The many faces of robustness: A critical analysis of out-of-distribution generalization, 2020. ", + "bbox": [ + 176, + 765, + 825, + 808 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Shoubo Hu, Kun Zhang, Zhitang Chen, and Laiwan Chan. Domain generalization via multidomain discriminant analysis. UAI, 2019. ", + "bbox": [ + 171, + 816, + 825, + 847 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Weihua Hu, Gang Niu, Issei Sato, and Masashi Sugiyama. Does distributionally robust supervised learning give robust classifiers? arXiv, 2016. ", + "bbox": [ + 174, + 856, + 821, + 886 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zeyi Huang, Haohan Wang, Eric P Xing, and Dong Huang. Self-challenging improves cross-domain generalization. arXiv preprint arXiv:2007.02454, 2020. ", + "bbox": [ + 173, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Maximilian Ilse, Jakub M Tomczak, Christos Louizos, and Max Welling. DIVA: Domain invariant variational autoencoders. arXiv preprint arXiv:1905.10427, 2019. ", + "bbox": [ + 171, + 103, + 825, + 133 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv, 2015. ", + "bbox": [ + 173, + 140, + 823, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Fredrik D Johansson, David Sontag, and Rajesh Ranganath. Support and invertibility in domaininvariant representations. arXiv, 2019. ", + "bbox": [ + 171, + 178, + 825, + 207 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aditya Khosla, Tinghui Zhou, Tomasz Malisiewicz, Alexei A Efros, and Antonio Torralba. Undoing the damage of dataset bias. ECCV, 2012. ", + "bbox": [ + 171, + 214, + 825, + 244 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. ICLR, 2015. ", + "bbox": [ + 171, + 252, + 795, + 268 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. ICLR, 2014. ", + "bbox": [ + 171, + 275, + 735, + 291 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "David Krueger, Ethan Caballero, Joern-Henrik Jacobsen, Amy Zhang, Jonathan Binas, Remi Le Priol, and Aaron Courville. Out-of-distribution generalization via risk extrapolation (REx). arXiv, 2020. ", + "bbox": [ + 174, + 299, + 825, + 329 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann LeCun. The mnist database of handwritten digits. http://yann. lecun. com/exdb/mnist/, 1998. ", + "bbox": [ + 173, + 337, + 820, + 352 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Da Li, Yongxin Yang, Yi-Zhe Song, and Timothy M. Hospedales. Deeper, broader and artier domain generalization. 2017. ", + "bbox": [ + 174, + 359, + 823, + 388 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Da Li, Yongxin Yang, Yi-Zhe Song, and Timothy M Hospedales. Learning to generalize: Metalearning for domain generalization. AAAI, 2018a. ", + "bbox": [ + 173, + 396, + 823, + 426 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Da Li, Jianshu Zhang, Yongxin Yang, Cong Liu, Yi-Zhe Song, and Timothy M Hospedales. Episodic training for domain generalization. ICCV, 2019a. ", + "bbox": [ + 173, + 434, + 823, + 463 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Da Li, Yongxin Yang, Yi-Zhe Song, and Timothy Hospedales. Sequential learning for domain generalization. arXiv, 2020. ", + "bbox": [ + 174, + 470, + 823, + 501 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Haoliang Li, Sinno Jialin Pan, Shiqi Wang, and Alex C Kot. Domain generalization with adversarial feature learning. CVPR, 2018b. ", + "bbox": [ + 174, + 507, + 823, + 537 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ya Li, Mingming Gong, Xinmei Tian, Tongliang Liu, and Dacheng Tao. Domain generalization via conditional invariant representations. AAAI, 2018c. ", + "bbox": [ + 174, + 545, + 821, + 575 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ya Li, Xinmei Tian, Mingming Gong, Yajing Liu, Tongliang Liu, Kun Zhang, and Dacheng Tao. Deep domain generalization via conditional invariant adversarial networks. ECCV, 2018d. ", + "bbox": [ + 176, + 583, + 823, + 612 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yiying Li, Yongxin Yang, Wei Zhou, and Timothy M Hospedales. Feature-critic networks for heterogeneous domain generalization. arXiv, 2019b. ", + "bbox": [ + 176, + 619, + 821, + 650 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Massimiliano Mancini, Samuel Rota Bulo, Barbara Caputo, and Elisa Ricci. Best sources forward: \\` domain generalization through source-specific nets. ICIP, 2018a. ", + "bbox": [ + 174, + 657, + 823, + 688 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Massimiliano Mancini, Samuel Rota Bulo, Barbara Caputo, and Elisa Ricci. Robust place categorization with deep domain generalization. IEEE Robotics and Automation Letters, 2018b. ", + "bbox": [ + 173, + 694, + 823, + 724 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Toshihiko Matsuura and Tatsuya Harada. Domain generalization using a mixture of multiple latent domains. arXiv, 2019. ", + "bbox": [ + 174, + 732, + 821, + 761 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Saeid Motiian, Marco Piccirilli, Donald A Adjeroh, and Gianfranco Doretto. Unified deep supervised domain adaptation and generalization. ICCV, 2017. ", + "bbox": [ + 174, + 768, + 821, + 799 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Krikamol Muandet, David Balduzzi, and Bernhard Scholkopf. Domain generalization via invariant ¨ feature representation. ICML, 2013. ", + "bbox": [ + 173, + 806, + 823, + 837 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Krikamol Muandet, Kenji Fukumizu, Bharath Sriperumbudur, Bernhard Scholkopf, et al. Kernel ¨ mean embedding of distributions: A review and beyond. Foundations and Trends in Machine Learning, 2017. ", + "bbox": [ + 173, + 843, + 823, + 886 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hyeonseob Nam, HyunJae Lee, Jongchan Park, Wonjun Yoon, and Donggeun Yoo. Reducing domain gap via style-agnostic networks. arXiv, 2019. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sinno Jialin Pan and Qiang Yang. A survey on transfer learning. IEEE TKDE, 2009. ", + "bbox": [ + 171, + 103, + 727, + 119 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. PyTorch: An imperative style, high-performance deep learning library. NIPS, 2019. ", + "bbox": [ + 176, + 127, + 823, + 171 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Vishal M Patel, Raghuraman Gopalan, Ruonan Li, and Rama Chellappa. Visual domain adaptation: A survey of recent advances. IEEE Signal Processing, 2015. ", + "bbox": [ + 171, + 180, + 825, + 210 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xingchao Peng, Qinxun Bai, Xide Xia, Zijun Huang, Kate Saenko, and Bo Wang. Moment matching for multi-source domain adaptation. ICCV, 2019. ", + "bbox": [ + 174, + 219, + 821, + 250 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Christian S Perone, Pedro Ballester, Rodrigo C Barros, and Julien Cohen-Adad. Unsupervised domain adaptation for medical imaging segmentation with self-ensembling. NeuroImage, 2019. ", + "bbox": [ + 173, + 258, + 823, + 289 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jonas Peters, Peter Buhlmann, and Nicolai Meinshausen. Causal inference by using invariant ¨ prediction: identification and confidence intervals. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 2016. ", + "bbox": [ + 173, + 296, + 826, + 340 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mohammad Mahfujur Rahman, Clinton Fookes, Mahsa Baktashmotlagh, and Sridha Sridharan. Correlation-aware adversarial domain adaptation and generalization. Pattern Recognition, 2019a. ", + "bbox": [ + 174, + 349, + 825, + 380 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mohammad Mahfujur Rahman, Clinton Fookes, Mahsa Baktashmotlagh, and Sridha Sridharan. Multi-component image translation for deep domain generalization. WACV, 2019b. ", + "bbox": [ + 169, + 390, + 825, + 419 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mateo Rojas-Carulla, Bernhard Scholkopf, Richard Turner, and Jonas Peters. Invariant models for ¨ causal transfer learning. JMLR, 2018. ", + "bbox": [ + 173, + 428, + 823, + 458 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. ImageNET large scale visual recognition challenge. IJCV, 2015. ", + "bbox": [ + 174, + 467, + 825, + 511 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shiori Sagawa, Pang Wei Koh, Tatsunori B Hashimoto, and Percy Liang. Distributionally robust neural networks for group shifts: On the importance of regularization for worst-case generalization. arXiv, 2019. ", + "bbox": [ + 173, + 520, + 826, + 563 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Seonguk Seo, Yumin Suh, Dongwan Kim, Geeho Kim, Jongwoo Han, and Bohyung Han. Learning to optimize domain specific normalization for domain generalization, 2020. ", + "bbox": [ + 173, + 571, + 823, + 602 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shiv Shankar, Vihari Piratla, Soumen Chakrabarti, Siddhartha Chaudhuri, Preethi Jyothi, and Sunita Sarawagi. Generalizing across domains via cross-gradient training. arXiv, 2018. ", + "bbox": [ + 176, + 611, + 821, + 641 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pierre Stock and Moustapha Cisse. Convnets and imagenet beyond accuracy: Understanding mistakes and uncovering biases. ECCV, 2018. ", + "bbox": [ + 174, + 650, + 823, + 679 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Baochen Sun and Kate Saenko. Deep CORAL: Correlation alignment for deep domain adaptation. ECCV, 2016. ", + "bbox": [ + 171, + 688, + 825, + 718 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Baochen Sun, Jiashi Feng, and Kate Saenko. Return of frustratingly easy domain adaptation. AAAI, 2016. ", + "bbox": [ + 169, + 728, + 826, + 758 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Damien Teney, Ehsan Abbasnejad, and Anton van den Hengel. Unshuffling data for improved generalization. arxiv, 2020. ", + "bbox": [ + 173, + 767, + 823, + 796 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Antonio Torralba and Alexei Efros. Unbiased look at dataset bias. CVPR, 2011. ", + "bbox": [ + 173, + 805, + 696, + 821 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Vladimir Vapnik. Statistical learning theory wiley. New York, 1998. ", + "bbox": [ + 174, + 830, + 619, + 847 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hemanth Venkateswara, Jose Eusebio, Shayok Chakraborty, and Sethuraman Panchanathan. Deep hashing network for unsupervised domain adaptation. CVPR, 2017. ", + "bbox": [ + 173, + 856, + 825, + 886 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Georg Volk, Stefan Muller, Alexander von Bernuth, Dennis Hospach, and Oliver Bringmann. Towards ¨ robust cnn-based object detection through augmentation with synthetic rain variations. ITSC, 2019. ", + "bbox": [ + 176, + 895, + 823, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Riccardo Volpi, Hongseok Namkoong, Ozan Sener, John C Duchi, Vittorio Murino, and Silvio Savarese. Generalizing to unseen domains via adversarial data augmentation. NIPS, 2018. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Haohan Wang, Zexue He, Zachary C Lipton, and Eric P Xing. Learning robust representations by projecting superficial statistics out. arXiv, 2019. ", + "bbox": [ + 173, + 140, + 823, + 170 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Shujun Wang, Lequan Yu, Caizi Li, Chi-Wing Fu, and Pheng-Ann Heng. Learning from extrinsic and intrinsic supervisions for domain generalization, 2020a. ", + "bbox": [ + 171, + 178, + 823, + 208 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yufei Wang, Haoliang Li, and Alex C Kot. Heterogeneous domain generalization via domain mixup. ICASSP, 2020b. ", + "bbox": [ + 173, + 215, + 823, + 246 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Garrett Wilson and Diane J Cook. A survey of unsupervised deep domain adaptation. arXiv, 2018. ", + "bbox": [ + 171, + 253, + 823, + 270 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Minghao Xu, Jian Zhang, Bingbing Ni, Teng Li, Chengjie Wang, Qi Tian, and Wenjun Zhang. Adversarial domain adaptation with domain mixup. arXiv, 2019. ", + "bbox": [ + 173, + 277, + 823, + 308 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Shen Yan, Huan Song, Nanxiang Li, Lincan Zou, and Liu Ren. Improve unsupervised domain adaptation with mixup training. arXiv, 2020. ", + "bbox": [ + 173, + 315, + 823, + 344 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Hongyi Zhang, Moustapha Cisse, Yann N Dauphin, and David Lopez-Paz. mixup: Beyond empirical risk minimization. ICLR, 2018. ", + "bbox": [ + 169, + 353, + 825, + 382 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ling Zhang, Xiaosong Wang, Dong Yang, Thomas Sanford, Stephanie Harmon, Baris Turkbey, Holger Roth, Andriy Myronenko, Daguang Xu, and Ziyue Xu. When unseen domain generalization is unnecessary? rethinking data augmentation. arXiv, 2019. ", + "bbox": [ + 174, + 391, + 823, + 435 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Marvin Zhang, Henrik Marklund, Abhishek Gupta, Sergey Levine, and Chelsea Finn. Adaptive risk minimization: A meta-learning approach for tackling group shift. arXiv, 2020. ", + "bbox": [ + 168, + 443, + 825, + 473 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Han Zhao, Remi Tachet des Combes, Kun Zhang, and Geoffrey J Gordon. On learning invariant representation for domain adaptation. arXiv, 2019. ", + "bbox": [ + 171, + 479, + 823, + 510 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Kaiyang Zhou, Yongxin Yang, Timothy Hospedales, and Tao Xiang. Deep domain-adversarial image generation for domain generalisation. arXiv preprint arXiv:2003.06054, 2020. ", + "bbox": [ + 173, + 518, + 821, + 547 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A A DECADE OF LITERATURE ON DOMAIN GENERALIZATION ", + "text_level": 1, + "bbox": [ + 174, + 103, + 692, + 117 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In this section, we provide an exhaustive literature review on a decade of domain generalization research. The following classifies domain generalization algorithms according into four strategies to learn invariant predictors: learning invariant features, sharing parameters, meta-learning, or performing data augmentation. ", + "bbox": [ + 174, + 133, + 823, + 189 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.1 LEARNING INVARIANT FEATURES ", + "text_level": 1, + "bbox": [ + 178, + 208, + 449, + 222 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Muandet et al. (2013) use kernel methods to find a feature transformation that (i) minimizes the distance between transformed feature distributions across domains, and (ii) does not destroy any of the information between the original features and the targets. In their pioneering work, Ganin et al. (2016) propose Domain Adversarial Neural Networks (DANN), a domain adaptation technique which uses generative adversarial networks (GANs, Goodfellow et al. (2014)), to learn a feature representation that matches across training domains. Akuzawa et al. (2019) extend DANN by considering cases where there exists an statistical dependence between the domain and the class label variables. Albuquerque et al. (2019) extend DANN by considering one-versus-all adversaries that try to predict to which training domain does each of the examples belong to. Li et al. (2018b) employ GANs and the maximum mean discrepancy criteria (Gretton et al., 2012) to align feature distributions across domains. Matsuura and Harada (2019) leverages clustering techniques to learn domaininvariant features even when the separation between training domains is not given. Li et al. (2018c;d) learns a feature transformation $\\phi$ such that the conditional distributions $P ( \\mathcal { \\bar { \\phi } } ( X ^ { d } ) \\mid Y ^ { d } = y )$ match for all training domains $d$ and label values $y$ . Shankar et al. (2018) use a domain classifier to construct adversarial examples for a label classifier, and use a label classifier to construct adversarial examples for the domain classifier. This results in a label classifier with better domain generalization. Li et al. (2019a) train a robust feature extractor and classifier. The robustness comes from (i) asking the feature extractor to produce features such that a classifier trained on domain $d$ can classify instances for domain $d ^ { \\prime } \\neq d$ , and (ii) asking the classifier to predict labels on domain $d$ using features produced by a feature extractor trained on domain $d ^ { \\prime } \\neq d$ . Li et al. (2020) adopt a lifelong learning strategy to attack the problem of domain generalization. Motiian et al. (2017) learn a feature representation such that (i) examples from different domains but the same class are close, (ii) examples from different domains and classes are far, and (iii) training examples can be correctly classified. Ilse et al. (2019) train a variational autoencoder (Kingma and Welling, 2014) where the bottleneck representation factorizes knowledge about domain, class label, and residual variations in the input space. Fang et al. (2013) learn a structural SVM metric such that the neighborhood of each example contains examples from the same category and all training domains. The algorithms of Sun and Saenko (2016); Sun et al. (2016); Rahman et al. (2019a) match the feature covariance (second order statistics) across training domains at some level of representation. The algorithms of Ghifary et al. (2016); Hu et al. (2019) use kernel-based multivariate component analysis to minimize the mismatch between training domains while maximizing class separability. ", + "bbox": [ + 174, + 233, + 825, + 662 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Although popular, learning domain-invariant features has received some criticism (Zhao et al., 2019; Johansson et al., 2019). Some alternatives exist, as we review next. Peters et al. (2016); Rojas-Carulla et al. (2018) considered that one should search for features that lead to the same optimal classifier across training domains. In their pioneering work, Peters et al. (2016) linked this type of invariance to the causal structure of data, and provided a basic algorithm to learn invariant linear models, based on feature selection. Arjovsky et al. (2019) extend the previous to general gradient-based models, including neural networks, in their Invariant Risk Minimization (IRM) principle. Teney et al. (2020) build on IRM to learn a feature transformation that minimizes the relative variance of classifier weights across training datasets. The authors apply their method to reduce the learning of spurious correlations in Visual Question Answering (VQA) tasks. Ahuja et al. (2020) analyze IRM under a game-theoretic perspective to develop an alternative algorithm. Krueger et al. (2020) propose an approximation to the IRM problem consisting in reducing the variance of error averages across domains. Bouvier et al. (2019) attack the same problem as IRM by re-weighting data samples. ", + "bbox": [ + 174, + 671, + 825, + 851 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.2 SHARING PARAMETERS ", + "text_level": 1, + "bbox": [ + 176, + 869, + 380, + 882 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Blanchard et al. (2011) build classifiers $f ( x ^ { d } , \\mu ^ { d } )$ , where $\\mu ^ { d }$ is a kernel mean embedding (Muandet et al., 2017) that summarizes the dataset associated to the example $x ^ { d }$ . Since the distributional identity of test instances is unknown, these embeddings are estimated using single test examples at test time. See Blanchard et al. (2017); Deshmukh et al. (2019) for theoretical results on this family of algorithms (only applicable when using RKHS-based learners). Zhang et al. (2020) is an extension of Blanchard et al. (2011) where a separate CNN computes the domain embedding, appended to the input image as additional channels. Khosla et al. (2012) learn one max-margin linear classifier $w ^ { d } = \\dot { w } + \\Delta ^ { \\overline { { d } } }$ per domain $d$ , from which they distill their final, invariant predictor $w$ . Ghifary et al. (2015) use a multitask autoencoder to learn invariances across domains. To achieve this, the authors assume that each training dataset contains the same examples; for instance, photographs about the same objects under different views. Mancini et al. (2018b) train a deep neural network with one set of dedicated batch-normalization layers (Ioffe and Szegedy, 2015) per training dataset. Then, a softmax domain classifier predicts how to linearly-combine the batch-normalization layers at test time. Seo et al. (2020) combines instance normalization with batch-normalization to learn a normalization module per domain, enhancing out-of-distribution generalization. Similarly, Mancini et al. (2018a) learn a softmax domain classifier used to linearly-combine domain-specific predictors at test time. D’Innocente and Caputo (2018) explore more sophisticated ways of aggregating domain-specific predictors. Li et al. (2017) extends Khosla et al. (2012) to deep neural networks by extending each of their parameter tensors with one additional dimension, indexed by the training domains, and set to a neutral value to predict domain-agnostic test examples. Ding and Fu (2017) implement parametertying and low-rank reconstruction losses to learn a predictor that relies on common knowledge across training domains. Hu et al. (2016); Sagawa et al. (2019) weight the importance of the minibatches of the training distributions proportional to their error. Chattopadhyay et al. (2020) overlays multiple weight masks over a single network to learn domain-invariant and domain-specific features. ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 409 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.3 META-LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 426, + 339, + 440 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Li et al. (2018a) employ Model-Agnostic Meta-Learning, or MAML (Finn et al., 2017), to build a predictor that learns how to adapt fast between training domains. Dou et al. (2019) use a similar MAML strategy, together with two regularizers that encourage features from different domains to respect inter-class relationships, and be compactly clustered by class labels. Li et al. (2019b) extend the MAML meta-learning strategy to instances of domain generalization where the categories vary from domain to domain. Balaji et al. (2018) use MAML to meta-learn a regularizer encouraging the model trained on one domain to perform well on another domain. ", + "bbox": [ + 174, + 452, + 825, + 549 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.4 AUGMENTING DATA ", + "text_level": 1, + "bbox": [ + 176, + 566, + 356, + 580 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Data augmentation is an effective strategy to address domain generalization (Zhang et al., 2019). Unfortunately, how to design efficient data augmentation routines depends on the type of data at hand, and demands a significant amount of work from human experts. Xu et al. (2019); Yan et al. (2020); Wang et al. (2020b) use mixup (Zhang et al., 2018) to blend examples from the different training distributions. Carlucci et al. (2019a) constructs an auxiliary classification task aimed at solving jigsaw puzzles of image patches. The authors show that this self-supervised learning task learns features that improve domain generalization. Similarly, Wang et al. (2020a) use metric learning and self-supervised learning to augment the out-of-distribution performance of an image classifier. Albuquerque et al. (2020) introduce the self-supervised task of predicting responses to Gabor filter banks, in order to learn more transferrable features. Wang et al. (2019) remove textural information from images to improve domain generalization. Volpi et al. (2018) show that training with adversarial data augmentation on a single domain is sufficient to improve domain generalization. Nam et al. (2019) promote representations of data that ignore image style and focus on content. Rahman et al. (2019b); Zhou et al. (2020); Carlucci et al. (2019a) are three alternatives that use GANs to augment the data available during training time. Representation Self-Challenging (Huang et al., 2020) learns robust neural networks by iteratively dropping-out important features. Hendrycks et al. (2020) show that, together with larger models and data, data augmentation improves out-of-distribution performance. ", + "bbox": [ + 173, + 592, + 826, + 842 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.5 PREVIOUS STATE-OF-THE-ART NUMBERS ", + "text_level": 1, + "bbox": [ + 176, + 104, + 501, + 117 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Table 5 compiles the best out-of-distribution test accuracies reported across a decade of domain generalization research. ", + "bbox": [ + 173, + 128, + 825, + 157 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/a83f4c071ed20c188f609c07faefb1f31a82a78ee40a65d697b1fe36cb58e6cb.jpg", + "table_caption": [ + "Table 5: Previous state-of-the-art in the literature of domain generalization. " + ], + "table_footnote": [], + "table_body": "
Benchmark Accuracy (by domain) Algorithm
0 15 30 45 60 75 Average82.5096.3093.40 78.60 94.2080.50 87.58 D-MTAE (Ghifary et al., 2015)84.6095.60 94.60 82.90 94.80 82.10 89.10 CCSA (Motiian et al., 2017)83.70 96.9095.70 85.20 95.9081.20 89.80 MMD-AAE (Li et al., 2018b)85.6095.0095.6095.5095.9084.30 92.00 BestSources (Mancini et al.,2018a)RotatedMNIST 88.8097.6097.50 97.8097.6091.90 95.20 ADAGE(Carlucci et al.,2019b)98.0097.7097.7091.4095.28CrossGrad (Shankar et al.,2018)88.3098.6090.1098.9098.9098.8098.3090.00 95.80 HEX (Wang et al., 2019)89.23 99.68 99.20 99.24 99.5391.44 96.39 FeatureCritic (Li et al.,2019b)93.50 99.3099.10 99.20 99.3093.00 97.20 DIVA (Ilse et al.,2019)95.9098.9098.80 98.9098.9096.40 98.00 Our ERM
82.50
84.60
83.70
85.60Rotated95.0095.60
MNIST 88.8088.3097.6097.50
98.60
90.1098.90
89.2399.6899.20
93.5099.3099.10
95.9098.9098.80
CLSV Average64.36 64.06 SCA (Ghifary et al., 2016)67.10 65.00 CCSA (Motiian et al., 2017)62.59 67.67 MTSSL (Albuquerque et al., 2020)63.90 68.60 D-MTAE (Ghifaryetal.,15)65.65 69.41 CIDG (Li et al., 2018c)64.38 69.59 CIDDG (Li et al., 2018d)66.86 70.22 MDA (Hu et al., 2019)65.25 70.97 MDA (Ding and Fu, 2017)69.99 72.11 DBADG (Li et al., 2017)67.60 72.30 MMD-AAE (Li et al.,2018b)67.10 72.90 Epi-FCR (Li et al.,2019a)70.62 73.19 JiGen (Carlucci et al.,2019a)70.49 73.30 VREx (Krueger et al., 2020)68.70 73.50 S-MLDG (Li et al., 2020)71.96 73.88 MMLD (Matsura and Harada, 2019)69.14 74.11 MASF (Dou et al., 2019)69.83 74.67 EISNet (Wang et al., 2020a)73.93 75.43 RSC (Huang et al.,2020)71.14 75.92 G2DM (Albuquerque et al., 2019)74.60 77.50 Our ERM
88.9259.6059.2064.36
92.3062.1059.1067.10
89.1564.9958.8862.59
89.0560.1361.3363.90
91.1260.4360.8565.65
88.8363.0662.1064.38
92.6461.7859.6066.8670.22
92.7662.3463.5465.2570.97
VLCS93.6363.4961.3269.9972.11
94.4062.6064.4067.6072.30
94.1064.3065.9067.1072.90
96.9360.9064.3070.6273.19
96.7260.4063.6870.4973.30
96.4064.8064.0068.7073.50
96.6658.7768.1371.96
94.7864.9067.6469.14
97.3363.4968.0269.8374.67
97.6161.8668.3273.9375.43
95.5267.6369.3771.1475.92
97.7064.3073.4074.6077.50
ACPSDBADG (Li et al., 2017)MTSSL (Albuquerque et al., 2020)CIDDG (Li et al., 2018d)JAN-COMBO (Rahman et al., 2019b)MLDG (Li et al., 2018a)HEX (Wang et al., 2019)BestSources (Mancini et al.,2018a)FeatureCritic (Lietal.,019b)VREx (Krueger et al.,2020)CAADG (Rahman et al., 2019a)Epi-FCR (Li et al., 2019a)G2DM (Albuquerque et al., 2019)MASF (Dou et al., 2019)JiGen (Carlucci et al.,2019a)S-MLDG (Li et al., 2020)
62.8666.9789.5057.5169.21
61.6767.4184.3163.9169.32
62.7069.7378.6564.4569.40
62.6465.9890.4458.7669.45
66.2366.8888.0058.9670.01
66.8069.7087.9056.3070.20
64.1066.8090.2060.1070.30
64.4068.6090.1058.4070.40
67.0467.9789.7459.8171.14
65.5269.9089.1663.3771.98
64.7072.3086.1065.0072.00
PACS66.6073.3688.1266.1973.55
70.3572.4690.6867.3375.21
79.4275.2596.0371.3580.51
80.5077.8094.8072.8081.50
79.4877.1394.3075.30 81.55 D-SAM-A (D'Innocente and Caputo, 2018)72.29 81.83 MMLD (Matsuura and Harada,2019)74.70 83.10 DDAIG (Zhou et al., 2020)76.30 83.25 SagNets (Nam et al., 2019)78.32 83.37 DMG (Chattopadhyay et al.,2020)70.30 83.60 MetaReg (Balaji et al.,2018)79.30 85.50 Our ERM78.07 85.84 EISNet (Wang et al.,2020a)82.90 86.64 DSON (Seo et al., 2020)83.35 87.83 RSC (Huang et al.,2020)
81.2877.1696.0972.2981.83
84.2078.1095.3074.7083.10
83.5877.6695.4776.3083.25
82.5778.1194.4978.3283.37
87.2079.2097.6070.3083.60
84.7080.8097.2079.3085.50
86.6481.5397.1178.07
87.0480.6295.9982.90
87.8982.1697.92
ACPR Average68.35 57.04 JAN-COMBO (Rahman et al., 2019b)72.79 61.20 JiGen (Carlucci et al.,2019a)71.90 61.76 D-SAM-△ (D'Innocente and Caputo,2018)73.38 62.34 SagNets (Nam et al.,2019)74.68 62.90 DSON (Seo et al., 2020)74.54 63.12 RSC (Huang et al.,2020)76.00 65.50 DDAIG (Zhou et al.,2020)76.60 66.50 Our ERM
48.0945.2066.5268.3557.04
53.0447.5171.4772.7961.20
54.5349.0471.5771.9061.76
Office60.2045.3870.4273.3862.34
Home59.3745.7071.8474.6862.90
58.4247.9071.6374.5463.12
59.2052.3074.60
61.3052.40 75.80
", + "bbox": [ + 199, + 196, + 797, + 910 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B MORE ABOUT DOMAINBED ", + "text_level": 1, + "bbox": [ + 176, + 102, + 441, + 118 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.1 ALGORITHMS ", + "bbox": [ + 176, + 132, + 313, + 147 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "1. Empirical Risk Minimization (ERM, Vapnik (1998)) minimizes the errors across domains. \n2. Group Distributionally Robust Optimization (DRO, Sagawa et al. (2019)) performs ERM while increasing the importance of domains with larger errors. \n3. Inter-domain Mixup (Mixup, Xu et al. (2019); Yan et al. (2020); Wang et al. (2020b)) performs ERM on linear interpolations of examples from random pairs of domains and their labels. \n4. Meta-Learning for Domain Generalization (MLDG, Li et al. (2018a)) leverages MAML (Finn et al., 2017) to meta-learn how to generalize across domains. \n5. Domain-Adversarial Neural Networks (DANN, Ganin et al. (2016)) employ an adversarial network to match feature distributions across environments. \n6. Class-conditional DANN (C-DANN, Li et al. (2018d)) is a variant of DANN matching the conditional distributions $P ( \\phi ( X ^ { d } ) | Y ^ { d } = y )$ across domains, for all labels $y$ . \n7. CORAL (Sun and Saenko, 2016) matches the mean and covariance of feature distributions. \n8. MMD (Li et al., 2018b) matches the MMD (Gretton et al., 2012) of feature distributions. \n9. Invariant Risk Minimization (IRM Arjovsky et al. (2019)) learns a feature representation $\\phi ( X ^ { d } )$ such that the optimal linear classifier on top of that representation matches across domains. \n10. Risk Extrapolation (VREx, Krueger et al. (2020)) approximates IRM with a variance penalty. \n11. Marginal Transfer Learning (MTL, Blanchard et al. (2011; 2017)) estimates a mean embedding per domain, passed as a second argument to the classifier. \n12. Adaptive Risk Min. (ARM, Zhang et al. (2020)) extends MTL with a separate embedding CNN. \n13. Style-Agnostic Networks (SagNets, Nam et al. (2019)) learns neural networks by keeping image content and randomizing style. \n14. Representation Self-Challenging (RSC, Huang et al. (2020)) learns robust neural networks by iteratively discarding (challenging) the most activated features. ", + "bbox": [ + 169, + 155, + 828, + 531 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.2 DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 545, + 289, + 560 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "DOMAINBED includes downloaders and loaders for seven multi-domain image classification tasks: ", + "bbox": [ + 173, + 571, + 820, + 587 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "1. Colored MNIST (Arjovsky et al., 2019) is a variant of the MNIST handwritten digit classification dataset (LeCun, 1998). Domain $d \\in \\{ 0 . 1 , 0 . 3 , 0 . 9 \\}$ contains a disjoint set of digits colored either red or blue. The label is a noisy function of the digit and color, such that color bears correlation $d$ with the label and the digit bears correlation 0.75 with the label. This dataset contains 70, 000 examples of dimension $( 2 , 2 8 , 2 8 )$ and 2 classes. \n2. Rotated MNIST (Ghifary et al., 2015) is a variant of MNIST where domain $d \\in \\{ 0 , 1 5 , 3 0 , 4 5 .$ , $6 0 , 7 5 \\ \\}$ contains digits rotated by $d$ degrees. Our dataset contains 70, 000 examples of dimension (1, 28, 28) and 10 classes. \n3. PACS (Li et al., 2017) comprises four domains $d \\in \\{$ { art, cartoons, photos, sketches $\\}$ . This dataset contains 9, 991 examples of dimension $( 3 , 2 2 4 , 2 2 4 )$ and 7 classes. \n4. VLCS (Fang et al., 2013) comprises photographic domains $d \\in \\{$ Caltech101, LabelMe, SUN09, VOC2007 }. This dataset contains 10, 729 examples of dimension (3, 224, 224) and 5 classes. \n5. OfficeHome (Venkateswara et al., 2017) includes domains $d \\in \\{$ { art, clipart, product, real $\\}$ . This dataset contains 15, 588 examples of dimension $( 3 , 2 2 4 , 2 2 4 )$ and 65 classes. \n6. Terra Incognita (Beery et al., 2018) contains photographs of wild animals taken by camera traps at locations $d \\in \\{ \\mathrm { L 1 0 0 , L 3 8 , L 4 3 , L 4 6 } \\}$ . Our version of this dataset contains 24, 788 examples of dimension $( 3 , 2 2 4 , 2 2 4 )$ and 10 classes. \n7. DomainNet (Peng et al., 2019) has six domains $d \\in \\{$ clipart, infograph, painting, quickdraw, real, sketch $\\}$ . This dataset contains 586, 575 examples of size $( 3 , 2 2 4 , 2 2 4 )$ and 345 classes. ", + "bbox": [ + 173, + 597, + 826, + 887 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For all datasets, we first pool the raw training, validation, and testing images together. For each random seed, we then instantiate random training, validation, and testing splits. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.3 MODEL SELECTION CRITERIA, ILLUSTRATED ", + "text_level": 1, + "bbox": [ + 176, + 103, + 526, + 118 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Consider Figure 1, and let $T _ { i } = \\{ A _ { i } , B _ { i } , C _ { i } \\}$ for $i \\in \\{ 1 , 2 \\}$ . Training-domain validation trains each hyperparameter configuration on $T _ { 1 }$ and chooses the configuration with the highest performance in $T _ { 2 }$ . Leave-one-out validation trains one clone $F _ { Z }$ of each hyperparameter configuration on $T _ { 1 } \\backslash Z$ , for $Z \\in T _ { 1 }$ ; then, it chooses the configuration with highest $\\sum { _ { Z \\in T _ { 1 } } }$ Performance $( F _ { Z } , Z )$ . Test-domain validation trains each hyperparameter configuration on $T _ { 1 }$ and chooses the configuration with the highest performance on $D _ { 2 }$ , only looking at its final epoch. Finally, result tables show the performance of selected models on $D _ { 1 }$ . ", + "bbox": [ + 173, + 128, + 826, + 228 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/9ba7746fffce965e4bc35feae1b7eb5d2689f91d8d3c777c598bfa2a16f700a6.jpg", + "image_caption": [ + "Figure 1: Data configuration for a benchmark with four domains A, B, C, D, where the test domain is D. We shuffle and divide the data from each domain into a big split and a small split. " + ], + "image_footnote": [], + "bbox": [ + 207, + 242, + 784, + 349 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "B.4 ARCHITECTURES AND HYPERPARAMETERS ", + "text_level": 1, + "bbox": [ + 174, + 424, + 516, + 438 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Neural network architectures used for each dataset: ", + "bbox": [ + 174, + 449, + 511, + 464 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/5b165549e593254b181604eb39468c1f6a9b999469ef30c0a4133bf877440869.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
DatasetArchitecture
Colored MNIST Rotated MNISTMNIST ConvNet
PACS
VLCS
OfficeHomeResNet-50
TerraIncognita
", + "bbox": [ + 367, + 473, + 630, + 594 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Neural network architecture for MNIST experiments: ", + "bbox": [ + 173, + 604, + 526, + 619 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/2d74690da04e9674d1a499b85fcad2b40c5f6c26d28131cb40f2f73951bde193.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
#Layer
1Conv2D (in=d,out=64)
2ReLU
3GroupNorm (groups=8)
4Conv2D (in=64,out=128,stride=2)
5ReLU
6GroupNorm (8 groups)
7Conv2D (in=128,out=128)
8ReLU
9GroupNorm (8 groups)
10Conv2D (in=128,out=128)
11ReLU
12 13GroupNorm (8 groups) Global average-pooling
", + "bbox": [ + 354, + 633, + 643, + 842 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "For “ResNet- $5 0 ^ { \\circ }$ , we replace the final (softmax) layer of a ResNet50 pretrained on ImageNet and fine-tune the entire network. Since minibatches from different domains follow different distributions, batch normalization degrades domain generalization algorithms (Seo et al., 2020). Therefore, we freeze all batch normalization layers before fine-tuning. We insert a dropout layer before the final ResNet-50 linear layer. ", + "bbox": [ + 174, + 853, + 826, + 924 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Table 6 lists all algorithm hyperparameters, their default values, and their sweep random search distribution. We optimize all models using Adam (Kingma and Ba, 2015). ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 18 + }, + { + "type": "table", + "img_path": "images/773d0eb4db746b90448f3503d7016ea8afef74eeed5e561b387f9b866b42a07b.jpg", + "table_caption": [ + "Table 6: Hyperparameters, their default values and distributions for random search. " + ], + "table_footnote": [], + "table_body": "
Default valueRandom distribution
ConditionParameter
ResNetlearning rate0.0000510Uniform(-5,-3.5)
batch size322Uniform(3,5.5)
batch size (if ARM)88
ResNet dropout0RandomChoice([0,0.1,0.5])
generator learning rate0.0000510Uniform(-5,-3.5)
discriminator learning rate0.0000510Uniform(-5,-3.5)
not ResNetlearning rate0.00110Uniform(-4.5,-3.5)
batch size642Uniform(3.9)
generator learning rate0.00110Uniform(-4.5,-2.5)
discriminator learning rate0.00110Uniform(-4.5,-2.5)
MNIST weight decay00
generator weight decay00
not MNISTweight decay010Uniform(-6,-2)
generator weight decay010Uniform(−6,−2)
DANN, C-DANNlambda1.010Uniform(−2,2)
discriminator weight decay010Uniform(-6,−2)
discriminator steps12Uniform(0,3)
discriminator width256int(2Uniform(6,10))
discriminator depth3RandomChoice([3,4,5])
discriminator dropout0RandomChoice([0,0.1,0.5])
discriminator grad penalty010Uniform(-2,1)
Adam β10.5RandomChoice([0,0.5])
DROeta0.0110Uniform(-1,1)
IRMlambda10010Uniform(-1,5)
warmup iterations50010Uniform(0,4)
Mixupalpha0.210Uniform(0,4)
MLDGbeta110Uniform(−1,1)
MMD gamma110Uniform(-1,1)
MTLema0.99RandomChoice([.5,.9,.99,1])
RSCfeature drop percentage1/3Uniform(0, 0.5)
batch drop percentage1/3Uniform(0, 0.5)
SagNetadversary weight0.110Uniform(−2,1)
VRExlambda1010Uniform(-1,5)
warmup iterations50010Uniform(0,4)
", + "bbox": [ + 186, + 169, + 812, + 803 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "B.5 EXTENDING DOMAINBED ", + "text_level": 1, + "bbox": [ + 176, + 103, + 398, + 117 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Algorithms are classes that implement two methods: .update(minibatches) and .predict(x). The update method receives a list of minibatches, one minibatch per training domain, and each minibatch containing one input and one output tensor. For example, to implement group DRO (Sagawa et al., 2019, Algorithm 1), we simply write the following in algorithms.py: ", + "bbox": [ + 173, + 130, + 825, + 185 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "class GroupDRO(ERM): def _init__(self, input_shape, num_classes, num_domains, hparams): super().__init__(input_shape, num_classes, num_domains, hparams) self.register_buffer(\"q\", torch.Tensor()) def update(self, minibatches): device $=$ \"cuda\" if minibatches[0][0].is_cuda else \"cpu\" if not len(self.q): self.q $=$ torch.ones(len(minibatches)).to(device) losses $=$ torch.zeros(len(minibatches)).to(device) for m in range(len(minibatches)): x, $\\begin{array} { r l } { \\mathrm { y } } & { { } = } \\end{array}$ minibatches[m] losses[m] $=$ F.cross_entropy(self.predict(x), y) self.q[m] $\\star =$ (self.hparams[\"dro_eta\"] $^ { \\star }$ losses[m].data).exp() self.q $/ =$ self.q.sum() loss $=$ torch.dot(losses, self.q) / len(minibatches) self.optimizer.zero_grad() loss.backward() self.optimizer.step() return {’loss’: loss.item()} ", + "bbox": [ + 176, + 195, + 709, + 468 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "By inheriting from ERM, the new GroupDRO class has access to a default classifier .network, optimizer .optimizer, and prediction method .predict(x). Finally, we tell DOMAINBED about the default values and hyperparameter search distributions of the hyperparameters of this new algorithm. We do so by adding the following to the function hparams in hparams registry.py: ", + "bbox": [ + 174, + 494, + 826, + 550 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "hparams[’dro_eta’] $=$ (1e-2, ${ \\bf 1 0 \\star \\star }$ random_state.uniform(-3, -1)) ", + "bbox": [ + 174, + 559, + 620, + 571 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "To add a new image classification dataset to DOMAINBED, arrange your image files as /root/MyDataset/domain/class/image.jpg. Then, append to datasets.py: ", + "bbox": [ + 173, + 579, + 823, + 607 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "class MyDataset(MultipleEnvironmentImageFolder): ENVIRONMENTS $=$ [’Env1’, ’Env2’, ’Env3’] def __init__(self, root, test_envs, augment $=$ True): self.dir $=$ os.path.join(root, \"MyDataset/\") super().__init__(self.dir, test_envs, augment) ", + "bbox": [ + 174, + 616, + 570, + 670 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "DATASETS.append(’MyDataset’) ", + "bbox": [ + 174, + 679, + 379, + 690 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "We are now ready to train our new algorithm on our new dataset, using the second domain as test: ", + "bbox": [ + 173, + 696, + 810, + 710 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "python train.py --model DRO --dataset MyDataset --data_dir /root --test_envs 1 \\ --hparams ’{\"dro_eta\": 0.2}’ ", + "bbox": [ + 171, + 720, + 761, + 743 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Finally, we can run a fully automated sweep on all datasets, algorithms, test domains, and model selection criteria by simply invoking python sweep.py, after extending the file command launchers.py to your computing infrastructure. When the sweep finishes, the script collect results.py automatically generates all the result tables shown in this manuscript. ", + "bbox": [ + 174, + 750, + 825, + 806 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Extension to UDA One can use DOMAINBED to perform experimentation on unsupervised domain adaptation by extending the .update(minibatches) methods to accept unlabeled examples from the test domain. ", + "bbox": [ + 174, + 820, + 825, + 863 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "C FULL DOMAINBED RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 447, + 118 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "C.1 MODEL SELECTION: TRAINING-DOMAIN VALIDATION SET ", + "bbox": [ + 174, + 135, + 617, + 148 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "C.1.1 COLOREDMNIST ", + "bbox": [ + 174, + 159, + 356, + 174 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/ad6bde8098fd77c826962a8b466f5aa4ab7f749d4824faf3091cf001933b785c.jpg", + "table_caption": [ + "C.1.2 ROTATEDMNIST " + ], + "table_footnote": [], + "table_body": "
Algorithm+90%+80%-90%Avg
ERM71.7 ± 0.172.9 ± 0.210.0 ± 0.151.5
IRM72.5 ± 0.173.3 ± 0.510.2 ± 0.352.0
GroupDRO73.1 ± 0.373.2 ± 0.210.0 ± 0.252.1
Mixup72.7 ± 0.473.4 ± 0.110.1 ± 0.152.1
MLDG71.5 ± 0.273.1 ± 0.29.8 ± 0.151.5
CORAL71.6 ± 0.373.1 ± 0.19.9 ± 0.151.5
MMD71.4 ± 0.373.1 ± 0.29.9 ± 0.351.5
DANN71.4 ± 0.973.1 ± 0.110.0 ± 0.051.5
CDANN72.0 ± 0.273.0 ± 0.210.2 ± 0.151.7
MTL70.9 ± 0.272.8 ± 0.310.5 ± 0.151.4
SagNet71.8 ± 0.273.0 ± 0.210.3 ± 0.051.7
ARM82.0 ± 0.576.5 ± 0.310.2 ± 0.056.2
VREx72.4 ± 0.372.9 ± 0.410.2 ± 0.051.8
RSC71.9 ± 0.373.1 ± 0.210.0 ± 0.251.7
", + "bbox": [ + 289, + 181, + 707, + 404 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/1bb53236240e1cc5485a5dd1191f549477c33bac0872e8141388c636c162cbfc.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm01530456075Avg
ERM95.9 ± 0.198.9 ± 0.098.8 ± 0.098.9 ± 0.098.9 ± 0.096.4 ± 0.098.0
IRM95.5 ± 0.198.8 ± 0.298.7 ± 0.198.6 ± 0.198.7 ± 0.095.9 ± 0.297.7
GroupDRO95.6 ± 0.198.9 ± 0.198.9 ± 0.199.0 ± 0.098.9 ± 0.096.5 ± 0.298.0
Mixup95.8 ± 0.398.9 ± 0.098.9 ± 0.098.9 ± 0.098.8 ± 0.196.5 ± 0.398.0
MLDG95.8 ± 0.198.9 ± 0.199.0 ± 0.098.9 ± 0.199.0 ± 0.095.8 ± 0.397.9
CORAL95.8 ± 0.398.8 ± 0.098.9 ± 0.099.0 ± 0.098.9 ± 0.196.4 ± 0.298.0
MMD95.6 ± 0.198.9 ± 0.199.0 ± 0.099.0 ± 0.098.9 ± 0.096.0 ± 0.297.9
DANN95.0 ± 0.598.9 ± 0.199.0 ± 0.099.0 ± 0.198.9 ± 0.096.3 ± 0.297.8
CDANN95.7 ± 0.298.8 ± 0.098.9 ± 0.198.9 ± 0.198.9 ± 0.196.1 ± 0.397.9
MTL95.6 ± 0.199.0 ± 0.199.0 ± 0.098.9 ± 0.199.0 ± 0.195.8 ± 0.297.9
SagNet95.9 ± 0.398.9 ± 0.199.0 ± 0.199.1 ± 0.099.0 ± 0.196.3 ± 0.198.0
ARM96.7 ± 0.299.1 ± 0.099.0 ± 0.099.0 ± 0.199.1 ± 0.196.5 ± 0.498.2
VREx95.9 ± 0.299.0 ± 0.198.9 ± 0.198.9 ± 0.198.7 ± 0.196.2 ± 0.297.9
RSC94.8 ± 0.598.7 ± 0.198.8 ± 0.198.8 ± 0.098.9 ± 0.195.9 ± 0.297.6
", + "bbox": [ + 173, + 455, + 825, + 667 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "C.1.3 VLCS ", + "text_level": 1, + "bbox": [ + 174, + 681, + 277, + 696 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/a614f6a4ee55a6be51ddcbab232396166fc604c205fedd94a63a6317f616b0a8.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmCLSVAvg
ERM97.7 ± 0.464.3 ± 0.973.4 ± 0.574.6 ± 1.377.5
IRM98.6 ± 0.164.9 ± 0.973.4 ± 0.677.3 ± 0.978.5
GroupDRO97.3 ± 0.363.4 ± 0.969.5 ± 0.876.7 ± 0.776.7
Mixup98.3 ± 0.664.8 ± 1.072.1 ± 0.574.3 ± 0.877.4
MLDG97.4 ± 0.265.2 ± 0.771.0 ± 1.475.3 ± 1.077.2
CORAL98.3 ± 0.166.1 ± 1.273.4 ± 0.377.5 ± 1.278.8
MMD97.7 ± 0.164.0 ± 1.172.8 ± 0.275.3 ± 3.377.5
DANN99.0 ± 0.365.1 ± 1.473.1 ± 0.377.2 ± 0.678.6
CDANN97.1 ± 0.365.1 ± 1.270.7 ± 0.877.1 ± 1.577.5
MTL97.8 ± 0.464.3 ± 0.371.5 ± 0.775.3 ± 1.777.2
SagNet97.9 ± 0.464.5 ± 0.571.4 ± 1.377.5 ± 0.577.8
ARM98.7 ± 0.263.6 ± 0.771.3 ± 1.276.7 ± 0.677.6
VREx98.4 ± 0.364.4 ± 1.474.1 ± 0.476.2 ± 1.378.3
RSC97.9 ± 0.162.5 ± 0.772.3 ± 1.275.6 ± 0.877.1
", + "bbox": [ + 246, + 705, + 751, + 926 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/51f8ca840d9f95411fdcbd81687b11c282f50fec3778f05df62df655dbc8e09a.jpg", + "table_caption": [ + "C.1.4 PACS " + ], + "table_footnote": [], + "table_body": "
AlgorithmACPSAvg
ERM84.7 ± 0.480.8 ± 0.697.2 ± 0.379.3 ± 1.085.5
IRM84.8 ± 1.376.4 ± 1.196.7 ± 0.676.1 ± 1.083.5
GroupDRO83.5 ± 0.979.1 ± 0.696.7 ± 0.378.3 ± 2.084.4
Mixup86.1 ± 0.578.9 ± 0.897.6 ± 0.175.8 ± 1.884.6
MLDG85.5 ± 1.480.1 ± 1.797.4 ± 0.376.6 ± 1.184.9
CORAL88.3 ± 0.280.0 ± 0.597.5 ± 0.378.8 ± 1.386.2
MMD86.1 ± 1.479.4 ± 0.996.6 ± 0.276.5 ± 0.584.6
DANN86.4 ± 0.877.4 ± 0.897.3 ± 0.473.5 ± 2.383.6
CDANN84.6 ± 1.875.5 ± 0.996.8 ± 0.373.5 ± 0.682.6
MTL87.5 ± 0.877.1 ± 0.596.4 ± 0.877.3 ± 1.884.6
SagNet87.4 ± 1.080.7 ± 0.697.1 ± 0.180.0 ± 0.486.3
ARM86.8 ± 0.676.8 ± 0.597.4 ± 0.379.3 ± 1.285.1
VREx86.0 ± 1.679.1 ± 0.696.9 ± 0.577.7 ± 1.784.9
RSC85.4 ± 0.879.7 ± 1.897.6 ± 0.378.2 ± 1.285.2
", + "bbox": [ + 245, + 133, + 751, + 356 + ], + "page_idx": 21 + }, + { + "type": "table", + "img_path": "images/393f4239d51de146347ecef49abbca02af4949e307f6ed74bc1d486ff8d4e201.jpg", + "table_caption": [ + "C.1.5 OFFICEHOME " + ], + "table_footnote": [], + "table_body": "
AlgorithmACPRAvg
ERM61.3 ± 0.752.4 ± 0.375.8 ± 0.176.6 ± 0.366.5
IRM58.9 ± 2.352.2 ± 1.672.1 ± 2.974.0 ± 2.564.3
GroupDRO60.4 ± 0.752.7 ± 1.075.0 ± 0.776.0 ± 0.766.0
Mixup62.4 ± 0.854.8 ± 0.676.9 ± 0.378.3 ± 0.268.1
MLDG61.5 ± 0.953.2 ± 0.675.0 ± 1.277.5 ± 0.466.8
CORAL65.3 ± 0.454.4 ± 0.576.5 ± 0.178.4 ± 0.568.7
MMD60.4 ± 0.253.3 ± 0.374.3 ± 0.177.4 ± 0.666.3
DANN59.9 ± 1.353.0 ± 0.373.6 ± 0.776.9 ± 0.565.9
CDANN61.5 ± 1.450.4 ± 2.474.4 ± 0.976.6 ± 0.865.8
MTL61.5 ± 0.752.4 ± 0.674.9 ± 0.476.8 ± 0.466.4
SagNet63.4 ± 0.254.8 ± 0.475.8 ± 0.478.3 ± 0.368.1
ARM58.9 ± 0.851.0 ± 0.574.1 ± 0.175.2 ± 0.364.8
VREx60.7 ± 0.953.0 ± 0.975.3 ± 0.176.6 ± 0.566.4
RSC60.7 ± 1.451.4 ± 0.374.8 ± 1.175.1 ± 1.365.5
", + "bbox": [ + 245, + 419, + 751, + 642 + ], + "page_idx": 21 + }, + { + "type": "table", + "img_path": "images/a745ddf06308e85653ef51637a0831d42abe8385193a3a5d7b11d1c3c797b7cc.jpg", + "table_caption": [ + "C.1.6 TERRAINCOGNITA " + ], + "table_footnote": [], + "table_body": "
AlgorithmL100L38L43L46Avg
ERM49.8 ± 4.442.1 ± 1.456.9 ± 1.835.7 ± 3.946.1
IRM54.6 ± 1.339.8 ± 1.956.2 ± 1.839.6 ± 0.847.6
GroupDRO41.2 ± 0.738.6 ± 2.156.7 ± 0.936.4 ± 2.143.2
Mixup59.6 ± 2.042.2 ± 1.455.9 ± 0.833.9 ± 1.447.9
MLDG54.2 ± 3.044.3± 1.155.6 ± 0.336.9 ± 2.247.7
CORAL51.6 ± 2.442.2 ± 1.057.0 ± 1.039.8 ± 2.947.6
MMD41.9 ± 3.034.8 ± 1.057.0 ± 1.935.2 ± 1.842.2
DANN51.1 ± 3.540.6 ± 0.657.4 ± 0.537.7 ± 1.846.7
CDANN47.0 ± 1.941.3 ± 4.854.9 ± 1.739.8 ± 2.345.8
MTL49.3 ± 1.239.6 ± 6.355.6 ± 1.137.8 ± 0.845.6
SagNet53.0 ± 2.943.0 ± 2.557.9 ± 0.640.4 ± 1.348.6
ARM49.3 ± 0.738.3 ± 2.455.8 ± 0.838.7 ± 1.345.5
VREx48.2 ± 4.341.7 ± 1.356.8 ± 0.838.7 ± 3.146.4
RSC50.2 ± 2.239.2 ± 1.456.3 ± 1.440.8 ± 0.646.6
", + "bbox": [ + 246, + 704, + 750, + 926 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "C.1.7 DOMAINNET ", + "text_level": 1, + "bbox": [ + 174, + 103, + 323, + 118 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/7d8344916306ee01fa4d0c7fcfef1c03b182d8146281a51e280ff5aac7c68f9a.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.1 ± 0.318.8 ± 0.346.7 ± 0.312.2 ± 0.459.6 ± 0.149.8 ± 0.440.9
IRM48.5 ± 2.815.0 ± 1.538.3 ± 4.310.9 ± 0.548.2 ± 5.242.3 ± 3.133.9
GroupDRO47.2 ± 0.517.5 ± 0.433.8 ± 0.59.3 ± 0.351.6 ± 0.440.1 ± 0.633.3
Mixup55.7 ± 0.318.5 ± 0.544.3 ± 0.512.5 ± 0.455.8 ± 0.348.2 ± 0.539.2
MLDG59.1 ± 0.219.1 ± 0.345.8 ± 0.713.4 ± 0.359.6 ± 0.250.2 ± 0.441.2
CORAL59.2 ± 0.119.7 ± 0.246.6± 0.313.4 ± 0.459.8 ± 0.250.1 ± 0.641.5
MMD32.1 ± 13.311.0 ± 4.626.8 ± 11.38.7 ± 2.132.7 ± 13.828.9 ± 11.923.4
DANN53.1± 0.218.3 ± 0.144.2 ± 0.711.8 ± 0.155.5 ± 0.446.8 ± 0.638.3
CDANN54.6 ± 0.417.3 ± 0.143.7 ± 0.912.1 ± 0.756.2 ± 0.445.9 ± 0.538.3
MTL57.9 ± 0.518.5 ± 0.446.0 ± 0.112.5 ± 0.159.5 ± 0.349.2 ± 0.140.6
SagNet57.7 ± 0.319.0 ± 0.245.3 ± 0.312.7 ± 0.558.1 ± 0.548.8 ± 0.240.3
ARM49.7 ± 0.316.3 ± 0.540.9 ± 1.19.4 ± 0.153.4 ± 0.443.5 ± 0.435.5
VREx47.3 ± 3.516.0 ± 1.535.8 ± 4.610.9 ± 0.349.6 ± 4.942.0 ± 3.033.6
RSC55.0 ± 1.218.3 ± 0.544.4 ± 0.612.2 ± 0.255.7 ± 0.747.8 ± 0.938.9
", + "bbox": [ + 173, + 148, + 825, + 352 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "C.1.8 AVERAGES ", + "text_level": 1, + "bbox": [ + 174, + 391, + 308, + 405 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/7d3457ca1e32c8f76aa3e2a1a099eda49f55304dabe1dbd5f4289c125aa81df1.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM51.5 ± 0.198.0±0.077.5 ± 0.485.5±0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
IRM52.0 ± 0.197.7 ± 0.178.5 ± 0.583.5±0.864.3 ±2.247.6 ± 0.833.9 ±2.865.4
GroupDRO52.1 ± 0.098.0±0.076.7 ± 0.684.4 ±0.866.0± 0.743.2 ±1.133.3±0.264.8
Mixup52.1 ± 0.298.0± 0.177.4 ± 0.684.6±0.668.1± 0.347.9 ± 0.839.2 ± 0.166.7
MLDG51.5 ± 0.197.9 ± 0.077.2 ± 0.484.9 ± 1.066.8±0.647.7 ± 0.941.2 ± 0.166.7
CORAL51.5 ± 0.198.0± 0.178.8 ±0.686.2 ±0.368.7 ±0.347.6 ±1.041.5 ± 0.167.5
MMD51.5 ± 0.297.9 ± 0.077.5 ± 0.984.6± 0.566.3 ± 0.142.2 ±1.623.4 ± 9.563.3
DANN51.5 ± 0.397.8 ± 0.178.6± 0.483.6±0.465.9 ±0.646.7 ± 0.538.3 ±0.166.1
CDANN51.7 ± 0.197.9 ± 0.177.5 ± 0.182.6±0.965.8 ±1.345.8 ±1.638.3 ±0.365.6
MTL51.4 ± 0.197.9 ± 0.077.2 ± 0.484.6±0.566.4 ± 0.545.6 ±1.240.6 ± 0.166.2
SagNet51.7 ± 0.098.0±0.077.8 ± 0.586.3 ±0.268.1±0.148.6±1.040.3 ± 0.167.2
ARM56.2 ±0.298.2 ±0.177.6± 0.385.1±0.464.8±0.345.5± 0.335.5±0.266.1
VREx51.8 ± 0.197.9 ± 0.178.3 ±0.284.9±0.666.4±0.646.4±0.633.6±2.965.6
RSC51.7 ± 0.297.6 ± 0.177.1 ± 0.585.2 ±0.965.5 ± 0.946.6 ±1.038.9± 0.566.1
", + "bbox": [ + 173, + 435, + 825, + 597 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "C.2 MODEL SELECTION: LEAVE-ONE-DOMAIN-OUT CROSS-VALIDATION ", + "bbox": [ + 174, + 637, + 684, + 651 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "C.2.1 COLOREDMNIST ", + "text_level": 1, + "bbox": [ + 174, + 671, + 356, + 686 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/795dcdcf8333803ae9a01cdc83a378ccb7ca36645261c108f2c49b9f119e2d78.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm+90%+80%-90%Avg
ERM50.0 ± 0.250.1 ± 0.210.0 ± 0.036.7
IRM46.7 ± 2.451.2 ± 0.323.1 ± 10.740.3
GroupDRO50.1 ± 0.550.0 ± 0.510.2 ± 0.136.8
Mixup36.6 ± 10.953.4 ± 5.910.2 ± 0.133.4
MLDG50.1 ± 0.650.1 ± 0.310.0 ± 0.136.7
CORAL49.5 ± 0.059.5 ± 8.210.2 ± 0.139.7
MMD50.3 ± 0.250.0 ± 0.49.9 ± 0.236.8
DANN49.9 ± 0.162.1 ± 7.010.0 ± 0.140.7
CDANN63.2 ± 10.144.4 ± 4.59.9 ± 0.239.1
MTL44.3 ± 4.950.7 ± 0.010.1 ± 0.135.0
SagNet49.9 ± 0.449.7 ± 0.310.0 ± 0.136.5
ARM50.0 ± 0.350.1 ± 0.310.2 ± 0.036.8
VREx50.2 ± 0.450.5 ± 0.510.1 ± 0.036.9
RSC49.6 ± 0.349.7 ± 0.410.1 ± 0.036.5
", + "bbox": [ + 282, + 704, + 714, + 926 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "C.2.2 ROTATEDMNIST ", + "text_level": 1, + "bbox": [ + 174, + 103, + 351, + 118 + ], + "page_idx": 23 + }, + { + "type": "table", + "img_path": "images/49c452879bd5790b748dbeffcc79b23ef8c1b37b58978f645686665cf347bbbe.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm01530456075Avg
ERM95.3 ± 0.298.9 ± 0.198.9 ± 0.198.8 ± 0.198.5 ± 0.196.2 ± 0.297.7
IRM94.5 ± 0.598.2 ± 0.298.7 ± 0.196.6 ± 1.598.4 ± 0.195.8 ± 0.197.0
GroupDRO95.7 ± 0.398.7 ± 0.198.9 ± 0.198.6± 0.298.6 ± 0.295.3 ± 0.997.6
Mixup94.8 ± 0.498.8 ± 0.098.9 ± 0.199.0 ± 0.198.9 ± 0.096.4 ± 0.397.8
MLDG94.3 ± 0.498.8 ±0.199.0 ± 0.198.8 ± 0.198.8 ± 0.196.0 ± 0.397.6
CORAL95.7 ± 0.598.5 ± 0.298.9 ± 0.298.6± 0.298.8 ± 0.196.3 ± 0.297.8
MMD95.8 ± 0.298.7 ± 0.199.0 ± 0.098.8 ± 0.198.7 ± 0.196.1 ± 0.297.8
DANN95.1 ± 0.598.3 ± 0.598.5 ± 0.199.0 ± 0.198.6 ± 0.196.1 ± 0.397.6
CDANN94.3 ± 0.598.4 ± 0.398.9 ± 0.198.7 ± 0.198.9 ± 0.195.7 ± 0.497.5
MTL95.5 ± 0.398.6 ± 0.398.8 ± 0.199.0 ± 0.199.0 ± 0.195.6 ± 0.397.8
SagNet94.0 ± 1.698.7 ±0.298.9 ± 0.199.1 ± 0.098.8 ± 0.174.2 ± 16.594.0
ARM95.8 ± 0.199.0 ± 0.199.0 ± 0.098.9 ± 0.198.8 ± 0.196.9 ± 0.398.1
VREx95.8 ± 0.298.7 ± 0.098.5 ± 0.198.9 ± 0.174.0 ± 20.195.5 ± 0.593.6
RSC94.6 ± 0.098.4 ± 0.299.0 ± 0.198.9 ± 0.098.8 ± 0.195.9 ± 0.497.6
", + "bbox": [ + 173, + 147, + 825, + 354 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "C.2.3 VLCS ", + "text_level": 1, + "bbox": [ + 174, + 388, + 277, + 402 + ], + "page_idx": 23 + }, + { + "type": "table", + "img_path": "images/d687ebe242f336585a5eb79fd18b836bc728b90114f888f021f92dc526c40e6e.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmCLSVAvg
ERM98.0 ± 0.462.6 ± 0.970.8 ± 1.977.5 ± 1.977.2
IRM98.6 ± 0.366.0 ± 1.169.3 ± 0.971.5 ± 1.976.3
GroupDRO98.1 ± 0.366.4 ± 0.971.0 ± 0.376.1 ± 1.477.9
Mixup98.4 ± 0.363.4 ± 0.772.9 ± 0.876.1 ± 1.277.7
MLDG98.5 ± 0.361.7 ± 1.273.6 ± 1.875.0 ± 0.877.2
CORAL96.9 ± 0.965.7 ± 1.273.3 ± 0.778.7 ± 0.878.7
MMD98.3 ± 0.165.6 ± 0.769.7 ± 1.075.7 ± 0.977.3
DANN97.3 ± 1.363.7 ± 1.372.6 ± 1.474.2 ± 1.776.9
CDANN97.6 ± 0.663.4 ± 0.870.5 ± 1.478.6 ± 0.577.5
MTL97.6 ± 0.660.6 ± 1.371.0 ± 1.277.2 ± 0.776.6
SagNet97.3 ± 0.461.6 ± 0.873.4 ± 1.977.6 ± 0.477.5
ARM97.2 ± 0.562.7 ± 1.570.6 ± 0.675.8 ± 0.976.6
VREx96.9 ± 0.364.8 ± 2.069.7 ± 1.875.5 ± 1.776.7
RSC97.5 ± 0.663.1 ± 1.273.0 ± 1.376.2 ± 0.577.5
", + "bbox": [ + 245, + 417, + 751, + 642 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "C.2.4 PACS ", + "text_level": 1, + "bbox": [ + 173, + 674, + 274, + 689 + ], + "page_idx": 23 + }, + { + "type": "table", + "img_path": "images/2b88a1364198777f3b8bfa6b2b07d9aac25b2e33fbf5125f2782452508a0e818.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmACPSAvg
ERM83.2 ± 1.376.8 ± 1.797.2 ± 0.374.8 ± 1.383.0
IRM81.7 ± 2.477.0 ± 1.396.3 ± 0.271.1 ± 2.281.5
GroupDRO84.4 ± 0.777.3 ± 0.896.8 ± 0.875.6 ± 1.483.5
Mixup85.2 ± 1.977.0 ± 1.796.8 ± 0.873.9 ± 1.683.2
MLDG81.4 ± 3.677.9 ± 2.396.2 ± 0.376.1 ± 2.182.9
CORAL80.5± 2.874.5 ± 0.496.8 ± 0.378.6 ± 1.482.6
MMD84.9 ± 1.775.1 ± 2.096.1 ± 0.976.5 ± 1.583.2
DANN84.3 ± 2.872.4 ± 2.896.5 ± 0.870.8 ± 1.381.0
CDANN78.3 ± 2.873.8 ± 1.696.4 ± 0.566.8 ± 5.578.8
MTL85.6 ± 1.578.9 ± 0.697.1 ± 0.373.1 ± 2.783.7
SagNet81.1 ± 1.975.4 ± 1.395.7 ± 0.977.2 ± 0.682.3
ARM85.9 ± 0.373.3 ± 1.995.6 ± 0.472.1 ± 2.481.7
VREx81.6 ± 4.074.1 ± 0.396.9 ± 0.472.8 ± 2.181.3
RSC83.7 ± 1.782.9 ± 1.195.6 ± 0.768.1 ± 1.582.6
", + "bbox": [ + 246, + 704, + 750, + 926 + ], + "page_idx": 23 + }, + { + "type": "table", + "img_path": "images/cc17db6e45c55cebfe78ed7099ae50d3c1e2fc05ce5320a896417b9a16fa2716.jpg", + "table_caption": [ + "C.2.5 OFFICEHOME" + ], + "table_footnote": [], + "table_body": "
AlgorithmACPRAvg
ERM61.1 ± 0.950.7 ± 0.674.6 ± 0.376.4 ± 0.665.7
IRM58.2 ±1.251.6 ± 1.273.3 ± 2.274.1 ± 1.764.3
GroupDRO59.9 ± 0.451.0 ± 0.473.7 ± 0.376.0 ± 0.265.2
Mixup61.4 ± 0.553.0 ± 0.375.8 ± 0.277.7 ± 0.367.0
MLDG60.5 ± 1.451.9 ± 0.274.4 ± 0.677.6 ± 0.466.1
CORAL64.5 ± 0.854.8 ± 0.276.6 ± 0.378.1 ± 0.268.5
MMD60.8 ± 0.753.7 ± 0.550.2 ± 19.976.0 ± 0.760.2
DANN60.2 ± 1.352.2 ± 0.971.3 ± 2.076.0 ± 0.664.9
CDANN58.7 ± 2.949.0 ± 2.173.6 ± 1.076.0 ± 1.164.3
MTL59.1 ± 0.352.1 ± 1.274.7 ± 0.477.0 ± 0.665.7
SagNet63.0 ± 0.854.0 ± 0.376.6 ± 0.376.8 ± 0.467.6
ARM58.7 ± 0.849.8 ± 1.173.1 ± 0.575.9 ± 0.164.4
VREx57.6 ± 3.451.3 ± 1.374.9 ± 0.275.8 ± 0.764.9
RSC61.6 ± 1.051.1 ± 0.874.8 ± 1.175.7 ± 0.965.8
", + "bbox": [ + 241, + 133, + 754, + 357 + ], + "page_idx": 24 + }, + { + "type": "table", + "img_path": "images/8aa9c3829c5936bb50b6038f2621223677e132bf28288b6b142b7fd1d59742cd.jpg", + "table_caption": [ + "C.2.6 TERRAINCOGNITA " + ], + "table_footnote": [], + "table_body": "
AlgorithmL100L38L43L46Avg
ERM34.4 ± 5.638.1 ± 4.055.7 ± 1.037.4 ± 1.141.4
IRM46.7 ± 1.840.9 ± 2.152.2 ± 3.324.9 ± 10.041.2
GroupDRO45.2 ± 6.240.1 ± 2.055.8 ± 1.438.3 ± 4.244.9
Mixup59.7 ± 1.541.3 ± 2.155.9 ± 0.837.9 ± 1.548.7
MLDG51.0 ± 1.939.2 ± 0.256.2 ± 1.138.3 ± 2.446.2
CORAL52.4± 7.239.7 ± 1.556.1 ± 0.937.1 ± 2.246.3
MMD49.1 ± 2.242.0 ± 1.655.3 ± 1.939.5 ± 2.046.5
DANN46.9 ± 3.938.8 ±1.155.5 ± 1.436.2 ± 1.144.4
CDANN43.9 ± 7.332.5 ± 4.441.0 ± 7.842.4 ± 1.839.9
MTL42.8 ± 4.643.9 ± 1.155.5 ± 0.837.5 ± 1.944.9
SagNet48.1 ± 2.447.1 ± 0.854.4 ± 1.139.1 ± 1.847.2
ARM48.9 ± 5.334.4 ± 3.551.9 ± 0.835.4 ± 2.342.6
VREx46.4 ± 1.425.5 ± 5.839.6 ± 12.837.8 ± 3.637.3
RSC40.0 ± 1.332.1 ± 2.553.9 ± 0.534.2 ± 0.240.0
", + "bbox": [ + 238, + 421, + 758, + 645 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "C.2.7 DOMAINNET ", + "text_level": 1, + "bbox": [ + 174, + 679, + 323, + 694 + ], + "page_idx": 24 + }, + { + "type": "table", + "img_path": "images/8b932c06e524be086905dce2ce843484018ae33ac2d617171072e42976aba107.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.1 ± 0.317.8 ± 0.347.0 ± 0.312.2 ± 0.459.2 ± 0.749.5 ± 0.640.6
IRM47.5 ± 2.715.0 ± 1.537.3 ± 5.110.9 ± 0.548.0 ± 5.442.3 ± 3.133.5
GroupDRO47.2 ± 0.517.0 ± 0.633.8 ± 0.59.2 ± 0.451.6 ± 0.439.2 ± 1.233.0
Mixup54.4 ± 0.618.0 ± 0.444.5 ± 0.511.5 ± 0.255.8 ± 1.146.9 ± 0.238.5
MLDG58.3 ± 0.719.3 ± 0.245.8 ± 0.713.2 ± 0.359.4 ± 0.249.8 ± 0.341.0
CORAL59.2 ± 0.119.5 ± 0.346.2 ± 0.113.4 ± 0.459.1 ± 0.549.5 ± 0.841.1
MMD32.2 ± 13.311.0 ± 4.626.8 ± 11.38.7 ± 2.132.7 ± 13.828.9 ± 11.923.4
DANN52.7 ± 0.118.0 ± 0.344.2 ± 0.711.8 ± 0.155.5 ± 0.446.8 ± 0.638.2
CDANN53.1 ± 0.917.3 ± 0.143.7 ± 0.911.6 ± 0.656.2 ± 0.445.9 ± 0.538.0
MTL57.3 ± 0.319.3 ± 0.245.7 ± 0.412.5 ± 0.159.3 ± 0.249.2 ± 0.140.6
SagNet56.2 ± 0.318.9 ± 0.246.2 ± 0.512.6 ± 0.658.2 ± 0.649.1 ± 0.240.2
ARM49.0 ± 0.715.8 ± 0.340.8 ± 1.19.4 ± 0.253.0 ± 0.443.4 ± 0.335.2
VREx46.5 ± 4.115.6 ± 1.835.8 ± 4.610.9 ± 0.349.6 ± 4.942.0 ± 3.033.4
RSC55.0 ± 1.218.3 ± 0.544.4 ± 0.612.2 ± 0.255.7 ± 0.747.8 ± 0.938.9
", + "bbox": [ + 173, + 723, + 825, + 926 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "C.2.8 AVERAGES ", + "text_level": 1, + "bbox": [ + 174, + 103, + 308, + 117 + ], + "page_idx": 25 + }, + { + "type": "table", + "img_path": "images/f07a1ef753111a6720546b65ba84b34a4240db479bd6d1304bbc1df482fa438a.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM36.7 ± 0.197.7 ± 0.077.2 ± 0.483.0±0.765.7±0.541.4 ± 1.440.6±0.263.2
IRM40.3± 4.297.0± 0.276.3 ± 0.681.5 ± 0.864.3 ± 1.541.2 ± 3.633.5 ± 3.062.0
GroupDRO36.8 ± 0.197.6 ± 0.177.9 ± 0.583.5± 0.265.2 ± 0.244.9 ± 1.433.0±0.362.7
Mixup33.4 ± 4.797.8 ± 0.077.7 ± 0.683.2 ± 0.467.0±0.248.7 ± 0.438.5 ± 0.363.8
MLDG36.7 ±0.297.6± 0.077.2 ± 0.982.9 ±1.766.1± 0.546.2 ± 0.941.0 ± 0.264.0
CORAL39.7 ± 2.897.8 ± 0.178.7 ± 0.482.6±0.568.5±0.246.3 ± 1.741.1 ± 0.165.0
MMD36.8 ±0.197.8 ± 0.177.3 ± 0.583.2±0.260.2±5.246.5 ± 1.523.4± 9.560.7
DANN40.7 ±2.397.6± 0.276.9 ± 0.481.0 ±1.164.9 ±1.244.4 ± 1.138.2±0.263.4
CDANN39.1 ± 4.497.5 ± 0.277.5 ± 0.278.8±2.264.3 ±1.739.9 ±3.238.0±0.162.2
MTL35.0 ±1.797.8 ± 0.176.6± 0.583.7 ±0.465.7 ± 0.544.9 ± 1.240.6 ±0.163.5
SagNet36.5 ± 0.194.0±3.077.5 ± 0.382.3 ±0.167.6± 0.347.2 ± 0.940.2 ±0.263.6
ARM36.8 ±0.098.1± 0.176.6± 0.581.7 ±0.264.4±0.242.6 ± 2.735.2 ±0.162.2
VREx36.9 ± 0.393.6±3.476.7 ± 1.081.3 ± 0.964.9 ±1.337.3 ±3.033.4 ±3.160.6
RSC36.5± 0.297.6 ± 0.177.5 ± 0.582.6±0.765.8±0.740.0±0.838.9 ±0.562.7
", + "bbox": [ + 173, + 147, + 825, + 308 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "C.3 MODEL SELECTION: TEST-DOMAIN VALIDATION SET (ORACLE) ", + "bbox": [ + 174, + 347, + 653, + 359 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "C.3.1 COLOREDMNIST ", + "text_level": 1, + "bbox": [ + 174, + 380, + 356, + 395 + ], + "page_idx": 25 + }, + { + "type": "table", + "img_path": "images/683e0e70fcaf68a6555a6bc63671dabe65b336f939a4076e7fe8112daecb246d.jpg", + "table_caption": [ + "C.3.2 ROTATEDMNIST " + ], + "table_footnote": [], + "table_body": "
Algorithm+90%+80%-90%Avg
ERM71.8 ± 0.472.9 ± 0.128.7 ± 0.557.8
IRM72.0 ± 0.172.5 ± 0.358.5 ± 3.367.7
GroupDRO73.5 ± 0.373.0 ± 0.336.8 ± 2.861.1
Mixup72.5 ± 0.273.9 ± 0.428.6 ± 0.258.4
MLDG71.9 ± 0.373.5 ± 0.229.1 ± 0.958.2
CORAL71.1 ± 0.273.4 ± 0.231.1 ± 1.658.6
MMD69.0 ± 2.370.4 ±1.650.6 ± 0.263.3
DANN72.4 ± 0.573.9 ± 0.524.9 ± 2.757.0
CDANN71.8 ± 0.572.9 ± 0.133.8 ± 6.459.5
MTL71.2 ± 0.273.5 ± 0.228.0 ±0.657.6
SagNet72.1 ± 0.373.2 ± 0.329.4 ± 0.558.2
ARM84.9 ± 0.976.8 ± 0.627.9 ± 2.163.2
VREx72.8 ± 0.373.0 ± 0.355.2 ± 4.067.0
RSC72.0 ± 0.173.2 ± 0.130.2 ± 1.658.5
", + "bbox": [ + 290, + 410, + 707, + 633 + ], + "page_idx": 25 + }, + { + "type": "table", + "img_path": "images/0120a81fef26784e00e1df4268bd3bbdc5eddad2b4cb84b865458f75af293dde.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm01530456075Avg
ERM95.3 ± 0.298.7 ± 0.198.9 ± 0.198.7 ± 0.298.9 ± 0.096.2 ± 0.297.8
IRM94.9 ± 0.698.7 ± 0.298.6 ± 0.198.6 ±0.298.7 ± 0.195.2 ± 0.397.5
GroupDRO95.9 ± 0.199.0 ± 0.198.9 ± 0.198.8 ± 0.198.6 ± 0.196.3 ± 0.497.9
Mixup95.8 ± 0.398.7 ± 0.099.0 ± 0.198.8 ± 0.198.8 ± 0.196.6 ± 0.298.0
MLDG95.7 ± 0.298.9 ± 0.198.8 ± 0.198.9 ± 0.198.6 ± 0.195.8 ± 0.497.8
CORAL96.2 ± 0.298.8 ± 0.198.8 ± 0.198.8 ± 0.198.9 ± 0.196.4 ± 0.298.0
MMD96.1 ± 0.298.9 ± 0.099.0 ± 0.098.8 ± 0.098.9 ± 0.096.4 ± 0.298.0
DANN95.9 ± 0.198.9 ± 0.198.6 ± 0.298.7 ± 0.198.9 ± 0.096.3 ± 0.397.9
CDANN95.9 ± 0.298.8 ± 0.098.7 ± 0.198.9 ± 0.198.8 ± 0.196.1 ± 0.397.9
MTL96.1 ± 0.298.9 ± 0.099.0 ± 0.098.7 ± 0.199.0 ± 0.095.8 ± 0.397.9
SagNet95.9 ± 0.199.0 ± 0.198.9 ± 0.198.6 ± 0.198.8 ± 0.196.3 ± 0.197.9
ARM95.9 ± 0.499.0 ± 0.198.8 ± 0.198.9 ± 0.199.1 ± 0.196.7 ± 0.298.1
VREx95.5 ± 0.299.0 ± 0.098.7 ± 0.298.8 ±0.198.8 ± 0.096.4 ± 0.097.9
RSC95.4 ± 0.198.6 ± 0.198.6 ± 0.198.9 ± 0.098.8 ± 0.195.4 ± 0.397.6
", + "bbox": [ + 173, + 713, + 825, + 926 + ], + "page_idx": 25 + }, + { + "type": "table", + "img_path": "images/e09a23fc758c95ed3e528b354b69902c988fc290fdd3421b469ffd37c3176c73.jpg", + "table_caption": [ + "C.3.3 VLCS " + ], + "table_footnote": [], + "table_body": "
AlgorithmCLSVAvg
ERM97.6 ± 0.367.9 ± 0.770.9 ± 0.274.0 ± 0.677.6
IRM97.3 ± 0.266.7 ± 0.171.0 ± 2.372.8 ± 0.476.9
GroupDRO97.7 ± 0.265.9 ± 0.272.8 ± 0.873.4 ± 1.377.4
Mixup97.8 ± 0.467.2 ± 0.471.5 ± 0.275.7 ± 0.678.1
MLDG97.1 ± 0.566.6 ± 0.571.5 ± 0.175.0 ± 0.977.5
CORAL97.3 ± 0.267.5 ± 0.671.6 ± 0.674.5 ± 0.077.7
MMD98.8 ± 0.066.4 ± 0.470.8 ± 0.575.6 ± 0.477.9
DANN99.0 ± 0.266.3 ± 1.273.4 ± 1.480.1 ± 0.579.7
CDANN98.2 ± 0.168.8 ± 0.574.3 ± 0.678.1 ± 0.579.9
MTL97.9 ± 0.766.1 ± 0.772.0 ± 0.474.9 ± 1.177.7
SagNet97.4 ± 0.366.4 ± 0.471.6 ± 0.175.0 ± 0.877.6
ARM97.6 ± 0.666.5 ± 0.372.7 ± 0.674.4 ± 0.777.8
VREx98.4 ± 0.266.4 ± 0.772.8 ± 0.175.0 ± 1.478.1
RSC98.0 ± 0.467.2 ± 0.370.3 ± 1.375.6 ± 0.477.8
", + "bbox": [ + 245, + 133, + 751, + 356 + ], + "page_idx": 26 + }, + { + "type": "table", + "img_path": "images/0b3f38ed22131c2c84f068f99124fb6b96ed3a2deb910e8285ba4fb5105924d1.jpg", + "table_caption": [ + "C.3.4 PACS " + ], + "table_footnote": [], + "table_body": "
AlgorithmACPSAvg
ERM86.5 ± 1.081.3 ± 0.696.2 ± 0.382.7 ± 1.186.7
IRM84.2 ± 0.979.7 ± 1.595.9 ± 0.478.3 ± 2.184.5
GroupDRO87.5 ± 0.582.9 ± 0.697.1 ± 0.381.1 ± 1.287.1
Mixup87.5 ± 0.481.6 ± 0.797.4 ± 0.280.8 ± 0.986.8
MLDG87.0 ± 1.282.5 ± 0.996.7 ± 0.381.2 ± 0.686.8
CORAL86.6 ± 0.881.8 ± 0.997.1 ± 0.582.7 ± 0.687.1
MMD88.1 ± 0.882.6 ± 0.797.1 ± 0.581.2 ± 1.287.2
DANN87.0 ± 0.480.3 ± 0.696.8 ± 0.376.9 ± 1.185.2
CDANN87.7 ± 0.680.7 ± 1.297.3 ± 0.477.6 ± 1.585.8
MTL87.0 ± 0.282.7 ± 0.896.5 ± 0.780.5 ± 0.886.7
SagNet87.4 ± 0.581.2 ± 1.296.3 ± 0.880.7 ± 1.186.4
ARM85.0 ± 1.281.4 ± 0.295.9 ± 0.380.9 ± 0.585.8
VREx87.8 ± 1.281.8 ± 0.797.4 ± 0.282.1 ± 0.787.2
RSC86.0 ± 0.781.8 ± 0.996.8 ± 0.780.4 ± 0.586.2
", + "bbox": [ + 245, + 419, + 751, + 642 + ], + "page_idx": 26 + }, + { + "type": "table", + "img_path": "images/922a0607fde24e03492675346a1e9084e75b1a41ab10fa265fad9a0cd87b4ba0.jpg", + "table_caption": [ + "C.3.5 OFFICEHOME " + ], + "table_footnote": [], + "table_body": "
AlgorithmACPRAvg
ERM61.7 ± 0.753.4 ± 0.374.1 ± 0.476.2 ± 0.666.4
IRM56.4 ± 3.251.2 ± 2.371.7 ± 2.772.7 ± 2.763.0
GroupDRO60.5 ± 1.653.1 ± 0.375.5 ± 0.375.9 ± 0.766.2
Mixup63.5 ± 0.254.6 ± 0.476.0 ± 0.378.0 ± 0.768.0
MLDG60.5 ± 0.754.2 ± 0.575.0 ± 0.276.7 ± 0.566.6
CORAL64.8 ± 0.854.1 ± 0.976.5 ± 0.478.2 ± 0.468.4
MMD60.4 ± 1.053.4 ± 0.574.9 ± 0.176.1 ± 0.766.2
DANN60.6 ± 1.451.8 ± 0.773.4 ± 0.575.5 ± 0.965.3
CDANN57.9 ± 0.252.1 ± 1.274.9 ± 0.776.2 ± 0.265.3
MTL60.7 ± 0.853.5 ± 1.375.2 ± 0.676.6 ± 0.666.5
SagNet62.7 ± 0.553.6 ± 0.576.0 ± 0.377.8 ± 0.167.5
ARM58.8 ± 0.551.8 ± 0.774.0 ± 0.174.4 ± 0.264.8
VREx59.6 ± 1.053.3 ± 0.373.2 ± 0.576.6 ± 0.465.7
RSC61.7 ± 0.853.0 ± 0.974.8 ± 0.876.3 ± 0.566.5
", + "bbox": [ + 246, + 704, + 750, + 926 + ], + "page_idx": 26 + }, + { + "type": "table", + "img_path": "images/c1e2c84cf16bd15118a7bc65114442035ee17cf70d4f0e2ecf4314aef226dec0.jpg", + "table_caption": [ + "C.3.6 TERRAINCOGNITA " + ], + "table_footnote": [], + "table_body": "
AlgorithmL100L38L43L46Avg
ERM59.4 ± 0.949.3 ± 0.660.1 ± 1.143.2 ± 0.553.0
IRM56.5 ± 2.549.8 ± 1.557.1 ± 2.238.6 ± 1.050.5
GroupDRO60.4 ± 1.548.3 ± 0.458.6 ± 0.842.2 ± 0.852.4
Mixup67.6 ± 1.851.0 ± 1.359.0 ± 0.040.0 ± 1.154.4
MLDG59.2 ± 0.149.0 ± 0.958.4 ± 0.941.4 ± 1.052.0
CORAL60.4 ± 0.947.2 ± 0.559.3 ± 0.444.4 ± 0.452.8
MMD60.6 ± 1.145.9 ± 0.357.8 ± 0.543.8 ±1.252.0
DANN55.2 ± 1.947.0 ± 0.757.2 ± 0.942.9 ± 0.950.6
CDANN56.3 ± 2.047.1 ± 0.957.2 ± 1.142.4 ± 0.850.8
MTL58.4 ± 2.148.4 ± 0.858.9 ± 0.643.0 ± 1.352.2
SagNet56.4 ± 1.950.5 ± 2.359.1 ± 0.544.1 ± 0.652.5
ARM60.1 ± 1.548.3 ± 1.655.3 ± 0.640.9 ± 1.151.2
VREx56.8 ± 1.746.5 ± 0.558.4 ± 0.343.8 ± 0.351.4
RSC59.9 ± 1.446.7 ± 0.457.8 ± 0.544.3 ± 0.652.1
", + "bbox": [ + 246, + 140, + 751, + 363 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "C.3.7 DOMAINNET ", + "text_level": 1, + "bbox": [ + 174, + 412, + 323, + 428 + ], + "page_idx": 27 + }, + { + "type": "table", + "img_path": "images/0f8472c0204af51b88c38b0dbf2cb08deeb15fdd93def2900905e3ae51335355.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.6 ± 0.319.2 ± 0.247.0 ± 0.313.2 ± 0.259.9 ± 0.349.8 ± 0.441.3
IRM40.4 ± 6.612.1 ± 2.731.4 ± 5.79.8 ±1.237.7 ± 9.036.7 ± 5.328.0
GroupDRO47.2 ± 0.517.5 ± 0.434.2 ± 0.39.2 ± 0.451.9 ± 0.540.1 ± 0.633.4
Mixup55.6 ± 0.118.7 ± 0.445.1 ± 0.512.8 ± 0.357.6± 0.548.2 ± 0.439.6
MLDG59.3 ± 0.119.6 ± 0.246.8± 0.213.4±0.260.1 ± 0.450.4 ± 0.341.6
CORAL59.2 ± 0.119.9 ± 0.247.4 ± 0.214.0 ± 0.459.8 ± 0.250.4 ± 0.441.8
MMD32.2 ±13.311.2 ± 4.526.8 ± 11.38.8±2.232.7 ± 13.829.0 ± 11.823.5
DANN53.1 ± 0.218.3 ± 0.144.2 ± 0.711.9 ± 0.155.5± 0.446.8 ± 0.638.3
CDANN54.6 ± 0.417.3 ± 0.144.2 ± 0.712.8 ± 0.256.2 ± 0.445.9 ± 0.538.5
MTL58.0± 0.419.2 ± 0.246.2 ± 0.112.7 ± 0.259.9 ± 0.149.0 ± 0.040.8
SagNet57.7 ± 0.319.1 ± 0.146.3 ± 0.513.5 ± 0.458.9 ± 0.449.5 ± 0.240.8
ARM49.6 ± 0.416.5 ± 0.341.5 ± 0.810.8 ± 0.153.5 ± 0.343.9 ± 0.436.0
VREx43.3 ± 4.514.1 ± 1.832.5 ± 5.09.8 ± 1.143.5 ± 5.637.7 ± 4.530.1
RSC55.0 ±1.218.3 ± 0.544.4 ± 0.612.5 ± 0.155.7 ± 0.747.8 ± 0.938.9
", + "bbox": [ + 173, + 463, + 825, + 666 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "C.3.8 AVERAGES ", + "text_level": 1, + "bbox": [ + 174, + 717, + 308, + 731 + ], + "page_idx": 27 + }, + { + "type": "table", + "img_path": "images/77eaeaddb0bb3b9496d55dd75803c2f8b65be4eadb418ecbd5f3b48aedcb8dbe.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM57.8 ± 0.297.8 ± 0.177.6± 0.386.7±0.366.4 ± 0.553.0±0.341.3 ± 0.168.7
IRM67.7 ± 1.297.5 ± 0.276.9 ±0.684.5 ±1.163.0±2.750.5± 0.728.0±5.166.9
GroupDRO61.1 ± 0.997.9 ± 0.177.4 ± 0.587.1 ± 0.166.2 ±0.652.4 ± 0.133.4±0.367.9
Mixup58.4±0.298.0±0.178.1 ±0.386.8 ±0.368.0±0.254.4 ± 0.339.6 ±0.169.0
MLDG58.2 ± 0.497.8 ± 0.177.5 ± 0.186.8 ±0.466.6± 0.352.0 ± 0.141.6 ± 0.168.7
CORAL58.6± 0.598.0±0.077.7 ± 0.287.1 ± 0.568.4±0.252.8±0.241.8 ± 0.169.2
MMD63.3 ± 1.398.0± 0.177.9 ± 0.187.2 ± 0.166.2 ±0.352.0 ±0.423.5±9.466.9
DANN57.0 ± 1.097.9 ± 0.179.7 ± 0.585.2 ±0.265.3 ±0.850.6 ± 0.438.3 ±0.167.7
CDANN59.5± 2.097.9 ± 0.079.9 ± 0.285.8 ±0.865.3 ± 0.550.8±0.638.5±0.268.2
MTL57.6 ± 0.397.9 ± 0.177.7 ± 0.586.7 ±0.266.5 ± 0.452.2 ±0.440.8 ± 0.168.5
SagNet58.2±0.397.9 ± 0.077.6 ± 0.186.4±0.467.5 ± 0.252.5 ± 0.440.8 ± 0.268.7
ARM63.2 ±0.798.1 ± 0.177.8 ±0.385.8±0.264.8 ±0.451.2 ± 0.536.0±0.268.1
VREx67.0 ±1.397.9 ± 0.178.1 ±0.287.2 ±0.665.7 ± 0.351.4 ± 0.530.1 ±3.768.2
RSC58.5± 0.597.6 ± 0.177.8 ±0.686.2 ±0.566.5 ±0.652.1 ±0.238.9±0.668.2
", + "bbox": [ + 173, + 766, + 825, + 926 + ], + "page_idx": 27 + }, + { + "type": "table", + "img_path": "images/b55d1fd4d81a302f4b4acb319702a34dc996eec6a09064cf816cd47bf8400ff1.jpg", + "table_caption": [ + "C.4 RESULTS OF A LARGER PACS SWEEP WITH 100 HYPERPARAMETER TRIALS " + ], + "table_footnote": [], + "table_body": "
ERM, model selection:ACPSAvg
training-domain86.6±0.879.7± 0.696.6± 0.477.8± 0.885.2
leave-one-out-domain86.4 ± 1.178.2 ± 1.096.8± 0.276.0 ± 2.184.4
test-domain (oracle)89.3 ± 0.382.2 ± 0.597.6 ± 0.282.7 ± 1.188.0
", + "bbox": [ + 205, + 127, + 792, + 212 + ], + "page_idx": 28 + } +] \ No newline at end of file diff --git a/parse/train/lQdXeXDoWtI/lQdXeXDoWtI_model.json b/parse/train/lQdXeXDoWtI/lQdXeXDoWtI_model.json new file mode 100644 index 0000000000000000000000000000000000000000..7f5991ff01c2f061017804db931e3f9656237035 --- /dev/null +++ b/parse/train/lQdXeXDoWtI/lQdXeXDoWtI_model.json @@ -0,0 +1,22328 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 566, + 1303, + 566, + 1303, + 1052, + 398, + 1052 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1188, + 1405, + 1188, + 1405, + 1583, + 297, + 1583 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1600, + 1404, + 1600, + 1404, + 1844, + 298, + 1844 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1861, + 1403, + 1861, + 1403, + 1953, + 299, + 1953 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 313, + 321, + 601, + 321, + 601, + 414, + 313, + 414 + ], + "score": 0.939 + }, + { + "category_id": 2, + "poly": [ + 297, + 1978, + 1406, + 1978, + 1406, + 2034, + 297, + 2034 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 299, + 218, + 1288, + 218, + 1288, + 270, + 299, + 270 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 302, + 1116, + 572, + 1116, + 572, + 1151, + 302, + 1151 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.871 + }, + { + "category_id": 0, + "poly": [ + 772, + 495, + 927, + 495, + 927, + 528, + 772, + 528 + ], + "score": 0.847 + }, + { + "category_id": 1, + "poly": [ + 879, + 320, + 1134, + 320, + 1134, + 413, + 879, + 413 + ], + "score": 0.777 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 856, + 2088, + 856, + 2112, + 840, + 2112 + ], + "score": 0.748 + }, + { + "category_id": 13, + "poly": [ + 473, + 1663, + 534, + 1663, + 534, + 1693, + 473, + 1693 + ], + "score": 0.37, + "latex": "( D G )" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2010.0, + 328.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 217.0, + 1296.0, + 217.0, + 1296.0, + 276.0, + 294.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1113.0, + 579.0, + 1113.0, + 579.0, + 1160.0, + 293.0, + 1160.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": [ + 769.0, + 494.0, + 932.0, + 494.0, + 932.0, + 531.0, + 769.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 859.0, + 2087.0, + 859.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 563.0, + 1305.0, + 563.0, + 1305.0, + 602.0, + 393.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 594.0, + 1305.0, + 594.0, + 1305.0, + 633.0, + 393.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 628.0, + 1306.0, + 628.0, + 1306.0, + 661.0, + 395.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 658.0, + 1305.0, + 658.0, + 1305.0, + 692.0, + 394.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 688.0, + 1305.0, + 688.0, + 1305.0, + 723.0, + 392.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 719.0, + 1305.0, + 719.0, + 1305.0, + 752.0, + 393.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 749.0, + 1306.0, + 749.0, + 1306.0, + 782.0, + 393.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 779.0, + 1306.0, + 779.0, + 1306.0, + 815.0, + 393.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 810.0, + 1306.0, + 810.0, + 1306.0, + 843.0, + 394.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 838.0, + 1307.0, + 838.0, + 1307.0, + 875.0, + 393.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 869.0, + 1305.0, + 869.0, + 1305.0, + 905.0, + 393.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 901.0, + 1306.0, + 901.0, + 1306.0, + 934.0, + 394.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 931.0, + 1306.0, + 931.0, + 1306.0, + 965.0, + 395.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 964.0, + 1306.0, + 964.0, + 1306.0, + 994.0, + 396.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 993.0, + 1306.0, + 993.0, + 1306.0, + 1027.0, + 395.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1026.0, + 890.0, + 1026.0, + 890.0, + 1056.0, + 395.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1187.0, + 1403.0, + 1187.0, + 1403.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1217.0, + 1406.0, + 1217.0, + 1406.0, + 1251.0, + 292.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 1405.0, + 1248.0, + 1405.0, + 1284.0, + 295.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1280.0, + 1403.0, + 1280.0, + 1403.0, + 1312.0, + 296.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1309.0, + 1406.0, + 1309.0, + 1406.0, + 1342.0, + 295.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1339.0, + 1405.0, + 1339.0, + 1405.0, + 1374.0, + 292.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1370.0, + 1407.0, + 1370.0, + 1407.0, + 1402.0, + 295.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1401.0, + 1406.0, + 1401.0, + 1406.0, + 1433.0, + 296.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1434.0, + 1407.0, + 1434.0, + 1407.0, + 1463.0, + 296.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1463.0, + 1405.0, + 1463.0, + 1405.0, + 1495.0, + 296.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1492.0, + 1406.0, + 1492.0, + 1406.0, + 1525.0, + 296.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1520.0, + 1405.0, + 1520.0, + 1405.0, + 1556.0, + 295.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 779.0, + 1553.0, + 779.0, + 1587.0, + 294.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1600.0, + 1404.0, + 1600.0, + 1404.0, + 1634.0, + 294.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1631.0, + 1404.0, + 1631.0, + 1404.0, + 1661.0, + 296.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 472.0, + 1662.0, + 472.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1662.0, + 1404.0, + 1662.0, + 1404.0, + 1696.0, + 535.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1693.0, + 1401.0, + 1693.0, + 1401.0, + 1723.0, + 296.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1721.0, + 1404.0, + 1721.0, + 1404.0, + 1757.0, + 293.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1754.0, + 1404.0, + 1754.0, + 1404.0, + 1784.0, + 296.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1782.0, + 1405.0, + 1782.0, + 1405.0, + 1818.0, + 293.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1815.0, + 733.0, + 1815.0, + 733.0, + 1845.0, + 297.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1859.0, + 1404.0, + 1859.0, + 1404.0, + 1895.0, + 293.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1891.0, + 1404.0, + 1891.0, + 1404.0, + 1926.0, + 294.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1923.0, + 1403.0, + 1923.0, + 1403.0, + 1956.0, + 295.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 319.0, + 534.0, + 319.0, + 534.0, + 354.0, + 311.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 348.0, + 539.0, + 348.0, + 539.0, + 388.0, + 311.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 383.0, + 605.0, + 383.0, + 605.0, + 418.0, + 313.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 318.0, + 1089.0, + 318.0, + 1089.0, + 356.0, + 876.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 351.0, + 1138.0, + 351.0, + 1138.0, + 384.0, + 877.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 381.0, + 1054.0, + 381.0, + 1054.0, + 416.0, + 877.0, + 416.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 316, + 321, + 1383, + 321, + 1383, + 942, + 316, + 942 + ], + "score": 0.984, + "html": "
Dataset /algorithmDG accuracy per test domainAverage
Rotated MNIST (full)15°30°45°60°75°
DIVA (Ilse et al., 2019)95.398.798.798.497.794.597.2
Our ERM95.998.998.898.998.996.498.0
VLCSCLSV
G2DM (Albuquerque et al., 2019)95.567.669.471.175.9
Our ERM97.764.373.474.677.5
PACSACPS
RSC (Huang et al., 2020)87.982.197.983.487.8
Our ERM84.780.897.279.385.5
OfficeHomeACPR
DDAIG (Zhou et al., 2020)59.252.374.676.065.5
Our ERM61.352.475.876.666.5
All datasets
Best SOTA competitor Our ERM81.6 81.9
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1619, + 1405, + 1619, + 1405, + 1805, + 298, + 1805 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1819, + 1404, + 1819, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1027, + 1403, + 1027, + 1403, + 1151, + 300, + 1151 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 322, + 1210, + 1381, + 1210, + 1381, + 1304, + 322, + 1304 + ], + "score": 0.966 + }, + { + "category_id": 6, + "poly": [ + 298, + 249, + 1397, + 249, + 1397, + 312, + 298, + 312 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 337, + 1329, + 1378, + 1329, + 1378, + 1537, + 337, + 1537 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.714 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.178 + }, + { + "category_id": 13, + "poly": [ + 1356, + 1089, + 1402, + 1089, + 1402, + 1117, + 1356, + 1117 + ], + "score": 0.34, + "latex": "_ { D G }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 246.0, + 1402.0, + 246.0, + 1402.0, + 286.0, + 294.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 279.0, + 1017.0, + 279.0, + 1017.0, + 315.0, + 293.0, + 315.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, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1621.0, + 1403.0, + 1621.0, + 1403.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 1407.0, + 1652.0, + 1407.0, + 1686.0, + 293.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1679.0, + 1408.0, + 1679.0, + 1408.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1712.0, + 1406.0, + 1712.0, + 1406.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1744.0, + 1405.0, + 1744.0, + 1405.0, + 1776.0, + 296.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1776.0, + 687.0, + 1776.0, + 687.0, + 1804.0, + 297.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1852.0, + 1405.0, + 1852.0, + 1405.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1879.0, + 1408.0, + 1879.0, + 1408.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1155.0, + 2001.0, + 1155.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1026.0, + 1407.0, + 1026.0, + 1407.0, + 1065.0, + 294.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 1407.0, + 1057.0, + 1407.0, + 1094.0, + 294.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1090.0, + 1355.0, + 1090.0, + 1355.0, + 1123.0, + 295.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1119.0, + 1011.0, + 1119.0, + 1011.0, + 1155.0, + 295.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1206.0, + 1383.0, + 1206.0, + 1383.0, + 1249.0, + 318.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1240.0, + 1380.0, + 1240.0, + 1380.0, + 1278.0, + 320.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1270.0, + 719.0, + 1270.0, + 719.0, + 1308.0, + 320.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1327.0, + 1380.0, + 1327.0, + 1380.0, + 1364.0, + 345.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1361.0, + 1321.0, + 1361.0, + 1321.0, + 1394.0, + 359.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1397.0, + 1381.0, + 1397.0, + 1381.0, + 1439.0, + 352.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1432.0, + 1113.0, + 1432.0, + 1113.0, + 1469.0, + 357.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1470.0, + 1379.0, + 1470.0, + 1379.0, + 1510.0, + 345.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1503.0, + 1206.0, + 1503.0, + 1206.0, + 1539.0, + 357.0, + 1539.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 430, + 297, + 1269, + 297, + 1269, + 653, + 430, + 653 + ], + "score": 0.984, + "html": "
SetupTraining inputsTest inputs
Generative learningU1D
Unsupervised learningU1U1
Supervised learningL1U1
Semi-supervised learningL1,U1 L1U1
Multitask learningLdtrU1, ..,Udtr
Continual (or lifelong) learningL8U1 ....,U8
Domain adaptationL1 Ldtr,Udtr+1Udtr+1
Transfer learningU1 ,Udtr,Ldtr+1Udtr+1
Domain generalizationL1.,...,LdtrUdtr+1
" + }, + { + "category_id": 1, + "poly": [ + 297, + 816, + 1405, + 816, + 1405, + 1101, + 297, + 1101 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1436, + 1404, + 1436, + 1404, + 1713, + 298, + 1713 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1112, + 1404, + 1112, + 1404, + 1423, + 297, + 1423 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1405, + 1850, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 297, + 742, + 990, + 742, + 990, + 776, + 297, + 776 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 1775, + 1165, + 1775, + 1165, + 1807, + 300, + 1807 + ], + "score": 0.89 + }, + { + "category_id": 6, + "poly": [ + 294, + 252, + 1401, + 252, + 1401, + 287, + 294, + 287 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.62 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.416 + }, + { + "category_id": 13, + "poly": [ + 988, + 850, + 1106, + 850, + 1106, + 882, + 988, + 882 + ], + "score": 0.94, + "latex": "{ \\hat { y } } = f ( x )" + }, + { + "category_id": 13, + "poly": [ + 991, + 1205, + 1121, + 1205, + 1121, + 1241, + 991, + 1241 + ], + "score": 0.93, + "latex": "P ( X ^ { d } , Y ^ { d } )" + }, + { + "category_id": 13, + "poly": [ + 669, + 971, + 772, + 971, + 772, + 1005, + 669, + 1005 + ], + "score": 0.93, + "latex": "P ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 1157, + 1171, + 1400, + 1171, + 1400, + 1208, + 1157, + 1208 + ], + "score": 0.93, + "latex": "D ^ { d } = \\{ ( x _ { i } ^ { d } , y _ { i } ^ { d } ) \\} _ { d = 1 } ^ { n _ { d } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 940, + 507, + 940, + 507, + 974, + 298, + 974 + ], + "score": 0.92, + "latex": "D = \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1238, + 484, + 1238, + 484, + 1272, + 298, + 1272 + ], + "score": 0.92, + "latex": "d \\in \\{ 1 , \\ldots , d _ { \\mathrm { t r } } \\}" + }, + { + "category_id": 13, + "poly": [ + 1227, + 880, + 1360, + 880, + 1360, + 911, + 1227, + 911 + ], + "score": 0.92, + "latex": "\\phi : \\mathcal { X } \\to \\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 935, + 881, + 1054, + 881, + 1054, + 911, + 935, + 911 + ], + "score": 0.91, + "latex": "f = w \\circ \\phi" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1002, + 1398, + 1002, + 1398, + 1037, + 1165, + 1037 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { ( x , y ) \\sim P } [ \\ell ( f ( x ) , y ) ]" + }, + { + "category_id": 13, + "poly": [ + 864, + 1034, + 968, + 1034, + 968, + 1067, + 864, + 1067 + ], + "score": 0.91, + "latex": "P ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 767, + 1269, + 851, + 1269, + 851, + 1299, + 767, + 1299 + ], + "score": 0.91, + "latex": "d _ { \\mathrm { t r } } + 1" + }, + { + "category_id": 13, + "poly": [ + 894, + 819, + 974, + 819, + 974, + 850, + 894, + 850 + ], + "score": 0.91, + "latex": "y \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 464, + 911, + 598, + 911, + 598, + 941, + 464, + 941 + ], + "score": 0.91, + "latex": "w : \\mathcal { H } \\to \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 405, + 880, + 536, + 880, + 536, + 912, + 405, + 912 + ], + "score": 0.91, + "latex": "f : \\mathcal { X } \\mathcal { Y }" + }, + { + "category_id": 13, + "poly": [ + 377, + 850, + 464, + 850, + 464, + 878, + 377, + 878 + ], + "score": 0.9, + "latex": "x \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1038, + 972, + 1275, + 972, + 1275, + 1003, + 1038, + 1003 + ], + "score": 0.9, + "latex": "\\ell : \\mathcal { V } \\times \\mathcal { V } [ 0 , \\infty )" + }, + { + "category_id": 13, + "poly": [ + 743, + 1064, + 971, + 1064, + 971, + 1102, + 743, + 1102 + ], + "score": 0.9, + "latex": "\\textstyle { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( { \\dot { x } } _ { i } ) , y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 586, + 252, + 621, + 252, + 621, + 283, + 586, + 283 + ], + "score": 0.87, + "latex": "L ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 671, + 251, + 710, + 251, + 710, + 283, + 671, + 283 + ], + "score": 0.87, + "latex": "U ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1100, + 580, + 1179, + 580, + 1179, + 606, + 1100, + 606 + ], + "score": 0.85, + "latex": "U ^ { d _ { \\mathrm { t r } } + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1101, + 548, + 1180, + 548, + 1180, + 573, + 1101, + 573 + ], + "score": 0.83, + "latex": "U ^ { d _ { \\mathrm { t r } } + 1 }" + }, + { + "category_id": 13, + "poly": [ + 803, + 851, + 831, + 851, + 831, + 877, + 803, + 877 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1036, + 1167, + 1036, + 1167, + 1062, + 1141, + 1062 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1100, + 613, + 1180, + 613, + 1180, + 638, + 1100, + 638 + ], + "score": 0.8, + "latex": "U ^ { d _ { \\mathrm { t r } } + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 855, + 1205, + 855, + 1205, + 877, + 1185, + 877 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1297, + 820, + 1322, + 820, + 1322, + 847, + 1297, + 847 + ], + "score": 0.75, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 912, + 1175, + 931, + 1175, + 931, + 1202, + 912, + 1202 + ], + "score": 0.74, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1100, + 514, + 1242, + 514, + 1242, + 544, + 1100, + 544 + ], + "score": 0.73, + "latex": "U ^ { 1 } , \\ldots , U ^ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 1042, + 1114, + 1100, + 1114, + 1100, + 1143, + 1042, + 1143 + ], + "score": 0.73, + "latex": "( D G )" + }, + { + "category_id": 13, + "poly": [ + 1100, + 448, + 1136, + 448, + 1136, + 476, + 1100, + 476 + ], + "score": 0.59, + "latex": "U ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1379, + 257, + 1396, + 257, + 1396, + 282, + 1379, + 282 + ], + "score": 0.56, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1100, + 482, + 1247, + 482, + 1247, + 513, + 1100, + 513 + ], + "score": 0.53, + "latex": "U ^ { 1 } , \\ldots , U ^ { d _ { \\mathrm { t r } } }" + }, + { + "category_id": 13, + "poly": [ + 831, + 612, + 973, + 612, + 973, + 643, + 831, + 643 + ], + "score": 0.35, + "latex": "L ^ { 1 } , \\dots , L ^ { d _ { \\mathrm { t r } } }" + }, + { + "category_id": 13, + "poly": [ + 830, + 482, + 973, + 482, + 973, + 512, + 830, + 512 + ], + "score": 0.35, + "latex": "L ^ { 1 } , \\dots , L ^ { d _ { \\mathrm { t r } } }" + }, + { + "category_id": 13, + "poly": [ + 831, + 547, + 1066, + 547, + 1066, + 577, + 831, + 577 + ], + "score": 0.29, + "latex": "L ^ { 1 } , \\dots , L ^ { d _ { \\mathrm { t r } } } , U ^ { d _ { \\mathrm { t r } } + 1 }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 737.0, + 994.0, + 737.0, + 994.0, + 783.0, + 291.0, + 783.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": [ + 290.0, + 1769.0, + 1170.0, + 1769.0, + 1170.0, + 1816.0, + 290.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 248.0, + 585.0, + 248.0, + 585.0, + 288.0, + 294.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 248.0, + 670.0, + 248.0, + 670.0, + 288.0, + 622.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 248.0, + 1378.0, + 248.0, + 1378.0, + 288.0, + 711.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 248.0, + 1404.0, + 248.0, + 1404.0, + 288.0, + 1397.0, + 288.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": [ + 294.0, + 815.0, + 893.0, + 815.0, + 893.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 815.0, + 1296.0, + 815.0, + 1296.0, + 854.0, + 975.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 815.0, + 1405.0, + 815.0, + 1405.0, + 854.0, + 1323.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 376.0, + 847.0, + 376.0, + 885.0, + 294.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 847.0, + 802.0, + 847.0, + 802.0, + 885.0, + 465.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 847.0, + 987.0, + 847.0, + 987.0, + 885.0, + 832.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 847.0, + 1184.0, + 847.0, + 1184.0, + 885.0, + 1107.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 847.0, + 1407.0, + 847.0, + 1407.0, + 885.0, + 1206.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 880.0, + 404.0, + 880.0, + 404.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 880.0, + 934.0, + 880.0, + 934.0, + 914.0, + 537.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 880.0, + 1226.0, + 880.0, + 1226.0, + 914.0, + 1055.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 880.0, + 1405.0, + 880.0, + 1405.0, + 914.0, + 1361.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 910.0, + 463.0, + 910.0, + 463.0, + 944.0, + 295.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 944.0, + 599.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 936.0, + 297.0, + 936.0, + 297.0, + 980.0, + 292.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 936.0, + 1406.0, + 936.0, + 1406.0, + 980.0, + 508.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 968.0, + 668.0, + 968.0, + 668.0, + 1009.0, + 292.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 968.0, + 1037.0, + 968.0, + 1037.0, + 1009.0, + 773.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 968.0, + 1406.0, + 968.0, + 1406.0, + 1009.0, + 1276.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 998.0, + 1164.0, + 998.0, + 1164.0, + 1042.0, + 291.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 998.0, + 1410.0, + 998.0, + 1410.0, + 1042.0, + 1399.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1034.0, + 863.0, + 1034.0, + 863.0, + 1068.0, + 295.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1034.0, + 1140.0, + 1034.0, + 1140.0, + 1068.0, + 969.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1034.0, + 1406.0, + 1034.0, + 1406.0, + 1068.0, + 1168.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1062.0, + 742.0, + 1062.0, + 742.0, + 1108.0, + 291.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1062.0, + 1158.0, + 1062.0, + 1158.0, + 1108.0, + 972.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1470.0, + 296.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1406.0, + 1466.0, + 1406.0, + 1501.0, + 293.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1404.0, + 1499.0, + 1404.0, + 1531.0, + 294.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1525.0, + 1406.0, + 1525.0, + 1406.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1556.0, + 1406.0, + 1556.0, + 1406.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1620.0, + 1406.0, + 1620.0, + 1406.0, + 1654.0, + 293.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1684.0, + 293.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1679.0, + 519.0, + 1679.0, + 519.0, + 1716.0, + 295.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1110.0, + 1041.0, + 1110.0, + 1041.0, + 1147.0, + 294.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1147.0, + 1101.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1143.0, + 911.0, + 1143.0, + 911.0, + 1224.0, + 285.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1143.0, + 1156.0, + 1143.0, + 1156.0, + 1224.0, + 932.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1143.0, + 1413.0, + 1143.0, + 1413.0, + 1224.0, + 1401.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1202.0, + 990.0, + 1202.0, + 990.0, + 1246.0, + 292.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1202.0, + 1409.0, + 1202.0, + 1409.0, + 1246.0, + 1122.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1237.0, + 297.0, + 1237.0, + 297.0, + 1273.0, + 294.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 1237.0, + 1405.0, + 1237.0, + 1405.0, + 1273.0, + 485.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1269.0, + 766.0, + 1269.0, + 766.0, + 1302.0, + 292.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1269.0, + 1406.0, + 1269.0, + 1406.0, + 1302.0, + 852.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1294.0, + 1406.0, + 1294.0, + 1406.0, + 1339.0, + 292.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1328.0, + 1406.0, + 1328.0, + 1406.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1361.0, + 1405.0, + 1361.0, + 1405.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1392.0, + 1406.0, + 1392.0, + 1406.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 1408.0, + 1848.0, + 1408.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1405.0, + 1972.0, + 1405.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": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 308, + 1404, + 308, + 1404, + 522, + 299, + 522 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1541, + 1403, + 1541, + 1403, + 1756, + 299, + 1756 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 610, + 1404, + 610, + 1404, + 825, + 298, + 825 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1293, + 1403, + 1293, + 1403, + 1508, + 298, + 1508 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1850, + 1402, + 1850, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1399, + 229, + 1399, + 293, + 294, + 293 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 299, + 853, + 1399, + 853, + 1399, + 914, + 299, + 914 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 302, + 1009, + 1400, + 1009, + 1400, + 1071, + 302, + 1071 + ], + "score": 0.941 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 298, + 1794, + 864, + 1794, + 864, + 1824, + 298, + 1824 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 299, + 1106, + 1403, + 1106, + 1403, + 1259, + 299, + 1259 + ], + "score": 0.809 + }, + { + "category_id": 1, + "poly": [ + 298, + 549, + 1400, + 549, + 1400, + 582, + 298, + 582 + ], + "score": 0.791 + }, + { + "category_id": 0, + "poly": [ + 299, + 953, + 908, + 953, + 908, + 983, + 299, + 983 + ], + "score": 0.788 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2111, + 841, + 2111 + ], + "score": 0.764 + }, + { + "category_id": 0, + "poly": [ + 298, + 549, + 1400, + 549, + 1400, + 582, + 298, + 582 + ], + "score": 0.136 + }, + { + "category_id": 1, + "poly": [ + 299, + 953, + 908, + 953, + 908, + 983, + 299, + 983 + ], + "score": 0.11 + }, + { + "category_id": 13, + "poly": [ + 1232, + 1446, + 1302, + 1446, + 1302, + 1475, + 1232, + 1475 + ], + "score": 0.9, + "latex": "k > 1" + }, + { + "category_id": 13, + "poly": [ + 878, + 1356, + 915, + 1356, + 915, + 1385, + 878, + 1385 + ], + "score": 0.9, + "latex": "d _ { \\mathrm { t r } }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1386, + 1140, + 1386, + 1140, + 1416, + 1104, + 1416 + ], + "score": 0.89, + "latex": "d _ { \\mathrm { t r } }" + }, + { + "category_id": 13, + "poly": [ + 794, + 1295, + 831, + 1295, + 831, + 1324, + 794, + 1324 + ], + "score": 0.89, + "latex": "d _ { \\mathrm { t r } }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1295, + 1182, + 1295, + 1182, + 1324, + 1146, + 1324 + ], + "score": 0.89, + "latex": "d _ { \\mathrm { t r } }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1479, + 1295, + 1479, + 1295, + 1504, + 1277, + 1504 + ], + "score": 0.81, + "latex": "k" + }, + { + "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": [ + 295.0, + 1792.0, + 867.0, + 1792.0, + 867.0, + 1827.0, + 295.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 953.0, + 911.0, + 953.0, + 911.0, + 987.0, + 294.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 837.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 546.0, + 1406.0, + 546.0, + 1406.0, + 589.0, + 294.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 308.0, + 1406.0, + 308.0, + 1406.0, + 343.0, + 295.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 335.0, + 1405.0, + 335.0, + 1405.0, + 377.0, + 292.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 365.0, + 1405.0, + 365.0, + 1405.0, + 405.0, + 293.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 400.0, + 1405.0, + 400.0, + 1405.0, + 435.0, + 295.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 430.0, + 1406.0, + 430.0, + 1406.0, + 464.0, + 295.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1406.0, + 459.0, + 1406.0, + 497.0, + 294.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 491.0, + 435.0, + 491.0, + 435.0, + 527.0, + 295.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1539.0, + 1405.0, + 1539.0, + 1405.0, + 1576.0, + 294.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1571.0, + 1405.0, + 1571.0, + 1405.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1599.0, + 1405.0, + 1599.0, + 1405.0, + 1641.0, + 292.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1634.0, + 1404.0, + 1634.0, + 1404.0, + 1668.0, + 295.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1661.0, + 1405.0, + 1661.0, + 1405.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1694.0, + 1407.0, + 1694.0, + 1407.0, + 1730.0, + 293.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 1300.0, + 1724.0, + 1300.0, + 1760.0, + 293.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 609.0, + 1405.0, + 609.0, + 1405.0, + 645.0, + 295.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 642.0, + 1407.0, + 642.0, + 1407.0, + 674.0, + 293.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 706.0, + 293.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 703.0, + 1406.0, + 703.0, + 1406.0, + 737.0, + 293.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 1408.0, + 731.0, + 1408.0, + 767.0, + 293.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 764.0, + 1402.0, + 764.0, + 1402.0, + 795.0, + 296.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 793.0, + 1055.0, + 793.0, + 1055.0, + 829.0, + 295.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 793.0, + 1292.0, + 793.0, + 1327.0, + 294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1292.0, + 1145.0, + 1292.0, + 1145.0, + 1327.0, + 832.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1292.0, + 1404.0, + 1292.0, + 1404.0, + 1327.0, + 1183.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1325.0, + 1405.0, + 1325.0, + 1405.0, + 1357.0, + 293.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1352.0, + 877.0, + 1352.0, + 877.0, + 1389.0, + 293.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1352.0, + 1407.0, + 1352.0, + 1407.0, + 1389.0, + 916.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1381.0, + 1103.0, + 1381.0, + 1103.0, + 1424.0, + 292.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1381.0, + 1407.0, + 1381.0, + 1407.0, + 1424.0, + 1141.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1415.0, + 1405.0, + 1415.0, + 1405.0, + 1448.0, + 293.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 1231.0, + 1446.0, + 1231.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1479.0, + 1303.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1477.0, + 1276.0, + 1477.0, + 1276.0, + 1511.0, + 293.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1477.0, + 1306.0, + 1477.0, + 1306.0, + 1511.0, + 1296.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 1407.0, + 1849.0, + 1407.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1914.0, + 295.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 1129.0, + 260.0, + 1129.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 1403.0, + 847.0, + 1403.0, + 891.0, + 294.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 885.0, + 765.0, + 885.0, + 765.0, + 920.0, + 295.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1008.0, + 1403.0, + 1008.0, + 1403.0, + 1044.0, + 297.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1040.0, + 923.0, + 1040.0, + 923.0, + 1075.0, + 298.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1106.0, + 1408.0, + 1106.0, + 1408.0, + 1139.0, + 297.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1134.0, + 1405.0, + 1134.0, + 1405.0, + 1172.0, + 294.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1168.0, + 1405.0, + 1168.0, + 1405.0, + 1201.0, + 297.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1197.0, + 1404.0, + 1197.0, + 1404.0, + 1230.0, + 297.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1231.0, + 813.0, + 1231.0, + 813.0, + 1260.0, + 298.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 546.0, + 1406.0, + 546.0, + 1406.0, + 589.0, + 294.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 953.0, + 911.0, + 953.0, + 911.0, + 987.0, + 294.0, + 987.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1575, + 1405, + 1575, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 880, + 1406, + 880, + 1406, + 1247, + 297, + 1247 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 610, + 1404, + 610, + 1404, + 824, + 298, + 824 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1305, + 1404, + 1305, + 1404, + 1519, + 298, + 1519 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1402, + 229, + 1402, + 293, + 293, + 293 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 299, + 442, + 1401, + 442, + 1401, + 505, + 299, + 505 + ], + "score": 0.941 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 293, + 360, + 1324, + 360, + 1324, + 396, + 293, + 396 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.706 + }, + { + "category_id": 0, + "poly": [ + 463, + 543, + 1236, + 543, + 1236, + 573, + 463, + 573 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 463, + 543, + 1236, + 543, + 1236, + 573, + 463, + 573 + ], + "score": 0.402 + }, + { + "category_id": 13, + "poly": [ + 327, + 1760, + 448, + 1760, + 448, + 1789, + 327, + 1789 + ], + "score": 0.9, + "latex": "2 2 4 \\times 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1760, + 1403, + 1760, + 1403, + 1789, + 1349, + 1789 + ], + "score": 0.85, + "latex": "10 \\%" + }, + { + "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": [ + 291.0, + 359.0, + 1329.0, + 359.0, + 1329.0, + 400.0, + 291.0, + 400.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": [ + 463.0, + 542.0, + 1242.0, + 542.0, + 1242.0, + 576.0, + 463.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1575.0, + 1405.0, + 1575.0, + 1405.0, + 1610.0, + 296.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1606.0, + 1405.0, + 1606.0, + 1405.0, + 1640.0, + 295.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1636.0, + 1407.0, + 1636.0, + 1407.0, + 1671.0, + 295.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1666.0, + 1406.0, + 1666.0, + 1406.0, + 1702.0, + 293.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1735.0, + 295.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1726.0, + 1406.0, + 1726.0, + 1406.0, + 1766.0, + 291.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 326.0, + 1758.0, + 326.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1758.0, + 1348.0, + 1758.0, + 1348.0, + 1793.0, + 449.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1823.0, + 293.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1816.0, + 1407.0, + 1816.0, + 1407.0, + 1857.0, + 291.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1847.0, + 1405.0, + 1847.0, + 1405.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1403.0, + 1943.0, + 1403.0, + 1974.0, + 295.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1403.0, + 1974.0, + 1403.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1036.0, + 2002.0, + 1036.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 881.0, + 1404.0, + 881.0, + 1404.0, + 915.0, + 297.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 913.0, + 1406.0, + 913.0, + 1406.0, + 947.0, + 295.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 941.0, + 1404.0, + 941.0, + 1404.0, + 976.0, + 294.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 974.0, + 1404.0, + 974.0, + 1404.0, + 1008.0, + 295.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1004.0, + 1408.0, + 1004.0, + 1408.0, + 1038.0, + 295.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1031.0, + 1408.0, + 1031.0, + 1408.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1062.0, + 1404.0, + 1062.0, + 1404.0, + 1098.0, + 292.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1095.0, + 1407.0, + 1095.0, + 1407.0, + 1129.0, + 295.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1124.0, + 1408.0, + 1124.0, + 1408.0, + 1160.0, + 294.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1153.0, + 1408.0, + 1153.0, + 1408.0, + 1190.0, + 292.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 1406.0, + 1186.0, + 1406.0, + 1220.0, + 295.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1217.0, + 1270.0, + 1217.0, + 1270.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 608.0, + 1404.0, + 608.0, + 1404.0, + 645.0, + 293.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 643.0, + 1404.0, + 643.0, + 1404.0, + 674.0, + 296.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 670.0, + 1405.0, + 670.0, + 1405.0, + 706.0, + 293.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 699.0, + 1408.0, + 699.0, + 1408.0, + 739.0, + 292.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 733.0, + 1404.0, + 733.0, + 1404.0, + 767.0, + 294.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 762.0, + 1406.0, + 762.0, + 1406.0, + 797.0, + 294.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 794.0, + 944.0, + 794.0, + 944.0, + 825.0, + 296.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1302.0, + 1405.0, + 1302.0, + 1405.0, + 1340.0, + 293.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1369.0, + 294.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1363.0, + 1408.0, + 1363.0, + 1408.0, + 1402.0, + 292.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1396.0, + 1405.0, + 1396.0, + 1405.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1427.0, + 1405.0, + 1427.0, + 1405.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1457.0, + 1406.0, + 1457.0, + 1406.0, + 1492.0, + 293.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1487.0, + 572.0, + 1487.0, + 572.0, + 1521.0, + 295.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 262.0, + 296.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1011.0, + 262.0, + 1011.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 442.0, + 1405.0, + 442.0, + 1405.0, + 477.0, + 295.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 475.0, + 1007.0, + 475.0, + 1007.0, + 507.0, + 297.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 542.0, + 1242.0, + 542.0, + 1242.0, + 576.0, + 463.0, + 576.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1143, + 1404, + 1143, + 1404, + 1450, + 298, + 1450 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1497, + 1404, + 1497, + 1404, + 1833, + 298, + 1833 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 473, + 1404, + 473, + 1404, + 720, + 298, + 720 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 767, + 1405, + 767, + 1405, + 921, + 298, + 921 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 304, + 1404, + 304, + 1404, + 426, + 298, + 426 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1881, + 1402, + 1881, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 1034, + 1402, + 1034, + 1402, + 1095, + 300, + 1095 + ], + "score": 0.95 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 557, + 226, + 557, + 261, + 300, + 261 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 299, + 972, + 473, + 972, + 473, + 1002, + 299, + 1002 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.768 + }, + { + "category_id": 13, + "poly": [ + 604, + 1650, + 711, + 1650, + 711, + 1679, + 604, + 1679 + ], + "score": 0.89, + "latex": "\\alpha = 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 656, + 597, + 711, + 597, + 711, + 626, + 656, + 626 + ], + "score": 0.87, + "latex": "80 \\%" + }, + { + "category_id": 13, + "poly": [ + 762, + 597, + 817, + 597, + 817, + 626, + 762, + 626 + ], + "score": 0.87, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1973, + 1212, + 1973, + 1212, + 2004, + 1150, + 2004 + ], + "score": 0.81, + "latex": "+ 2 . 3" + }, + { + "category_id": 13, + "poly": [ + 297, + 1652, + 311, + 1652, + 311, + 1678, + 297, + 1678 + ], + "score": 0.76, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 299, + 397, + 451, + 397, + 451, + 426, + 299, + 426 + ], + "score": 0.3, + "latex": "0 \\times 7 \\mathrm { d } \\pounds 6 \\pounds 0 6" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 223.0, + 561.0, + 223.0, + 561.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 967.0, + 478.0, + 967.0, + 478.0, + 1008.0, + 293.0, + 1008.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": [ + 297.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1177.0, + 297.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1176.0, + 1405.0, + 1176.0, + 1405.0, + 1207.0, + 296.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1205.0, + 1406.0, + 1205.0, + 1406.0, + 1241.0, + 294.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1233.0, + 1406.0, + 1233.0, + 1406.0, + 1270.0, + 293.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1266.0, + 1404.0, + 1266.0, + 1404.0, + 1298.0, + 296.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1405.0, + 1298.0, + 1405.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1326.0, + 1406.0, + 1326.0, + 1406.0, + 1361.0, + 293.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1359.0, + 1402.0, + 1359.0, + 1402.0, + 1391.0, + 294.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1388.0, + 1406.0, + 1388.0, + 1406.0, + 1424.0, + 294.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1419.0, + 1110.0, + 1419.0, + 1110.0, + 1454.0, + 294.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1495.0, + 1404.0, + 1495.0, + 1404.0, + 1532.0, + 296.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1563.0, + 292.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1556.0, + 1404.0, + 1556.0, + 1404.0, + 1593.0, + 293.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1406.0, + 1620.0, + 1406.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1648.0, + 296.0, + 1648.0, + 296.0, + 1687.0, + 291.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1648.0, + 603.0, + 1648.0, + 603.0, + 1687.0, + 312.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1648.0, + 1405.0, + 1648.0, + 1405.0, + 1687.0, + 712.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1680.0, + 1406.0, + 1680.0, + 1406.0, + 1717.0, + 292.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 1408.0, + 1739.0, + 1408.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 1408.0, + 1772.0, + 1408.0, + 1806.0, + 294.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1799.0, + 857.0, + 1799.0, + 857.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 474.0, + 1404.0, + 474.0, + 1404.0, + 507.0, + 296.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 506.0, + 1408.0, + 506.0, + 1408.0, + 540.0, + 294.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 536.0, + 1405.0, + 536.0, + 1405.0, + 570.0, + 296.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 566.0, + 1405.0, + 566.0, + 1405.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 595.0, + 655.0, + 595.0, + 655.0, + 633.0, + 293.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 595.0, + 761.0, + 595.0, + 761.0, + 633.0, + 712.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 595.0, + 1406.0, + 595.0, + 1406.0, + 633.0, + 818.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 628.0, + 1404.0, + 628.0, + 1404.0, + 662.0, + 294.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 657.0, + 1406.0, + 657.0, + 1406.0, + 694.0, + 293.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 689.0, + 980.0, + 689.0, + 980.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 765.0, + 1405.0, + 765.0, + 1405.0, + 804.0, + 293.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 796.0, + 1407.0, + 796.0, + 1407.0, + 833.0, + 295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 828.0, + 1405.0, + 828.0, + 1405.0, + 865.0, + 295.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 856.0, + 1407.0, + 856.0, + 1407.0, + 897.0, + 293.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 889.0, + 1351.0, + 889.0, + 1351.0, + 926.0, + 295.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 305.0, + 1406.0, + 305.0, + 1406.0, + 337.0, + 294.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 334.0, + 1404.0, + 334.0, + 1404.0, + 368.0, + 295.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 366.0, + 1405.0, + 366.0, + 1405.0, + 402.0, + 294.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 394.0, + 298.0, + 394.0, + 298.0, + 431.0, + 295.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 394.0, + 818.0, + 394.0, + 818.0, + 431.0, + 452.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1877.0, + 1406.0, + 1877.0, + 1406.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1149.0, + 1972.0, + 1149.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2009.0, + 1213.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1070.0, + 2002.0, + 1070.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1033.0, + 1406.0, + 1033.0, + 1406.0, + 1068.0, + 296.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 1324.0, + 1065.0, + 1324.0, + 1097.0, + 294.0, + 1097.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 521, + 1404, + 521, + 1404, + 909, + 296, + 909 + ], + "score": 0.972, + "html": "
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM51.5 ± 0.198.0 ± 0.077.5 ± 0.485.5± 0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
IRM52.0 ± 0.197.7 ± 0.178.5 ± 0.583.5 ± 0.864.3 ± 2.247.6 ± 0.833.9 ± 2.865.4
GroupDRO52.1 ± 0.098.0± 0.076.7 ± 0.684.4 ± 0.866.0 ± 0.743.2 ± 1.133.3 ± 0.264.8
Mixup52.1 ± 0.298.0± 0.177.4 ± 0.684.6 ± 0.668.1 ± 0.347.9 ± 0.839.2 ± 0.166.7
MLDG51.5 ± 0.197.9 ± 0.077.2 ± 0.484.9 ± 1.066.8 ± 0.647.7 ± 0.941.2 ± 0.166.7
CORAL51.5 ± 0.198.0 ± 0.178.8 ± 0.686.2 ± 0.368.7 ± 0.347.6 ± 1.041.5 ± 0.167.5
MMD51.5 ± 0.297.9 ± 0.077.5 ± 0.984.6 ± 0.566.3 ± 0.142.2 ± 1.623.4 ± 9.563.3
DANN51.5 ± 0.397.8 ± 0.178.6 ± 0.483.6 ± 0.465.9 ± 0.646.7 ± 0.538.3 ± 0.166.1
CDANN51.7 ± 0.197.9 ± 0.177.5 ± 0.182.6 ± 0.965.8 ± 1.345.8 ± 1.638.3 ± 0.365.6
MTL51.4 ± 0.197.9 ± 0.077.2 ± 0.484.6 ± 0.566.4 ± 0.545.6 ± 1.240.6 ± 0.166.2
SagNet51.7 ± 0.098.0± 0.077.8 ± 0.586.3 ± 0.268.1 ± 0.148.6 ± 1.040.3 ± 0.167.2
ARM56.2 ± 0.298.2 ± 0.177.6 ± 0.385.1 ± 0.464.8 ± 0.345.5 ± 0.335.5 ± 0.266.1
VREx51.8 ± 0.197.9 ± 0.178.3 ± 0.284.9 ± 0.666.4 ± 0.646.4 ± 0.633.6 ± 2.965.6
RSC51.7 ± 0.297.6 ± 0.177.1 ± 0.585.2 ± 0.965.5 ± 0.946.6 ± 1.038.9 ± 0.566.1
" + }, + { + "category_id": 5, + "poly": [ + 297, + 1448, + 1404, + 1448, + 1404, + 1834, + 297, + 1834 + ], + "score": 0.972, + "html": "
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM57.8 ± 0.297.8 ± 0.177.6 ± 0.386.7 ± 0.366.4 ± 0.553.0 ± 0.341.3 ± 0.168.7
IRM67.7 ± 1.297.5 ± 0.276.9 ± 0.684.5 ± 1.163.0 ± 2.750.5 ± 0.728.0 ± 5.166.9
GroupDRO61.1 ± 0.997.9 ± 0.177.4 ± 0.587.1 ± 0.166.2 ± 0.652.4 ± 0.133.4 ± 0.367.9
Mixup58.4 ± 0.298.0 ± 0.178.1 ± 0.386.8 ± 0.368.0 ± 0.254.4 ± 0.339.6 ± 0.169.0
MLDG58.2 ± 0.497.8 ± 0.177.5 ± 0.186.8 ± 0.466.6 ± 0.352.0 ± 0.141.6 ± 0.168.7
CORAL58.6 ± 0.598.0 ± 0.077.7 ± 0.287.1 ± 0.568.4 ± 0.252.8 ± 0.241.8 ± 0.169.2
MMD63.3 ± 1.398.0 ± 0.177.9 ± 0.187.2 ± 0.166.2 ± 0.352.0 ± 0.423.5 ± 9.466.9
DANN57.0 ± 1.097.9 ± 0.179.7 ± 0.585.2 ± 0.265.3 ± 0.850.6 ± 0.438.3 ± 0.167.7
CDANN59.5 ± 2.097.9 ± 0.079.9 ± 0.285.8 ± 0.865.3 ± 0.550.8 ± 0.638.5 ± 0.268.2
MTL57.6 ± 0.397.9 ± 0.177.7 ± 0.586.7 ± 0.266.5 ± 0.452.2 ± 0.440.8 ± 0.168.5
SagNet58.2 ± 0.397.9 ± 0.077.6 ± 0.186.4 ± 0.467.5 ± 0.252.5 ± 0.440.8 ± 0.268.7
ARM63.2 ± 0.798.1 ± 0.177.8 ± 0.385.8 ± 0.264.8 ± 0.451.2 ± 0.536.0 ± 0.268.1
VREx67.0 ± 1.397.9 ± 0.178.1 ± 0.287.2 ± 0.665.7 ± 0.351.4 ± 0.530.1 ± 3.768.2
RSC58.5 ± 0.597.6 ± 0.177.8 ± 0.686.2 ± 0.566.5 ± 0.652.1 ± 0.238.9 ± 0.668.2
" + }, + { + "category_id": 5, + "poly": [ + 297, + 985, + 1404, + 985, + 1404, + 1371, + 297, + 1371 + ], + "score": 0.955, + "html": "
AlgorithmCMNISTRMNISTVLCSPACSOfficeHomeTerraIncDomainNetAverage
ERM36.7 ± 0.197.7 ± 0.077.2 ± 0.483.0 ± 0.765.7 ± 0.541.4 ± 1.440.6 ± 0.263.2
IRM40.3 ± 4.297.0 ± 0.276.3 ± 0.681.5 ± 0.864.3 ± 1.541.2 ± 3.633.5 ± 3.062.0
GroupDRO36.8 ± 0.197.6 ± 0.177.9 ± 0.583.5 ± 0.265.2 ± 0.244.9 ± 1.433.0 ± 0.362.7
Mixup33.4 ± 4.797.8 ± 0.077.7 ± 0.683.2 ± 0.467.0 ± 0.248.7 ± 0.438.5 ± 0.363.8
MLDG36.7 ± 0.297.6 ± 0.077.2 ± 0.982.9 ± 1.766.1 ± 0.546.2 ± 0.941.0 ± 0.264.0
CORAL39.7 ± 2.897.8 ± 0.178.7 ± 0.482.6 ± 0.568.5 ± 0.246.3 ± 1.741.1 ± 0.165.0
MMD36.8 ± 0.197.8 ± 0.177.3 ± 0.583.2 ± 0.260.2 ± 5.246.5 ± 1.523.4 ± 9.560.7
DANN40.7 ± 2.397.6 ± 0.276.9 ± 0.481.0 ± 1.164.9 ± 1.244.4 ± 1.138.2 ± 0.263.4
CDANN39.1 ± 4.497.5 ± 0.277.5 ± 0.278.8 ± 2.264.3 ± 1.739.9 ± 3.238.0 ± 0.162.2
MTL35.0 ± 1.797.8 ± 0.176.6 ± 0.583.7 ± 0.465.7 ± 0.544.9 ± 1.240.6 ± 0.163.5
SagNet36.5 ± 0.194.0 ± 3.077.5± 0.382.3 ± 0.167.6 ± 0.347.2 ± 0.940.2 ± 0.263.6
ARM36.8 ± 0.098.1 ± 0.176.6 ± 0.581.7 ± 0.264.4 ± 0.242.6 ± 2.735.2 ± 0.162.2
VREx36.9 ± 0.393.6 ± 3.476.7 ± 1.081.3 ± 0.964.9 ± 1.337.3 ± 3.033.4 ± 3.160.6
RSC36.5 ± 0.297.6 ± 0.177.5 ± 0.582.6 ± 0.765.8 ± 0.740.0±0.838.9 ± 0.562.7
" + }, + { + "category_id": 6, + "poly": [ + 298, + 391, + 1399, + 391, + 1399, + 486, + 298, + 486 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.9 + }, + { + "category_id": 7, + "poly": [ + 569, + 1838, + 1027, + 1838, + 1027, + 1864, + 569, + 1864 + ], + "score": 0.803 + }, + { + "category_id": 7, + "poly": [ + 589, + 914, + 1009, + 914, + 1009, + 939, + 589, + 939 + ], + "score": 0.797 + }, + { + "category_id": 7, + "poly": [ + 553, + 1376, + 1046, + 1376, + 1046, + 1401, + 553, + 1401 + ], + "score": 0.78 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.765 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 392.0, + 1404.0, + 392.0, + 1404.0, + 426.0, + 294.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 423.0, + 1405.0, + 423.0, + 1405.0, + 456.0, + 294.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 453.0, + 954.0, + 453.0, + 954.0, + 487.0, + 294.0, + 487.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": [ + 568.0, + 1835.0, + 1028.0, + 1835.0, + 1028.0, + 1866.0, + 568.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 911.0, + 1012.0, + 911.0, + 1012.0, + 940.0, + 587.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1373.0, + 1047.0, + 1373.0, + 1047.0, + 1402.0, + 550.0, + 1402.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": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 621, + 1406, + 621, + 1406, + 837, + 298, + 837 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 362, + 323, + 1338, + 323, + 1338, + 492, + 362, + 492 + ], + "score": 0.98, + "html": "
AlgorithmVLCSPACSOfficeHomeTerraIncDomainNetAvg
ERM (raw, 18)75.8 ± 0.379.6 ± 0.361.0 ± 0.135.0 ± 1.335.8 ± 0.262.4
ERM (aug, 18)75.8 ± 0.179.1 ± 0.860.0 ± 0.640.0 ± 0.635.3 ± 0.062.8
ERM (raw, 50)78.6 ± 0.183.2 ± 0.667.7 ± 0.241.5 ± 2.541.4 ± 0.166.0
ERM (aug, 50)77.5 ± 0.485.5 ± 0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1021, + 1404, + 1021, + 1404, + 1205, + 298, + 1205 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1221, + 1403, + 1221, + 1403, + 1374, + 298, + 1374 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1661, + 1404, + 1661, + 1404, + 1784, + 299, + 1784 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1404, + 1820, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1409, + 1404, + 1409, + 1404, + 1626, + 297, + 1626 + ], + "score": 0.943 + }, + { + "category_id": 6, + "poly": [ + 296, + 248, + 1404, + 248, + 1404, + 312, + 296, + 312 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 296, + 954, + 1359, + 954, + 1359, + 986, + 296, + 986 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 565, + 691, + 565, + 691, + 596, + 300, + 596 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 882, + 546, + 882, + 546, + 919, + 299, + 919 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.788 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 247.0, + 1407.0, + 247.0, + 1407.0, + 285.0, + 294.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1407.0, + 277.0, + 1407.0, + 316.0, + 294.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 564.0, + 695.0, + 564.0, + 695.0, + 600.0, + 295.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 881.0, + 551.0, + 881.0, + 551.0, + 926.0, + 293.0, + 926.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": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 623.0, + 1406.0, + 623.0, + 1406.0, + 657.0, + 295.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 654.0, + 1406.0, + 654.0, + 1406.0, + 688.0, + 295.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 683.0, + 1408.0, + 683.0, + 1408.0, + 718.0, + 295.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 714.0, + 1406.0, + 714.0, + 1406.0, + 748.0, + 295.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 744.0, + 1403.0, + 744.0, + 1403.0, + 778.0, + 295.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 775.0, + 1406.0, + 775.0, + 1406.0, + 813.0, + 295.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 806.0, + 1409.0, + 806.0, + 1409.0, + 843.0, + 293.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1022.0, + 1405.0, + 1022.0, + 1405.0, + 1057.0, + 294.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1052.0, + 1406.0, + 1052.0, + 1406.0, + 1088.0, + 293.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1084.0, + 1405.0, + 1084.0, + 1405.0, + 1118.0, + 293.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1149.0, + 293.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1146.0, + 1405.0, + 1146.0, + 1405.0, + 1178.0, + 296.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1176.0, + 989.0, + 1176.0, + 989.0, + 1208.0, + 296.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1222.0, + 1403.0, + 1222.0, + 1403.0, + 1255.0, + 296.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1250.0, + 1405.0, + 1250.0, + 1405.0, + 1288.0, + 293.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1283.0, + 1407.0, + 1283.0, + 1407.0, + 1316.0, + 292.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1312.0, + 1404.0, + 1312.0, + 1404.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1344.0, + 721.0, + 1344.0, + 721.0, + 1379.0, + 293.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1661.0, + 1405.0, + 1661.0, + 1405.0, + 1693.0, + 297.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1691.0, + 1404.0, + 1691.0, + 1404.0, + 1724.0, + 295.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1721.0, + 1408.0, + 1721.0, + 1408.0, + 1757.0, + 294.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1752.0, + 1404.0, + 1752.0, + 1404.0, + 1786.0, + 294.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1820.0, + 1408.0, + 1820.0, + 1408.0, + 1855.0, + 296.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1889.0, + 292.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1916.0, + 296.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1914.0, + 1401.0, + 1914.0, + 1401.0, + 1944.0, + 296.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 442.0, + 2000.0, + 442.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 1407.0, + 1410.0, + 1407.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1439.0, + 1405.0, + 1439.0, + 1405.0, + 1477.0, + 294.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1472.0, + 1405.0, + 1472.0, + 1405.0, + 1506.0, + 295.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1503.0, + 1406.0, + 1503.0, + 1406.0, + 1537.0, + 295.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1532.0, + 1405.0, + 1532.0, + 1405.0, + 1567.0, + 294.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 1405.0, + 1563.0, + 1405.0, + 1598.0, + 294.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1596.0, + 1041.0, + 1596.0, + 1041.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 952.0, + 1362.0, + 952.0, + 1362.0, + 991.0, + 296.0, + 991.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 296, + 1404, + 296, + 1404, + 511, + 298, + 511 + ], + "score": 0.974 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 543, + 226, + 543, + 261, + 300, + 261 + ], + "score": 0.874 + }, + { + "category_id": 0, + "poly": [ + 299, + 558, + 488, + 558, + 488, + 590, + 299, + 590 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 294, + 609, + 1411, + 609, + 1411, + 2034, + 294, + 2034 + ], + "score": 0.631 + }, + { + "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": [ + 291.0, + 220.0, + 549.0, + 220.0, + 549.0, + 271.0, + 291.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 555.0, + 491.0, + 555.0, + 491.0, + 595.0, + 296.0, + 595.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, + 295.0, + 1404.0, + 295.0, + 1404.0, + 331.0, + 295.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 325.0, + 1404.0, + 325.0, + 1404.0, + 363.0, + 293.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 358.0, + 1406.0, + 358.0, + 1406.0, + 392.0, + 296.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 389.0, + 1406.0, + 389.0, + 1406.0, + 422.0, + 292.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 418.0, + 1405.0, + 418.0, + 1405.0, + 453.0, + 294.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 448.0, + 1406.0, + 448.0, + 1406.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 480.0, + 1281.0, + 480.0, + 1281.0, + 515.0, + 292.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 611.0, + 1406.0, + 611.0, + 1406.0, + 646.0, + 295.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 642.0, + 711.0, + 642.0, + 711.0, + 677.0, + 320.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 691.0, + 1407.0, + 691.0, + 1407.0, + 735.0, + 293.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 724.0, + 995.0, + 724.0, + 995.0, + 762.0, + 318.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 773.0, + 1407.0, + 773.0, + 1407.0, + 815.0, + 292.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 805.0, + 1293.0, + 805.0, + 1293.0, + 847.0, + 320.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 856.0, + 1409.0, + 856.0, + 1409.0, + 902.0, + 292.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 891.0, + 1138.0, + 891.0, + 1138.0, + 929.0, + 318.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 940.0, + 1407.0, + 940.0, + 1407.0, + 988.0, + 290.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 974.0, + 1318.0, + 974.0, + 1318.0, + 1018.0, + 318.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1026.0, + 1409.0, + 1026.0, + 1409.0, + 1067.0, + 292.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1056.0, + 1409.0, + 1056.0, + 1409.0, + 1099.0, + 319.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1085.0, + 399.0, + 1085.0, + 399.0, + 1128.0, + 318.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1140.0, + 1407.0, + 1140.0, + 1407.0, + 1183.0, + 292.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1172.0, + 776.0, + 1172.0, + 776.0, + 1212.0, + 318.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1226.0, + 1409.0, + 1226.0, + 1409.0, + 1266.0, + 295.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1256.0, + 848.0, + 1256.0, + 848.0, + 1296.0, + 320.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1307.0, + 1339.0, + 1307.0, + 1339.0, + 1349.0, + 293.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1361.0, + 1407.0, + 1361.0, + 1407.0, + 1404.0, + 293.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1393.0, + 1223.0, + 1393.0, + 1223.0, + 1431.0, + 318.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1447.0, + 1409.0, + 1447.0, + 1409.0, + 1487.0, + 293.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1531.0, + 838.0, + 1531.0, + 838.0, + 1569.0, + 320.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1582.0, + 1404.0, + 1582.0, + 1404.0, + 1623.0, + 292.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1614.0, + 974.0, + 1614.0, + 974.0, + 1655.0, + 318.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 1407.0, + 1665.0, + 1407.0, + 1706.0, + 293.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1698.0, + 963.0, + 1698.0, + 963.0, + 1738.0, + 320.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1752.0, + 1407.0, + 1752.0, + 1407.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1782.0, + 955.0, + 1782.0, + 955.0, + 1825.0, + 318.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1833.0, + 1406.0, + 1833.0, + 1406.0, + 1876.0, + 292.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1866.0, + 930.0, + 1866.0, + 930.0, + 1904.0, + 318.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1919.0, + 1402.0, + 1919.0, + 1402.0, + 1959.0, + 293.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2013.0, + 292.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2005.0, + 960.0, + 2005.0, + 960.0, + 2040.0, + 322.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 814, + 75, + 814, + 105, + 299, + 105 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 301, + 1684, + 1404, + 1684, + 1404, + 1780, + 301, + 1780 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 296, + 1598, + 1402, + 1598, + 1402, + 1664, + 296, + 1664 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 299, + 740, + 1401, + 740, + 1401, + 805, + 299, + 805 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 299, + 654, + 1402, + 654, + 1402, + 720, + 299, + 720 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1403, + 229, + 1403, + 293, + 293, + 293 + ], + "score": 0.794 + }, + { + "category_id": 1, + "poly": [ + 297, + 910, + 1404, + 910, + 1404, + 1005, + 297, + 1005 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 297, + 1343, + 1401, + 1343, + 1401, + 1408, + 297, + 1408 + ], + "score": 0.787 + }, + { + "category_id": 1, + "poly": [ + 296, + 1428, + 1400, + 1428, + 1400, + 1492, + 296, + 1492 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 297, + 825, + 1401, + 825, + 1401, + 890, + 297, + 890 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 301, + 569, + 1400, + 569, + 1400, + 635, + 301, + 635 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 297, + 1513, + 1402, + 1513, + 1402, + 1579, + 297, + 1579 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 298, + 1026, + 1402, + 1026, + 1402, + 1122, + 298, + 1122 + ], + "score": 0.757 + }, + { + "category_id": 1, + "poly": [ + 300, + 484, + 1401, + 484, + 1401, + 549, + 300, + 549 + ], + "score": 0.727 + }, + { + "category_id": 1, + "poly": [ + 291, + 1142, + 1402, + 1142, + 1402, + 1207, + 291, + 1207 + ], + "score": 0.72 + }, + { + "category_id": 1, + "poly": [ + 297, + 1227, + 1405, + 1227, + 1405, + 1322, + 297, + 1322 + ], + "score": 0.716 + }, + { + "category_id": 1, + "poly": [ + 293, + 1799, + 1403, + 1799, + 1403, + 1865, + 293, + 1865 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 297, + 399, + 1402, + 399, + 1402, + 464, + 297, + 464 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 295, + 313, + 1401, + 313, + 1401, + 379, + 295, + 379 + ], + "score": 0.688 + }, + { + "category_id": 1, + "poly": [ + 298, + 1885, + 1399, + 1885, + 1399, + 1950, + 298, + 1950 + ], + "score": 0.676 + }, + { + "category_id": 1, + "poly": [ + 295, + 1971, + 1399, + 1971, + 1399, + 2035, + 295, + 2035 + ], + "score": 0.672 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1722.0, + 295.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1716.0, + 1409.0, + 1716.0, + 1409.0, + 1752.0, + 321.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1744.0, + 1355.0, + 1744.0, + 1355.0, + 1783.0, + 320.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1599.0, + 1406.0, + 1599.0, + 1406.0, + 1635.0, + 296.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1630.0, + 618.0, + 1630.0, + 618.0, + 1666.0, + 323.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 738.0, + 1403.0, + 738.0, + 1403.0, + 778.0, + 295.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 773.0, + 961.0, + 773.0, + 961.0, + 805.0, + 324.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 1404.0, + 652.0, + 1404.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 688.0, + 1003.0, + 688.0, + 1003.0, + 721.0, + 324.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1403.0, + 228.0, + 1403.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 261.0, + 616.0, + 261.0, + 616.0, + 294.0, + 320.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 909.0, + 1404.0, + 909.0, + 1404.0, + 948.0, + 297.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 942.0, + 1409.0, + 942.0, + 1409.0, + 977.0, + 321.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 969.0, + 476.0, + 969.0, + 476.0, + 1008.0, + 319.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1342.0, + 1406.0, + 1342.0, + 1406.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1374.0, + 1209.0, + 1374.0, + 1209.0, + 1410.0, + 322.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1428.0, + 1405.0, + 1428.0, + 1405.0, + 1464.0, + 296.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1460.0, + 740.0, + 1460.0, + 740.0, + 1492.0, + 322.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 824.0, + 1406.0, + 824.0, + 1406.0, + 864.0, + 295.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 856.0, + 653.0, + 856.0, + 653.0, + 891.0, + 322.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 570.0, + 1403.0, + 570.0, + 1403.0, + 606.0, + 296.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 601.0, + 1244.0, + 601.0, + 1244.0, + 637.0, + 322.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 1406.0, + 1510.0, + 1406.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1545.0, + 622.0, + 1545.0, + 622.0, + 1581.0, + 321.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 1404.0, + 1027.0, + 1404.0, + 1062.0, + 294.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1057.0, + 1404.0, + 1057.0, + 1404.0, + 1092.0, + 323.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1089.0, + 864.0, + 1089.0, + 864.0, + 1123.0, + 323.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 486.0, + 1405.0, + 486.0, + 1405.0, + 522.0, + 296.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 517.0, + 1023.0, + 517.0, + 1023.0, + 549.0, + 321.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1144.0, + 1404.0, + 1144.0, + 1404.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1175.0, + 1057.0, + 1175.0, + 1057.0, + 1208.0, + 322.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1224.0, + 1406.0, + 1224.0, + 1406.0, + 1266.0, + 292.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1260.0, + 1408.0, + 1260.0, + 1408.0, + 1294.0, + 323.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1284.0, + 399.0, + 1284.0, + 399.0, + 1325.0, + 320.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1836.0, + 296.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1831.0, + 703.0, + 1831.0, + 703.0, + 1866.0, + 324.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 399.0, + 1406.0, + 399.0, + 1406.0, + 434.0, + 295.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 430.0, + 789.0, + 430.0, + 789.0, + 465.0, + 321.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 312.0, + 1405.0, + 312.0, + 1405.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 345.0, + 1303.0, + 345.0, + 1303.0, + 380.0, + 322.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1887.0, + 1403.0, + 1887.0, + 1403.0, + 1923.0, + 296.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1918.0, + 827.0, + 1918.0, + 827.0, + 1950.0, + 323.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2003.0, + 951.0, + 2003.0, + 951.0, + 2035.0, + 321.0, + 2035.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 814, + 75, + 814, + 105, + 299, + 105 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 298, + 1119, + 1401, + 1119, + 1401, + 1186, + 298, + 1186 + ], + "score": 0.602 + }, + { + "category_id": 1, + "poly": [ + 298, + 1037, + 1402, + 1037, + 1402, + 1104, + 298, + 1104 + ], + "score": 0.597 + }, + { + "category_id": 1, + "poly": [ + 299, + 1202, + 1399, + 1202, + 1399, + 1268, + 299, + 1268 + ], + "score": 0.586 + }, + { + "category_id": 1, + "poly": [ + 297, + 956, + 1401, + 956, + 1401, + 1022, + 297, + 1022 + ], + "score": 0.582 + }, + { + "category_id": 1, + "poly": [ + 297, + 874, + 1400, + 874, + 1400, + 940, + 297, + 940 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 301, + 1284, + 1401, + 1284, + 1401, + 1349, + 301, + 1349 + ], + "score": 0.544 + }, + { + "category_id": 1, + "poly": [ + 298, + 1448, + 1401, + 1448, + 1401, + 1514, + 298, + 1514 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 299, + 659, + 1404, + 659, + 1404, + 725, + 299, + 725 + ], + "score": 0.54 + }, + { + "category_id": 1, + "poly": [ + 294, + 556, + 1353, + 556, + 1353, + 592, + 294, + 592 + ], + "score": 0.54 + }, + { + "category_id": 1, + "poly": [ + 297, + 1530, + 1402, + 1530, + 1402, + 1595, + 297, + 1595 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 300, + 1366, + 1399, + 1366, + 1399, + 1431, + 300, + 1431 + ], + "score": 0.53 + }, + { + "category_id": 1, + "poly": [ + 298, + 1694, + 1399, + 1694, + 1399, + 1760, + 298, + 1760 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 299, + 1612, + 1399, + 1612, + 1399, + 1677, + 299, + 1677 + ], + "score": 0.528 + }, + { + "category_id": 1, + "poly": [ + 298, + 792, + 1400, + 792, + 1400, + 858, + 298, + 858 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 292, + 608, + 1251, + 608, + 1251, + 643, + 292, + 643 + ], + "score": 0.521 + }, + { + "category_id": 1, + "poly": [ + 296, + 742, + 1395, + 742, + 1395, + 776, + 296, + 776 + ], + "score": 0.509 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1399, + 1971, + 1399, + 2035, + 298, + 2035 + ], + "score": 0.507 + }, + { + "category_id": 1, + "poly": [ + 293, + 228, + 1403, + 228, + 1403, + 295, + 293, + 295 + ], + "score": 0.496 + }, + { + "category_id": 1, + "poly": [ + 296, + 1776, + 1400, + 1776, + 1400, + 1842, + 296, + 1842 + ], + "score": 0.493 + }, + { + "category_id": 1, + "poly": [ + 294, + 474, + 1403, + 474, + 1403, + 539, + 294, + 539 + ], + "score": 0.469 + }, + { + "category_id": 1, + "poly": [ + 297, + 1858, + 1400, + 1858, + 1400, + 1952, + 297, + 1952 + ], + "score": 0.458 + }, + { + "category_id": 1, + "poly": [ + 296, + 311, + 1401, + 311, + 1401, + 376, + 296, + 376 + ], + "score": 0.439 + }, + { + "category_id": 1, + "poly": [ + 294, + 392, + 1404, + 392, + 1404, + 457, + 294, + 457 + ], + "score": 0.437 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2114, + 835, + 2114 + ], + "score": 0.186 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1119.0, + 1406.0, + 1119.0, + 1406.0, + 1158.0, + 292.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1154.0, + 682.0, + 1154.0, + 682.0, + 1186.0, + 324.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1035.0, + 1404.0, + 1035.0, + 1404.0, + 1076.0, + 294.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1073.0, + 641.0, + 1073.0, + 641.0, + 1102.0, + 323.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1200.0, + 1405.0, + 1200.0, + 1405.0, + 1242.0, + 295.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1235.0, + 901.0, + 1235.0, + 901.0, + 1269.0, + 323.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 995.0, + 295.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 989.0, + 878.0, + 989.0, + 878.0, + 1025.0, + 324.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 872.0, + 1404.0, + 872.0, + 1404.0, + 913.0, + 295.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 908.0, + 880.0, + 908.0, + 880.0, + 941.0, + 325.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1282.0, + 1406.0, + 1282.0, + 1406.0, + 1323.0, + 296.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1317.0, + 1333.0, + 1317.0, + 1333.0, + 1349.0, + 322.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 1407.0, + 1449.0, + 1407.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1481.0, + 1053.0, + 1481.0, + 1053.0, + 1513.0, + 326.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 662.0, + 1406.0, + 662.0, + 1406.0, + 695.0, + 297.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 691.0, + 1408.0, + 691.0, + 1408.0, + 727.0, + 323.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 555.0, + 1354.0, + 555.0, + 1354.0, + 595.0, + 293.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1530.0, + 1407.0, + 1530.0, + 1407.0, + 1568.0, + 293.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1561.0, + 1281.0, + 1561.0, + 1281.0, + 1596.0, + 322.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1405.0, + 296.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1396.0, + 912.0, + 1396.0, + 912.0, + 1432.0, + 321.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1697.0, + 1403.0, + 1697.0, + 1403.0, + 1730.0, + 297.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1727.0, + 903.0, + 1727.0, + 903.0, + 1758.0, + 324.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1615.0, + 1402.0, + 1615.0, + 1402.0, + 1647.0, + 296.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1645.0, + 580.0, + 1645.0, + 580.0, + 1675.0, + 323.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 793.0, + 1404.0, + 793.0, + 1404.0, + 829.0, + 294.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 827.0, + 571.0, + 827.0, + 571.0, + 857.0, + 320.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 607.0, + 1248.0, + 607.0, + 1248.0, + 647.0, + 295.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 738.0, + 1394.0, + 738.0, + 1394.0, + 780.0, + 296.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2003.0, + 838.0, + 2003.0, + 838.0, + 2035.0, + 320.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 263.0, + 1061.0, + 263.0, + 1061.0, + 293.0, + 322.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1777.0, + 1405.0, + 1777.0, + 1405.0, + 1813.0, + 295.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1809.0, + 731.0, + 1809.0, + 731.0, + 1840.0, + 322.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 470.0, + 1406.0, + 470.0, + 1406.0, + 514.0, + 293.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 504.0, + 787.0, + 504.0, + 787.0, + 540.0, + 321.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1859.0, + 1402.0, + 1859.0, + 1402.0, + 1893.0, + 296.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1890.0, + 1404.0, + 1890.0, + 1404.0, + 1924.0, + 323.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1920.0, + 510.0, + 1920.0, + 510.0, + 1955.0, + 322.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 351.0, + 294.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 342.0, + 837.0, + 342.0, + 837.0, + 374.0, + 323.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 394.0, + 1406.0, + 394.0, + 1406.0, + 430.0, + 296.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 425.0, + 756.0, + 425.0, + 756.0, + 457.0, + 323.0, + 457.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 296, + 1690, + 1402, + 1690, + 1402, + 1754, + 296, + 1754 + ], + "score": 0.827 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 291, + 1603, + 1406, + 1603, + 1406, + 1670, + 291, + 1670 + ], + "score": 0.819 + }, + { + "category_id": 1, + "poly": [ + 299, + 1433, + 1401, + 1433, + 1401, + 1496, + 299, + 1496 + ], + "score": 0.818 + }, + { + "category_id": 1, + "poly": [ + 294, + 1516, + 1404, + 1516, + 1404, + 1582, + 294, + 1582 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 297, + 1774, + 1185, + 1774, + 1185, + 1809, + 297, + 1809 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 301, + 1346, + 1399, + 1346, + 1399, + 1412, + 301, + 1412 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 295, + 943, + 1402, + 943, + 1402, + 1009, + 295, + 1009 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 296, + 1261, + 1400, + 1261, + 1400, + 1326, + 296, + 1326 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 290, + 859, + 1403, + 859, + 1403, + 924, + 290, + 924 + ], + "score": 0.788 + }, + { + "category_id": 1, + "poly": [ + 299, + 1029, + 1403, + 1029, + 1403, + 1125, + 299, + 1125 + ], + "score": 0.786 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1237, + 228, + 1237, + 264, + 294, + 264 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 298, + 1830, + 1054, + 1830, + 1054, + 1864, + 298, + 1864 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 295, + 570, + 1400, + 570, + 1400, + 637, + 295, + 637 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 298, + 772, + 1405, + 772, + 1405, + 837, + 298, + 837 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 298, + 485, + 1399, + 485, + 1399, + 550, + 298, + 550 + ], + "score": 0.696 + }, + { + "category_id": 1, + "poly": [ + 295, + 1885, + 1404, + 1885, + 1404, + 1950, + 295, + 1950 + ], + "score": 0.689 + }, + { + "category_id": 1, + "poly": [ + 301, + 1971, + 1402, + 1971, + 1402, + 2035, + 301, + 2035 + ], + "score": 0.687 + }, + { + "category_id": 1, + "poly": [ + 297, + 1145, + 1406, + 1145, + 1406, + 1240, + 297, + 1240 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 294, + 399, + 1403, + 399, + 1403, + 465, + 294, + 465 + ], + "score": 0.646 + }, + { + "category_id": 1, + "poly": [ + 302, + 283, + 1401, + 283, + 1401, + 380, + 302, + 380 + ], + "score": 0.59 + }, + { + "category_id": 1, + "poly": [ + 295, + 655, + 1407, + 655, + 1407, + 752, + 295, + 752 + ], + "score": 0.404 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1690.0, + 1404.0, + 1690.0, + 1404.0, + 1726.0, + 295.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1722.0, + 637.0, + 1722.0, + 637.0, + 1752.0, + 321.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1601.0, + 1409.0, + 1601.0, + 1409.0, + 1642.0, + 293.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1633.0, + 397.0, + 1633.0, + 397.0, + 1669.0, + 321.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1434.0, + 1403.0, + 1434.0, + 1403.0, + 1470.0, + 295.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1465.0, + 742.0, + 1465.0, + 742.0, + 1498.0, + 323.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1406.0, + 1514.0, + 1406.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1549.0, + 478.0, + 1549.0, + 478.0, + 1583.0, + 322.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1775.0, + 1191.0, + 1775.0, + 1191.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1347.0, + 1404.0, + 1347.0, + 1404.0, + 1383.0, + 296.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1378.0, + 1223.0, + 1378.0, + 1223.0, + 1414.0, + 322.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 944.0, + 1405.0, + 944.0, + 1405.0, + 980.0, + 295.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 976.0, + 752.0, + 976.0, + 752.0, + 1010.0, + 322.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1260.0, + 1404.0, + 1260.0, + 1404.0, + 1300.0, + 295.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1294.0, + 1168.0, + 1294.0, + 1168.0, + 1327.0, + 321.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 1408.0, + 859.0, + 1408.0, + 895.0, + 294.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 890.0, + 1255.0, + 890.0, + 1255.0, + 926.0, + 323.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 1409.0, + 1026.0, + 1409.0, + 1071.0, + 293.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1060.0, + 1404.0, + 1060.0, + 1404.0, + 1097.0, + 321.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1092.0, + 589.0, + 1092.0, + 589.0, + 1127.0, + 324.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1241.0, + 226.0, + 1241.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1828.0, + 1054.0, + 1828.0, + 1054.0, + 1868.0, + 297.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 571.0, + 1404.0, + 571.0, + 1404.0, + 607.0, + 296.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 605.0, + 1391.0, + 605.0, + 1391.0, + 637.0, + 324.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 1407.0, + 772.0, + 1407.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 806.0, + 1407.0, + 806.0, + 1407.0, + 838.0, + 326.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 483.0, + 1405.0, + 483.0, + 1405.0, + 525.0, + 293.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 517.0, + 880.0, + 517.0, + 880.0, + 550.0, + 324.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1916.0, + 1082.0, + 1916.0, + 1082.0, + 1952.0, + 323.0, + 1952.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": [ + 321.0, + 2002.0, + 1408.0, + 2002.0, + 1408.0, + 2036.0, + 321.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1183.0, + 295.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1177.0, + 1408.0, + 1177.0, + 1408.0, + 1213.0, + 321.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1207.0, + 471.0, + 1207.0, + 471.0, + 1240.0, + 320.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 398.0, + 1406.0, + 398.0, + 1406.0, + 437.0, + 296.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 431.0, + 1003.0, + 431.0, + 1003.0, + 467.0, + 322.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 282.0, + 1405.0, + 282.0, + 1405.0, + 322.0, + 294.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 313.0, + 1407.0, + 313.0, + 1407.0, + 354.0, + 321.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 346.0, + 918.0, + 346.0, + 918.0, + 381.0, + 323.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 655.0, + 1404.0, + 655.0, + 1404.0, + 694.0, + 293.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 687.0, + 1404.0, + 687.0, + 1404.0, + 722.0, + 323.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 721.0, + 711.0, + 721.0, + 711.0, + 752.0, + 323.0, + 752.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 297, + 1142, + 1399, + 1142, + 1399, + 1208, + 297, + 1208 + ], + "score": 0.636 + }, + { + "category_id": 1, + "poly": [ + 293, + 1058, + 1402, + 1058, + 1402, + 1124, + 293, + 1124 + ], + "score": 0.554 + }, + { + "category_id": 1, + "poly": [ + 288, + 975, + 1403, + 975, + 1403, + 1042, + 288, + 1042 + ], + "score": 0.502 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1402, + 228, + 1402, + 294, + 296, + 294 + ], + "score": 0.499 + }, + { + "category_id": 1, + "poly": [ + 298, + 862, + 1402, + 862, + 1402, + 959, + 298, + 959 + ], + "score": 0.487 + }, + { + "category_id": 1, + "poly": [ + 295, + 696, + 1402, + 696, + 1402, + 761, + 295, + 761 + ], + "score": 0.481 + }, + { + "category_id": 1, + "poly": [ + 291, + 779, + 1403, + 779, + 1403, + 844, + 291, + 844 + ], + "score": 0.479 + }, + { + "category_id": 1, + "poly": [ + 297, + 477, + 1402, + 477, + 1402, + 542, + 297, + 542 + ], + "score": 0.469 + }, + { + "category_id": 1, + "poly": [ + 296, + 311, + 1400, + 311, + 1400, + 377, + 296, + 377 + ], + "score": 0.461 + }, + { + "category_id": 1, + "poly": [ + 295, + 613, + 1402, + 613, + 1402, + 678, + 295, + 678 + ], + "score": 0.452 + }, + { + "category_id": 1, + "poly": [ + 294, + 560, + 1400, + 560, + 1400, + 596, + 294, + 596 + ], + "score": 0.444 + }, + { + "category_id": 1, + "poly": [ + 294, + 394, + 1400, + 394, + 1400, + 460, + 294, + 460 + ], + "score": 0.441 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1140.0, + 1404.0, + 1140.0, + 1404.0, + 1182.0, + 293.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1175.0, + 1200.0, + 1175.0, + 1200.0, + 1207.0, + 322.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1095.0, + 295.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1092.0, + 894.0, + 1092.0, + 894.0, + 1123.0, + 324.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 976.0, + 1406.0, + 976.0, + 1406.0, + 1012.0, + 295.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1007.0, + 1202.0, + 1007.0, + 1202.0, + 1042.0, + 322.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 261.0, + 1333.0, + 261.0, + 1333.0, + 296.0, + 323.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 860.0, + 1407.0, + 860.0, + 1407.0, + 903.0, + 292.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 894.0, + 1406.0, + 894.0, + 1406.0, + 929.0, + 323.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 925.0, + 967.0, + 925.0, + 967.0, + 960.0, + 323.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 694.0, + 1404.0, + 694.0, + 1404.0, + 735.0, + 295.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 727.0, + 827.0, + 727.0, + 827.0, + 762.0, + 322.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 781.0, + 1402.0, + 781.0, + 1402.0, + 817.0, + 295.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 811.0, + 679.0, + 811.0, + 679.0, + 844.0, + 323.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 1408.0, + 473.0, + 1408.0, + 517.0, + 294.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 508.0, + 509.0, + 508.0, + 509.0, + 542.0, + 321.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 308.0, + 1405.0, + 308.0, + 1405.0, + 352.0, + 292.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 345.0, + 865.0, + 345.0, + 865.0, + 376.0, + 321.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 609.0, + 1408.0, + 609.0, + 1408.0, + 655.0, + 293.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 644.0, + 1052.0, + 644.0, + 1052.0, + 680.0, + 323.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 560.0, + 1398.0, + 560.0, + 1398.0, + 599.0, + 296.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 393.0, + 1404.0, + 393.0, + 1404.0, + 432.0, + 294.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 428.0, + 994.0, + 428.0, + 994.0, + 461.0, + 324.0, + 461.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 516, + 1405, + 516, + 1405, + 1461, + 298, + 1461 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1478, + 1405, + 1478, + 1405, + 1874, + 298, + 1874 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 297, + 1402, + 297, + 1402, + 419, + 299, + 419 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1970, + 1400, + 1970, + 1400, + 2033, + 299, + 2033 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 301, + 1914, + 649, + 1914, + 649, + 1944, + 301, + 1944 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 303, + 461, + 765, + 461, + 765, + 490, + 303, + 490 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 1178, + 229, + 1178, + 261, + 299, + 261 + ], + "score": 0.809 + }, + { + "category_id": 13, + "poly": [ + 1094, + 882, + 1324, + 882, + 1324, + 917, + 1094, + 917 + ], + "score": 0.93, + "latex": "P ( \\mathcal { \\bar { \\phi } } ( X ^ { d } ) \\mid Y ^ { d } = y )" + }, + { + "category_id": 13, + "poly": [ + 740, + 1972, + 850, + 1972, + 850, + 2006, + 740, + 2006 + ], + "score": 0.92, + "latex": "f ( x ^ { d } , \\mu ^ { d } )" + }, + { + "category_id": 13, + "poly": [ + 424, + 1066, + 500, + 1066, + 500, + 1098, + 424, + 1098 + ], + "score": 0.9, + "latex": "d ^ { \\prime } \\neq d" + }, + { + "category_id": 13, + "poly": [ + 745, + 1097, + 822, + 1097, + 822, + 1128, + 745, + 1128 + ], + "score": 0.9, + "latex": "d ^ { \\prime } \\neq d" + }, + { + "category_id": 13, + "poly": [ + 936, + 1972, + 968, + 1972, + 968, + 2004, + 936, + 2004 + ], + "score": 0.9, + "latex": "\\mu ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 2001, + 1111, + 2001, + 1111, + 2030, + 1080, + 2030 + ], + "score": 0.87, + "latex": "x ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 645, + 885, + 665, + 885, + 665, + 915, + 645, + 915 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 558, + 915, + 576, + 915, + 576, + 941, + 558, + 941 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1118, + 1067, + 1136, + 1067, + 1136, + 1093, + 1118, + 1093 + ], + "score": 0.78, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1037, + 1158, + 1037, + 1158, + 1064, + 1139, + 1064 + ], + "score": 0.77, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 758, + 919, + 775, + 919, + 775, + 945, + 758, + 945 + ], + "score": 0.77, + "latex": "y" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 653.0, + 1913.0, + 653.0, + 1948.0, + 296.0, + 1948.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": [ + 298.0, + 460.0, + 770.0, + 460.0, + 770.0, + 495.0, + 298.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 1183.0, + 226.0, + 1183.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 517.0, + 1402.0, + 517.0, + 1402.0, + 549.0, + 296.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 543.0, + 1406.0, + 543.0, + 1406.0, + 587.0, + 292.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 578.0, + 1405.0, + 578.0, + 1405.0, + 613.0, + 295.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 607.0, + 1405.0, + 607.0, + 1405.0, + 644.0, + 293.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 638.0, + 1405.0, + 638.0, + 1405.0, + 675.0, + 292.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 669.0, + 1405.0, + 669.0, + 1405.0, + 705.0, + 293.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 732.0, + 295.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 727.0, + 1405.0, + 727.0, + 1405.0, + 766.0, + 293.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 757.0, + 1406.0, + 757.0, + 1406.0, + 799.0, + 292.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 790.0, + 1406.0, + 790.0, + 1406.0, + 825.0, + 295.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 820.0, + 1406.0, + 820.0, + 1406.0, + 855.0, + 295.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 852.0, + 1405.0, + 852.0, + 1405.0, + 887.0, + 295.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 879.0, + 644.0, + 879.0, + 644.0, + 918.0, + 293.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 879.0, + 1093.0, + 879.0, + 1093.0, + 918.0, + 666.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 879.0, + 1406.0, + 879.0, + 1406.0, + 918.0, + 1325.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 914.0, + 557.0, + 914.0, + 557.0, + 946.0, + 296.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 914.0, + 757.0, + 914.0, + 757.0, + 946.0, + 577.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 914.0, + 1406.0, + 914.0, + 1406.0, + 946.0, + 776.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 945.0, + 1403.0, + 945.0, + 1403.0, + 976.0, + 296.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 975.0, + 1406.0, + 975.0, + 1406.0, + 1006.0, + 296.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1002.0, + 1405.0, + 1002.0, + 1405.0, + 1039.0, + 293.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1036.0, + 1138.0, + 1036.0, + 1138.0, + 1068.0, + 295.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1036.0, + 1403.0, + 1036.0, + 1403.0, + 1068.0, + 1159.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1066.0, + 423.0, + 1066.0, + 423.0, + 1098.0, + 296.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1066.0, + 1117.0, + 1066.0, + 1117.0, + 1098.0, + 501.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1066.0, + 1403.0, + 1066.0, + 1403.0, + 1098.0, + 1137.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1091.0, + 744.0, + 1091.0, + 744.0, + 1134.0, + 292.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1091.0, + 1406.0, + 1091.0, + 1406.0, + 1134.0, + 823.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1128.0, + 1405.0, + 1128.0, + 1405.0, + 1159.0, + 296.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1157.0, + 1406.0, + 1157.0, + 1406.0, + 1191.0, + 295.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1188.0, + 1406.0, + 1188.0, + 1406.0, + 1220.0, + 296.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1218.0, + 1405.0, + 1218.0, + 1405.0, + 1250.0, + 295.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1250.0, + 1407.0, + 1250.0, + 1407.0, + 1281.0, + 296.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1276.0, + 1406.0, + 1276.0, + 1406.0, + 1313.0, + 293.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1344.0, + 295.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1339.0, + 1405.0, + 1339.0, + 1405.0, + 1374.0, + 295.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1372.0, + 1406.0, + 1372.0, + 1406.0, + 1403.0, + 296.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1397.0, + 1406.0, + 1397.0, + 1406.0, + 1437.0, + 293.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1429.0, + 806.0, + 1429.0, + 806.0, + 1467.0, + 293.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1478.0, + 1406.0, + 1478.0, + 1406.0, + 1511.0, + 296.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1508.0, + 1403.0, + 1508.0, + 1403.0, + 1540.0, + 295.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1539.0, + 1406.0, + 1539.0, + 1406.0, + 1571.0, + 295.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 1403.0, + 1570.0, + 1403.0, + 1602.0, + 295.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1600.0, + 1406.0, + 1600.0, + 1406.0, + 1632.0, + 296.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1631.0, + 1407.0, + 1631.0, + 1407.0, + 1663.0, + 296.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1658.0, + 1406.0, + 1658.0, + 1406.0, + 1695.0, + 293.0, + 1695.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": [ + 296.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1755.0, + 296.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1751.0, + 1406.0, + 1751.0, + 1406.0, + 1786.0, + 293.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1782.0, + 1405.0, + 1782.0, + 1405.0, + 1818.0, + 292.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1810.0, + 1406.0, + 1810.0, + 1406.0, + 1849.0, + 292.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1840.0, + 1347.0, + 1840.0, + 1347.0, + 1879.0, + 293.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 298.0, + 1404.0, + 298.0, + 1404.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 1406.0, + 327.0, + 1406.0, + 363.0, + 294.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 358.0, + 1407.0, + 358.0, + 1407.0, + 395.0, + 293.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 390.0, + 645.0, + 390.0, + 645.0, + 423.0, + 294.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1968.0, + 739.0, + 1968.0, + 739.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1968.0, + 935.0, + 1968.0, + 935.0, + 2008.0, + 851.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2008.0, + 969.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1079.0, + 2000.0, + 1079.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2036.0, + 1112.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 229, + 1405, + 229, + 1405, + 901, + 297, + 901 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1303, + 1406, + 1303, + 1406, + 1853, + 297, + 1853 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 995, + 1404, + 995, + 1404, + 1209, + 298, + 1209 + ], + "score": 0.98 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 301, + 1249, + 606, + 1249, + 606, + 1279, + 301, + 1279 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 300, + 939, + 579, + 939, + 579, + 970, + 300, + 970 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 13, + "poly": [ + 298, + 380, + 461, + 380, + 461, + 412, + 298, + 412 + ], + "score": 0.92, + "latex": "w ^ { d } = \\dot { w } + \\Delta ^ { \\overline { { d } } }" + }, + { + "category_id": 13, + "poly": [ + 597, + 384, + 616, + 384, + 616, + 411, + 597, + 411 + ], + "score": 0.77, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1219, + 388, + 1242, + 388, + 1242, + 410, + 1219, + 410 + ], + "score": 0.66, + "latex": "w" + }, + { + "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": [ + 298.0, + 1249.0, + 610.0, + 1249.0, + 610.0, + 1281.0, + 298.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 939.0, + 581.0, + 939.0, + 581.0, + 972.0, + 296.0, + 972.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": [ + 296.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1405.0, + 319.0, + 1405.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 352.0, + 1407.0, + 352.0, + 1407.0, + 387.0, + 295.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 381.0, + 596.0, + 381.0, + 596.0, + 416.0, + 462.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 381.0, + 1218.0, + 381.0, + 1218.0, + 416.0, + 617.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 381.0, + 1407.0, + 381.0, + 1407.0, + 416.0, + 1243.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 413.0, + 1405.0, + 413.0, + 1405.0, + 448.0, + 295.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 443.0, + 1406.0, + 443.0, + 1406.0, + 477.0, + 292.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 474.0, + 1407.0, + 474.0, + 1407.0, + 509.0, + 294.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 1407.0, + 504.0, + 1407.0, + 540.0, + 295.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 535.0, + 1405.0, + 535.0, + 1405.0, + 566.0, + 296.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 565.0, + 1406.0, + 565.0, + 1406.0, + 599.0, + 292.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 595.0, + 1406.0, + 595.0, + 1406.0, + 631.0, + 294.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 625.0, + 1408.0, + 625.0, + 1408.0, + 662.0, + 292.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 654.0, + 1406.0, + 654.0, + 1406.0, + 692.0, + 292.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 686.0, + 1408.0, + 686.0, + 1408.0, + 722.0, + 291.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 716.0, + 1407.0, + 716.0, + 1407.0, + 753.0, + 294.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 1408.0, + 748.0, + 1408.0, + 783.0, + 294.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 1406.0, + 778.0, + 1406.0, + 814.0, + 295.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 808.0, + 1407.0, + 808.0, + 1407.0, + 842.0, + 294.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 1405.0, + 839.0, + 1405.0, + 875.0, + 295.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 1318.0, + 870.0, + 1318.0, + 905.0, + 295.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1303.0, + 1408.0, + 1303.0, + 1408.0, + 1341.0, + 292.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1336.0, + 1404.0, + 1336.0, + 1404.0, + 1367.0, + 296.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1365.0, + 1408.0, + 1365.0, + 1408.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1395.0, + 1407.0, + 1395.0, + 1407.0, + 1431.0, + 295.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1460.0, + 296.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1457.0, + 1406.0, + 1457.0, + 1406.0, + 1493.0, + 294.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1483.0, + 1407.0, + 1483.0, + 1407.0, + 1527.0, + 291.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1518.0, + 1408.0, + 1518.0, + 1408.0, + 1554.0, + 295.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1548.0, + 1406.0, + 1548.0, + 1406.0, + 1583.0, + 294.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1581.0, + 1404.0, + 1581.0, + 1404.0, + 1612.0, + 296.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1608.0, + 1406.0, + 1608.0, + 1406.0, + 1644.0, + 295.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1641.0, + 1407.0, + 1641.0, + 1407.0, + 1673.0, + 296.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 1408.0, + 1669.0, + 1408.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1735.0, + 294.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1730.0, + 1406.0, + 1730.0, + 1406.0, + 1766.0, + 295.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1762.0, + 1404.0, + 1762.0, + 1404.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1404.0, + 1790.0, + 1404.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1824.0, + 451.0, + 1824.0, + 451.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 1406.0, + 995.0, + 1406.0, + 1030.0, + 293.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 1406.0, + 1026.0, + 1406.0, + 1059.0, + 293.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1055.0, + 1406.0, + 1055.0, + 1406.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1087.0, + 1405.0, + 1087.0, + 1405.0, + 1120.0, + 292.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1115.0, + 1404.0, + 1115.0, + 1404.0, + 1155.0, + 293.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1147.0, + 1405.0, + 1147.0, + 1405.0, + 1183.0, + 293.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1181.0, + 1027.0, + 1181.0, + 1027.0, + 1211.0, + 296.0, + 1211.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 340, + 436, + 1357, + 436, + 1357, + 2004, + 340, + 2004 + ], + "score": 0.976, + "html": "
Benchmark Accuracy (by domain) Algorithm
0 15 30 45 60 75 Average82.5096.3093.40 78.60 94.2080.50 87.58 D-MTAE (Ghifary et al., 2015)84.6095.60 94.60 82.90 94.80 82.10 89.10 CCSA (Motiian et al., 2017)83.70 96.9095.70 85.20 95.9081.20 89.80 MMD-AAE (Li et al., 2018b)85.6095.0095.6095.5095.9084.30 92.00 BestSources (Mancini et al.,2018a)RotatedMNIST 88.8097.6097.50 97.8097.6091.90 95.20 ADAGE(Carlucci et al.,2019b)98.0097.7097.7091.4095.28CrossGrad (Shankar et al.,2018)88.3098.6090.1098.9098.9098.8098.3090.00 95.80 HEX (Wang et al., 2019)89.23 99.68 99.20 99.24 99.5391.44 96.39 FeatureCritic (Li et al.,2019b)93.50 99.3099.10 99.20 99.3093.00 97.20 DIVA (Ilse et al.,2019)95.9098.9098.80 98.9098.9096.40 98.00 Our ERM
82.50
84.60
83.70
85.60Rotated95.0095.60
MNIST 88.8088.3097.6097.50
98.60
90.1098.90
89.2399.6899.20
93.5099.3099.10
95.9098.9098.80
CLSV Average64.36 64.06 SCA (Ghifary et al., 2016)67.10 65.00 CCSA (Motiian et al., 2017)62.59 67.67 MTSSL (Albuquerque et al., 2020)63.90 68.60 D-MTAE (Ghifaryetal.,15)65.65 69.41 CIDG (Li et al., 2018c)64.38 69.59 CIDDG (Li et al., 2018d)66.86 70.22 MDA (Hu et al., 2019)65.25 70.97 MDA (Ding and Fu, 2017)69.99 72.11 DBADG (Li et al., 2017)67.60 72.30 MMD-AAE (Li et al.,2018b)67.10 72.90 Epi-FCR (Li et al.,2019a)70.62 73.19 JiGen (Carlucci et al.,2019a)70.49 73.30 VREx (Krueger et al., 2020)68.70 73.50 S-MLDG (Li et al., 2020)71.96 73.88 MMLD (Matsura and Harada, 2019)69.14 74.11 MASF (Dou et al., 2019)69.83 74.67 EISNet (Wang et al., 2020a)73.93 75.43 RSC (Huang et al.,2020)71.14 75.92 G2DM (Albuquerque et al., 2019)74.60 77.50 Our ERM
88.9259.6059.2064.36
92.3062.1059.1067.10
89.1564.9958.8862.59
89.0560.1361.3363.90
91.1260.4360.8565.65
88.8363.0662.1064.38
92.6461.7859.6066.8670.22
92.7662.3463.5465.2570.97
VLCS93.6363.4961.3269.9972.11
94.4062.6064.4067.6072.30
94.1064.3065.9067.1072.90
96.9360.9064.3070.6273.19
96.7260.4063.6870.4973.30
96.4064.8064.0068.7073.50
96.6658.7768.1371.96
94.7864.9067.6469.14
97.3363.4968.0269.8374.67
97.6161.8668.3273.9375.43
95.5267.6369.3771.1475.92
97.7064.3073.4074.6077.50
ACPSDBADG (Li et al., 2017)MTSSL (Albuquerque et al., 2020)CIDDG (Li et al., 2018d)JAN-COMBO (Rahman et al., 2019b)MLDG (Li et al., 2018a)HEX (Wang et al., 2019)BestSources (Mancini et al.,2018a)FeatureCritic (Lietal.,019b)VREx (Krueger et al.,2020)CAADG (Rahman et al., 2019a)Epi-FCR (Li et al., 2019a)G2DM (Albuquerque et al., 2019)MASF (Dou et al., 2019)JiGen (Carlucci et al.,2019a)S-MLDG (Li et al., 2020)
62.8666.9789.5057.5169.21
61.6767.4184.3163.9169.32
62.7069.7378.6564.4569.40
62.6465.9890.4458.7669.45
66.2366.8888.0058.9670.01
66.8069.7087.9056.3070.20
64.1066.8090.2060.1070.30
64.4068.6090.1058.4070.40
67.0467.9789.7459.8171.14
65.5269.9089.1663.3771.98
64.7072.3086.1065.0072.00
PACS66.6073.3688.1266.1973.55
70.3572.4690.6867.3375.21
79.4275.2596.0371.3580.51
80.5077.8094.8072.8081.50
79.4877.1394.3075.30 81.55 D-SAM-A (D'Innocente and Caputo, 2018)72.29 81.83 MMLD (Matsuura and Harada,2019)74.70 83.10 DDAIG (Zhou et al., 2020)76.30 83.25 SagNets (Nam et al., 2019)78.32 83.37 DMG (Chattopadhyay et al.,2020)70.30 83.60 MetaReg (Balaji et al.,2018)79.30 85.50 Our ERM78.07 85.84 EISNet (Wang et al.,2020a)82.90 86.64 DSON (Seo et al., 2020)83.35 87.83 RSC (Huang et al.,2020)
81.2877.1696.0972.2981.83
84.2078.1095.3074.7083.10
83.5877.6695.4776.3083.25
82.5778.1194.4978.3283.37
87.2079.2097.6070.3083.60
84.7080.8097.2079.3085.50
86.6481.5397.1178.07
87.0480.6295.9982.90
87.8982.1697.92
ACPR Average68.35 57.04 JAN-COMBO (Rahman et al., 2019b)72.79 61.20 JiGen (Carlucci et al.,2019a)71.90 61.76 D-SAM-△ (D'Innocente and Caputo,2018)73.38 62.34 SagNets (Nam et al.,2019)74.68 62.90 DSON (Seo et al., 2020)74.54 63.12 RSC (Huang et al.,2020)76.00 65.50 DDAIG (Zhou et al.,2020)76.60 66.50 Our ERM
48.0945.2066.5268.3557.04
53.0447.5171.4772.7961.20
54.5349.0471.5771.9061.76
Office60.2045.3870.4273.3862.34
Home59.3745.7071.8474.6862.90
58.4247.9071.6374.5463.12
59.2052.3074.60
61.3052.40 75.80
" + }, + { + "category_id": 1, + "poly": [ + 295, + 286, + 1403, + 286, + 1403, + 349, + 295, + 349 + ], + "score": 0.934 + }, + { + "category_id": 6, + "poly": [ + 429, + 401, + 1265, + 401, + 1265, + 433, + 429, + 433 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.861 + }, + { + "category_id": 0, + "poly": [ + 301, + 231, + 853, + 231, + 853, + 261, + 301, + 261 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 301, + 231, + 853, + 231, + 853, + 261, + 301, + 261 + ], + "score": 0.093 + }, + { + "category_id": 15, + "poly": [ + 428.0, + 395.0, + 1270.0, + 395.0, + 1270.0, + 439.0, + 428.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 858.0, + 230.0, + 858.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 286.0, + 1404.0, + 286.0, + 1404.0, + 321.0, + 294.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 320.0, + 564.0, + 320.0, + 564.0, + 349.0, + 295.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 858.0, + 230.0, + 858.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1399, + 1972, + 1399, + 2035, + 298, + 2035 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 296, + 1260, + 1397, + 1260, + 1397, + 1292, + 296, + 1292 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.843 + }, + { + "category_id": 0, + "poly": [ + 298, + 1202, + 494, + 1202, + 494, + 1235, + 298, + 1235 + ], + "score": 0.839 + }, + { + "category_id": 0, + "poly": [ + 300, + 225, + 750, + 225, + 750, + 263, + 300, + 263 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 289, + 344, + 1409, + 344, + 1409, + 1171, + 289, + 1171 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 300, + 293, + 536, + 293, + 536, + 326, + 300, + 326 + ], + "score": 0.687 + }, + { + "category_id": 1, + "poly": [ + 295, + 1315, + 1408, + 1315, + 1408, + 1953, + 295, + 1953 + ], + "score": 0.571 + }, + { + "category_id": 0, + "poly": [ + 300, + 293, + 536, + 293, + 536, + 326, + 300, + 326 + ], + "score": 0.188 + }, + { + "category_id": 1, + "poly": [ + 300, + 225, + 750, + 225, + 750, + 263, + 300, + 263 + ], + "score": 0.106 + }, + { + "category_id": 13, + "poly": [ + 889, + 1887, + 958, + 1887, + 958, + 1920, + 889, + 1920 + ], + "score": 0.93, + "latex": "d \\in \\{" + }, + { + "category_id": 13, + "poly": [ + 614, + 698, + 827, + 698, + 827, + 735, + 614, + 735 + ], + "score": 0.93, + "latex": "P ( \\phi ( X ^ { d } ) | Y ^ { d } = y )" + }, + { + "category_id": 13, + "poly": [ + 692, + 1346, + 901, + 1346, + 901, + 1380, + 692, + 1380 + ], + "score": 0.92, + "latex": "d \\in \\{ 0 . 1 , 0 . 3 , 0 . 9 \\}" + }, + { + "category_id": 13, + "poly": [ + 1325, + 815, + 1403, + 815, + 1403, + 851, + 1325, + 851 + ], + "score": 0.91, + "latex": "\\phi ( X ^ { d } )" + }, + { + "category_id": 13, + "poly": [ + 980, + 1716, + 1046, + 1716, + 1046, + 1749, + 980, + 1749 + ], + "score": 0.9, + "latex": "d \\in \\{" + }, + { + "category_id": 13, + "poly": [ + 468, + 1817, + 776, + 1817, + 776, + 1849, + 468, + 1849 + ], + "score": 0.89, + "latex": "d \\in \\{ \\mathrm { L 1 0 0 , L 3 8 , L 4 3 , L 4 6 } \\}" + }, + { + "category_id": 13, + "poly": [ + 888, + 1578, + 959, + 1578, + 959, + 1609, + 888, + 1609 + ], + "score": 0.89, + "latex": "d \\in \\{" + }, + { + "category_id": 13, + "poly": [ + 989, + 1645, + 1055, + 1645, + 1055, + 1679, + 989, + 1679 + ], + "score": 0.87, + "latex": "d \\in \\{" + }, + { + "category_id": 13, + "poly": [ + 712, + 1509, + 731, + 1509, + 731, + 1535, + 712, + 1535 + ], + "score": 0.76, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1378, + 1402, + 1378, + 1402, + 1404, + 1383, + 1404 + ], + "score": 0.74, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1162, + 707, + 1180, + 707, + 1180, + 733, + 1162, + 733 + ], + "score": 0.72, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 470, + 1918, + 486, + 1918, + 486, + 1951, + 470, + 1951 + ], + "score": 0.64, + "latex": "\\}" + }, + { + "category_id": 13, + "poly": [ + 873, + 1748, + 1016, + 1748, + 1016, + 1781, + 873, + 1781 + ], + "score": 0.5, + "latex": "( 3 , 2 2 4 , 2 2 4 )" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1577, + 1329, + 1577, + 1329, + 1611, + 1312, + 1611 + ], + "score": 0.47, + "latex": "\\}" + }, + { + "category_id": 13, + "poly": [ + 1321, + 1716, + 1337, + 1716, + 1337, + 1750, + 1321, + 1750 + ], + "score": 0.44, + "latex": "\\}" + }, + { + "category_id": 13, + "poly": [ + 460, + 1849, + 604, + 1849, + 604, + 1881, + 460, + 1881 + ], + "score": 0.41, + "latex": "( 3 , 2 2 4 , 2 2 4 )" + }, + { + "category_id": 13, + "poly": [ + 1187, + 1476, + 1399, + 1476, + 1399, + 1511, + 1187, + 1511 + ], + "score": 0.4, + "latex": "d \\in \\{ 0 , 1 5 , 3 0 , 4 5 ." + }, + { + "category_id": 13, + "poly": [ + 1187, + 1477, + 1275, + 1477, + 1275, + 1511, + 1187, + 1511 + ], + "score": 0.38, + "latex": "d \\in \\{ 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 861, + 1609, + 1002, + 1609, + 1002, + 1641, + 861, + 1641 + ], + "score": 0.37, + "latex": "( 3 , 2 2 4 , 2 2 4 )" + }, + { + "category_id": 13, + "poly": [ + 601, + 1438, + 717, + 1438, + 717, + 1471, + 601, + 1471 + ], + "score": 0.37, + "latex": "( 2 , 2 8 , 2 8 )" + }, + { + "category_id": 13, + "poly": [ + 336, + 1507, + 428, + 1507, + 428, + 1540, + 336, + 1540 + ], + "score": 0.29, + "latex": "6 0 , 7 5 \\ \\}" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1918, + 1175, + 1918, + 1175, + 1951, + 1034, + 1951 + ], + "score": 0.27, + "latex": "( 3 , 2 2 4 , 2 2 4 )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1201.0, + 499.0, + 1201.0, + 499.0, + 1237.0, + 293.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 221.0, + 753.0, + 221.0, + 753.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 294.0, + 537.0, + 294.0, + 537.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1403.0, + 1969.0, + 1403.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1181.0, + 2002.0, + 1181.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1258.0, + 1401.0, + 1258.0, + 1401.0, + 1297.0, + 296.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 349.0, + 1348.0, + 349.0, + 1348.0, + 386.0, + 300.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 390.0, + 1403.0, + 390.0, + 1403.0, + 421.0, + 300.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 422.0, + 963.0, + 422.0, + 963.0, + 454.0, + 336.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 458.0, + 1402.0, + 458.0, + 1402.0, + 493.0, + 297.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 488.0, + 1332.0, + 488.0, + 1332.0, + 525.0, + 332.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 530.0, + 1403.0, + 530.0, + 1403.0, + 565.0, + 297.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 560.0, + 1017.0, + 560.0, + 1017.0, + 594.0, + 333.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 600.0, + 1406.0, + 600.0, + 1406.0, + 632.0, + 299.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 630.0, + 971.0, + 630.0, + 971.0, + 663.0, + 333.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 667.0, + 1404.0, + 667.0, + 1404.0, + 705.0, + 296.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 692.0, + 613.0, + 692.0, + 613.0, + 739.0, + 329.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 692.0, + 1161.0, + 692.0, + 1161.0, + 739.0, + 828.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 692.0, + 1195.0, + 692.0, + 1195.0, + 739.0, + 1181.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 736.0, + 1362.0, + 736.0, + 1362.0, + 775.0, + 296.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 775.0, + 1331.0, + 775.0, + 1331.0, + 814.0, + 296.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 812.0, + 1324.0, + 812.0, + 1324.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 812.0, + 1408.0, + 812.0, + 1408.0, + 854.0, + 1404.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 849.0, + 1350.0, + 849.0, + 1350.0, + 881.0, + 334.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 886.0, + 1378.0, + 886.0, + 1378.0, + 923.0, + 286.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 921.0, + 1406.0, + 921.0, + 1406.0, + 964.0, + 285.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 958.0, + 981.0, + 958.0, + 981.0, + 992.0, + 332.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 994.0, + 1407.0, + 994.0, + 1407.0, + 1031.0, + 285.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1030.0, + 1406.0, + 1030.0, + 1406.0, + 1074.0, + 284.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1069.0, + 683.0, + 1069.0, + 683.0, + 1100.0, + 334.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1104.0, + 1404.0, + 1104.0, + 1404.0, + 1140.0, + 285.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1138.0, + 1040.0, + 1138.0, + 1040.0, + 1169.0, + 336.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 294.0, + 537.0, + 294.0, + 537.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1316.0, + 1404.0, + 1316.0, + 1404.0, + 1348.0, + 302.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1347.0, + 691.0, + 1347.0, + 691.0, + 1379.0, + 335.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1347.0, + 1405.0, + 1347.0, + 1405.0, + 1379.0, + 902.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1376.0, + 1382.0, + 1376.0, + 1382.0, + 1409.0, + 335.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1376.0, + 1406.0, + 1376.0, + 1406.0, + 1409.0, + 1403.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1439.0, + 336.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1439.0, + 600.0, + 1439.0, + 600.0, + 1471.0, + 335.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1439.0, + 879.0, + 1439.0, + 879.0, + 1471.0, + 718.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1475.0, + 1186.0, + 1475.0, + 1186.0, + 1511.0, + 297.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1475.0, + 1406.0, + 1475.0, + 1406.0, + 1511.0, + 1400.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1505.0, + 335.0, + 1505.0, + 335.0, + 1542.0, + 332.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1505.0, + 711.0, + 1505.0, + 711.0, + 1542.0, + 429.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1505.0, + 1405.0, + 1505.0, + 1405.0, + 1542.0, + 732.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1537.0, + 629.0, + 1537.0, + 629.0, + 1572.0, + 333.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1576.0, + 887.0, + 1576.0, + 887.0, + 1612.0, + 298.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1576.0, + 1311.0, + 1576.0, + 1311.0, + 1612.0, + 960.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1612.0, + 1330.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1607.0, + 860.0, + 1607.0, + 860.0, + 1643.0, + 333.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1607.0, + 1166.0, + 1607.0, + 1166.0, + 1643.0, + 1003.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1642.0, + 988.0, + 1642.0, + 988.0, + 1683.0, + 294.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1642.0, + 1407.0, + 1642.0, + 1407.0, + 1683.0, + 1056.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1676.0, + 1383.0, + 1676.0, + 1383.0, + 1712.0, + 335.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1713.0, + 979.0, + 1713.0, + 979.0, + 1749.0, + 298.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1713.0, + 1320.0, + 1713.0, + 1320.0, + 1749.0, + 1047.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1713.0, + 1404.0, + 1713.0, + 1404.0, + 1749.0, + 1338.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1745.0, + 872.0, + 1745.0, + 872.0, + 1783.0, + 333.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1745.0, + 1193.0, + 1745.0, + 1193.0, + 1783.0, + 1017.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1784.0, + 1405.0, + 1784.0, + 1405.0, + 1821.0, + 297.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1817.0, + 467.0, + 1817.0, + 467.0, + 1849.0, + 336.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1849.0, + 777.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1847.0, + 459.0, + 1847.0, + 459.0, + 1881.0, + 336.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1847.0, + 781.0, + 1847.0, + 781.0, + 1881.0, + 605.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1884.0, + 888.0, + 1884.0, + 888.0, + 1921.0, + 298.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1884.0, + 1407.0, + 1884.0, + 1407.0, + 1921.0, + 959.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1916.0, + 469.0, + 1916.0, + 469.0, + 1953.0, + 332.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1916.0, + 1033.0, + 1916.0, + 1033.0, + 1953.0, + 487.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1916.0, + 1366.0, + 1916.0, + 1366.0, + 1953.0, + 1176.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 221.0, + 753.0, + 221.0, + 753.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 284, + 1406, + 284, + 1406, + 503, + 296, + 503 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 625, + 1044, + 1074, + 1044, + 1074, + 1309, + 625, + 1309 + ], + "score": 0.975, + "html": "
DatasetArchitecture
Colored MNIST Rotated MNISTMNIST ConvNet
PACS
VLCS
OfficeHomeResNet-50
TerraIncognita
" + }, + { + "category_id": 5, + "poly": [ + 603, + 1395, + 1095, + 1395, + 1095, + 1855, + 603, + 1855 + ], + "score": 0.97, + "html": "
#Layer
1Conv2D (in=d,out=64)
2ReLU
3GroupNorm (groups=8)
4Conv2D (in=64,out=128,stride=2)
5ReLU
6GroupNorm (8 groups)
7Conv2D (in=128,out=128)
8ReLU
9GroupNorm (8 groups)
10Conv2D (in=128,out=128)
11ReLU
12 13GroupNorm (8 groups) Global average-pooling
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1880, + 1406, + 1880, + 1406, + 2035, + 298, + 2035 + ], + "score": 0.956 + }, + { + "category_id": 3, + "poly": [ + 354, + 534, + 1334, + 534, + 1334, + 770, + 354, + 770 + ], + "score": 0.942 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 298, + 991, + 871, + 991, + 871, + 1023, + 298, + 1023 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 1, + "poly": [ + 296, + 1333, + 895, + 1333, + 895, + 1366, + 296, + 1366 + ], + "score": 0.851 + }, + { + "category_id": 0, + "poly": [ + 298, + 936, + 878, + 936, + 878, + 966, + 298, + 966 + ], + "score": 0.839 + }, + { + "category_id": 4, + "poly": [ + 296, + 815, + 1404, + 815, + 1404, + 880, + 296, + 880 + ], + "score": 0.838 + }, + { + "category_id": 0, + "poly": [ + 302, + 230, + 897, + 230, + 897, + 262, + 302, + 262 + ], + "score": 0.587 + }, + { + "category_id": 1, + "poly": [ + 302, + 230, + 897, + 230, + 897, + 262, + 302, + 262 + ], + "score": 0.286 + }, + { + "category_id": 6, + "poly": [ + 296, + 1333, + 895, + 1333, + 895, + 1366, + 296, + 1366 + ], + "score": 0.12 + }, + { + "category_id": 6, + "poly": [ + 298, + 991, + 871, + 991, + 871, + 1023, + 298, + 1023 + ], + "score": 0.107 + }, + { + "category_id": 13, + "poly": [ + 841, + 287, + 954, + 287, + 954, + 321, + 841, + 321 + ], + "score": 0.93, + "latex": "i \\in \\{ 1 , 2 \\}" + }, + { + "category_id": 13, + "poly": [ + 591, + 287, + 798, + 287, + 798, + 320, + 591, + 320 + ], + "score": 0.92, + "latex": "T _ { i } = \\{ A _ { i } , B _ { i } , C _ { i } \\}" + }, + { + "category_id": 13, + "poly": [ + 1155, + 379, + 1246, + 379, + 1246, + 412, + 1155, + 412 + ], + "score": 0.91, + "latex": "( F _ { Z } , Z )" + }, + { + "category_id": 13, + "poly": [ + 1283, + 348, + 1356, + 348, + 1356, + 381, + 1283, + 381 + ], + "score": 0.91, + "latex": "T _ { 1 } \\backslash Z" + }, + { + "category_id": 13, + "poly": [ + 298, + 380, + 383, + 380, + 383, + 410, + 298, + 410 + ], + "score": 0.91, + "latex": "Z \\in T _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 816, + 682, + 850, + 682, + 850, + 707, + 816, + 707 + ], + "score": 0.91, + "latex": "B _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 797, + 350, + 835, + 350, + 835, + 379, + 797, + 379 + ], + "score": 0.89, + "latex": "F _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 619, + 682, + 653, + 682, + 653, + 707, + 619, + 707 + ], + "score": 0.89, + "latex": "A _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 557, + 441, + 594, + 441, + 594, + 470, + 557, + 470 + ], + "score": 0.89, + "latex": "D _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 545, + 473, + 582, + 473, + 582, + 501, + 545, + 501 + ], + "score": 0.89, + "latex": "D _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 619, + 623, + 653, + 623, + 653, + 648, + 619, + 648 + ], + "score": 0.88, + "latex": "A _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 669, + 321, + 700, + 321, + 700, + 349, + 669, + 349 + ], + "score": 0.88, + "latex": "T _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 921, + 379, + 1007, + 379, + 1007, + 415, + 921, + 415 + ], + "score": 0.88, + "latex": "\\sum { _ { Z \\in T _ { 1 } } }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 682, + 1283, + 682, + 1283, + 707, + 1248, + 707 + ], + "score": 0.87, + "latex": "D _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 349, + 328, + 349, + 328, + 379, + 298, + 379 + ], + "score": 0.86, + "latex": "T _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1013, + 623, + 1046, + 623, + 1046, + 648, + 1013, + 648 + ], + "score": 0.86, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1013, + 682, + 1046, + 682, + 1046, + 707, + 1013, + 707 + ], + "score": 0.86, + "latex": "C _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 815, + 623, + 850, + 623, + 850, + 648, + 815, + 648 + ], + "score": 0.86, + "latex": "B _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1247, + 623, + 1284, + 623, + 1284, + 648, + 1247, + 648 + ], + "score": 0.84, + "latex": "D _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 926, + 413, + 957, + 413, + 957, + 440, + 926, + 440 + ], + "score": 0.81, + "latex": "T _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1541, + 858, + 1541, + 858, + 1569, + 789, + 1569 + ], + "score": 0.5, + "latex": "\\scriptstyle \\mathrm { i n = } 6 4" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1542, + 1069, + 1542, + 1069, + 1567, + 1036, + 1567 + ], + "score": 0.49, + "latex": "^ { \\prime = 2 }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1632, + 871, + 1632, + 871, + 1660, + 789, + 1660 + ], + "score": 0.47, + "latex": "\\mathrm { i n } { = } 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 788, + 1724, + 871, + 1724, + 871, + 1752, + 788, + 1752 + ], + "score": 0.44, + "latex": "\\mathrm { i n } { = } 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 449, + 1882, + 492, + 1882, + 492, + 1911, + 449, + 1911 + ], + "score": 0.44, + "latex": "5 0 ^ { \\circ }" + }, + { + "category_id": 13, + "poly": [ + 865, + 735, + 891, + 735, + 891, + 762, + 865, + 762 + ], + "score": 0.35, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 788, + 1450, + 845, + 1450, + 845, + 1478, + 788, + 1478 + ], + "score": 0.34, + "latex": "\\mathrm { i n } { = } d" + }, + { + "category_id": 13, + "poly": [ + 1062, + 735, + 1087, + 735, + 1087, + 762, + 1062, + 762 + ], + "score": 0.33, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 907, + 1512, + 942, + 1512, + 942, + 1538, + 907, + 1538 + ], + "score": 0.3, + "latex": "{ \\mathsf { \\Omega } } { = } 8" + }, + { + "category_id": 13, + "poly": [ + 1297, + 735, + 1324, + 735, + 1324, + 762, + 1297, + 762 + ], + "score": 0.28, + "latex": "D" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 609.0, + 495.0, + 609.0, + 495.0, + 657.0, + 385.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 609.0, + 618.0, + 609.0, + 618.0, + 666.0, + 611.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 609.0, + 662.0, + 609.0, + 662.0, + 666.0, + 654.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 530.0, + 814.0, + 530.0, + 814.0, + 667.0, + 733.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 530.0, + 935.0, + 530.0, + 935.0, + 667.0, + 851.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 608.0, + 1012.0, + 608.0, + 1012.0, + 665.0, + 1006.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 608.0, + 1054.0, + 608.0, + 1054.0, + 665.0, + 1047.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 546.0, + 1160.0, + 546.0, + 1160.0, + 761.0, + 1135.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 533.0, + 1246.0, + 533.0, + 1246.0, + 666.0, + 1195.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 533.0, + 1337.0, + 533.0, + 1337.0, + 666.0, + 1285.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 668.0, + 510.0, + 668.0, + 510.0, + 714.0, + 373.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 667.0, + 618.0, + 667.0, + 618.0, + 721.0, + 610.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 667.0, + 665.0, + 667.0, + 665.0, + 721.0, + 654.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 668.0, + 815.0, + 668.0, + 815.0, + 721.0, + 807.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 668.0, + 862.0, + 668.0, + 862.0, + 721.0, + 851.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 664.0, + 1012.0, + 664.0, + 1012.0, + 722.0, + 1004.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 664.0, + 1060.0, + 664.0, + 1060.0, + 722.0, + 1047.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 668.0, + 1247.0, + 668.0, + 1247.0, + 721.0, + 1240.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 668.0, + 1295.0, + 668.0, + 1295.0, + 721.0, + 1284.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 726.0, + 701.0, + 726.0, + 701.0, + 772.0, + 574.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 727.0, + 864.0, + 727.0, + 864.0, + 772.0, + 770.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 727.0, + 898.0, + 727.0, + 898.0, + 772.0, + 892.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 726.0, + 1061.0, + 726.0, + 1061.0, + 772.0, + 966.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 726.0, + 1095.0, + 726.0, + 1095.0, + 772.0, + 1088.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 727.0, + 1296.0, + 727.0, + 1296.0, + 772.0, + 1202.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 727.0, + 1331.0, + 727.0, + 1331.0, + 772.0, + 1325.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 937.0, + 879.0, + 937.0, + 879.0, + 965.0, + 297.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 815.0, + 1405.0, + 815.0, + 1405.0, + 851.0, + 295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 844.0, + 1240.0, + 844.0, + 1240.0, + 881.0, + 295.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 903.0, + 230.0, + 903.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1329.0, + 895.0, + 1329.0, + 895.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 988.0, + 871.0, + 988.0, + 871.0, + 1026.0, + 295.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 285.0, + 590.0, + 285.0, + 590.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 285.0, + 840.0, + 285.0, + 840.0, + 324.0, + 799.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 285.0, + 1406.0, + 285.0, + 1406.0, + 324.0, + 955.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 317.0, + 668.0, + 317.0, + 668.0, + 354.0, + 293.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 317.0, + 1406.0, + 317.0, + 1406.0, + 354.0, + 701.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 344.0, + 297.0, + 344.0, + 297.0, + 386.0, + 293.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 344.0, + 796.0, + 344.0, + 796.0, + 386.0, + 329.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 344.0, + 1282.0, + 344.0, + 1282.0, + 386.0, + 836.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 344.0, + 1407.0, + 344.0, + 1407.0, + 386.0, + 1357.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 370.0, + 297.0, + 370.0, + 297.0, + 426.0, + 288.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 370.0, + 920.0, + 370.0, + 920.0, + 426.0, + 384.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 370.0, + 1154.0, + 370.0, + 1154.0, + 426.0, + 1008.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 370.0, + 1412.0, + 370.0, + 1412.0, + 426.0, + 1247.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 407.0, + 925.0, + 407.0, + 925.0, + 446.0, + 294.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 407.0, + 1406.0, + 407.0, + 1406.0, + 446.0, + 958.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 440.0, + 556.0, + 440.0, + 556.0, + 474.0, + 294.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 440.0, + 1406.0, + 440.0, + 1406.0, + 474.0, + 595.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 467.0, + 544.0, + 467.0, + 544.0, + 506.0, + 293.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 467.0, + 595.0, + 467.0, + 595.0, + 506.0, + 583.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1878.0, + 448.0, + 1878.0, + 448.0, + 1916.0, + 292.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1878.0, + 1406.0, + 1878.0, + 1406.0, + 1916.0, + 493.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1908.0, + 1408.0, + 1908.0, + 1408.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 558.0, + 2000.0, + 558.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 988.0, + 871.0, + 988.0, + 871.0, + 1026.0, + 295.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1329.0, + 895.0, + 1329.0, + 895.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 903.0, + 230.0, + 903.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 317, + 374, + 1382, + 374, + 1382, + 1768, + 317, + 1768 + ], + "score": 0.982, + "html": "
Default valueRandom distribution
ConditionParameter
ResNetlearning rate0.0000510Uniform(-5,-3.5)
batch size322Uniform(3,5.5)
batch size (if ARM)88
ResNet dropout0RandomChoice([0,0.1,0.5])
generator learning rate0.0000510Uniform(-5,-3.5)
discriminator learning rate0.0000510Uniform(-5,-3.5)
not ResNetlearning rate0.00110Uniform(-4.5,-3.5)
batch size642Uniform(3.9)
generator learning rate0.00110Uniform(-4.5,-2.5)
discriminator learning rate0.00110Uniform(-4.5,-2.5)
MNIST weight decay00
generator weight decay00
not MNISTweight decay010Uniform(-6,-2)
generator weight decay010Uniform(−6,−2)
DANN, C-DANNlambda1.010Uniform(−2,2)
discriminator weight decay010Uniform(-6,−2)
discriminator steps12Uniform(0,3)
discriminator width256int(2Uniform(6,10))
discriminator depth3RandomChoice([3,4,5])
discriminator dropout0RandomChoice([0,0.1,0.5])
discriminator grad penalty010Uniform(-2,1)
Adam β10.5RandomChoice([0,0.5])
DROeta0.0110Uniform(-1,1)
IRMlambda10010Uniform(-1,5)
warmup iterations50010Uniform(0,4)
Mixupalpha0.210Uniform(0,4)
MLDGbeta110Uniform(−1,1)
MMD gamma110Uniform(-1,1)
MTLema0.99RandomChoice([.5,.9,.99,1])
RSCfeature drop percentage1/3Uniform(0, 0.5)
batch drop percentage1/3Uniform(0, 0.5)
SagNetadversary weight0.110Uniform(−2,1)
VRExlambda1010Uniform(-1,5)
warmup iterations50010Uniform(0,4)
" + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1402, + 229, + 1402, + 294, + 294, + 294 + ], + "score": 0.947 + }, + { + "category_id": 6, + "poly": [ + 385, + 349, + 1311, + 349, + 1311, + 382, + 385, + 382 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.852 + }, + { + "category_id": 13, + "poly": [ + 1022, + 1464, + 1182, + 1464, + 1182, + 1491, + 1022, + 1491 + ], + "score": 0.59, + "latex": "1 0 ^ { \\mathrm { U n i f o r m ( - 1 , 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 1630, + 1182, + 1630, + 1182, + 1658, + 1022, + 1658 + ], + "score": 0.54, + "latex": "1 0 ^ { \\mathrm { U n i f o r m ( - 2 , 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1512, + 1360, + 1512, + 1360, + 1542, + 1021, + 1542 + ], + "score": 0.34, + "latex": "\\operatorname { R a n d o m C h o i c e } ( [ . 5 , . 9 , . 9 9 , 1 ] )" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1414, + 1182, + 1414, + 1182, + 1444, + 1021, + 1444 + ], + "score": 0.3, + "latex": "1 0 ^ { \\mathrm { U n i f o r m ( - 1 , 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1556, + 1202, + 1556, + 1202, + 1585, + 1021, + 1585 + ], + "score": 0.27, + "latex": "\\mathrm { U n i f o r m } ( 0 , 0 . 5 )" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 348.0, + 1313.0, + 348.0, + 1313.0, + 383.0, + 384.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 258.0, + 1124.0, + 258.0, + 1124.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1651, + 1404, + 1651, + 1404, + 1775, + 298, + 1775 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 297, + 287, + 1405, + 287, + 1405, + 410, + 297, + 410 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 1808, + 1404, + 1808, + 1404, + 1900, + 298, + 1900 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 298, + 1089, + 1407, + 1089, + 1407, + 1212, + 298, + 1212 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 299, + 1358, + 971, + 1358, + 971, + 1476, + 299, + 1476 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 295, + 1275, + 1400, + 1275, + 1400, + 1337, + 295, + 1337 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 293, + 1588, + 1296, + 1588, + 1296, + 1637, + 293, + 1637 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 679, + 229, + 679, + 261, + 300, + 261 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 814, + 75, + 814, + 105, + 300, + 105 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 298, + 1495, + 647, + 1495, + 647, + 1520, + 298, + 1520 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 866, + 2088, + 866, + 2113, + 835, + 2113 + ], + "score": 0.856 + }, + { + "category_id": 1, + "poly": [ + 298, + 1233, + 1057, + 1233, + 1057, + 1261, + 298, + 1261 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 301, + 431, + 1207, + 431, + 1207, + 1031, + 301, + 1031 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 295, + 1534, + 1379, + 1534, + 1379, + 1566, + 295, + 1566 + ], + "score": 0.557 + }, + { + "category_id": 7, + "poly": [ + 298, + 1049, + 661, + 1049, + 661, + 1075, + 298, + 1075 + ], + "score": 0.53 + }, + { + "category_id": 1, + "poly": [ + 298, + 1049, + 661, + 1049, + 661, + 1075, + 298, + 1075 + ], + "score": 0.473 + }, + { + "category_id": 0, + "poly": [ + 295, + 1534, + 1379, + 1534, + 1379, + 1566, + 295, + 1566 + ], + "score": 0.452 + }, + { + "category_id": 3, + "poly": [ + 301, + 431, + 1207, + 431, + 1207, + 1031, + 301, + 1031 + ], + "score": 0.188 + }, + { + "category_id": 13, + "poly": [ + 571, + 801, + 604, + 801, + 604, + 821, + 571, + 821 + ], + "score": 0.83, + "latex": "\\star =" + }, + { + "category_id": 13, + "poly": [ + 567, + 777, + 591, + 777, + 591, + 796, + 567, + 796 + ], + "score": 0.79, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 482, + 687, + 504, + 687, + 504, + 705, + 482, + 705 + ], + "score": 0.77, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 481, + 573, + 504, + 573, + 504, + 592, + 481, + 592 + ], + "score": 0.75, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 646, + 1237, + 698, + 1237, + 698, + 1258, + 646, + 1258 + ], + "score": 0.74, + "latex": "{ \\bf 1 0 \\star \\star }" + }, + { + "category_id": 13, + "poly": [ + 455, + 869, + 479, + 869, + 479, + 888, + 455, + 888 + ], + "score": 0.67, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 507, + 1384, + 530, + 1384, + 530, + 1402, + 507, + 1402 + ], + "score": 0.67, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 506, + 1430, + 529, + 1430, + 529, + 1448, + 506, + 1448 + ], + "score": 0.59, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 487, + 845, + 516, + 845, + 516, + 866, + 487, + 866 + ], + "score": 0.58, + "latex": "/ =" + }, + { + "category_id": 13, + "poly": [ + 530, + 1238, + 553, + 1238, + 553, + 1257, + 530, + 1257 + ], + "score": 0.58, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 531, + 642, + 553, + 642, + 553, + 660, + 531, + 660 + ], + "score": 0.57, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 919, + 803, + 938, + 803, + 938, + 820, + 919, + 820 + ], + "score": 0.51, + "latex": "^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 884, + 1409, + 899, + 1409, + 899, + 1425, + 884, + 1425 + ], + "score": 0.43, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 482, + 755, + 529, + 755, + 529, + 777, + 482, + 777 + ], + "score": 0.4, + "latex": "\\begin{array} { r l } { \\mathrm { y } } & { { } = } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 679.0, + 229.0, + 679.0, + 265.0, + 295.0, + 265.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": [ + 829.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1048.0, + 660.0, + 1048.0, + 660.0, + 1076.0, + 296.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1532.0, + 1383.0, + 1532.0, + 1383.0, + 1571.0, + 296.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 433.0, + 555.0, + 433.0, + 555.0, + 459.0, + 296.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 455.0, + 397.0, + 455.0, + 397.0, + 480.0, + 345.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 452.0, + 1188.0, + 452.0, + 1188.0, + 483.0, + 417.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 479.0, + 1196.0, + 479.0, + 1196.0, + 504.0, + 395.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 500.0, + 913.0, + 500.0, + 913.0, + 528.0, + 393.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 547.0, + 726.0, + 547.0, + 726.0, + 573.0, + 345.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 568.0, + 480.0, + 568.0, + 480.0, + 598.0, + 395.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 568.0, + 1088.0, + 568.0, + 1088.0, + 598.0, + 505.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 613.0, + 639.0, + 613.0, + 639.0, + 642.0, + 396.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 638.0, + 530.0, + 638.0, + 530.0, + 664.0, + 446.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 638.0, + 1046.0, + 638.0, + 1046.0, + 664.0, + 554.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 683.0, + 481.0, + 683.0, + 481.0, + 710.0, + 396.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 683.0, + 1009.0, + 683.0, + 1009.0, + 710.0, + 505.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 729.0, + 812.0, + 729.0, + 812.0, + 755.0, + 396.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 754.0, + 481.0, + 754.0, + 481.0, + 778.0, + 442.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 754.0, + 712.0, + 754.0, + 712.0, + 778.0, + 530.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 774.0, + 566.0, + 774.0, + 566.0, + 803.0, + 445.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 774.0, + 1036.0, + 774.0, + 1036.0, + 803.0, + 592.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 799.0, + 570.0, + 799.0, + 570.0, + 825.0, + 447.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 799.0, + 918.0, + 799.0, + 918.0, + 825.0, + 605.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 799.0, + 1209.0, + 799.0, + 1209.0, + 825.0, + 939.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 843.0, + 486.0, + 843.0, + 486.0, + 870.0, + 396.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 843.0, + 672.0, + 843.0, + 672.0, + 870.0, + 517.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 864.0, + 454.0, + 864.0, + 454.0, + 892.0, + 396.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 864.0, + 1034.0, + 864.0, + 1034.0, + 892.0, + 480.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 912.0, + 722.0, + 912.0, + 722.0, + 938.0, + 397.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 936.0, + 585.0, + 936.0, + 585.0, + 959.0, + 398.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 957.0, + 661.0, + 957.0, + 661.0, + 985.0, + 395.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1003.0, + 749.0, + 1003.0, + 749.0, + 1029.0, + 396.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1684.0, + 294.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1680.0, + 1406.0, + 1680.0, + 1406.0, + 1720.0, + 292.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1713.0, + 1404.0, + 1713.0, + 1404.0, + 1746.0, + 297.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1370.0, + 1742.0, + 1370.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 288.0, + 1403.0, + 288.0, + 1403.0, + 321.0, + 296.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 318.0, + 1406.0, + 318.0, + 1406.0, + 354.0, + 297.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 350.0, + 1403.0, + 350.0, + 1403.0, + 382.0, + 296.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 376.0, + 1410.0, + 376.0, + 1410.0, + 418.0, + 292.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1806.0, + 1403.0, + 1806.0, + 1403.0, + 1842.0, + 295.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1836.0, + 1404.0, + 1836.0, + 1404.0, + 1874.0, + 295.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1867.0, + 540.0, + 1867.0, + 540.0, + 1902.0, + 295.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1087.0, + 1408.0, + 1087.0, + 1408.0, + 1124.0, + 293.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1120.0, + 1407.0, + 1120.0, + 1407.0, + 1153.0, + 295.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1407.0, + 1149.0, + 1407.0, + 1184.0, + 293.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1177.0, + 1408.0, + 1177.0, + 1408.0, + 1218.0, + 293.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1359.0, + 898.0, + 1359.0, + 898.0, + 1383.0, + 297.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1381.0, + 506.0, + 1381.0, + 506.0, + 1405.0, + 345.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1381.0, + 725.0, + 1381.0, + 725.0, + 1405.0, + 531.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1379.0, + 837.0, + 1379.0, + 837.0, + 1407.0, + 743.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1403.0, + 883.0, + 1403.0, + 883.0, + 1430.0, + 344.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1403.0, + 974.0, + 1403.0, + 974.0, + 1430.0, + 900.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1428.0, + 505.0, + 1428.0, + 505.0, + 1452.0, + 396.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1428.0, + 934.0, + 1428.0, + 934.0, + 1452.0, + 530.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1450.0, + 973.0, + 1450.0, + 973.0, + 1476.0, + 394.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1309.0, + 295.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1301.0, + 1326.0, + 1301.0, + 1326.0, + 1343.0, + 295.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1586.0, + 1299.0, + 1586.0, + 1299.0, + 1615.0, + 292.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1609.0, + 847.0, + 1609.0, + 847.0, + 1638.0, + 497.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1496.0, + 647.0, + 1496.0, + 647.0, + 1520.0, + 297.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1234.0, + 529.0, + 1234.0, + 529.0, + 1262.0, + 297.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1234.0, + 645.0, + 1234.0, + 645.0, + 1262.0, + 554.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1234.0, + 1059.0, + 1234.0, + 1059.0, + 1262.0, + 699.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 433.0, + 555.0, + 433.0, + 555.0, + 459.0, + 296.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 455.0, + 397.0, + 455.0, + 397.0, + 480.0, + 345.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 452.0, + 1188.0, + 452.0, + 1188.0, + 483.0, + 417.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 479.0, + 1196.0, + 479.0, + 1196.0, + 504.0, + 395.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 500.0, + 913.0, + 500.0, + 913.0, + 528.0, + 393.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 547.0, + 726.0, + 547.0, + 726.0, + 573.0, + 345.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 568.0, + 480.0, + 568.0, + 480.0, + 598.0, + 395.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 568.0, + 1088.0, + 568.0, + 1088.0, + 598.0, + 505.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 613.0, + 639.0, + 613.0, + 639.0, + 642.0, + 396.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 638.0, + 530.0, + 638.0, + 530.0, + 664.0, + 446.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 638.0, + 1046.0, + 638.0, + 1046.0, + 664.0, + 554.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 683.0, + 481.0, + 683.0, + 481.0, + 710.0, + 396.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 683.0, + 1009.0, + 683.0, + 1009.0, + 710.0, + 505.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 729.0, + 812.0, + 729.0, + 812.0, + 755.0, + 396.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 754.0, + 481.0, + 754.0, + 481.0, + 778.0, + 442.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 754.0, + 712.0, + 754.0, + 712.0, + 778.0, + 530.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 774.0, + 566.0, + 774.0, + 566.0, + 803.0, + 445.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 774.0, + 1036.0, + 774.0, + 1036.0, + 803.0, + 592.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 799.0, + 570.0, + 799.0, + 570.0, + 825.0, + 447.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 799.0, + 918.0, + 799.0, + 918.0, + 825.0, + 605.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 799.0, + 1209.0, + 799.0, + 1209.0, + 825.0, + 939.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 843.0, + 486.0, + 843.0, + 486.0, + 870.0, + 396.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 843.0, + 672.0, + 843.0, + 672.0, + 870.0, + 517.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 864.0, + 454.0, + 864.0, + 454.0, + 892.0, + 396.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 864.0, + 1034.0, + 864.0, + 1034.0, + 892.0, + 480.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 912.0, + 722.0, + 912.0, + 722.0, + 938.0, + 397.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 936.0, + 585.0, + 936.0, + 585.0, + 959.0, + 398.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 957.0, + 661.0, + 957.0, + 661.0, + 985.0, + 395.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1003.0, + 749.0, + 1003.0, + 749.0, + 1029.0, + 396.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1532.0, + 1383.0, + 1532.0, + 1383.0, + 1571.0, + 296.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1048.0, + 660.0, + 1048.0, + 660.0, + 1076.0, + 296.0, + 1076.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 1003, + 1403, + 1003, + 1403, + 1471, + 295, + 1471 + ], + "score": 0.982, + "html": "
Algorithm01530456075Avg
ERM95.9 ± 0.198.9 ± 0.098.8 ± 0.098.9 ± 0.098.9 ± 0.096.4 ± 0.098.0
IRM95.5 ± 0.198.8 ± 0.298.7 ± 0.198.6 ± 0.198.7 ± 0.095.9 ± 0.297.7
GroupDRO95.6 ± 0.198.9 ± 0.198.9 ± 0.199.0 ± 0.098.9 ± 0.096.5 ± 0.298.0
Mixup95.8 ± 0.398.9 ± 0.098.9 ± 0.098.9 ± 0.098.8 ± 0.196.5 ± 0.398.0
MLDG95.8 ± 0.198.9 ± 0.199.0 ± 0.098.9 ± 0.199.0 ± 0.095.8 ± 0.397.9
CORAL95.8 ± 0.398.8 ± 0.098.9 ± 0.099.0 ± 0.098.9 ± 0.196.4 ± 0.298.0
MMD95.6 ± 0.198.9 ± 0.199.0 ± 0.099.0 ± 0.098.9 ± 0.096.0 ± 0.297.9
DANN95.0 ± 0.598.9 ± 0.199.0 ± 0.099.0 ± 0.198.9 ± 0.096.3 ± 0.297.8
CDANN95.7 ± 0.298.8 ± 0.098.9 ± 0.198.9 ± 0.198.9 ± 0.196.1 ± 0.397.9
MTL95.6 ± 0.199.0 ± 0.199.0 ± 0.098.9 ± 0.199.0 ± 0.195.8 ± 0.297.9
SagNet95.9 ± 0.398.9 ± 0.199.0 ± 0.199.1 ± 0.099.0 ± 0.196.3 ± 0.198.0
ARM96.7 ± 0.299.1 ± 0.099.0 ± 0.099.0 ± 0.199.1 ± 0.196.5 ± 0.498.2
VREx95.9 ± 0.299.0 ± 0.198.9 ± 0.198.9 ± 0.198.7 ± 0.196.2 ± 0.297.9
RSC94.8 ± 0.598.7 ± 0.198.8 ± 0.198.8 ± 0.098.9 ± 0.195.9 ± 0.297.6
" + }, + { + "category_id": 5, + "poly": [ + 421, + 1553, + 1278, + 1553, + 1278, + 2040, + 421, + 2040 + ], + "score": 0.981, + "html": "
AlgorithmCLSVAvg
ERM97.7 ± 0.464.3 ± 0.973.4 ± 0.574.6 ± 1.377.5
IRM98.6 ± 0.164.9 ± 0.973.4 ± 0.677.3 ± 0.978.5
GroupDRO97.3 ± 0.363.4 ± 0.969.5 ± 0.876.7 ± 0.776.7
Mixup98.3 ± 0.664.8 ± 1.072.1 ± 0.574.3 ± 0.877.4
MLDG97.4 ± 0.265.2 ± 0.771.0 ± 1.475.3 ± 1.077.2
CORAL98.3 ± 0.166.1 ± 1.273.4 ± 0.377.5 ± 1.278.8
MMD97.7 ± 0.164.0 ± 1.172.8 ± 0.275.3 ± 3.377.5
DANN99.0 ± 0.365.1 ± 1.473.1 ± 0.377.2 ± 0.678.6
CDANN97.1 ± 0.365.1 ± 1.270.7 ± 0.877.1 ± 1.577.5
MTL97.8 ± 0.464.3 ± 0.371.5 ± 0.775.3 ± 1.777.2
SagNet97.9 ± 0.464.5 ± 0.571.4 ± 1.377.5 ± 0.577.8
ARM98.7 ± 0.263.6 ± 0.771.3 ± 1.276.7 ± 0.677.6
VREx98.4 ± 0.364.4 ± 1.474.1 ± 0.476.2 ± 1.378.3
RSC97.9 ± 0.162.5 ± 0.772.3 ± 1.275.6 ± 0.877.1
" + }, + { + "category_id": 5, + "poly": [ + 494, + 402, + 1204, + 402, + 1204, + 891, + 494, + 891 + ], + "score": 0.979, + "html": "
Algorithm+90%+80%-90%Avg
ERM71.7 ± 0.172.9 ± 0.210.0 ± 0.151.5
IRM72.5 ± 0.173.3 ± 0.510.2 ± 0.352.0
GroupDRO73.1 ± 0.373.2 ± 0.210.0 ± 0.252.1
Mixup72.7 ± 0.473.4 ± 0.110.1 ± 0.152.1
MLDG71.5 ± 0.273.1 ± 0.29.8 ± 0.151.5
CORAL71.6 ± 0.373.1 ± 0.19.9 ± 0.151.5
MMD71.4 ± 0.373.1 ± 0.29.9 ± 0.351.5
DANN71.4 ± 0.973.1 ± 0.110.0 ± 0.051.5
CDANN72.0 ± 0.273.0 ± 0.210.2 ± 0.151.7
MTL70.9 ± 0.272.8 ± 0.310.5 ± 0.151.4
SagNet71.8 ± 0.273.0 ± 0.210.3 ± 0.051.7
ARM82.0 ± 0.576.5 ± 0.310.2 ± 0.056.2
VREx72.4 ± 0.372.9 ± 0.410.2 ± 0.051.8
RSC71.9 ± 0.373.1 ± 0.210.0 ± 0.251.7
" + }, + { + "category_id": 0, + "poly": [ + 300, + 225, + 762, + 225, + 762, + 263, + 300, + 263 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.886 + }, + { + "category_id": 6, + "poly": [ + 298, + 922, + 598, + 922, + 598, + 956, + 298, + 956 + ], + "score": 0.779 + }, + { + "category_id": 0, + "poly": [ + 298, + 1502, + 473, + 1502, + 473, + 1534, + 298, + 1534 + ], + "score": 0.75 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2114, + 834, + 2114 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 298, + 352, + 607, + 352, + 607, + 384, + 298, + 384 + ], + "score": 0.623 + }, + { + "category_id": 1, + "poly": [ + 298, + 298, + 1051, + 298, + 1051, + 328, + 298, + 328 + ], + "score": 0.496 + }, + { + "category_id": 6, + "poly": [ + 298, + 298, + 1051, + 298, + 1051, + 328, + 298, + 328 + ], + "score": 0.307 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2114, + 834, + 2114 + ], + "score": 0.303 + }, + { + "category_id": 6, + "poly": [ + 298, + 352, + 607, + 352, + 607, + 384, + 298, + 384 + ], + "score": 0.177 + }, + { + "category_id": 6, + "poly": [ + 298, + 1502, + 473, + 1502, + 473, + 1534, + 298, + 1534 + ], + "score": 0.142 + }, + { + "category_id": 0, + "poly": [ + 298, + 922, + 598, + 922, + 598, + 956, + 298, + 956 + ], + "score": 0.137 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 220.0, + 765.0, + 220.0, + 765.0, + 271.0, + 294.0, + 271.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": [ + 295.0, + 920.0, + 602.0, + 920.0, + 602.0, + 960.0, + 295.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1497.0, + 475.0, + 1497.0, + 475.0, + 1541.0, + 295.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 295.0, + 1054.0, + 295.0, + 1054.0, + 331.0, + 295.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 348.0, + 610.0, + 348.0, + 610.0, + 391.0, + 295.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1497.0, + 475.0, + 1497.0, + 475.0, + 1541.0, + 295.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 920.0, + 602.0, + 920.0, + 602.0, + 960.0, + 295.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 348.0, + 610.0, + 348.0, + 610.0, + 391.0, + 295.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 295.0, + 1054.0, + 295.0, + 1054.0, + 331.0, + 295.0, + 331.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 419, + 923, + 1278, + 923, + 1278, + 1415, + 419, + 1415 + ], + "score": 0.983, + "html": "
AlgorithmACPRAvg
ERM61.3 ± 0.752.4 ± 0.375.8 ± 0.176.6 ± 0.366.5
IRM58.9 ± 2.352.2 ± 1.672.1 ± 2.974.0 ± 2.564.3
GroupDRO60.4 ± 0.752.7 ± 1.075.0 ± 0.776.0 ± 0.766.0
Mixup62.4 ± 0.854.8 ± 0.676.9 ± 0.378.3 ± 0.268.1
MLDG61.5 ± 0.953.2 ± 0.675.0 ± 1.277.5 ± 0.466.8
CORAL65.3 ± 0.454.4 ± 0.576.5 ± 0.178.4 ± 0.568.7
MMD60.4 ± 0.253.3 ± 0.374.3 ± 0.177.4 ± 0.666.3
DANN59.9 ± 1.353.0 ± 0.373.6 ± 0.776.9 ± 0.565.9
CDANN61.5 ± 1.450.4 ± 2.474.4 ± 0.976.6 ± 0.865.8
MTL61.5 ± 0.752.4 ± 0.674.9 ± 0.476.8 ± 0.466.4
SagNet63.4 ± 0.254.8 ± 0.475.8 ± 0.478.3 ± 0.368.1
ARM58.9 ± 0.851.0 ± 0.574.1 ± 0.175.2 ± 0.364.8
VREx60.7 ± 0.953.0 ± 0.975.3 ± 0.176.6 ± 0.566.4
RSC60.7 ± 1.451.4 ± 0.374.8 ± 1.175.1 ± 1.365.5
" + }, + { + "category_id": 5, + "poly": [ + 419, + 295, + 1278, + 295, + 1278, + 785, + 419, + 785 + ], + "score": 0.983, + "html": "
AlgorithmACPSAvg
ERM84.7 ± 0.480.8 ± 0.697.2 ± 0.379.3 ± 1.085.5
IRM84.8 ± 1.376.4 ± 1.196.7 ± 0.676.1 ± 1.083.5
GroupDRO83.5 ± 0.979.1 ± 0.696.7 ± 0.378.3 ± 2.084.4
Mixup86.1 ± 0.578.9 ± 0.897.6 ± 0.175.8 ± 1.884.6
MLDG85.5 ± 1.480.1 ± 1.797.4 ± 0.376.6 ± 1.184.9
CORAL88.3 ± 0.280.0 ± 0.597.5 ± 0.378.8 ± 1.386.2
MMD86.1 ± 1.479.4 ± 0.996.6 ± 0.276.5 ± 0.584.6
DANN86.4 ± 0.877.4 ± 0.897.3 ± 0.473.5 ± 2.383.6
CDANN84.6 ± 1.875.5 ± 0.996.8 ± 0.373.5 ± 0.682.6
MTL87.5 ± 0.877.1 ± 0.596.4 ± 0.877.3 ± 1.884.6
SagNet87.4 ± 1.080.7 ± 0.697.1 ± 0.180.0 ± 0.486.3
ARM86.8 ± 0.676.8 ± 0.597.4 ± 0.379.3 ± 1.285.1
VREx86.0 ± 1.679.1 ± 0.696.9 ± 0.577.7 ± 1.784.9
RSC85.4 ± 0.879.7 ± 1.897.6 ± 0.378.2 ± 1.285.2
" + }, + { + "category_id": 5, + "poly": [ + 420, + 1552, + 1277, + 1552, + 1277, + 2041, + 420, + 2041 + ], + "score": 0.982, + "html": "
AlgorithmL100L38L43L46Avg
ERM49.8 ± 4.442.1 ± 1.456.9 ± 1.835.7 ± 3.946.1
IRM54.6 ± 1.339.8 ± 1.956.2 ± 1.839.6 ± 0.847.6
GroupDRO41.2 ± 0.738.6 ± 2.156.7 ± 0.936.4 ± 2.143.2
Mixup59.6 ± 2.042.2 ± 1.455.9 ± 0.833.9 ± 1.447.9
MLDG54.2 ± 3.044.3± 1.155.6 ± 0.336.9 ± 2.247.7
CORAL51.6 ± 2.442.2 ± 1.057.0 ± 1.039.8 ± 2.947.6
MMD41.9 ± 3.034.8 ± 1.057.0 ± 1.935.2 ± 1.842.2
DANN51.1 ± 3.540.6 ± 0.657.4 ± 0.537.7 ± 1.846.7
CDANN47.0 ± 1.941.3 ± 4.854.9 ± 1.739.8 ± 2.345.8
MTL49.3 ± 1.239.6 ± 6.355.6 ± 1.137.8 ± 0.845.6
SagNet53.0 ± 2.943.0 ± 2.557.9 ± 0.640.4 ± 1.348.6
ARM49.3 ± 0.738.3 ± 2.455.8 ± 0.838.7 ± 1.345.5
VREx48.2 ± 4.341.7 ± 1.356.8 ± 0.838.7 ± 3.146.4
RSC50.2 ± 2.239.2 ± 1.456.3 ± 1.440.8 ± 0.646.6
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2114, + 834, + 2114 + ], + "score": 0.842 + }, + { + "category_id": 6, + "poly": [ + 297, + 1485, + 613, + 1485, + 613, + 1518, + 297, + 1518 + ], + "score": 0.825 + }, + { + "category_id": 6, + "poly": [ + 297, + 229, + 467, + 229, + 467, + 261, + 297, + 261 + ], + "score": 0.631 + }, + { + "category_id": 6, + "poly": [ + 298, + 857, + 558, + 857, + 558, + 890, + 298, + 890 + ], + "score": 0.555 + }, + { + "category_id": 0, + "poly": [ + 298, + 857, + 558, + 857, + 558, + 890, + 298, + 890 + ], + "score": 0.42 + }, + { + "category_id": 0, + "poly": [ + 297, + 229, + 467, + 229, + 467, + 261, + 297, + 261 + ], + "score": 0.289 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2114, + 834, + 2114 + ], + "score": 0.106 + }, + { + "category_id": 0, + "poly": [ + 297, + 1485, + 613, + 1485, + 613, + 1518, + 297, + 1518 + ], + "score": 0.092 + }, + { + "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": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 617.0, + 1481.0, + 617.0, + 1522.0, + 294.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 470.0, + 227.0, + 470.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 853.0, + 561.0, + 853.0, + 561.0, + 894.0, + 294.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 853.0, + 561.0, + 853.0, + 561.0, + 894.0, + 294.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 470.0, + 227.0, + 470.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 617.0, + 1481.0, + 617.0, + 1522.0, + 294.0, + 1522.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 330, + 1405, + 330, + 1405, + 777, + 297, + 777 + ], + "score": 0.983, + "html": "
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.1 ± 0.318.8 ± 0.346.7 ± 0.312.2 ± 0.459.6 ± 0.149.8 ± 0.440.9
IRM48.5 ± 2.815.0 ± 1.538.3 ± 4.310.9 ± 0.548.2 ± 5.242.3 ± 3.133.9
GroupDRO47.2 ± 0.517.5 ± 0.433.8 ± 0.59.3 ± 0.351.6 ± 0.440.1 ± 0.633.3
Mixup55.7 ± 0.318.5 ± 0.544.3 ± 0.512.5 ± 0.455.8 ± 0.348.2 ± 0.539.2
MLDG59.1 ± 0.219.1 ± 0.345.8 ± 0.713.4 ± 0.359.6 ± 0.250.2 ± 0.441.2
CORAL59.2 ± 0.119.7 ± 0.246.6± 0.313.4 ± 0.459.8 ± 0.250.1 ± 0.641.5
MMD32.1 ± 13.311.0 ± 4.626.8 ± 11.38.7 ± 2.132.7 ± 13.828.9 ± 11.923.4
DANN53.1± 0.218.3 ± 0.144.2 ± 0.711.8 ± 0.155.5 ± 0.446.8 ± 0.638.3
CDANN54.6 ± 0.417.3 ± 0.143.7 ± 0.912.1 ± 0.756.2 ± 0.445.9 ± 0.538.3
MTL57.9 ± 0.518.5 ± 0.446.0 ± 0.112.5 ± 0.159.5 ± 0.349.2 ± 0.140.6
SagNet57.7 ± 0.319.0 ± 0.245.3 ± 0.312.7 ± 0.558.1 ± 0.548.8 ± 0.240.3
ARM49.7 ± 0.316.3 ± 0.540.9 ± 1.19.4 ± 0.153.4 ± 0.443.5 ± 0.435.5
VREx47.3 ± 3.516.0 ± 1.535.8 ± 4.610.9 ± 0.349.6 ± 4.942.0 ± 3.033.6
RSC55.0 ± 1.218.3 ± 0.544.4 ± 0.612.2 ± 0.255.7 ± 0.747.8 ± 0.938.9
" + }, + { + "category_id": 5, + "poly": [ + 297, + 961, + 1403, + 961, + 1403, + 1314, + 297, + 1314 + ], + "score": 0.982, + "html": "
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM51.5 ± 0.198.0±0.077.5 ± 0.485.5±0.266.5 ± 0.346.1 ± 1.840.9 ± 0.166.6
IRM52.0 ± 0.197.7 ± 0.178.5 ± 0.583.5±0.864.3 ±2.247.6 ± 0.833.9 ±2.865.4
GroupDRO52.1 ± 0.098.0±0.076.7 ± 0.684.4 ±0.866.0± 0.743.2 ±1.133.3±0.264.8
Mixup52.1 ± 0.298.0± 0.177.4 ± 0.684.6±0.668.1± 0.347.9 ± 0.839.2 ± 0.166.7
MLDG51.5 ± 0.197.9 ± 0.077.2 ± 0.484.9 ± 1.066.8±0.647.7 ± 0.941.2 ± 0.166.7
CORAL51.5 ± 0.198.0± 0.178.8 ±0.686.2 ±0.368.7 ±0.347.6 ±1.041.5 ± 0.167.5
MMD51.5 ± 0.297.9 ± 0.077.5 ± 0.984.6± 0.566.3 ± 0.142.2 ±1.623.4 ± 9.563.3
DANN51.5 ± 0.397.8 ± 0.178.6± 0.483.6±0.465.9 ±0.646.7 ± 0.538.3 ±0.166.1
CDANN51.7 ± 0.197.9 ± 0.177.5 ± 0.182.6±0.965.8 ±1.345.8 ±1.638.3 ±0.365.6
MTL51.4 ± 0.197.9 ± 0.077.2 ± 0.484.6±0.566.4 ± 0.545.6 ±1.240.6 ± 0.166.2
SagNet51.7 ± 0.098.0±0.077.8 ± 0.586.3 ±0.268.1±0.148.6±1.040.3 ± 0.167.2
ARM56.2 ±0.298.2 ±0.177.6± 0.385.1±0.464.8±0.345.5± 0.335.5±0.266.1
VREx51.8 ± 0.197.9 ± 0.178.3 ±0.284.9±0.666.4±0.646.4±0.633.6±2.965.6
RSC51.7 ± 0.297.6 ± 0.177.1 ± 0.585.2 ±0.965.5 ± 0.946.6 ±1.038.9± 0.566.1
" + }, + { + "category_id": 5, + "poly": [ + 482, + 1551, + 1214, + 1551, + 1214, + 2040, + 482, + 2040 + ], + "score": 0.98, + "html": "
Algorithm+90%+80%-90%Avg
ERM50.0 ± 0.250.1 ± 0.210.0 ± 0.036.7
IRM46.7 ± 2.451.2 ± 0.323.1 ± 10.740.3
GroupDRO50.1 ± 0.550.0 ± 0.510.2 ± 0.136.8
Mixup36.6 ± 10.953.4 ± 5.910.2 ± 0.133.4
MLDG50.1 ± 0.650.1 ± 0.310.0 ± 0.136.7
CORAL49.5 ± 0.059.5 ± 8.210.2 ± 0.139.7
MMD50.3 ± 0.250.0 ± 0.49.9 ± 0.236.8
DANN49.9 ± 0.162.1 ± 7.010.0 ± 0.140.7
CDANN63.2 ± 10.144.4 ± 4.59.9 ± 0.239.1
MTL44.3 ± 4.950.7 ± 0.010.1 ± 0.135.0
SagNet49.9 ± 0.449.7 ± 0.310.0 ± 0.136.5
ARM50.0 ± 0.350.1 ± 0.310.2 ± 0.036.8
VREx50.2 ± 0.450.5 ± 0.510.1 ± 0.036.9
RSC49.6 ± 0.349.7 ± 0.410.1 ± 0.036.5
" + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 298, + 862, + 525, + 862, + 525, + 893, + 298, + 893 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.856 + }, + { + "category_id": 0, + "poly": [ + 299, + 1480, + 606, + 1480, + 606, + 1512, + 299, + 1512 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 298, + 1405, + 1166, + 1405, + 1166, + 1434, + 298, + 1434 + ], + "score": 0.654 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 550, + 229, + 550, + 262, + 298, + 262 + ], + "score": 0.568 + }, + { + "category_id": 6, + "poly": [ + 298, + 229, + 550, + 229, + 550, + 262, + 298, + 262 + ], + "score": 0.351 + }, + { + "category_id": 6, + "poly": [ + 299, + 1480, + 606, + 1480, + 606, + 1512, + 299, + 1512 + ], + "score": 0.117 + }, + { + "category_id": 7, + "poly": [ + 298, + 1405, + 1166, + 1405, + 1166, + 1434, + 298, + 1434 + ], + "score": 0.106 + }, + { + "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, + 858.0, + 527.0, + 858.0, + 527.0, + 897.0, + 294.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 610.0, + 1476.0, + 610.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 552.0, + 228.0, + 552.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 552.0, + 228.0, + 552.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 610.0, + 1476.0, + 610.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1401.0, + 1169.0, + 1401.0, + 1169.0, + 1439.0, + 295.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1401.0, + 1169.0, + 1401.0, + 1169.0, + 1439.0, + 295.0, + 1439.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 325, + 1404, + 325, + 1404, + 783, + 296, + 783 + ], + "score": 0.984, + "html": "
Algorithm01530456075Avg
ERM95.3 ± 0.298.9 ± 0.198.9 ± 0.198.8 ± 0.198.5 ± 0.196.2 ± 0.297.7
IRM94.5 ± 0.598.2 ± 0.298.7 ± 0.196.6 ± 1.598.4 ± 0.195.8 ± 0.197.0
GroupDRO95.7 ± 0.398.7 ± 0.198.9 ± 0.198.6± 0.298.6 ± 0.295.3 ± 0.997.6
Mixup94.8 ± 0.498.8 ± 0.098.9 ± 0.199.0 ± 0.198.9 ± 0.096.4 ± 0.397.8
MLDG94.3 ± 0.498.8 ±0.199.0 ± 0.198.8 ± 0.198.8 ± 0.196.0 ± 0.397.6
CORAL95.7 ± 0.598.5 ± 0.298.9 ± 0.298.6± 0.298.8 ± 0.196.3 ± 0.297.8
MMD95.8 ± 0.298.7 ± 0.199.0 ± 0.098.8 ± 0.198.7 ± 0.196.1 ± 0.297.8
DANN95.1 ± 0.598.3 ± 0.598.5 ± 0.199.0 ± 0.198.6 ± 0.196.1 ± 0.397.6
CDANN94.3 ± 0.598.4 ± 0.398.9 ± 0.198.7 ± 0.198.9 ± 0.195.7 ± 0.497.5
MTL95.5 ± 0.398.6 ± 0.398.8 ± 0.199.0 ± 0.199.0 ± 0.195.6 ± 0.397.8
SagNet94.0 ± 1.698.7 ±0.298.9 ± 0.199.1 ± 0.098.8 ± 0.174.2 ± 16.594.0
ARM95.8 ± 0.199.0 ± 0.199.0 ± 0.098.9 ± 0.198.8 ± 0.196.9 ± 0.398.1
VREx95.8 ± 0.298.7 ± 0.098.5 ± 0.198.9 ± 0.174.0 ± 20.195.5 ± 0.593.6
RSC94.6 ± 0.098.4 ± 0.299.0 ± 0.198.9 ± 0.098.8 ± 0.195.9 ± 0.497.6
" + }, + { + "category_id": 5, + "poly": [ + 419, + 921, + 1280, + 921, + 1280, + 1414, + 419, + 1414 + ], + "score": 0.982, + "html": "
AlgorithmCLSVAvg
ERM98.0 ± 0.462.6 ± 0.970.8 ± 1.977.5 ± 1.977.2
IRM98.6 ± 0.366.0 ± 1.169.3 ± 0.971.5 ± 1.976.3
GroupDRO98.1 ± 0.366.4 ± 0.971.0 ± 0.376.1 ± 1.477.9
Mixup98.4 ± 0.363.4 ± 0.772.9 ± 0.876.1 ± 1.277.7
MLDG98.5 ± 0.361.7 ± 1.273.6 ± 1.875.0 ± 0.877.2
CORAL96.9 ± 0.965.7 ± 1.273.3 ± 0.778.7 ± 0.878.7
MMD98.3 ± 0.165.6 ± 0.769.7 ± 1.075.7 ± 0.977.3
DANN97.3 ± 1.363.7 ± 1.372.6 ± 1.474.2 ± 1.776.9
CDANN97.6 ± 0.663.4 ± 0.870.5 ± 1.478.6 ± 0.577.5
MTL97.6 ± 0.660.6 ± 1.371.0 ± 1.277.2 ± 0.776.6
SagNet97.3 ± 0.461.6 ± 0.873.4 ± 1.977.6 ± 0.477.5
ARM97.2 ± 0.562.7 ± 1.570.6 ± 0.675.8 ± 0.976.6
VREx96.9 ± 0.364.8 ± 2.069.7 ± 1.875.5 ± 1.776.7
RSC97.5 ± 0.663.1 ± 1.273.0 ± 1.376.2 ± 0.577.5
" + }, + { + "category_id": 5, + "poly": [ + 420, + 1552, + 1277, + 1552, + 1277, + 2041, + 420, + 2041 + ], + "score": 0.982, + "html": "
AlgorithmACPSAvg
ERM83.2 ± 1.376.8 ± 1.797.2 ± 0.374.8 ± 1.383.0
IRM81.7 ± 2.477.0 ± 1.396.3 ± 0.271.1 ± 2.281.5
GroupDRO84.4 ± 0.777.3 ± 0.896.8 ± 0.875.6 ± 1.483.5
Mixup85.2 ± 1.977.0 ± 1.796.8 ± 0.873.9 ± 1.683.2
MLDG81.4 ± 3.677.9 ± 2.396.2 ± 0.376.1 ± 2.182.9
CORAL80.5± 2.874.5 ± 0.496.8 ± 0.378.6 ± 1.482.6
MMD84.9 ± 1.775.1 ± 2.096.1 ± 0.976.5 ± 1.583.2
DANN84.3 ± 2.872.4 ± 2.896.5 ± 0.870.8 ± 1.381.0
CDANN78.3 ± 2.873.8 ± 1.696.4 ± 0.566.8 ± 5.578.8
MTL85.6 ± 1.578.9 ± 0.697.1 ± 0.373.1 ± 2.783.7
SagNet81.1 ± 1.975.4 ± 1.395.7 ± 0.977.2 ± 0.682.3
ARM85.9 ± 0.373.3 ± 1.995.6 ± 0.472.1 ± 2.481.7
VREx81.6 ± 4.074.1 ± 0.396.9 ± 0.472.8 ± 2.181.3
RSC83.7 ± 1.782.9 ± 1.195.6 ± 0.768.1 ± 1.582.6
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.862 + }, + { + "category_id": 0, + "poly": [ + 299, + 228, + 598, + 228, + 598, + 262, + 299, + 262 + ], + "score": 0.735 + }, + { + "category_id": 0, + "poly": [ + 298, + 856, + 473, + 856, + 473, + 888, + 298, + 888 + ], + "score": 0.598 + }, + { + "category_id": 0, + "poly": [ + 297, + 1485, + 467, + 1485, + 467, + 1517, + 297, + 1517 + ], + "score": 0.526 + }, + { + "category_id": 6, + "poly": [ + 297, + 1485, + 467, + 1485, + 467, + 1517, + 297, + 1517 + ], + "score": 0.313 + }, + { + "category_id": 6, + "poly": [ + 298, + 856, + 473, + 856, + 473, + 888, + 298, + 888 + ], + "score": 0.293 + }, + { + "category_id": 6, + "poly": [ + 299, + 228, + 598, + 228, + 598, + 262, + 299, + 262 + ], + "score": 0.155 + }, + { + "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": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 602.0, + 226.0, + 602.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 852.0, + 473.0, + 852.0, + 473.0, + 893.0, + 296.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1483.0, + 470.0, + 1483.0, + 470.0, + 1521.0, + 296.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1483.0, + 470.0, + 1483.0, + 470.0, + 1521.0, + 296.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 852.0, + 473.0, + 852.0, + 473.0, + 893.0, + 296.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 602.0, + 226.0, + 602.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 1594, + 1405, + 1594, + 1405, + 2041, + 297, + 2041 + ], + "score": 0.984, + "html": "
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.1 ± 0.317.8 ± 0.347.0 ± 0.312.2 ± 0.459.2 ± 0.749.5 ± 0.640.6
IRM47.5 ± 2.715.0 ± 1.537.3 ± 5.110.9 ± 0.548.0 ± 5.442.3 ± 3.133.5
GroupDRO47.2 ± 0.517.0 ± 0.633.8 ± 0.59.2 ± 0.451.6 ± 0.439.2 ± 1.233.0
Mixup54.4 ± 0.618.0 ± 0.444.5 ± 0.511.5 ± 0.255.8 ± 1.146.9 ± 0.238.5
MLDG58.3 ± 0.719.3 ± 0.245.8 ± 0.713.2 ± 0.359.4 ± 0.249.8 ± 0.341.0
CORAL59.2 ± 0.119.5 ± 0.346.2 ± 0.113.4 ± 0.459.1 ± 0.549.5 ± 0.841.1
MMD32.2 ± 13.311.0 ± 4.626.8 ± 11.38.7 ± 2.132.7 ± 13.828.9 ± 11.923.4
DANN52.7 ± 0.118.0 ± 0.344.2 ± 0.711.8 ± 0.155.5 ± 0.446.8 ± 0.638.2
CDANN53.1 ± 0.917.3 ± 0.143.7 ± 0.911.6 ± 0.656.2 ± 0.445.9 ± 0.538.0
MTL57.3 ± 0.319.3 ± 0.245.7 ± 0.412.5 ± 0.159.3 ± 0.249.2 ± 0.140.6
SagNet56.2 ± 0.318.9 ± 0.246.2 ± 0.512.6 ± 0.658.2 ± 0.649.1 ± 0.240.2
ARM49.0 ± 0.715.8 ± 0.340.8 ± 1.19.4 ± 0.253.0 ± 0.443.4 ± 0.335.2
VREx46.5 ± 4.115.6 ± 1.835.8 ± 4.610.9 ± 0.349.6 ± 4.942.0 ± 3.033.4
RSC55.0 ± 1.218.3 ± 0.544.4 ± 0.612.2 ± 0.255.7 ± 0.747.8 ± 0.938.9
" + }, + { + "category_id": 5, + "poly": [ + 412, + 296, + 1286, + 296, + 1286, + 787, + 412, + 787 + ], + "score": 0.983, + "html": "
AlgorithmACPRAvg
ERM61.1 ± 0.950.7 ± 0.674.6 ± 0.376.4 ± 0.665.7
IRM58.2 ±1.251.6 ± 1.273.3 ± 2.274.1 ± 1.764.3
GroupDRO59.9 ± 0.451.0 ± 0.473.7 ± 0.376.0 ± 0.265.2
Mixup61.4 ± 0.553.0 ± 0.375.8 ± 0.277.7 ± 0.367.0
MLDG60.5 ± 1.451.9 ± 0.274.4 ± 0.677.6 ± 0.466.1
CORAL64.5 ± 0.854.8 ± 0.276.6 ± 0.378.1 ± 0.268.5
MMD60.8 ± 0.753.7 ± 0.550.2 ± 19.976.0 ± 0.760.2
DANN60.2 ± 1.352.2 ± 0.971.3 ± 2.076.0 ± 0.664.9
CDANN58.7 ± 2.949.0 ± 2.173.6 ± 1.076.0 ± 1.164.3
MTL59.1 ± 0.352.1 ± 1.274.7 ± 0.477.0 ± 0.665.7
SagNet63.0 ± 0.854.0 ± 0.376.6 ± 0.376.8 ± 0.467.6
ARM58.7 ± 0.849.8 ± 1.173.1 ± 0.575.9 ± 0.164.4
VREx57.6 ± 3.451.3 ± 1.374.9 ± 0.275.8 ± 0.764.9
RSC61.6 ± 1.051.1 ± 0.874.8 ± 1.175.7 ± 0.965.8
" + }, + { + "category_id": 5, + "poly": [ + 407, + 930, + 1291, + 930, + 1291, + 1421, + 407, + 1421 + ], + "score": 0.983, + "html": "
AlgorithmL100L38L43L46Avg
ERM34.4 ± 5.638.1 ± 4.055.7 ± 1.037.4 ± 1.141.4
IRM46.7 ± 1.840.9 ± 2.152.2 ± 3.324.9 ± 10.041.2
GroupDRO45.2 ± 6.240.1 ± 2.055.8 ± 1.438.3 ± 4.244.9
Mixup59.7 ± 1.541.3 ± 2.155.9 ± 0.837.9 ± 1.548.7
MLDG51.0 ± 1.939.2 ± 0.256.2 ± 1.138.3 ± 2.446.2
CORAL52.4± 7.239.7 ± 1.556.1 ± 0.937.1 ± 2.246.3
MMD49.1 ± 2.242.0 ± 1.655.3 ± 1.939.5 ± 2.046.5
DANN46.9 ± 3.938.8 ±1.155.5 ± 1.436.2 ± 1.144.4
CDANN43.9 ± 7.332.5 ± 4.441.0 ± 7.842.4 ± 1.839.9
MTL42.8 ± 4.643.9 ± 1.155.5 ± 0.837.5 ± 1.944.9
SagNet48.1 ± 2.447.1 ± 0.854.4 ± 1.139.1 ± 1.847.2
ARM48.9 ± 5.334.4 ± 3.551.9 ± 0.835.4 ± 2.342.6
VREx46.4 ± 1.425.5 ± 5.839.6 ± 12.837.8 ± 3.637.3
RSC40.0 ± 1.332.1 ± 2.553.9 ± 0.534.2 ± 0.240.0
" + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 6, + "poly": [ + 297, + 863, + 612, + 863, + 612, + 896, + 297, + 896 + ], + "score": 0.842 + }, + { + "category_id": 6, + "poly": [ + 299, + 229, + 557, + 229, + 557, + 262, + 299, + 262 + ], + "score": 0.605 + }, + { + "category_id": 0, + "poly": [ + 298, + 1497, + 551, + 1497, + 551, + 1530, + 298, + 1530 + ], + "score": 0.543 + }, + { + "category_id": 6, + "poly": [ + 298, + 1497, + 551, + 1497, + 551, + 1530, + 298, + 1530 + ], + "score": 0.444 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 557, + 229, + 557, + 262, + 299, + 262 + ], + "score": 0.364 + }, + { + "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": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 861.0, + 617.0, + 861.0, + 617.0, + 900.0, + 296.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 559.0, + 228.0, + 559.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 554.0, + 1495.0, + 554.0, + 1534.0, + 295.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 554.0, + 1495.0, + 554.0, + 1534.0, + 295.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 559.0, + 228.0, + 559.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 1572, + 1404, + 1572, + 1404, + 2041, + 295, + 2041 + ], + "score": 0.984, + "html": "
Algorithm01530456075Avg
ERM95.3 ± 0.298.7 ± 0.198.9 ± 0.198.7 ± 0.298.9 ± 0.096.2 ± 0.297.8
IRM94.9 ± 0.698.7 ± 0.298.6 ± 0.198.6 ±0.298.7 ± 0.195.2 ± 0.397.5
GroupDRO95.9 ± 0.199.0 ± 0.198.9 ± 0.198.8 ± 0.198.6 ± 0.196.3 ± 0.497.9
Mixup95.8 ± 0.398.7 ± 0.099.0 ± 0.198.8 ± 0.198.8 ± 0.196.6 ± 0.298.0
MLDG95.7 ± 0.298.9 ± 0.198.8 ± 0.198.9 ± 0.198.6 ± 0.195.8 ± 0.497.8
CORAL96.2 ± 0.298.8 ± 0.198.8 ± 0.198.8 ± 0.198.9 ± 0.196.4 ± 0.298.0
MMD96.1 ± 0.298.9 ± 0.099.0 ± 0.098.8 ± 0.098.9 ± 0.096.4 ± 0.298.0
DANN95.9 ± 0.198.9 ± 0.198.6 ± 0.298.7 ± 0.198.9 ± 0.096.3 ± 0.397.9
CDANN95.9 ± 0.298.8 ± 0.098.7 ± 0.198.9 ± 0.198.8 ± 0.196.1 ± 0.397.9
MTL96.1 ± 0.298.9 ± 0.099.0 ± 0.098.7 ± 0.199.0 ± 0.095.8 ± 0.397.9
SagNet95.9 ± 0.199.0 ± 0.198.9 ± 0.198.6 ± 0.198.8 ± 0.196.3 ± 0.197.9
ARM95.9 ± 0.499.0 ± 0.198.8 ± 0.198.9 ± 0.199.1 ± 0.196.7 ± 0.298.1
VREx95.5 ± 0.299.0 ± 0.098.7 ± 0.298.8 ±0.198.8 ± 0.096.4 ± 0.097.9
RSC95.4 ± 0.198.6 ± 0.198.6 ± 0.198.9 ± 0.098.8 ± 0.195.4 ± 0.397.6
" + }, + { + "category_id": 5, + "poly": [ + 496, + 905, + 1204, + 905, + 1204, + 1395, + 496, + 1395 + ], + "score": 0.982, + "html": "
Algorithm+90%+80%-90%Avg
ERM71.8 ± 0.472.9 ± 0.128.7 ± 0.557.8
IRM72.0 ± 0.172.5 ± 0.358.5 ± 3.367.7
GroupDRO73.5 ± 0.373.0 ± 0.336.8 ± 2.861.1
Mixup72.5 ± 0.273.9 ± 0.428.6 ± 0.258.4
MLDG71.9 ± 0.373.5 ± 0.229.1 ± 0.958.2
CORAL71.1 ± 0.273.4 ± 0.231.1 ± 1.658.6
MMD69.0 ± 2.370.4 ±1.650.6 ± 0.263.3
DANN72.4 ± 0.573.9 ± 0.524.9 ± 2.757.0
CDANN71.8 ± 0.572.9 ± 0.133.8 ± 6.459.5
MTL71.2 ± 0.273.5 ± 0.228.0 ±0.657.6
SagNet72.1 ± 0.373.2 ± 0.329.4 ± 0.558.2
ARM84.9 ± 0.976.8 ± 0.627.9 ± 2.163.2
VREx72.8 ± 0.373.0 ± 0.355.2 ± 4.067.0
RSC72.0 ± 0.173.2 ± 0.130.2 ± 1.658.5
" + }, + { + "category_id": 5, + "poly": [ + 297, + 327, + 1404, + 327, + 1404, + 679, + 297, + 679 + ], + "score": 0.982, + "html": "
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM36.7 ± 0.197.7 ± 0.077.2 ± 0.483.0±0.765.7±0.541.4 ± 1.440.6±0.263.2
IRM40.3± 4.297.0± 0.276.3 ± 0.681.5 ± 0.864.3 ± 1.541.2 ± 3.633.5 ± 3.062.0
GroupDRO36.8 ± 0.197.6 ± 0.177.9 ± 0.583.5± 0.265.2 ± 0.244.9 ± 1.433.0±0.362.7
Mixup33.4 ± 4.797.8 ± 0.077.7 ± 0.683.2 ± 0.467.0±0.248.7 ± 0.438.5 ± 0.363.8
MLDG36.7 ±0.297.6± 0.077.2 ± 0.982.9 ±1.766.1± 0.546.2 ± 0.941.0 ± 0.264.0
CORAL39.7 ± 2.897.8 ± 0.178.7 ± 0.482.6±0.568.5±0.246.3 ± 1.741.1 ± 0.165.0
MMD36.8 ±0.197.8 ± 0.177.3 ± 0.583.2±0.260.2±5.246.5 ± 1.523.4± 9.560.7
DANN40.7 ±2.397.6± 0.276.9 ± 0.481.0 ±1.164.9 ±1.244.4 ± 1.138.2±0.263.4
CDANN39.1 ± 4.497.5 ± 0.277.5 ± 0.278.8±2.264.3 ±1.739.9 ±3.238.0±0.162.2
MTL35.0 ±1.797.8 ± 0.176.6± 0.583.7 ±0.465.7 ± 0.544.9 ± 1.240.6 ±0.163.5
SagNet36.5 ± 0.194.0±3.077.5 ± 0.382.3 ±0.167.6± 0.347.2 ± 0.940.2 ±0.263.6
ARM36.8 ±0.098.1± 0.176.6± 0.581.7 ±0.264.4±0.242.6 ± 2.735.2 ±0.162.2
VREx36.9 ± 0.393.6±3.476.7 ± 1.081.3 ± 0.964.9 ±1.337.3 ±3.033.4 ±3.160.6
RSC36.5± 0.297.6 ± 0.177.5 ± 0.582.6±0.765.8±0.740.0±0.838.9 ±0.562.7
" + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 298, + 230, + 525, + 230, + 525, + 261, + 298, + 261 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 299, + 838, + 606, + 838, + 606, + 871, + 299, + 871 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 298, + 764, + 1112, + 764, + 1112, + 794, + 298, + 794 + ], + "score": 0.558 + }, + { + "category_id": 6, + "poly": [ + 299, + 1475, + 598, + 1475, + 598, + 1508, + 299, + 1508 + ], + "score": 0.496 + }, + { + "category_id": 0, + "poly": [ + 299, + 1475, + 598, + 1475, + 598, + 1508, + 299, + 1508 + ], + "score": 0.46 + }, + { + "category_id": 6, + "poly": [ + 298, + 764, + 1112, + 764, + 1112, + 794, + 298, + 794 + ], + "score": 0.11 + }, + { + "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": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 528.0, + 225.0, + 528.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 834.0, + 610.0, + 834.0, + 610.0, + 876.0, + 295.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1473.0, + 602.0, + 1473.0, + 602.0, + 1512.0, + 295.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1473.0, + 602.0, + 1473.0, + 602.0, + 1512.0, + 295.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 761.0, + 1114.0, + 761.0, + 1114.0, + 798.0, + 296.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 761.0, + 1114.0, + 761.0, + 1114.0, + 798.0, + 296.0, + 798.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 419, + 295, + 1279, + 295, + 1279, + 785, + 419, + 785 + ], + "score": 0.983, + "html": "
AlgorithmCLSVAvg
ERM97.6 ± 0.367.9 ± 0.770.9 ± 0.274.0 ± 0.677.6
IRM97.3 ± 0.266.7 ± 0.171.0 ± 2.372.8 ± 0.476.9
GroupDRO97.7 ± 0.265.9 ± 0.272.8 ± 0.873.4 ± 1.377.4
Mixup97.8 ± 0.467.2 ± 0.471.5 ± 0.275.7 ± 0.678.1
MLDG97.1 ± 0.566.6 ± 0.571.5 ± 0.175.0 ± 0.977.5
CORAL97.3 ± 0.267.5 ± 0.671.6 ± 0.674.5 ± 0.077.7
MMD98.8 ± 0.066.4 ± 0.470.8 ± 0.575.6 ± 0.477.9
DANN99.0 ± 0.266.3 ± 1.273.4 ± 1.480.1 ± 0.579.7
CDANN98.2 ± 0.168.8 ± 0.574.3 ± 0.678.1 ± 0.579.9
MTL97.9 ± 0.766.1 ± 0.772.0 ± 0.474.9 ± 1.177.7
SagNet97.4 ± 0.366.4 ± 0.471.6 ± 0.175.0 ± 0.877.6
ARM97.6 ± 0.666.5 ± 0.372.7 ± 0.674.4 ± 0.777.8
VREx98.4 ± 0.266.4 ± 0.772.8 ± 0.175.0 ± 1.478.1
RSC98.0 ± 0.467.2 ± 0.370.3 ± 1.375.6 ± 0.477.8
" + }, + { + "category_id": 5, + "poly": [ + 419, + 923, + 1278, + 923, + 1278, + 1414, + 419, + 1414 + ], + "score": 0.983, + "html": "
AlgorithmACPSAvg
ERM86.5 ± 1.081.3 ± 0.696.2 ± 0.382.7 ± 1.186.7
IRM84.2 ± 0.979.7 ± 1.595.9 ± 0.478.3 ± 2.184.5
GroupDRO87.5 ± 0.582.9 ± 0.697.1 ± 0.381.1 ± 1.287.1
Mixup87.5 ± 0.481.6 ± 0.797.4 ± 0.280.8 ± 0.986.8
MLDG87.0 ± 1.282.5 ± 0.996.7 ± 0.381.2 ± 0.686.8
CORAL86.6 ± 0.881.8 ± 0.997.1 ± 0.582.7 ± 0.687.1
MMD88.1 ± 0.882.6 ± 0.797.1 ± 0.581.2 ± 1.287.2
DANN87.0 ± 0.480.3 ± 0.696.8 ± 0.376.9 ± 1.185.2
CDANN87.7 ± 0.680.7 ± 1.297.3 ± 0.477.6 ± 1.585.8
MTL87.0 ± 0.282.7 ± 0.896.5 ± 0.780.5 ± 0.886.7
SagNet87.4 ± 0.581.2 ± 1.296.3 ± 0.880.7 ± 1.186.4
ARM85.0 ± 1.281.4 ± 0.295.9 ± 0.380.9 ± 0.585.8
VREx87.8 ± 1.281.8 ± 0.797.4 ± 0.282.1 ± 0.787.2
RSC86.0 ± 0.781.8 ± 0.996.8 ± 0.780.4 ± 0.586.2
" + }, + { + "category_id": 5, + "poly": [ + 420, + 1552, + 1277, + 1552, + 1277, + 2040, + 420, + 2040 + ], + "score": 0.982, + "html": "
AlgorithmACPRAvg
ERM61.7 ± 0.753.4 ± 0.374.1 ± 0.476.2 ± 0.666.4
IRM56.4 ± 3.251.2 ± 2.371.7 ± 2.772.7 ± 2.763.0
GroupDRO60.5 ± 1.653.1 ± 0.375.5 ± 0.375.9 ± 0.766.2
Mixup63.5 ± 0.254.6 ± 0.476.0 ± 0.378.0 ± 0.768.0
MLDG60.5 ± 0.754.2 ± 0.575.0 ± 0.276.7 ± 0.566.6
CORAL64.8 ± 0.854.1 ± 0.976.5 ± 0.478.2 ± 0.468.4
MMD60.4 ± 1.053.4 ± 0.574.9 ± 0.176.1 ± 0.766.2
DANN60.6 ± 1.451.8 ± 0.773.4 ± 0.575.5 ± 0.965.3
CDANN57.9 ± 0.252.1 ± 1.274.9 ± 0.776.2 ± 0.265.3
MTL60.7 ± 0.853.5 ± 1.375.2 ± 0.676.6 ± 0.666.5
SagNet62.7 ± 0.553.6 ± 0.576.0 ± 0.377.8 ± 0.167.5
ARM58.8 ± 0.551.8 ± 0.774.0 ± 0.174.4 ± 0.264.8
VREx59.6 ± 1.053.3 ± 0.373.2 ± 0.576.6 ± 0.465.7
RSC61.7 ± 0.853.0 ± 0.974.8 ± 0.876.3 ± 0.566.5
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.876 + }, + { + "category_id": 6, + "poly": [ + 298, + 1485, + 558, + 1485, + 558, + 1518, + 298, + 1518 + ], + "score": 0.556 + }, + { + "category_id": 6, + "poly": [ + 297, + 229, + 472, + 229, + 472, + 261, + 297, + 261 + ], + "score": 0.531 + }, + { + "category_id": 0, + "poly": [ + 297, + 229, + 472, + 229, + 472, + 261, + 297, + 261 + ], + "score": 0.424 + }, + { + "category_id": 0, + "poly": [ + 298, + 1485, + 558, + 1485, + 558, + 1518, + 298, + 1518 + ], + "score": 0.417 + }, + { + "category_id": 6, + "poly": [ + 297, + 857, + 467, + 857, + 467, + 890, + 297, + 890 + ], + "score": 0.338 + }, + { + "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": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 561.0, + 1481.0, + 561.0, + 1522.0, + 294.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 474.0, + 225.0, + 474.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 474.0, + 225.0, + 474.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 561.0, + 1481.0, + 561.0, + 1522.0, + 294.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 856.0, + 470.0, + 856.0, + 470.0, + 892.0, + 296.0, + 892.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 1021, + 1404, + 1021, + 1404, + 1469, + 296, + 1469 + ], + "score": 0.984, + "html": "
AlgorithmclipinfopaintquickrealsketchAvg
ERM58.6 ± 0.319.2 ± 0.247.0 ± 0.313.2 ± 0.259.9 ± 0.349.8 ± 0.441.3
IRM40.4 ± 6.612.1 ± 2.731.4 ± 5.79.8 ±1.237.7 ± 9.036.7 ± 5.328.0
GroupDRO47.2 ± 0.517.5 ± 0.434.2 ± 0.39.2 ± 0.451.9 ± 0.540.1 ± 0.633.4
Mixup55.6 ± 0.118.7 ± 0.445.1 ± 0.512.8 ± 0.357.6± 0.548.2 ± 0.439.6
MLDG59.3 ± 0.119.6 ± 0.246.8± 0.213.4±0.260.1 ± 0.450.4 ± 0.341.6
CORAL59.2 ± 0.119.9 ± 0.247.4 ± 0.214.0 ± 0.459.8 ± 0.250.4 ± 0.441.8
MMD32.2 ±13.311.2 ± 4.526.8 ± 11.38.8±2.232.7 ± 13.829.0 ± 11.823.5
DANN53.1 ± 0.218.3 ± 0.144.2 ± 0.711.9 ± 0.155.5± 0.446.8 ± 0.638.3
CDANN54.6 ± 0.417.3 ± 0.144.2 ± 0.712.8 ± 0.256.2 ± 0.445.9 ± 0.538.5
MTL58.0± 0.419.2 ± 0.246.2 ± 0.112.7 ± 0.259.9 ± 0.149.0 ± 0.040.8
SagNet57.7 ± 0.319.1 ± 0.146.3 ± 0.513.5 ± 0.458.9 ± 0.449.5 ± 0.240.8
ARM49.6 ± 0.416.5 ± 0.341.5 ± 0.810.8 ± 0.153.5 ± 0.343.9 ± 0.436.0
VREx43.3 ± 4.514.1 ± 1.832.5 ± 5.09.8 ± 1.143.5 ± 5.637.7 ± 4.530.1
RSC55.0 ±1.218.3 ± 0.544.4 ± 0.612.5 ± 0.155.7 ± 0.747.8 ± 0.938.9
" + }, + { + "category_id": 5, + "poly": [ + 297, + 1688, + 1403, + 1688, + 1403, + 2041, + 297, + 2041 + ], + "score": 0.983, + "html": "
AlgorithmColoredMNISTRotatedMNISTVLCSPACSOfficeHomeTerraIncognitaDomainNetAvg
ERM57.8 ± 0.297.8 ± 0.177.6± 0.386.7±0.366.4 ± 0.553.0±0.341.3 ± 0.168.7
IRM67.7 ± 1.297.5 ± 0.276.9 ±0.684.5 ±1.163.0±2.750.5± 0.728.0±5.166.9
GroupDRO61.1 ± 0.997.9 ± 0.177.4 ± 0.587.1 ± 0.166.2 ±0.652.4 ± 0.133.4±0.367.9
Mixup58.4±0.298.0±0.178.1 ±0.386.8 ±0.368.0±0.254.4 ± 0.339.6 ±0.169.0
MLDG58.2 ± 0.497.8 ± 0.177.5 ± 0.186.8 ±0.466.6± 0.352.0 ± 0.141.6 ± 0.168.7
CORAL58.6± 0.598.0±0.077.7 ± 0.287.1 ± 0.568.4±0.252.8±0.241.8 ± 0.169.2
MMD63.3 ± 1.398.0± 0.177.9 ± 0.187.2 ± 0.166.2 ±0.352.0 ±0.423.5±9.466.9
DANN57.0 ± 1.097.9 ± 0.179.7 ± 0.585.2 ±0.265.3 ±0.850.6 ± 0.438.3 ±0.167.7
CDANN59.5± 2.097.9 ± 0.079.9 ± 0.285.8 ±0.865.3 ± 0.550.8±0.638.5±0.268.2
MTL57.6 ± 0.397.9 ± 0.177.7 ± 0.586.7 ±0.266.5 ± 0.452.2 ±0.440.8 ± 0.168.5
SagNet58.2±0.397.9 ± 0.077.6 ± 0.186.4±0.467.5 ± 0.252.5 ± 0.440.8 ± 0.268.7
ARM63.2 ±0.798.1 ± 0.177.8 ±0.385.8±0.264.8 ±0.451.2 ± 0.536.0±0.268.1
VREx67.0 ±1.397.9 ± 0.178.1 ±0.287.2 ±0.665.7 ± 0.351.4 ± 0.530.1 ±3.768.2
RSC58.5± 0.597.6 ± 0.177.8 ±0.686.2 ±0.566.5 ±0.652.1 ±0.238.9±0.668.2
" + }, + { + "category_id": 5, + "poly": [ + 420, + 309, + 1280, + 309, + 1280, + 802, + 420, + 802 + ], + "score": 0.982, + "html": "
AlgorithmL100L38L43L46Avg
ERM59.4 ± 0.949.3 ± 0.660.1 ± 1.143.2 ± 0.553.0
IRM56.5 ± 2.549.8 ± 1.557.1 ± 2.238.6 ± 1.050.5
GroupDRO60.4 ± 1.548.3 ± 0.458.6 ± 0.842.2 ± 0.852.4
Mixup67.6 ± 1.851.0 ± 1.359.0 ± 0.040.0 ± 1.154.4
MLDG59.2 ± 0.149.0 ± 0.958.4 ± 0.941.4 ± 1.052.0
CORAL60.4 ± 0.947.2 ± 0.559.3 ± 0.444.4 ± 0.452.8
MMD60.6 ± 1.145.9 ± 0.357.8 ± 0.543.8 ±1.252.0
DANN55.2 ± 1.947.0 ± 0.757.2 ± 0.942.9 ± 0.950.6
CDANN56.3 ± 2.047.1 ± 0.957.2 ± 1.142.4 ± 0.850.8
MTL58.4 ± 2.148.4 ± 0.858.9 ± 0.643.0 ± 1.352.2
SagNet56.4 ± 1.950.5 ± 2.359.1 ± 0.544.1 ± 0.652.5
ARM60.1 ± 1.548.3 ± 1.655.3 ± 0.640.9 ± 1.151.2
VREx56.8 ± 1.746.5 ± 0.558.4 ± 0.343.8 ± 0.351.4
RSC59.9 ± 1.446.7 ± 0.457.8 ± 0.544.3 ± 0.652.1
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 298, + 1580, + 525, + 1580, + 525, + 1611, + 298, + 1611 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 0, + "poly": [ + 299, + 911, + 550, + 911, + 550, + 943, + 299, + 943 + ], + "score": 0.852 + }, + { + "category_id": 6, + "poly": [ + 298, + 229, + 612, + 229, + 612, + 262, + 298, + 262 + ], + "score": 0.512 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 612, + 229, + 612, + 262, + 298, + 262 + ], + "score": 0.471 + }, + { + "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, + 1575.0, + 528.0, + 1575.0, + 528.0, + 1616.0, + 293.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 905.0, + 555.0, + 905.0, + 555.0, + 950.0, + 293.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 617.0, + 225.0, + 617.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 617.0, + 225.0, + 617.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 27, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 352, + 281, + 1348, + 281, + 1348, + 467, + 352, + 467 + ], + "score": 0.978, + "html": "
ERM, model selection:ACPSAvg
training-domain86.6±0.879.7± 0.696.6± 0.477.8± 0.885.2
leave-one-out-domain86.4 ± 1.178.2 ± 1.096.8± 0.276.0 ± 2.184.4
test-domain (oracle)89.3 ± 0.382.2 ± 0.597.6 ± 0.282.7 ± 1.188.0
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2112, + 834, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 6, + "poly": [ + 298, + 228, + 1256, + 228, + 1256, + 263, + 298, + 263 + ], + "score": 0.831 + }, + { + "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": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1259.0, + 231.0, + 1259.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 28, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/train/-xEk43f_EO6/0.png b/vlm/train/-xEk43f_EO6/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8c5ca9b6af07e8c5b7506087d88500f5a63016c6 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c16b0e5d358ef8f16235663e10992a76bdbeb809753d91955f2bd00d601550 +size 434442 diff --git a/vlm/train/-xEk43f_EO6/1.png b/vlm/train/-xEk43f_EO6/1.png new file mode 100644 index 0000000000000000000000000000000000000000..db4fb20adae579b147feae83af27f8650c921fb3 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1791149856f8a0b2465f4d845bd289b1f88f324205cb18205edb91ad1caae03 +size 558947 diff --git a/vlm/train/-xEk43f_EO6/10.png b/vlm/train/-xEk43f_EO6/10.png new file mode 100644 index 0000000000000000000000000000000000000000..07693760bf2a854c72dff5b66eef89a017af4dd5 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a219e64b3290388e223d9c7c039d022fe06921484fe36e826635d25900811e +size 563793 diff --git a/vlm/train/-xEk43f_EO6/11.png b/vlm/train/-xEk43f_EO6/11.png new file mode 100644 index 0000000000000000000000000000000000000000..82a430b19e161531a68e76ba631e0522ef4135a5 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7cb579e0a8eea3fb05ee4bda4fb25504ddf46eca0a0debce8706556d8437330 +size 258386 diff --git a/vlm/train/-xEk43f_EO6/2.png b/vlm/train/-xEk43f_EO6/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0db7dc2bdeda12ff336b30f9221c0263090ac583 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511277b4a45816d8b6d0c8a3f941c741e10f6a53e54657ff00e50f254634516f +size 590054 diff --git a/vlm/train/-xEk43f_EO6/3.png b/vlm/train/-xEk43f_EO6/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4b826591c2f00fef16fee107a01603967efaa5d8 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:397cc4a397fc289f57aa186f4fec6b56f157c8310063dac2e2b65dff7f41a994 +size 453288 diff --git a/vlm/train/-xEk43f_EO6/4.png b/vlm/train/-xEk43f_EO6/4.png new file mode 100644 index 0000000000000000000000000000000000000000..baeb54ac921af1ca2c52620db25e8ca0946b1296 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311d5447ba39b93b7c07b85e98e360d24a1007a08005ee41e4634cc5c6436a2b +size 644123 diff --git a/vlm/train/-xEk43f_EO6/5.png b/vlm/train/-xEk43f_EO6/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa8f7e858df07de72afb48812665a452fc314f0 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165925a37360d30ce493ee149effadfc23c1ca7411003195e3d48f64caaed670 +size 546438 diff --git a/vlm/train/-xEk43f_EO6/6.png b/vlm/train/-xEk43f_EO6/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c0be86175f85946153f04f80498210ff850abab9 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d52e880cb7496345e91e98621096f381579ae668cc1fcf159dde9430e9eddf +size 491606 diff --git a/vlm/train/-xEk43f_EO6/7.png b/vlm/train/-xEk43f_EO6/7.png new file mode 100644 index 0000000000000000000000000000000000000000..097b257231a55215e0c14c0ac567fa38c469c302 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a428bd3dde536366e556b142ef6a614a54f6bf9e2835332178d0cd16217837 +size 483969 diff --git a/vlm/train/-xEk43f_EO6/8.png b/vlm/train/-xEk43f_EO6/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e86e1eb374da41ebcc905e457956d530542a85d6 --- /dev/null +++ b/vlm/train/-xEk43f_EO6/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d4619ebd58e30c6df73e2efea99681649f4d9dd60caa1787b5dd23324884d6 +size 469582 diff --git a/vlm/train/-xEk43f_EO6/9.png b/vlm/train/-xEk43f_EO6/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0811431e12842639149d7a153df81f4269bebaad --- /dev/null +++ b/vlm/train/-xEk43f_EO6/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e088857335f269fa1155b37efdb6c06b02fe2ce3624ca154ee245ccee28480 +size 545789 diff --git a/vlm/train/2-0wS9-cSL/0.png b/vlm/train/2-0wS9-cSL/0.png new file mode 100644 index 0000000000000000000000000000000000000000..52a9a2bb1e4fe97514e7e0ef04e9e5e20b8e137e --- /dev/null +++ b/vlm/train/2-0wS9-cSL/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00e9b54a34ae5f762994a1b64767f41f76afe2c656a7009ab9e30aab24f8da4 +size 497280 diff --git a/vlm/train/2-0wS9-cSL/1.png b/vlm/train/2-0wS9-cSL/1.png new file mode 100644 index 0000000000000000000000000000000000000000..973f25bae8f2b70fa87a3619cdeeb411f83d7ff4 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0575f7a7bd1d60d265c13c89a94ca06e84385fa0113e2ce3abb3553003dd2fc +size 740515 diff --git a/vlm/train/2-0wS9-cSL/10.png b/vlm/train/2-0wS9-cSL/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bbd6a3e0c92471ccec81bf85262234c6cada2a09 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0333f9315289dfe20856c20b8f689ff7bd033027108d29ad8c405c63e2b7f7 +size 619387 diff --git a/vlm/train/2-0wS9-cSL/11.png b/vlm/train/2-0wS9-cSL/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fe1fffb2b4677b4a7a65ce3f939ff9990cb54fb9 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d493a87b4cd060e9d595bf35e5562b6fcad776e9eba991b91bb9068b0d62e323 +size 454911 diff --git a/vlm/train/2-0wS9-cSL/2.png b/vlm/train/2-0wS9-cSL/2.png new file mode 100644 index 0000000000000000000000000000000000000000..00e68d7ce80b5f0a8e52d91f444cb5d3d022fc29 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:318d8cb2ad02435b3e7b6bfb16c05fb1677d70eb6e357b8173bccc476cd4bc0f +size 701737 diff --git a/vlm/train/2-0wS9-cSL/3.png b/vlm/train/2-0wS9-cSL/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ef73f253ea54bf2301e1108bf995ce48e9bf4920 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec512bb97334f67375c6550d1a6d4262ab040461d9ba0911f283602dea287c59 +size 585508 diff --git a/vlm/train/2-0wS9-cSL/4.png b/vlm/train/2-0wS9-cSL/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ba37caa11c0af4a3bb1d1e3cca08b521984176 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d51ccab28d482b5ffeb92844c569d7742973a3ddc8408bc42bbf40db3cb9cae +size 478961 diff --git a/vlm/train/2-0wS9-cSL/5.png b/vlm/train/2-0wS9-cSL/5.png new file mode 100644 index 0000000000000000000000000000000000000000..744fd3251c02ca44666c6edf94e2d30e19cfa2f3 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0acbfcfa1cbd14459f9170d2a8d42669623a4b36f5b8422c1c78bf8cf328238d +size 654773 diff --git a/vlm/train/2-0wS9-cSL/6.png b/vlm/train/2-0wS9-cSL/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0712b99acab6c61af2d7d1ef2e91439199458b19 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806aa2d3f1ec5d9eb0ff0d63632d3a43fc550483f1966d9515272e3eb0cadcfe +size 635637 diff --git a/vlm/train/2-0wS9-cSL/7.png b/vlm/train/2-0wS9-cSL/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bf1d45dc18b2857005f2074f7070a05e455f38ed --- /dev/null +++ b/vlm/train/2-0wS9-cSL/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7723369ef4dfaf9c4c2af91e0e7b823bad0f7f7f1ec6b359c1bbd0b7b0e06603 +size 516948 diff --git a/vlm/train/2-0wS9-cSL/8.png b/vlm/train/2-0wS9-cSL/8.png new file mode 100644 index 0000000000000000000000000000000000000000..782c63ff2728b8ceb8d6db7d4890157e4393ca12 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59480199aad41c562a19ad68a0574ae41ebf58ce9930f138a838eec24f6adeb +size 605457 diff --git a/vlm/train/2-0wS9-cSL/9.png b/vlm/train/2-0wS9-cSL/9.png new file mode 100644 index 0000000000000000000000000000000000000000..57abf0b6d0d32bf090f8f0a115bc83c68d9d4f49 --- /dev/null +++ b/vlm/train/2-0wS9-cSL/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab617cf8fb92bcb0e662b22603bea7f3bec7180c6449f098e3bb5ed44b6224b5 +size 556917 diff --git a/vlm/train/3Aoft6NWFej/0.png b/vlm/train/3Aoft6NWFej/0.png new file mode 100644 index 0000000000000000000000000000000000000000..04615f86bb9a3ae022442e807697cec1b5cd5222 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375c66045d31e40deeee70b793c34cda05cb418ce1f685d74ab310917770f9a1 +size 465719 diff --git a/vlm/train/3Aoft6NWFej/1.png b/vlm/train/3Aoft6NWFej/1.png new file mode 100644 index 0000000000000000000000000000000000000000..380423780a555ef8818dc1b5caee8d7128104aa0 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6eed675cb1f1e41ee66a630226be8a5d8b56fb2317d5da93e7d5e6e39088fa8 +size 608213 diff --git a/vlm/train/3Aoft6NWFej/10.png b/vlm/train/3Aoft6NWFej/10.png new file mode 100644 index 0000000000000000000000000000000000000000..04fcbfa968f84d405c51211d48c25f8928672c14 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6df3d4e7daac4ccaa4dd892949deaddd53a5ec80e3c9a4809e8a04cfcdc039e +size 333763 diff --git a/vlm/train/3Aoft6NWFej/11.png b/vlm/train/3Aoft6NWFej/11.png new file mode 100644 index 0000000000000000000000000000000000000000..48cd1327c821d9a016cbecb45a07a8166ef5e535 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721d07df3441e327c394ba5052c106649c8a5ffa23948944b4780e7134c99559 +size 484111 diff --git a/vlm/train/3Aoft6NWFej/12.png b/vlm/train/3Aoft6NWFej/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0974970a61c09664ddec24363233ef9d35f50472 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8982d82422f400c56ebaf930c5eebaaf904185808f02eaa5fb5cdeeb7f192a91 +size 348081 diff --git a/vlm/train/3Aoft6NWFej/13.png b/vlm/train/3Aoft6NWFej/13.png new file mode 100644 index 0000000000000000000000000000000000000000..46fe168f8e3d023ab387a8fcfc6b4786eacea5b6 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3455cf5527e328f4bb89279577b8d2572ff5e04638edb8c4d1a4cc08b3e16641 +size 520644 diff --git a/vlm/train/3Aoft6NWFej/2.png b/vlm/train/3Aoft6NWFej/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3978719f497aff6fe0261a289f6cb5383fa9639f --- /dev/null +++ b/vlm/train/3Aoft6NWFej/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc02661c3ff5e15fd16506278a7f6b6b8c0a0edad54b711b3815e6f54874288 +size 536013 diff --git a/vlm/train/3Aoft6NWFej/3.png b/vlm/train/3Aoft6NWFej/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1a8c777d1c17874466c1dece635d25348c3c00ea --- /dev/null +++ b/vlm/train/3Aoft6NWFej/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24d835b1afa859b59896b6168ab9c47f32a3fa49fdfcc74e36d543e8f4ae752 +size 557518 diff --git a/vlm/train/3Aoft6NWFej/4.png b/vlm/train/3Aoft6NWFej/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1fe8a12d5b1e74a4fbf9e1adc86cf722a2d94d68 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382caa20f54c730e951964692c1904537c547558276fcdbca2529d5038f8d382 +size 605917 diff --git a/vlm/train/3Aoft6NWFej/5.png b/vlm/train/3Aoft6NWFej/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3009cc5b93b5ca7780b8439dce3fb7a684ca2140 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c5c9f2fa655378d9a44768b68d8716840d06972a11c55f8a78be24000c7c5a0 +size 566791 diff --git a/vlm/train/3Aoft6NWFej/6.png b/vlm/train/3Aoft6NWFej/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ad0f766f61684de11068d1ff67d4f1901374a89c --- /dev/null +++ b/vlm/train/3Aoft6NWFej/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c7acd4cc756029d5fb34e66d55cfb50d4f81dd5e1b391ffd6dd24b916a627a +size 572508 diff --git a/vlm/train/3Aoft6NWFej/7.png b/vlm/train/3Aoft6NWFej/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ce48f847a551678b15d8f6303ad0f378f9ba3127 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede7b1d7d854d0e405431e3a81047b0e5a966e5bec2f1d882bd4bb63997bb890 +size 542505 diff --git a/vlm/train/3Aoft6NWFej/8.png b/vlm/train/3Aoft6NWFej/8.png new file mode 100644 index 0000000000000000000000000000000000000000..53ff90845ac5c168e998783d13316d55ea0864f3 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9321db0d7fef4ec1a288f91ee3059aca5942a5fe3f328a16cb3a51c1aec32108 +size 606609 diff --git a/vlm/train/3Aoft6NWFej/9.png b/vlm/train/3Aoft6NWFej/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ebeac7c8d1dec5c65556369f73f8491c2fa00aa8 --- /dev/null +++ b/vlm/train/3Aoft6NWFej/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca985d16a002c92e76c440a944e7e321801b0f21eea520da4cb0936dd3cc9ec4 +size 546404 diff --git a/vlm/train/8KokDTctkA8e4/0.png b/vlm/train/8KokDTctkA8e4/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1ecd26f13dc2162ad2b3ccf39cf348e99436e256 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4791923bd1716e6aa428857ee7a4ce1c1f86a91d56b698bd1a845f1d5f496e +size 467178 diff --git a/vlm/train/8KokDTctkA8e4/1.png b/vlm/train/8KokDTctkA8e4/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9864cdf739fbcd91a7dfc8af332a140fa3efb4e0 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91689f06809e399c5b6f00a63af53412d6f7b02dc1f6cc0d67f6c858e4ed9623 +size 522273 diff --git a/vlm/train/8KokDTctkA8e4/10.png b/vlm/train/8KokDTctkA8e4/10.png new file mode 100644 index 0000000000000000000000000000000000000000..431dabbb307f58081a01670f32d34db2814ab139 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c87ec28f70c56b0142d70cd7f4ec7e6875bb6d9bcdff484e644679190cf8ae +size 331196 diff --git a/vlm/train/8KokDTctkA8e4/11.png b/vlm/train/8KokDTctkA8e4/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b850a5afc16fc8a00801e1e17f4a4ce53fd5d549 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb815a3959cdac19cd86534fd96f9ae8ce1eb4a4cfb17240f9eb45bb6db2aae2 +size 669526 diff --git a/vlm/train/8KokDTctkA8e4/2.png b/vlm/train/8KokDTctkA8e4/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ae17d9efff6120144c6c77ded201ef675332994 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8859fda055a110fa921a189f9589749945a1b2ab60b44b992290af71896e9888 +size 560448 diff --git a/vlm/train/8KokDTctkA8e4/3.png b/vlm/train/8KokDTctkA8e4/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1380d9884ae81d98c8ded695c3b1da0a09db9b39 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c67382e589d7058ca082ef085dcc9b27a28b5366655aac5b6162702795f6c6 +size 469124 diff --git a/vlm/train/8KokDTctkA8e4/4.png b/vlm/train/8KokDTctkA8e4/4.png new file mode 100644 index 0000000000000000000000000000000000000000..57ccf837441cbf6a24f1c8ee592b9aa4bcad693c --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:931a6518a18b968e9d659dcd07c65a4abae93b3b0e64708cfc999e64931dfc47 +size 686770 diff --git a/vlm/train/8KokDTctkA8e4/5.png b/vlm/train/8KokDTctkA8e4/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bf5d7480a9f4449bc9a264574b41b8289a27b428 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1346b69c8e88d54bc5647db6156c8e55be4b95757cbe6ae38b8047ea078aa6 +size 697388 diff --git a/vlm/train/8KokDTctkA8e4/6.png b/vlm/train/8KokDTctkA8e4/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e6c293eb14ad1d96b24d0e4427c25bfb2049c5c2 --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad4967b6e8f5655265be51271cf921d59ab66fc81ecf04e75ddc49ea4d15873 +size 690466 diff --git a/vlm/train/8KokDTctkA8e4/7.png b/vlm/train/8KokDTctkA8e4/7.png new file mode 100644 index 0000000000000000000000000000000000000000..80726529cb6b2bac4fbe1d4861d01c9e1e47a49a --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3b276696d678c45b9bff240f7e1f1b8d98016e2a2eb71e8eeaac44eb055abc +size 681111 diff --git a/vlm/train/8KokDTctkA8e4/8.png b/vlm/train/8KokDTctkA8e4/8.png new file mode 100644 index 0000000000000000000000000000000000000000..91bd79338e9424d27d2922d85a0da6b150248bcb --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e917205c4651bd8160158b79c9fa23401a88d18e4d31378b11c6e9bc1d14a861 +size 659467 diff --git a/vlm/train/8KokDTctkA8e4/9.png b/vlm/train/8KokDTctkA8e4/9.png new file mode 100644 index 0000000000000000000000000000000000000000..dbb71d15610febfe34d9e297f2104f33da42b41d --- /dev/null +++ b/vlm/train/8KokDTctkA8e4/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d9224a8f60c01de20d62703e44ec9018c5366be58ff4b4e0fe91e7c1cf0928 +size 332290 diff --git a/vlm/train/B1M8JF9xx/0.png b/vlm/train/B1M8JF9xx/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8fab125bbf57604f9cba5e70b2cd3d64581f60e6 --- /dev/null +++ b/vlm/train/B1M8JF9xx/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96f93c9a89ce33533cd2e527bc15f05cd0765934b2cd03cfd1530600de35cb1 +size 496987 diff --git a/vlm/train/B1M8JF9xx/1.png b/vlm/train/B1M8JF9xx/1.png new file mode 100644 index 0000000000000000000000000000000000000000..de09640e8ca79563c10f0d2bf963ff5ce2f55b3c --- /dev/null +++ b/vlm/train/B1M8JF9xx/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948f227412e45ba55e017ce648db8a4370b00f4a580b6b542e3447aa78d75389 +size 590861 diff --git a/vlm/train/B1M8JF9xx/10.png b/vlm/train/B1M8JF9xx/10.png new file mode 100644 index 0000000000000000000000000000000000000000..25400221fe9f65491df8907b38375d9c3816847c --- /dev/null +++ b/vlm/train/B1M8JF9xx/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b40ad08e2af318f110ca4939b36002991c170a16b8d4cc84ed384642ee75a4 +size 556922 diff --git a/vlm/train/B1M8JF9xx/11.png b/vlm/train/B1M8JF9xx/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f249006d35624a396a017bd77cb4e4985f875394 --- /dev/null +++ b/vlm/train/B1M8JF9xx/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1a86f7310178e3da359d772b2b8a95f0d5b24035bb36b6bc1861d97ac9a84a +size 444682 diff --git a/vlm/train/B1M8JF9xx/12.png b/vlm/train/B1M8JF9xx/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d4cc4199fb7794eca64086bde1670af79a4e0af2 --- /dev/null +++ b/vlm/train/B1M8JF9xx/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e6c734826c625cec1827370ebbe48ac9491889af77c40fa790cca5766aaaa8 +size 350712 diff --git a/vlm/train/B1M8JF9xx/13.png b/vlm/train/B1M8JF9xx/13.png new file mode 100644 index 0000000000000000000000000000000000000000..143186bfe569b94828b3908ce55a047c596d8577 --- /dev/null +++ b/vlm/train/B1M8JF9xx/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0994cf27d7b1e7a75f8a261fa211c34790528f8878374a248e32d51d24eea1c6 +size 237673 diff --git a/vlm/train/B1M8JF9xx/14.png b/vlm/train/B1M8JF9xx/14.png new file mode 100644 index 0000000000000000000000000000000000000000..85f9b664d002e64de858940c51d7a1513bb980c6 --- /dev/null +++ b/vlm/train/B1M8JF9xx/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a64b6e3d725f5397565268c325339204eba0c5fb59cf882cace1cd82fc77b6b +size 248638 diff --git a/vlm/train/B1M8JF9xx/15.png b/vlm/train/B1M8JF9xx/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6f254737e7315a32a643d8bb708da47ce37e733a --- /dev/null +++ b/vlm/train/B1M8JF9xx/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ef482c8046ed2a49339c5ac8abf976cec23267aa109d3b7818adda824b2596 +size 248155 diff --git a/vlm/train/B1M8JF9xx/16.png b/vlm/train/B1M8JF9xx/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4a458cb1d9038279c32d3ac2a8d9c7e7fb3cebb2 --- /dev/null +++ b/vlm/train/B1M8JF9xx/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb2d49ca8461c4283e9f19ca85a4ca075ffc82f6d2fc5e945ed43892969451d +size 232135 diff --git a/vlm/train/B1M8JF9xx/2.png b/vlm/train/B1M8JF9xx/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9a9202a83328667156cf368271785a837e2e57a8 --- /dev/null +++ b/vlm/train/B1M8JF9xx/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f4f3193f4cf0ab62d8dc50ba9768d528b3dfb369d834e6f0e03b9a8a4fd60b +size 547847 diff --git a/vlm/train/B1M8JF9xx/3.png b/vlm/train/B1M8JF9xx/3.png new file mode 100644 index 0000000000000000000000000000000000000000..399896a5547d44016ad8fa02f7236d081ca3cec1 --- /dev/null +++ b/vlm/train/B1M8JF9xx/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829feeb17806973a1d2755225fe3c01ab03fe15d1b3bb624fc1a25393020b173 +size 565685 diff --git a/vlm/train/B1M8JF9xx/4.png b/vlm/train/B1M8JF9xx/4.png new file mode 100644 index 0000000000000000000000000000000000000000..42bb355fc4eda071c1b5e7664d76dcdfb524165e --- /dev/null +++ b/vlm/train/B1M8JF9xx/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dccfdf4376abe54a79e1b52d08039f08baaeb9fdb41e5f2462f6fc183d14fc5 +size 555272 diff --git a/vlm/train/B1M8JF9xx/5.png b/vlm/train/B1M8JF9xx/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3bb8969201e8b1a04d24c49817b102a2450eed24 --- /dev/null +++ b/vlm/train/B1M8JF9xx/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b35cfe99586b71501e43e0169071e7aecdd1ce336b609563f244a1ea6ef568 +size 548559 diff --git a/vlm/train/B1M8JF9xx/6.png b/vlm/train/B1M8JF9xx/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f699aa385e0f8c9de5cd01c1f85107bca968977a --- /dev/null +++ b/vlm/train/B1M8JF9xx/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2878c58ae70a00ba61a02f30b39af5589630dd016461e794b9e00f6875fb1445 +size 579269 diff --git a/vlm/train/B1M8JF9xx/7.png b/vlm/train/B1M8JF9xx/7.png new file mode 100644 index 0000000000000000000000000000000000000000..031b31a4fad788ca87acefc7c01c6b38abbd49c3 --- /dev/null +++ b/vlm/train/B1M8JF9xx/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3161ac2cf7a15a0636dd9d0cc68c656dad0b10a56123cee3fc1d34690b7a8d51 +size 554346 diff --git a/vlm/train/B1M8JF9xx/8.png b/vlm/train/B1M8JF9xx/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2458d8d3be159f8a9d9acd9ad52774d4bc4931e7 --- /dev/null +++ b/vlm/train/B1M8JF9xx/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032e067013574f3fe4c1e45441ca7a3d2392dc0a5d5b33012a0ba54432c70256 +size 560452 diff --git a/vlm/train/B1M8JF9xx/9.png b/vlm/train/B1M8JF9xx/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b0288aea027fe7ff8302a566f14af5037d2c5932 --- /dev/null +++ b/vlm/train/B1M8JF9xx/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96e68d7b8bbfc1f31e144cb9e3150cd3f1162747ed899d7ab7a8bcd3352ba29 +size 498705 diff --git a/vlm/train/BJfOXnActQ/0.png b/vlm/train/BJfOXnActQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e970d29341ba5c7aede1cd6cf5f983be10397757 --- /dev/null +++ b/vlm/train/BJfOXnActQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04950559bd6c32b76cd61aeb2c17a37ee495ff0f25bad275ae8ed6a5e416a196 +size 496574 diff --git a/vlm/train/BJfOXnActQ/1.png b/vlm/train/BJfOXnActQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8d2791e8aa219b5dbee40103d8c80b64e4d320bd --- /dev/null +++ b/vlm/train/BJfOXnActQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0399e3a76288043e6be55f477ca39b1dbdd7325c2d027a37f1ed5b1839a952 +size 495372 diff --git a/vlm/train/BJfOXnActQ/10.png b/vlm/train/BJfOXnActQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8e8c73d20b376ae9a4aa485a613d019c60502662 --- /dev/null +++ b/vlm/train/BJfOXnActQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a518fa17f97553e5d7fbc774be51941e7339d2343a6f8d67deed4b23272e7e84 +size 250794 diff --git a/vlm/train/BJfOXnActQ/2.png b/vlm/train/BJfOXnActQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7a681d51ebc8bd11b542c71ede23ebdaa826e156 --- /dev/null +++ b/vlm/train/BJfOXnActQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ceec9cf87158c3ecb6010bf3b487e44267b2f34ff3bfe94256840fb884a50f6 +size 453606 diff --git a/vlm/train/BJfOXnActQ/3.png b/vlm/train/BJfOXnActQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f7ec204ea0547731b2c3ece645bdee42424c3541 --- /dev/null +++ b/vlm/train/BJfOXnActQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426f8c3b360e9af05df77d9e9f6369d739fab07ee174c5b90c4ec9851aa607ea +size 449702 diff --git a/vlm/train/BJfOXnActQ/4.png b/vlm/train/BJfOXnActQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..277ced3ee84e8298f1da228fbdc478453b1758dc --- /dev/null +++ b/vlm/train/BJfOXnActQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42889c5fa12f0ae9af8aee7dacb1b23243c4e92768f2637ba5f94f4cb562baa +size 455618 diff --git a/vlm/train/BJfOXnActQ/5.png b/vlm/train/BJfOXnActQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..aa0a8dac01c9d08be1e9a1f8a646a9e836c8081a --- /dev/null +++ b/vlm/train/BJfOXnActQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7dc1b5668af708cf0162cc0ac21f4803cd98330c4ec20ae317fa11c9692f02 +size 588788 diff --git a/vlm/train/BJfOXnActQ/6.png b/vlm/train/BJfOXnActQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ef6569792f2d353c4a9580bae9fce055ed0badeb --- /dev/null +++ b/vlm/train/BJfOXnActQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0819792a49b11615f7a99c86cae985a7f1b4ecead5b0fc1318df7a141fbb8b95 +size 536329 diff --git a/vlm/train/BJfOXnActQ/7.png b/vlm/train/BJfOXnActQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6a13e62662e5d3e444a99bc7b6e1208a64624357 --- /dev/null +++ b/vlm/train/BJfOXnActQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534cb56b709e855c103c3b4861afd348bd5f4fe538607df4b267dd50217eaec2 +size 446155 diff --git a/vlm/train/BJfOXnActQ/8.png b/vlm/train/BJfOXnActQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ece708caa4c0449a760b73ad589519b3dd588fba --- /dev/null +++ b/vlm/train/BJfOXnActQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6645db11b89c6997476979efbe86b70ce17168048db933983c46823845ff1b0d +size 544807 diff --git a/vlm/train/BJfOXnActQ/9.png b/vlm/train/BJfOXnActQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a406b28541f557ca53df43d7fa4794197de411cb --- /dev/null +++ b/vlm/train/BJfOXnActQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef4347c3fa4eed5691fe8db03fc37a0d8350d1322f82451dd9a9ceac26f0eaf +size 510893 diff --git a/vlm/train/BJlxm30cKm/0.png b/vlm/train/BJlxm30cKm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a454a35f1fbb7f5b82bacee75a5884010dd41413 --- /dev/null +++ b/vlm/train/BJlxm30cKm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c16591ad9c07cbf78ca3d5a9036facd3e0b9e4d209792952ddf551ed89ab5ce +size 468887 diff --git a/vlm/train/BJlxm30cKm/1.png b/vlm/train/BJlxm30cKm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3f8f98296083314ee7f2c9b2ec43c2313dfba13e --- /dev/null +++ b/vlm/train/BJlxm30cKm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afd44d90990372e6701fc40485615e0aec1b237dccc76956956d03a4fd86301 +size 619868 diff --git a/vlm/train/BJlxm30cKm/10.png b/vlm/train/BJlxm30cKm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9fb82f5fd9679b2d5c6e1a8ccaea194cb190cbcc --- /dev/null +++ b/vlm/train/BJlxm30cKm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93eba40a0b3f39f832a86d1189564d7f2bb77ca2532da323f44066b0b0f59ac5 +size 457342 diff --git a/vlm/train/BJlxm30cKm/11.png b/vlm/train/BJlxm30cKm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..44aa14f89adbed8214498f9f94b395fa3268ae3d --- /dev/null +++ b/vlm/train/BJlxm30cKm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccfc774bdeee66c434aa4e3ab0a892e85086c4a25424d5017bf34efe40f29045 +size 388218 diff --git a/vlm/train/BJlxm30cKm/12.png b/vlm/train/BJlxm30cKm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..511ea01bf59667bfe2bb6c75e5d0047ec02876a9 --- /dev/null +++ b/vlm/train/BJlxm30cKm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3cf4830b12aee07e7f9ad7089f69db841044eda024d45cb7dba6c2691deb32f +size 422481 diff --git a/vlm/train/BJlxm30cKm/13.png b/vlm/train/BJlxm30cKm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..72e250e67100f32c0654d4551b13355056483474 --- /dev/null +++ b/vlm/train/BJlxm30cKm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:318acbe075677fdc4dc3324074c68373b66d1f96076942937ce22970a48ec5cd +size 405044 diff --git a/vlm/train/BJlxm30cKm/14.png b/vlm/train/BJlxm30cKm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..ce4e794f603d40b24aa412597db85990dbc47e8a --- /dev/null +++ b/vlm/train/BJlxm30cKm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4402df3464a2ddcc31a28c7ca521cb213aa560666327f802980f081e31ce43fd +size 389352 diff --git a/vlm/train/BJlxm30cKm/15.png b/vlm/train/BJlxm30cKm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..eda0cf5a8b663031ffadc7322afb95679f21f8b6 --- /dev/null +++ b/vlm/train/BJlxm30cKm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4fb1a6d39d6a13c14cc4d1888bb2235e725579b9bbb6778038e83b051e04c2 +size 1008131 diff --git a/vlm/train/BJlxm30cKm/16.png b/vlm/train/BJlxm30cKm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..37d468316cd338068ee89a9d9f2e85980659d0ae --- /dev/null +++ b/vlm/train/BJlxm30cKm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70e00be81db5dd7c19e7b80a59095c4fc740c05c1cd80f4d42efc242400b511 +size 507599 diff --git a/vlm/train/BJlxm30cKm/17.png b/vlm/train/BJlxm30cKm/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c83d137b9620b42f6fc3fdcee16cab34a84791ae --- /dev/null +++ b/vlm/train/BJlxm30cKm/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97105655c2273d8920f7ed8f2f9863b3343ae09c927a3162b77f15f0a7a7c975 +size 145309 diff --git a/vlm/train/BJlxm30cKm/2.png b/vlm/train/BJlxm30cKm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e2eec88288080c911bcec88d069b513850ca25a --- /dev/null +++ b/vlm/train/BJlxm30cKm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cea2c4c9773fb27a26aae9cadf7b6fb4cd0049a4eeb8f63ce957b6e95a7dac4 +size 606839 diff --git a/vlm/train/BJlxm30cKm/3.png b/vlm/train/BJlxm30cKm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b3f4ccd42c63cfd6e3af355cb1104338183efdff --- /dev/null +++ b/vlm/train/BJlxm30cKm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e114b89385e72bbc78ac717fd2f26e96fc849eedc83397f96cf862dab89ad11 +size 560961 diff --git a/vlm/train/BJlxm30cKm/4.png b/vlm/train/BJlxm30cKm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3b23be29df6151094fad8181f79ce52e3287663d --- /dev/null +++ b/vlm/train/BJlxm30cKm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c098c32ec3955534578362823f71d3bdecdb6dd8a459109f4059a25e8382a1ee +size 583100 diff --git a/vlm/train/BJlxm30cKm/5.png b/vlm/train/BJlxm30cKm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..feb20f236e1f6cfe21fd18dcde24d47c97be4b6e --- /dev/null +++ b/vlm/train/BJlxm30cKm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1198539bab2872efceeec6c31bfe54082edbece5095eda84c427c73bdf8d3d2 +size 566388 diff --git a/vlm/train/BJlxm30cKm/6.png b/vlm/train/BJlxm30cKm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7084142c52f4464665d84c126550bcda804cc119 --- /dev/null +++ b/vlm/train/BJlxm30cKm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca50ef9653561f9c3e8dcccdf0eca0a2615a0aea2ccfddfe8049913947cc09f7 +size 603108 diff --git a/vlm/train/BJlxm30cKm/7.png b/vlm/train/BJlxm30cKm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..37e93613c5387c89ac14437792d805bf5be91ec8 --- /dev/null +++ b/vlm/train/BJlxm30cKm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2ef5f24f0a1242bb438afdeb6f7af4b822482b5650cea1eb02076ccb4dba95 +size 516364 diff --git a/vlm/train/BJlxm30cKm/8.png b/vlm/train/BJlxm30cKm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..937eb72fdcfe1c9bbae39bdc8c73435f16b984f4 --- /dev/null +++ b/vlm/train/BJlxm30cKm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fff926ffd99cbf354c2e505c26b10379e8118ef1f6a26d4a8251c5a2c76c666 +size 535383 diff --git a/vlm/train/BJlxm30cKm/9.png b/vlm/train/BJlxm30cKm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8aa527006a44625d723bc00158b4fcbf92f87498 --- /dev/null +++ b/vlm/train/BJlxm30cKm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8270952503044041049e15a7f0a80ff0e7c42da64e50d27b23868a6e02f24f85 +size 547412 diff --git a/vlm/train/BJrFC6ceg/0.png b/vlm/train/BJrFC6ceg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..603aef65afdad8851daf03b1667a8cae004038cf --- /dev/null +++ b/vlm/train/BJrFC6ceg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926b2fd3b0d9c0e10e8022673abfde67bda905749283afee4765a5c07671dbec +size 458359 diff --git a/vlm/train/BJrFC6ceg/1.png b/vlm/train/BJrFC6ceg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..39166d1330068f78334f9025d6d657ccf2bb5a5a --- /dev/null +++ b/vlm/train/BJrFC6ceg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a58c1ae86c4db79a6b6a8aecb027507f85c4f064bc10707063ab5a772e5b67 +size 428961 diff --git a/vlm/train/BJrFC6ceg/2.png b/vlm/train/BJrFC6ceg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..151663841334de90da51995524db673371ede9b6 --- /dev/null +++ b/vlm/train/BJrFC6ceg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbf955175a566fcb51f9ff5815bd602529303d609302c5731d1f824caf05708 +size 555123 diff --git a/vlm/train/BJrFC6ceg/3.png b/vlm/train/BJrFC6ceg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..36dbc3e8c54ada0335f96d144b9ccfb50477089e --- /dev/null +++ b/vlm/train/BJrFC6ceg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97182bc7188113d78973fe44925e2299da96632af8e987edb3c5787d64ac0313 +size 430504 diff --git a/vlm/train/BJrFC6ceg/4.png b/vlm/train/BJrFC6ceg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..19d93c0252904b4bce10dc02c8a6dab666559a16 --- /dev/null +++ b/vlm/train/BJrFC6ceg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace9bf015e3605cfc0d33110a64fdd959f7760a88ecae0778a0283e5435d9e60 +size 665620 diff --git a/vlm/train/BJrFC6ceg/5.png b/vlm/train/BJrFC6ceg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..76c5010533722fcd1f37c9423c7422e1de9f00a4 --- /dev/null +++ b/vlm/train/BJrFC6ceg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03a9c51d7525cd9469919d022d05cc768a102c655c7478f8ad7919658a79bec +size 1122550 diff --git a/vlm/train/BJrFC6ceg/6.png b/vlm/train/BJrFC6ceg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d8e65adbac6b3beba009baa80dcdee55a648af96 --- /dev/null +++ b/vlm/train/BJrFC6ceg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ffa89599c489eb75e55d190100e4fd0081bb6099f503f4a90c6768414ea15e5 +size 814235 diff --git a/vlm/train/BJrFC6ceg/7.png b/vlm/train/BJrFC6ceg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1595eae75a156c1ae9eb1c631f3bcea9b434f771 --- /dev/null +++ b/vlm/train/BJrFC6ceg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f9631f522e8388a999724712658912417c0c84a9b72115d5c574cddb4c246e +size 290168 diff --git a/vlm/train/BJrFC6ceg/8.png b/vlm/train/BJrFC6ceg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8d6cfb79a09384afc24972090ac005a7198eedbd --- /dev/null +++ b/vlm/train/BJrFC6ceg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69798c781503a37193a09359c4c41175e8fef4061b2bd9fe61a7cdbe1ce4dc03 +size 837947 diff --git a/vlm/train/BJrFC6ceg/9.png b/vlm/train/BJrFC6ceg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0cf752dd2279cd16b8019e969c399dd576e93a7e --- /dev/null +++ b/vlm/train/BJrFC6ceg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c934a92a46f3f433e9b80c06811f20555c6a30af19899b7f1a2c2855602cf382 +size 402303 diff --git a/vlm/train/BM64dm9HvN/0.png b/vlm/train/BM64dm9HvN/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cf93dc5a664b111a9e1bcc4c4be550e815f3421e --- /dev/null +++ b/vlm/train/BM64dm9HvN/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f679fdbaddd66f0658d1db614b7eab5e09054f19965b515f3231be2027eae862 +size 371334 diff --git a/vlm/train/BM64dm9HvN/1.png b/vlm/train/BM64dm9HvN/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b12d72759b8d318e2c7cdbd300073923b57ee088 --- /dev/null +++ b/vlm/train/BM64dm9HvN/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481d2393c568418d5761e54a46680356674d1458b8f3045c89c56c4859a20ac4 +size 527980 diff --git a/vlm/train/BM64dm9HvN/10.png b/vlm/train/BM64dm9HvN/10.png new file mode 100644 index 0000000000000000000000000000000000000000..195cbc64d0016ed23a29c73af81ec0114ffcc39c --- /dev/null +++ b/vlm/train/BM64dm9HvN/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9b443f4058a14b46f8ff5ea8ae6b168efe22aadb442724cd4dd25b59df4456 +size 600913 diff --git a/vlm/train/BM64dm9HvN/11.png b/vlm/train/BM64dm9HvN/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a67b6ca8e4a1430b201737039109590442745f49 --- /dev/null +++ b/vlm/train/BM64dm9HvN/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e515ecf5c8f08fa940167156c13cd6698dc5ad5ef348170a6d93bdbc32b4c359 +size 238491 diff --git a/vlm/train/BM64dm9HvN/2.png b/vlm/train/BM64dm9HvN/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e52cf8ce6378b2ee8e4070dd05b334a60fc87ee --- /dev/null +++ b/vlm/train/BM64dm9HvN/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6485835b2a996c5a16126b8fbbe719b47fbc935b6cfbe46a4d8839a3de0d1173 +size 454894 diff --git a/vlm/train/BM64dm9HvN/3.png b/vlm/train/BM64dm9HvN/3.png new file mode 100644 index 0000000000000000000000000000000000000000..08578331afd2ec79202800c600a757906600c802 --- /dev/null +++ b/vlm/train/BM64dm9HvN/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f31c36fc70d128421dbeba8c07c0249b85c51da82f3d4cf4694db49d68d05dff +size 571180 diff --git a/vlm/train/BM64dm9HvN/4.png b/vlm/train/BM64dm9HvN/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e7a72cb90c0484ba362e04f9ab45db68bd6005 --- /dev/null +++ b/vlm/train/BM64dm9HvN/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfbeab2bbe47e4c744690420143ce1f088a2c7c5a229b2743bdf15c60eedd7d +size 547930 diff --git a/vlm/train/BM64dm9HvN/5.png b/vlm/train/BM64dm9HvN/5.png new file mode 100644 index 0000000000000000000000000000000000000000..740d70f66e1d5870dcc99e1f212668b3be195f0f --- /dev/null +++ b/vlm/train/BM64dm9HvN/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af56cac46af3c7bebb158b89c2c34225516564d7e061c639cb4fef22d2f75cb2 +size 496274 diff --git a/vlm/train/BM64dm9HvN/6.png b/vlm/train/BM64dm9HvN/6.png new file mode 100644 index 0000000000000000000000000000000000000000..aaaeed67cc1188510389d9ea4f7b78b537628b8f --- /dev/null +++ b/vlm/train/BM64dm9HvN/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1806f3e54252282196e5d4b2a21a008708fb625cf65097eb9e46159e44657abd +size 563448 diff --git a/vlm/train/BM64dm9HvN/7.png b/vlm/train/BM64dm9HvN/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d6cdf45df92bb3856fb63a371ed7354f54d8017e --- /dev/null +++ b/vlm/train/BM64dm9HvN/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fe1b3bdb5a97709e86a015c390d65097b76bd6e503482d0930a80a03654ef6 +size 436548 diff --git a/vlm/train/BM64dm9HvN/8.png b/vlm/train/BM64dm9HvN/8.png new file mode 100644 index 0000000000000000000000000000000000000000..015e70f888d30314c651dddfbb22e088a4088379 --- /dev/null +++ b/vlm/train/BM64dm9HvN/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807b02ef858d1efa3d165a5cd26d669e4a68f8b98f44c2d37dc1d6f9996a3787 +size 466508 diff --git a/vlm/train/BM64dm9HvN/9.png b/vlm/train/BM64dm9HvN/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0cd0f3538b2665d4758c393db4d43aa5cd8de3cd --- /dev/null +++ b/vlm/train/BM64dm9HvN/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1525dec16e7485c330f284e9794a55ab7ffbb06c7420c7b211562d5d88315bb +size 376777 diff --git a/vlm/train/BkxRRkSKwr/0.png b/vlm/train/BkxRRkSKwr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..588a073a83d8aa127428c25ddced9a3e2bd1d431 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b741e9f0e9841867177c35377120f66cff299b3654bb6e59ba9ec520a9b2f73 +size 489475 diff --git a/vlm/train/BkxRRkSKwr/1.png b/vlm/train/BkxRRkSKwr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7159cc4fc767c8ffc5454a54e3cbac772251d780 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3758e789e40f7d6552ff2f2ebcc20feb5336bfd2139eb7f4fdcb2e6954240e1 +size 535358 diff --git a/vlm/train/BkxRRkSKwr/10.png b/vlm/train/BkxRRkSKwr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f9970e81ec9d8b9c2a2b9bc843bdbd745a42a7a4 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a8d219831813010e8534135015b26cb80d14b21ca4265b6fcfedcb829c1dce +size 535428 diff --git a/vlm/train/BkxRRkSKwr/11.png b/vlm/train/BkxRRkSKwr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1bef71dfb3f346c9434e1dc0b7dab9e47a679493 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be62f8573f430bc183cd679bc611994c5668cdebc89a6d7258bdb87889a0f4e +size 547533 diff --git a/vlm/train/BkxRRkSKwr/12.png b/vlm/train/BkxRRkSKwr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2495a135b6cb90c211c1d6952a200eaa0267ed19 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2856ddd7f9de9150f18a514766db8db204447b184efce858c4a34d087c5099e6 +size 452266 diff --git a/vlm/train/BkxRRkSKwr/13.png b/vlm/train/BkxRRkSKwr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..61859e41d5e3a2194769f68256dba9ffcd46f544 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b680427b3df2422e7ab4951281b2396c4d2acf0a6ac1c23e4aaae9502fad4ca8 +size 319431 diff --git a/vlm/train/BkxRRkSKwr/14.png b/vlm/train/BkxRRkSKwr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f27d5eff7ba5ba33c947da0d201ba0186112972d --- /dev/null +++ b/vlm/train/BkxRRkSKwr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7fbd6a162a24f97369565783f2a9e5b0944ad50071e285b7c9b7b44f2b712ac +size 270354 diff --git a/vlm/train/BkxRRkSKwr/2.png b/vlm/train/BkxRRkSKwr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf6457f900a6d3dfea3f921b63352413eaddfdb0 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45cc22c9359722b976e18371fafaed4c6080da48c1a7431be0b05c945bb12890 +size 540778 diff --git a/vlm/train/BkxRRkSKwr/3.png b/vlm/train/BkxRRkSKwr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a67fd44ee6afd35bf2d3fd1eaebbb5f337187fae --- /dev/null +++ b/vlm/train/BkxRRkSKwr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae28e5521603bf48b7eab919033babdc129846d00cfc3b67dec651106a7f9dd4 +size 493513 diff --git a/vlm/train/BkxRRkSKwr/4.png b/vlm/train/BkxRRkSKwr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f5815f96de1b385a8ba3072e207d6ed3a15b45e5 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85ba11763232ab7f33d1d0ac64d688b629dc9cb75d1f063f4996e6fa945c260 +size 573659 diff --git a/vlm/train/BkxRRkSKwr/5.png b/vlm/train/BkxRRkSKwr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6a9737e81fe3b363c443567a4b9ef1453286343d --- /dev/null +++ b/vlm/train/BkxRRkSKwr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26229840a5d21e5cbbdecd226ccec80393eaf24f647385c4e2758d8bca28d53c +size 490881 diff --git a/vlm/train/BkxRRkSKwr/6.png b/vlm/train/BkxRRkSKwr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..442c11725a0fb78478860c2bd27809ce9b54649c --- /dev/null +++ b/vlm/train/BkxRRkSKwr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58bcf4c36097cc3710c502e9b34e52310ab695335fccb45945a52c7df4e48094 +size 540306 diff --git a/vlm/train/BkxRRkSKwr/7.png b/vlm/train/BkxRRkSKwr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d4689601a15d444147accb03e826c820a0c31e8f --- /dev/null +++ b/vlm/train/BkxRRkSKwr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afed0ad0e67d9d3023f01537bc08b7aa854308d65ca395d46ade0d70eb8f333 +size 478403 diff --git a/vlm/train/BkxRRkSKwr/8.png b/vlm/train/BkxRRkSKwr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..74ace3acd66bc7cbc77357e99acee45852554236 --- /dev/null +++ b/vlm/train/BkxRRkSKwr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952b98fa0fd984fce5e106e6bb3177ea940a50580fa91699b5893bf93fecebe2 +size 477377 diff --git a/vlm/train/BkxRRkSKwr/9.png b/vlm/train/BkxRRkSKwr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..89805a6d79be5df6bd94517f1007bde4cb3c625d --- /dev/null +++ b/vlm/train/BkxRRkSKwr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38cd3b03b7c746480b708169af1823ad927f5762e8df2840cd928edbf8751718 +size 525507 diff --git a/vlm/train/ByljMaNKwB/0.png b/vlm/train/ByljMaNKwB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..66b6af387d71639c9b7cfee9c861d1960d3b7df0 --- /dev/null +++ b/vlm/train/ByljMaNKwB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e8c10d98e2d4e3283685aea80a4f429195f079d9f44909be93f35bf2723c1e +size 512536 diff --git a/vlm/train/ByljMaNKwB/1.png b/vlm/train/ByljMaNKwB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7756d269f018e681abd66b3f0e871a8aff89019e --- /dev/null +++ b/vlm/train/ByljMaNKwB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3736791ad9c472c8e93122388f973a8142722f1a94422c0e7743f13ecbe7a7b +size 504851 diff --git a/vlm/train/ByljMaNKwB/10.png b/vlm/train/ByljMaNKwB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..590fd3f281e62fd7fd3c5d37979f5532e1fa363f --- /dev/null +++ b/vlm/train/ByljMaNKwB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb23babd29199f5b77c289d7d80254497e6bbef68a90c66cc76fb2c63d16a62 +size 559474 diff --git a/vlm/train/ByljMaNKwB/11.png b/vlm/train/ByljMaNKwB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4f53bab3620efd8ec62f10203c1d98ac94628f19 --- /dev/null +++ b/vlm/train/ByljMaNKwB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40cb9f6ae2f86a65113ca7247924426ac9de712320b70be6e12714978e9c0b6a +size 381028 diff --git a/vlm/train/ByljMaNKwB/12.png b/vlm/train/ByljMaNKwB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..abe5deea3699dbc177d1c717b362331e92ae4855 --- /dev/null +++ b/vlm/train/ByljMaNKwB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be44f4e7df7ca72174c1975a2247cbefa9bed296f5103739d69b7fdcc033ea7 +size 362429 diff --git a/vlm/train/ByljMaNKwB/13.png b/vlm/train/ByljMaNKwB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d4a467a6d076bd215dde89412a6d33e19b192e00 --- /dev/null +++ b/vlm/train/ByljMaNKwB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef8d0a91a798fba22d5e13b20523da4236d28488790af823ce09db98d75617a +size 333177 diff --git a/vlm/train/ByljMaNKwB/14.png b/vlm/train/ByljMaNKwB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..887bef16a46f737b926e997a81a793695847e397 --- /dev/null +++ b/vlm/train/ByljMaNKwB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf49107d632c00d43f722d2af229f536051e1d9c639ffaca3f09a9fe745030f +size 310403 diff --git a/vlm/train/ByljMaNKwB/15.png b/vlm/train/ByljMaNKwB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b04ac63db4096b14e2908f56008ac59e9e587998 --- /dev/null +++ b/vlm/train/ByljMaNKwB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c902dbb0f34a2d0b302e369ec25932ed48f621120e369ecb9dd6959ca8d3f611 +size 167913 diff --git a/vlm/train/ByljMaNKwB/2.png b/vlm/train/ByljMaNKwB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d70b7222f2f107a493a876d8958dbee468788ced --- /dev/null +++ b/vlm/train/ByljMaNKwB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96132fe52d9250266eb34e18e8faf6dd2933bf37bc61e20ac7b1f4d16237bda3 +size 601588 diff --git a/vlm/train/ByljMaNKwB/3.png b/vlm/train/ByljMaNKwB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b7d8a63779e309ecc39f099b34b5997e3e04dda6 --- /dev/null +++ b/vlm/train/ByljMaNKwB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067744e3ee1cce70a0cd6f7cb52ecea3efef604e10ab8307637cfed1a5f79ff8 +size 471478 diff --git a/vlm/train/ByljMaNKwB/4.png b/vlm/train/ByljMaNKwB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..024d2e6b96852d6a841deecaa331f6a0f813ec46 --- /dev/null +++ b/vlm/train/ByljMaNKwB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dcee31fd2a7c69bd589b44a674e6e5f244553f269235d8a3d3dc5b1328eda2f +size 572888 diff --git a/vlm/train/ByljMaNKwB/5.png b/vlm/train/ByljMaNKwB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..948edda6c5a31f8fcaa329cd75f68033a8acb151 --- /dev/null +++ b/vlm/train/ByljMaNKwB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf71437119cae6fd6dfa36e3b205b85600c5611fc325cad6e4b4179eefea8275 +size 612013 diff --git a/vlm/train/ByljMaNKwB/6.png b/vlm/train/ByljMaNKwB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b8e1b5b47899ec86dd539b19207ac6611f1dd466 --- /dev/null +++ b/vlm/train/ByljMaNKwB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c7e9e6212faa20894032cdf4ebc562c4278ffe6abb5fd3886d341682fdd443 +size 568539 diff --git a/vlm/train/ByljMaNKwB/7.png b/vlm/train/ByljMaNKwB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dec5c79f9e0c3d05164e9893e59b3e0164f74eb9 --- /dev/null +++ b/vlm/train/ByljMaNKwB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db805873b9b446afe9a666c4a468dfd39c1a5c1372f6f3470ce70b75ed511cf +size 582212 diff --git a/vlm/train/ByljMaNKwB/8.png b/vlm/train/ByljMaNKwB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..864832f94d3a222c2c03520628bdaffa121e8b89 --- /dev/null +++ b/vlm/train/ByljMaNKwB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4985e37094c4e9e8c07e47805b17482adf50b6fb3194166eace8359d8abc780 +size 550590 diff --git a/vlm/train/ByljMaNKwB/9.png b/vlm/train/ByljMaNKwB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..49e7c45bdb84adaae94b946d8dcf5cab0c3460ee --- /dev/null +++ b/vlm/train/ByljMaNKwB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9836064f6ad664ad1f35054c6fed31839b4ec8249d9482b8a5b206de4de8f035 +size 553532 diff --git a/vlm/train/CO87OIEOGU8/0.png b/vlm/train/CO87OIEOGU8/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2d3a187af608b998711438d25b6f4ef04761b67e --- /dev/null +++ b/vlm/train/CO87OIEOGU8/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189bb537ef8b9eefffc457b6c74b95b23339d45c067303caa585382e6eef4b1f +size 437767 diff --git a/vlm/train/CO87OIEOGU8/1.png b/vlm/train/CO87OIEOGU8/1.png new file mode 100644 index 0000000000000000000000000000000000000000..466846f95c35d874ee4b929cd49cd031dd342269 --- /dev/null +++ b/vlm/train/CO87OIEOGU8/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfad93baec0412a316cbfc06e9ce745c3242ac76710219d88838b1b798964df +size 733329 diff --git a/vlm/train/CO87OIEOGU8/10.png b/vlm/train/CO87OIEOGU8/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0678bdd2276642861400bb1ec5e9e7fd269cd903 --- /dev/null +++ b/vlm/train/CO87OIEOGU8/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3ceb93d0b8afa3a517d01aa103f9fe7ff49239b92fd4b11924b7a48abf54e5 +size 544440 diff --git a/vlm/train/CO87OIEOGU8/11.png b/vlm/train/CO87OIEOGU8/11.png new file mode 100644 index 0000000000000000000000000000000000000000..189bbf3eede2f5349a1a3b42448797e0a7cbc6bd --- /dev/null +++ b/vlm/train/CO87OIEOGU8/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990fbc4ac2dbc7c60da0526c550fed8a5eab9408e608f6f36a127b002aa1da5c +size 229513 diff --git a/vlm/train/CO87OIEOGU8/2.png b/vlm/train/CO87OIEOGU8/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c529afd7ed93f01c9933539df99b7ff016b70fd1 --- /dev/null +++ b/vlm/train/CO87OIEOGU8/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4bf3dd18213dd9804dc702b5b1d5da2f97f63daa531fed1935722745ce2703d +size 478742 diff --git a/vlm/train/CO87OIEOGU8/3.png b/vlm/train/CO87OIEOGU8/3.png new file mode 100644 index 0000000000000000000000000000000000000000..489446fd801a7da29cccfa7dc9cab30e44da38f2 --- /dev/null +++ b/vlm/train/CO87OIEOGU8/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81a76612782a5ab83f4c017d1d82d1ce733b0bdcbd8f18bfb580f93633fc04e +size 477343 diff --git a/vlm/train/CO87OIEOGU8/4.png b/vlm/train/CO87OIEOGU8/4.png new file mode 100644 index 0000000000000000000000000000000000000000..89c9ac05d6cd32a14bb5d6eeaea8c0ab19ec3aa6 --- /dev/null +++ b/vlm/train/CO87OIEOGU8/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15f065fa8a3eaa888ef908be7c045018c31f770a011bea409610d495173f5e5 +size 537068 diff --git a/vlm/train/CO87OIEOGU8/5.png b/vlm/train/CO87OIEOGU8/5.png new file mode 100644 index 0000000000000000000000000000000000000000..926431bdff234b6d043385d165261df8c092c472 --- /dev/null +++ b/vlm/train/CO87OIEOGU8/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98ff5d4440ab06bfaea569da15ea05819773a5f1a35016cfdc28eecf24b4dbe +size 587104 diff --git a/vlm/train/CO87OIEOGU8/6.png b/vlm/train/CO87OIEOGU8/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a4baebc0172804ea943b1d2010b1b858b9f10c1a --- /dev/null +++ b/vlm/train/CO87OIEOGU8/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71b65687938437d59b61d5c97f0b3142d77cab36087a2895a1b9c37996959c8 +size 571146 diff --git a/vlm/train/CO87OIEOGU8/7.png b/vlm/train/CO87OIEOGU8/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e5b33616a10b51e33bca95d946467a90dde860bd --- /dev/null +++ b/vlm/train/CO87OIEOGU8/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e8e24417477c2d04eb316335a0fbb77765b6a775497f89b23075797a8e23a8 +size 1022953 diff --git a/vlm/train/CO87OIEOGU8/8.png b/vlm/train/CO87OIEOGU8/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d33af7b5ec754007b8523f5df2d50857d6563e8e --- /dev/null +++ b/vlm/train/CO87OIEOGU8/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa028c6949edba5351c4b74ff2fbe1ba474525900350af2b8c8d2fa5c24a08d1 +size 519355 diff --git a/vlm/train/CO87OIEOGU8/9.png b/vlm/train/CO87OIEOGU8/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a4e46978ec569195bbbc5c7eda7211316d5d732b --- /dev/null +++ b/vlm/train/CO87OIEOGU8/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af73758d187f3301b72f8043f0ccd5f19d5081925c87e04f2d9363e20637430 +size 573555 diff --git a/vlm/train/DEsIX_D_vR/0.png b/vlm/train/DEsIX_D_vR/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9b071cdfef607a21927bdc94ad1a4ed1de0bb62a --- /dev/null +++ b/vlm/train/DEsIX_D_vR/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626c03ba0b735d9035771450f9fa74dbb5028f0aeeac8a74be877cbe980f80af +size 447335 diff --git a/vlm/train/DEsIX_D_vR/1.png b/vlm/train/DEsIX_D_vR/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3581ff1fd2ef24a8efc5b2c4771f112f6753c1e4 --- /dev/null +++ b/vlm/train/DEsIX_D_vR/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e1078fc0d47680502b399f14072aead45cd3b03fc6deff2d36f450e9c7a60a +size 631049 diff --git a/vlm/train/DEsIX_D_vR/10.png b/vlm/train/DEsIX_D_vR/10.png new file mode 100644 index 0000000000000000000000000000000000000000..03e126de519889a0d5e74c4cc6a6a230fcab24e8 --- /dev/null +++ b/vlm/train/DEsIX_D_vR/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea36fb2819d26d1e5a8f12f7497e7a0be169399f9caffce6de87a993a52abfc9 +size 565016 diff --git a/vlm/train/DEsIX_D_vR/11.png b/vlm/train/DEsIX_D_vR/11.png new file mode 100644 index 0000000000000000000000000000000000000000..12ec0012258ae9e57de889f5de00a6d72675e28e --- /dev/null +++ b/vlm/train/DEsIX_D_vR/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d2dadff42dd56e50a750a8047e243b4c785907722432e9ff15dc35c89cd7f3 +size 552750 diff --git a/vlm/train/DEsIX_D_vR/12.png b/vlm/train/DEsIX_D_vR/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0f7d6935fb94bb55938f43a694d6a98b808187bf --- /dev/null +++ b/vlm/train/DEsIX_D_vR/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a150bfb28dd44e4f95a37dcad323efaf0b73c49fbac2db9b69978733dcfe4396 +size 593148 diff --git a/vlm/train/DEsIX_D_vR/13.png b/vlm/train/DEsIX_D_vR/13.png new file mode 100644 index 0000000000000000000000000000000000000000..251206cc3db98980494690c3b6379647ca4629f4 --- /dev/null +++ b/vlm/train/DEsIX_D_vR/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129a298e0beafdceee6684acc75c1028a0aa01304991b1d6a0ddeda910ea2930 +size 559892 diff --git a/vlm/train/DEsIX_D_vR/14.png b/vlm/train/DEsIX_D_vR/14.png new file mode 100644 index 0000000000000000000000000000000000000000..bb3c4ea617f5caf40b873656d75d7d919a150876 --- /dev/null +++ b/vlm/train/DEsIX_D_vR/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a236ad7d6569cb854fa737a4506f3b1c1b92f2ed792bb32a1f1437c172ace0 +size 297329 diff --git a/vlm/train/DEsIX_D_vR/2.png b/vlm/train/DEsIX_D_vR/2.png new file mode 100644 index 0000000000000000000000000000000000000000..36afda6cc181a7c78e309a3a9095ea95fda95d05 --- /dev/null +++ b/vlm/train/DEsIX_D_vR/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfac0ae88584d9d4cece173093773b1f4f954556316ca6013f52cc03f2d68f76 +size 590922 diff --git a/vlm/train/DEsIX_D_vR/3.png b/vlm/train/DEsIX_D_vR/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cd754a450e6d2e0ae1805a9add8151c66594738b --- /dev/null +++ b/vlm/train/DEsIX_D_vR/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4e558bd81e5c845ee2db63f4d4d15e4b3940620cd0f606d4beb4a276afad7e +size 580535 diff --git a/vlm/train/DEsIX_D_vR/4.png b/vlm/train/DEsIX_D_vR/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1c7ea8fdc876fa9c5fbe125b9e95abc3bf056d06 --- /dev/null +++ b/vlm/train/DEsIX_D_vR/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86456060d20174fcd7ab58de075bf083a99618590a69202b8e104f9177fb0929 +size 584246 diff --git a/vlm/train/DEsIX_D_vR/5.png b/vlm/train/DEsIX_D_vR/5.png new file mode 100644 index 0000000000000000000000000000000000000000..dc642eb1f985b4745cc3311ab3cea16eff581b7c --- /dev/null +++ b/vlm/train/DEsIX_D_vR/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57bef0f29458124c9e5bb4ace07218a94e4162559c8138b6b357b1f1aa649286 +size 594560 diff --git a/vlm/train/DEsIX_D_vR/6.png b/vlm/train/DEsIX_D_vR/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9b66cbf670acdd73520a3f5ccef253a1d659373b --- /dev/null +++ b/vlm/train/DEsIX_D_vR/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168170e75cd22b7f0f9a34849ae1caeccef6e3573592d1a953b1286a67f691ae +size 593969 diff --git a/vlm/train/DEsIX_D_vR/7.png b/vlm/train/DEsIX_D_vR/7.png new file mode 100644 index 0000000000000000000000000000000000000000..af379e2c82c517d37d46a93e09eba32fee42d72a --- /dev/null +++ b/vlm/train/DEsIX_D_vR/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52013cc60029d683f7651516a3d2db237d96a9ef5eb2c784df55e5f01077677 +size 493717 diff --git a/vlm/train/DEsIX_D_vR/8.png b/vlm/train/DEsIX_D_vR/8.png new file mode 100644 index 0000000000000000000000000000000000000000..38d6be50d5e82ffe3a03620907bf3cb3b8a8331f --- /dev/null +++ b/vlm/train/DEsIX_D_vR/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1effa08d77d696e3436613cf80d61134e318b462b809867df445cd29177237 +size 523457 diff --git a/vlm/train/DEsIX_D_vR/9.png b/vlm/train/DEsIX_D_vR/9.png new file mode 100644 index 0000000000000000000000000000000000000000..453b5499dacc34677a7b2c289116083cfccbefa1 --- /dev/null +++ b/vlm/train/DEsIX_D_vR/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482bac94ce296d3a2679e959b1c8471848fb8df771937033bbbc356b905c5278 +size 580316 diff --git a/vlm/train/ErivP29kYnx/0.png b/vlm/train/ErivP29kYnx/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1c113e2de305a8b6167e84f133458a3b9592ea79 --- /dev/null +++ b/vlm/train/ErivP29kYnx/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205145eb52f4cb0ad6f98b5374734e557203e93458dc09cf0b5b7e61c60aa318 +size 454176 diff --git a/vlm/train/ErivP29kYnx/1.png b/vlm/train/ErivP29kYnx/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2d6d726d2b059ea236ae0e3a52268c1721b62387 --- /dev/null +++ b/vlm/train/ErivP29kYnx/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e53d089d764a5a5d88ebfe6dc4123687dbed6b6ba5a40a3e297287d0ed5d6b +size 594912 diff --git a/vlm/train/ErivP29kYnx/10.png b/vlm/train/ErivP29kYnx/10.png new file mode 100644 index 0000000000000000000000000000000000000000..21d25a1f0adbe5f4f8a345bcb7030fc140fc7afa --- /dev/null +++ b/vlm/train/ErivP29kYnx/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f439307c6707bf0def3368e1e7be3f4ba144730923b35112ca6cbb32a3aa52e0 +size 618318 diff --git a/vlm/train/ErivP29kYnx/11.png b/vlm/train/ErivP29kYnx/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fcff90d5b38452d3a08225acecb5bcd76d25fa1e --- /dev/null +++ b/vlm/train/ErivP29kYnx/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d761ce9d01d7bf3f8613b5a32fd8a1d866bd185b8443c230602602c37fd43185 +size 615863 diff --git a/vlm/train/ErivP29kYnx/12.png b/vlm/train/ErivP29kYnx/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2f33b62e166e533a03acd3d404906e12722226fa --- /dev/null +++ b/vlm/train/ErivP29kYnx/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f854915732b9b5bf15b0319922facb0063813a5b225c53dc0edc307bdb10793 +size 149083 diff --git a/vlm/train/ErivP29kYnx/2.png b/vlm/train/ErivP29kYnx/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e6167b242ee58554b25edf9fe38fe3f012d082a --- /dev/null +++ b/vlm/train/ErivP29kYnx/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c30cd9b8523e6838786d573b7386f3188e090a07563a0562f3e6d2c290955b1 +size 519636 diff --git a/vlm/train/ErivP29kYnx/3.png b/vlm/train/ErivP29kYnx/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3f65d6635d9844841fd964738dc47dcf7f6ed52a --- /dev/null +++ b/vlm/train/ErivP29kYnx/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fca7632454391e34515ea1ccba10bd02ba01355c7b329d4a5a30600a25c1db2 +size 491487 diff --git a/vlm/train/ErivP29kYnx/4.png b/vlm/train/ErivP29kYnx/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cfbc3caa03c02ce3d4a033c7389994ea12880679 --- /dev/null +++ b/vlm/train/ErivP29kYnx/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35509caaa6b406e64c6e549146e2462adc1723cc8f99ab3b99852974b10b3b8b +size 555363 diff --git a/vlm/train/ErivP29kYnx/5.png b/vlm/train/ErivP29kYnx/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a4769e82aa00448b1bef4866028f34008dc866b7 --- /dev/null +++ b/vlm/train/ErivP29kYnx/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2333dfce769c57161a7a0d4106354749a0c4c6581cd718abb67b5fca227da357 +size 505603 diff --git a/vlm/train/ErivP29kYnx/6.png b/vlm/train/ErivP29kYnx/6.png new file mode 100644 index 0000000000000000000000000000000000000000..df477ff958497e9cc2c31657501f4445f92d4523 --- /dev/null +++ b/vlm/train/ErivP29kYnx/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc71ae848e44a7456ee811b9172a4334968aed5958b27434cf87a4fc1d5ee55b +size 1159289 diff --git a/vlm/train/ErivP29kYnx/7.png b/vlm/train/ErivP29kYnx/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d5aee02e5749653f35e414e23f8d19f1616c8c --- /dev/null +++ b/vlm/train/ErivP29kYnx/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039fbf8ca4f87596662ce9a808570fabcf7f4ef2e85a3c7f2500be1bf464d601 +size 574418 diff --git a/vlm/train/ErivP29kYnx/8.png b/vlm/train/ErivP29kYnx/8.png new file mode 100644 index 0000000000000000000000000000000000000000..acdbefc6aa249d3bc6c30d0c140033d64e304893 --- /dev/null +++ b/vlm/train/ErivP29kYnx/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e1069b8266bbaa2852d84c0d79dda2fa939b3a5c0edb1b89fe4701fbbe9773 +size 452829 diff --git a/vlm/train/ErivP29kYnx/9.png b/vlm/train/ErivP29kYnx/9.png new file mode 100644 index 0000000000000000000000000000000000000000..224dcf33fae9caa07321536ac31c890cb94a0c06 --- /dev/null +++ b/vlm/train/ErivP29kYnx/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1025f8daccb6378b5fbf55d67085902ec09999527b27efca5033a9bd94e4dae7 +size 445519 diff --git a/vlm/train/H1e5GJBtDr/0.png b/vlm/train/H1e5GJBtDr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a55100e377e25dc12530e4358d3b112625ea97e8 --- /dev/null +++ b/vlm/train/H1e5GJBtDr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b72eff09ee3e20fcfd308404fe945102605673d6aaa628e78ff2daa72826b5d +size 464842 diff --git a/vlm/train/H1e5GJBtDr/1.png b/vlm/train/H1e5GJBtDr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..52f6b7bd25ff0c3069526ede55744aafcfbf8851 --- /dev/null +++ b/vlm/train/H1e5GJBtDr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259ab7375f95226c2ca430cc862aa0bb335b87cb6eff309d7cf39460268ebb1b +size 466354 diff --git a/vlm/train/H1e5GJBtDr/2.png b/vlm/train/H1e5GJBtDr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e9d15e77ca2bb404f8e9c3a29c6747752a83ae9a --- /dev/null +++ b/vlm/train/H1e5GJBtDr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a231ad4ac3de36ba6dbad999f6e2454fc0ac3d49c1b201a2019a5efbcca84fc +size 481076 diff --git a/vlm/train/H1e5GJBtDr/3.png b/vlm/train/H1e5GJBtDr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3a05c214330a827a06711be934a27658a8bfa45a --- /dev/null +++ b/vlm/train/H1e5GJBtDr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb9d5a42ea508e4844169236d75496c6f91875475c05cf408159be3f29c00025 +size 480905 diff --git a/vlm/train/H1e5GJBtDr/4.png b/vlm/train/H1e5GJBtDr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1d086e55bc3bd738278283550d90709695cc8b27 --- /dev/null +++ b/vlm/train/H1e5GJBtDr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a19a838b7436317717bbf1a88a418342aab6d2bd7d4da437fe829bf220f4198 +size 510160 diff --git a/vlm/train/H1e5GJBtDr/5.png b/vlm/train/H1e5GJBtDr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..aabdeb703ea4bb98d96a39ba9bc533d279af9208 --- /dev/null +++ b/vlm/train/H1e5GJBtDr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb557e04a25e54c6dd7595a461d35fab5602f8233c764fb350b3c0fc0d73252 +size 476757 diff --git a/vlm/train/H1e5GJBtDr/6.png b/vlm/train/H1e5GJBtDr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..69e23e3a06ca4e16a1bdfff73c00dac5a65d85a3 --- /dev/null +++ b/vlm/train/H1e5GJBtDr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aedf07272949413ca98cf05b233d5e1d165870f6efef814547cde4b2a8a7cc8 +size 473888 diff --git a/vlm/train/H1e5GJBtDr/7.png b/vlm/train/H1e5GJBtDr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..19c68f40dff0c8fc8e3581d863f7871376ed9c2e --- /dev/null +++ b/vlm/train/H1e5GJBtDr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d97006419f65207f2094ef862f6a316002b79791c447c6ed35c3d743b54f0848 +size 1296081 diff --git a/vlm/train/H1e5GJBtDr/8.png b/vlm/train/H1e5GJBtDr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..19e56d58d008a020606786bf7f98a0ccb3f9041d --- /dev/null +++ b/vlm/train/H1e5GJBtDr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da6da4c6eddb43b970251705ae5d9f41bdf9ddda3034d5860a50b4a3cae0974 +size 1437457 diff --git a/vlm/train/H1e5GJBtDr/9.png b/vlm/train/H1e5GJBtDr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b58c1a7e26e4ca418b956d6a68fcc9ed188f565d --- /dev/null +++ b/vlm/train/H1e5GJBtDr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3698f5ae83909bae2feef2b349afb9c8529601499ac9c8448f2916dfb8e7326 +size 546644 diff --git a/vlm/train/H1eSS3CcKX/0.png b/vlm/train/H1eSS3CcKX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..272c652ca3a2d1b78ff3cfc2c5dfd4ad5a9d941b --- /dev/null +++ b/vlm/train/H1eSS3CcKX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed92325f6d08208f92bb8ad9a2928b1c44155cf646c4cd93728bfea6c9a7809 +size 503550 diff --git a/vlm/train/H1eSS3CcKX/1.png b/vlm/train/H1eSS3CcKX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..815896f677ac39acd6c6a6ce7afc8a179ce697ec --- /dev/null +++ b/vlm/train/H1eSS3CcKX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da51955ce12869e9087b72d651dbaef4927732f22b3448c35fb133eb4c421994 +size 520114 diff --git a/vlm/train/H1eSS3CcKX/10.png b/vlm/train/H1eSS3CcKX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2319431c49ae2ce8b4563aaa6780da4271fef58a --- /dev/null +++ b/vlm/train/H1eSS3CcKX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af9280ec6b2ff9620486bd5bdf2df8b268cca0c78af0e1e7d451874164f7abff +size 535937 diff --git a/vlm/train/H1eSS3CcKX/11.png b/vlm/train/H1eSS3CcKX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0792314f4d02a52c1b5cb5b74b49dfaf98c0f2bd --- /dev/null +++ b/vlm/train/H1eSS3CcKX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c866a084d5a558cf41642b1215c59ef64e0cbf4cb1354b3ceb1904d6b54e16d3 +size 462839 diff --git a/vlm/train/H1eSS3CcKX/12.png b/vlm/train/H1eSS3CcKX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..21bcbad23b2e9d9b6f2f944d85ce358f0fbb350e --- /dev/null +++ b/vlm/train/H1eSS3CcKX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27a51d2df6e1dfc29f44f7eb215f80241a94d7453eb850a6690658ea32875b8 +size 229302 diff --git a/vlm/train/H1eSS3CcKX/13.png b/vlm/train/H1eSS3CcKX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..24207c4c3d06cbd7d3f6be0c3164206d9551f8f9 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0839a3e163880695564fb50a82efda8bf8ba4f80ca4766d3cc19183031c941 +size 213155 diff --git a/vlm/train/H1eSS3CcKX/14.png b/vlm/train/H1eSS3CcKX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..66689442a95e5d0392b433f4cd9ff091917cd128 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3d4be8fa8c1992fa14b1e751963ce1954163cd618d5002ec4e66e40c89959a +size 238997 diff --git a/vlm/train/H1eSS3CcKX/15.png b/vlm/train/H1eSS3CcKX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f703012a158e5900f872a7bcbffa8a06e7c357bf --- /dev/null +++ b/vlm/train/H1eSS3CcKX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d69f49ec84627a6937fe89a79957d10603890e91e206b2c2e32dd751053d66b +size 333886 diff --git a/vlm/train/H1eSS3CcKX/16.png b/vlm/train/H1eSS3CcKX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a025924fb8c95db6afedc3477198d242ad5fe8de --- /dev/null +++ b/vlm/train/H1eSS3CcKX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae58dace733d23d2296af66d7683ca291e8dab39abd1df41ee8d6080ab5ff355 +size 399624 diff --git a/vlm/train/H1eSS3CcKX/17.png b/vlm/train/H1eSS3CcKX/17.png new file mode 100644 index 0000000000000000000000000000000000000000..479d0665ade95733053283cbd3f69b1361cfc427 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07768dc2955d949385e61f5fe05d5be36d2a5df7e7b833cd16b217f1e70e39ac +size 472680 diff --git a/vlm/train/H1eSS3CcKX/18.png b/vlm/train/H1eSS3CcKX/18.png new file mode 100644 index 0000000000000000000000000000000000000000..161f96a580355abee935443f1858e2507a51b60d --- /dev/null +++ b/vlm/train/H1eSS3CcKX/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bbf60e88600f3503ae6fb02fe6498b217682ff89ffa7deb2ee967e0409d0a8d +size 523361 diff --git a/vlm/train/H1eSS3CcKX/19.png b/vlm/train/H1eSS3CcKX/19.png new file mode 100644 index 0000000000000000000000000000000000000000..ea53215deb0f25da961f37c2af18cd65db78f34d --- /dev/null +++ b/vlm/train/H1eSS3CcKX/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4b79fe1242043c127a10060d8ae5f67580db514bd6a7f443cc7bd0393d0b75 +size 422210 diff --git a/vlm/train/H1eSS3CcKX/2.png b/vlm/train/H1eSS3CcKX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..85fed250f0267d023d17cd2827a6d737c81418d8 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35cd6b210e1f43a44fab419b792abd05cef9e084b4345c6aa96cfbc0b330673 +size 469543 diff --git a/vlm/train/H1eSS3CcKX/20.png b/vlm/train/H1eSS3CcKX/20.png new file mode 100644 index 0000000000000000000000000000000000000000..72155d168759b459d3c8b9fc282edfd25efe5ea1 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea85d09a4e7374d35e6e9117b48f0a7e200b4caf2fdf803337be513cbff4dce1 +size 403481 diff --git a/vlm/train/H1eSS3CcKX/21.png b/vlm/train/H1eSS3CcKX/21.png new file mode 100644 index 0000000000000000000000000000000000000000..556b832f8e03cd98b6c77ba52a2fa99b15286b8d --- /dev/null +++ b/vlm/train/H1eSS3CcKX/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317eea73c5987fce2d33d684225ddb0c4f984e9ebfaa39ef0183d0a3840c4710 +size 401934 diff --git a/vlm/train/H1eSS3CcKX/22.png b/vlm/train/H1eSS3CcKX/22.png new file mode 100644 index 0000000000000000000000000000000000000000..c07ea2c968eb38f3509ca70a836816cb5c487baa --- /dev/null +++ b/vlm/train/H1eSS3CcKX/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275d0da696144805ee20fa59ba146425382f52df9dbfae9c25af4f72021e9f8b +size 366455 diff --git a/vlm/train/H1eSS3CcKX/3.png b/vlm/train/H1eSS3CcKX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7fddea0b02b2b3f802473c29844a1b2debc05705 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb8b88b1a45bf06c27dafb618aed96e22bc51eb2fdfea2853c1dbb8c35f30ea +size 489656 diff --git a/vlm/train/H1eSS3CcKX/4.png b/vlm/train/H1eSS3CcKX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bb7d0036c838161b3b16b521d6dc70fd118d0ccb --- /dev/null +++ b/vlm/train/H1eSS3CcKX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd8434e25d79c804427dc8cf6a9a0ff35090c4f02f5c1096d74458de1f47d22 +size 452629 diff --git a/vlm/train/H1eSS3CcKX/5.png b/vlm/train/H1eSS3CcKX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..36173eb1a6458ba590c89edddbb74f36e640f3cb --- /dev/null +++ b/vlm/train/H1eSS3CcKX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa42ad85118d9c11e2559b9373089ac985f518b0e1ccc34b6256a78fbaf45dc +size 569572 diff --git a/vlm/train/H1eSS3CcKX/6.png b/vlm/train/H1eSS3CcKX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1b3f9d1e9daf8425303bfc852aec27726d76d78f --- /dev/null +++ b/vlm/train/H1eSS3CcKX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f7f19dbaf58c3383480748bcffe1e486fb01f7324d3344c5226cb0f4e9058f +size 589295 diff --git a/vlm/train/H1eSS3CcKX/7.png b/vlm/train/H1eSS3CcKX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f6994fd126968c38d12758da175a0fa2e4f819ad --- /dev/null +++ b/vlm/train/H1eSS3CcKX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faeb7ab2cc8101794002dddd35ad632e20b65192898a42efd9cc74015f32ab2a +size 551682 diff --git a/vlm/train/H1eSS3CcKX/8.png b/vlm/train/H1eSS3CcKX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..248b350a165921849d90422002a63fb7bd1a2de7 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb04db17b6ff8a6f1e6f380566028d11bad1437440f245aafe6ca29565d8dd33 +size 499090 diff --git a/vlm/train/H1eSS3CcKX/9.png b/vlm/train/H1eSS3CcKX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2e0f0150cdc55c1c746a38c640c90d1eb9134f90 --- /dev/null +++ b/vlm/train/H1eSS3CcKX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f3077fe96cbe07829bc8c09878d77444ebd366673fbe0d092fbc19dd1e563e +size 482280 diff --git a/vlm/train/H1ecDoR5Y7/0.png b/vlm/train/H1ecDoR5Y7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4d36f5335984f0b5a4b05b31b8610cab52cd8c94 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452596c948138b2f0b1bd67d46173856fde07ef63ba6c94f594470795881b69a +size 489961 diff --git a/vlm/train/H1ecDoR5Y7/1.png b/vlm/train/H1ecDoR5Y7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..369da54eec7b918cd55e01c551eb0527331ca685 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44461ffad7343d7bd9204c530f224752f26522203a20a852febca735aba5628 +size 523118 diff --git a/vlm/train/H1ecDoR5Y7/10.png b/vlm/train/H1ecDoR5Y7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ca958e60f189a8e593476f5478e6f4373f7ef0c2 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10fa361d9b120fe4d9dc4a9a9c37a929aac9ec5a96920e5a270527385b5347d7 +size 351250 diff --git a/vlm/train/H1ecDoR5Y7/11.png b/vlm/train/H1ecDoR5Y7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f3df8dbf0f9040b7f537f8f2029945d947fc54fe --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920a4b60c46286071f7d3c31ffb15ebd83d4d039637479a04add67e59658f2d1 +size 296954 diff --git a/vlm/train/H1ecDoR5Y7/12.png b/vlm/train/H1ecDoR5Y7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4404cea14d3893805c95301fda79fa3fa54680fe --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f36226d24af310e71677775b7e08c0732579a815886e8ab85a96a26ee76da0 +size 359160 diff --git a/vlm/train/H1ecDoR5Y7/13.png b/vlm/train/H1ecDoR5Y7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4287b892855c00631c63cba7cdc40935e214e45e --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91adc9dd97466855624d8e6df1f1cd24d45ad72a27551f551d866167cb07d6ef +size 421647 diff --git a/vlm/train/H1ecDoR5Y7/14.png b/vlm/train/H1ecDoR5Y7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..17a06a2471db2874a3f7c12e43a986c14ad65f10 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5343010472b58b826213646a6eb13bb7d0354447fb83ae96da4ad0b8666ce20 +size 381747 diff --git a/vlm/train/H1ecDoR5Y7/15.png b/vlm/train/H1ecDoR5Y7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b026119d91cf40f4de5cdd4739c6b7c2602f6c51 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253d47632d72443ae845d40cbe0647fdb59ed241efc95ead195e39e16c3bcd97 +size 328363 diff --git a/vlm/train/H1ecDoR5Y7/16.png b/vlm/train/H1ecDoR5Y7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..637be11075e209b30c3fd2cf906e9dd9f0fb7e08 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef515a04321922921c74603e4feb40b59017daadc472b32c71fd100e7f4f9799 +size 403712 diff --git a/vlm/train/H1ecDoR5Y7/17.png b/vlm/train/H1ecDoR5Y7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..05e91eae22650f75b0868a82f69d8cdbea3aea30 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d8b9ffe3fc8b26dd4dd8f719f04c6b4fc8775d58b8702899372a42b2fa44ba +size 425084 diff --git a/vlm/train/H1ecDoR5Y7/18.png b/vlm/train/H1ecDoR5Y7/18.png new file mode 100644 index 0000000000000000000000000000000000000000..7c29c025bb05fb59e2ee858c8482541c8d2be1a3 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d5605931a34f7632ed03fc2fd0d1e738b2dda6ad0b8a34da85ecb2e113d323 +size 2065748 diff --git a/vlm/train/H1ecDoR5Y7/19.png b/vlm/train/H1ecDoR5Y7/19.png new file mode 100644 index 0000000000000000000000000000000000000000..3922d809d0fefde9c94b31f82849a8f9935779f1 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9505d5b756c8088a092b346de694ec552e3e11e63c4b64380121b670835b3df8 +size 1865220 diff --git a/vlm/train/H1ecDoR5Y7/2.png b/vlm/train/H1ecDoR5Y7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a52e8b1924ce54d2418dbc78bb1834fa73a3c0be --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937fd163d0ef68281fa458c3b36a0972651e0b17ce18e19435fb429815fce1d0 +size 475688 diff --git a/vlm/train/H1ecDoR5Y7/3.png b/vlm/train/H1ecDoR5Y7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..871a73d9274bce9a8c4c5cc257fabfc9e0ec6ef3 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59633eeb23e01639f5b7540feea29cf52f23b05d2b505db1fdd9054d34355a0c +size 502604 diff --git a/vlm/train/H1ecDoR5Y7/4.png b/vlm/train/H1ecDoR5Y7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0468cdd99154eeab754d6e47b68e75f5542f6c7f --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edea52d5f6cb491718e30a4811fd1f3a7c9af3cf31db5e1330456182c10350e2 +size 508325 diff --git a/vlm/train/H1ecDoR5Y7/5.png b/vlm/train/H1ecDoR5Y7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e0886262739fbd54967d570cc524b1bea6fbb9fd --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b637b6738684cf184fbe86be1d6df798c692733b414b89580f2b0efbac5ba7d +size 501739 diff --git a/vlm/train/H1ecDoR5Y7/6.png b/vlm/train/H1ecDoR5Y7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..fab4956821daf9650e58285adcae9baa13a328fd --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898978b16df4d5e2ca9353a90853a64d84c8cb1e49ae8f5caecdb116f2e39af4 +size 550685 diff --git a/vlm/train/H1ecDoR5Y7/7.png b/vlm/train/H1ecDoR5Y7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c2fdefa1d7f1cb828eea3072958699bbeea5887a --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6c83e9cb430d784d7ac28f17f2d667bf961be74552ba9a455615e8f05957c5 +size 892544 diff --git a/vlm/train/H1ecDoR5Y7/8.png b/vlm/train/H1ecDoR5Y7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..378c1337e6d506747203e8bbafdd8ab430a69053 --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb59f07363d695ef2dfd42e76f2e56c809797c222587b944099c37f1aa49f714 +size 582684 diff --git a/vlm/train/H1ecDoR5Y7/9.png b/vlm/train/H1ecDoR5Y7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b8bbaa8235efa25e16cbbfa1b80341c6bea0346c --- /dev/null +++ b/vlm/train/H1ecDoR5Y7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90a193f6894ab4a48a2f58d602f16dac094b309ac55728c640e843a6ffabe98 +size 94140 diff --git a/vlm/train/HJWLfGWRb/0.png b/vlm/train/HJWLfGWRb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4b5c2f82638576cdc09d8c5d30ebc9edae0f0c7c --- /dev/null +++ b/vlm/train/HJWLfGWRb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7f0997017bdc3113fe26c412a12a0934d84cc2a2d6f3fe8103090b36ab2922 +size 483677 diff --git a/vlm/train/HJWLfGWRb/1.png b/vlm/train/HJWLfGWRb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f900c9f3324f574f0c6bb1174e8222924520387 --- /dev/null +++ b/vlm/train/HJWLfGWRb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b103766932576918c995c5e0c5c2d5846e53e6ebff39f7dd7dacc425553356 +size 536901 diff --git a/vlm/train/HJWLfGWRb/10.png b/vlm/train/HJWLfGWRb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1e48aea591016761038f77a80b620bbbff666e03 --- /dev/null +++ b/vlm/train/HJWLfGWRb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ea30867352be0644349ece6ab8cf64439ac2ecd0e83b34a23f04c0dc5ef1cb +size 119354 diff --git a/vlm/train/HJWLfGWRb/11.png b/vlm/train/HJWLfGWRb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..dd851a001bbd971f9d68aab211aa387379bd6993 --- /dev/null +++ b/vlm/train/HJWLfGWRb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58462329b1f120c34e1e83c8de9794ca1dbe7ebecc849cbe5a665a672278b57 +size 521916 diff --git a/vlm/train/HJWLfGWRb/12.png b/vlm/train/HJWLfGWRb/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1de109ec51d6ab8935f6b58fde455337c88e9872 --- /dev/null +++ b/vlm/train/HJWLfGWRb/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067dfc8f7f8e7b0f39a83cf99c1fbfb8dcc388ff927c50723366050e9232db02 +size 554221 diff --git a/vlm/train/HJWLfGWRb/13.png b/vlm/train/HJWLfGWRb/13.png new file mode 100644 index 0000000000000000000000000000000000000000..23aa34de0d0c7612a2c06646bba1c9025400198f --- /dev/null +++ b/vlm/train/HJWLfGWRb/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914f1314d23e5d6a716402d98a7d649560349049af9acd5a3060acc08191c45d +size 307678 diff --git a/vlm/train/HJWLfGWRb/14.png b/vlm/train/HJWLfGWRb/14.png new file mode 100644 index 0000000000000000000000000000000000000000..013228b6b74517dca410c4b8c0b2ebda04a39de1 --- /dev/null +++ b/vlm/train/HJWLfGWRb/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a82fb5c09c3712a825b8c83c685c1ae8c52dfb4a1fe37902c8a8b81e8c4ed9 +size 244126 diff --git a/vlm/train/HJWLfGWRb/2.png b/vlm/train/HJWLfGWRb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9407c917e8447efb7a6f7568f16c3cf6b3efb011 --- /dev/null +++ b/vlm/train/HJWLfGWRb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26ba715addbe1b2e16ca0e2734e21f783cbc23d10548d0074bb8f0627e21991 +size 410716 diff --git a/vlm/train/HJWLfGWRb/3.png b/vlm/train/HJWLfGWRb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9327e63ccaf657c8202d3b53b9dfbe938cb7f918 --- /dev/null +++ b/vlm/train/HJWLfGWRb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410b00875a63cd2b05b2b3e66007ed0ac3bac452f0c32193c29e7a2a3bba3581 +size 506642 diff --git a/vlm/train/HJWLfGWRb/4.png b/vlm/train/HJWLfGWRb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fde5408ea3ccdd39a4bf17444abc3587623dce34 --- /dev/null +++ b/vlm/train/HJWLfGWRb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d21fc2cbef595c09212dbfd6320acd9fa1c91a1e71f1fb5cfc53c71264b957 +size 554062 diff --git a/vlm/train/HJWLfGWRb/5.png b/vlm/train/HJWLfGWRb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7a2b3d20ba3b2955e00a23ffb40bf9f450df70bc --- /dev/null +++ b/vlm/train/HJWLfGWRb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2578837e2adb104d13f3cefa5302934a5f8ad75aa475aafaea2562c3e3bedc +size 203593 diff --git a/vlm/train/HJWLfGWRb/6.png b/vlm/train/HJWLfGWRb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1d1fe07af6ddc932ceebb33dd522c035df3804c9 --- /dev/null +++ b/vlm/train/HJWLfGWRb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:871cbb9c8ce2bff22b43e7f67810c73edf64b880b38d2b8b629099942fff2164 +size 508793 diff --git a/vlm/train/HJWLfGWRb/7.png b/vlm/train/HJWLfGWRb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1979c42998a72356bce75a2df4310f5edae06291 --- /dev/null +++ b/vlm/train/HJWLfGWRb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:397fb6d5a76cfc10d36767c4b0e73535cb877b942e07174ba1cfef19d04ef050 +size 568525 diff --git a/vlm/train/HJWLfGWRb/8.png b/vlm/train/HJWLfGWRb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0abe1a750e8b5a5d3957c1f3938efc2d461d62ba --- /dev/null +++ b/vlm/train/HJWLfGWRb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1429fd2faaacf6583af87a0d54891e18150aad861839b4cb7127b6c55e2f00ed +size 532041 diff --git a/vlm/train/HJWLfGWRb/9.png b/vlm/train/HJWLfGWRb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..07a604650b4a6674dae0b4706655c7f0ca0f7266 --- /dev/null +++ b/vlm/train/HJWLfGWRb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d09706173d1c61ada6f0e7d5443954255346d4ea1bebdc1570877fefeb6a9b5 +size 548633 diff --git a/vlm/train/HJeYSxHFDS/0.png b/vlm/train/HJeYSxHFDS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2ecff21dbb57874298fa1f6784b839cb5080fc6c --- /dev/null +++ b/vlm/train/HJeYSxHFDS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77572fc355488196fc68dd0a268c56980345e9a60d2c61d3577a1d0a37cc893c +size 484464 diff --git a/vlm/train/HJeYSxHFDS/1.png b/vlm/train/HJeYSxHFDS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c7ac865fd4d629510e8dc385220d832f94bd6919 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144e84b84d959572b483d9cf2312f8c5e53dd6cbfde7c2293ea795c681343d33 +size 581374 diff --git a/vlm/train/HJeYSxHFDS/10.png b/vlm/train/HJeYSxHFDS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1f0dc52b3e6c730e8991d25d266e16bb0be2956d --- /dev/null +++ b/vlm/train/HJeYSxHFDS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80dea05da569afcb2690c62a086b30645ecb41dc0e86dcdbb3e5798427bbdca6 +size 513518 diff --git a/vlm/train/HJeYSxHFDS/11.png b/vlm/train/HJeYSxHFDS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0ff27c31159b65a47a6251133f099d552e5dfc0c --- /dev/null +++ b/vlm/train/HJeYSxHFDS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc253c0187edf7e41349d8e7840fc41fc8ddbfd19f8665645fe7da0f52d5617 +size 453875 diff --git a/vlm/train/HJeYSxHFDS/12.png b/vlm/train/HJeYSxHFDS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9bf77b634be9db2c3a58f1a567e80213c0f3e963 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc3cea6e71c82d51213b6cc43d0ea6180d2aa6d5981c266609339d34b1cee76f +size 370382 diff --git a/vlm/train/HJeYSxHFDS/13.png b/vlm/train/HJeYSxHFDS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d0693d40ca7fc633039ed1c5508b009245914a4b --- /dev/null +++ b/vlm/train/HJeYSxHFDS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e937b88ae769e9133042e18e8dc7550383597beae09c1426b163637b726cfd5 +size 429714 diff --git a/vlm/train/HJeYSxHFDS/14.png b/vlm/train/HJeYSxHFDS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..174273f5c2ccd047ed8da3093c6614e5e76f4310 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1b82604f51321819aad422100a38e1bb0fa2928fe771d0e0d8b18697139240 +size 389427 diff --git a/vlm/train/HJeYSxHFDS/15.png b/vlm/train/HJeYSxHFDS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..785ff5d6e43c0451b8a61148ed1c86816664133a --- /dev/null +++ b/vlm/train/HJeYSxHFDS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c400a1359a2f54da9ea42d31194783e074806fd75946a3f83f58b43e62678e +size 115121 diff --git a/vlm/train/HJeYSxHFDS/16.png b/vlm/train/HJeYSxHFDS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ce1225141fb669783675e9340b3815e965b6d3 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e8f895aebf3ab029d2eba1e20ffad83b055daee47bf1a2d6de15d18e9def985 +size 372932 diff --git a/vlm/train/HJeYSxHFDS/17.png b/vlm/train/HJeYSxHFDS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..b4f225d9155839929d929d52b7a152bf6698d0ae --- /dev/null +++ b/vlm/train/HJeYSxHFDS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffaa9a402bcb6348d947c310872d3070f274b13be7b8ef780ccedd670b00663c +size 205629 diff --git a/vlm/train/HJeYSxHFDS/18.png b/vlm/train/HJeYSxHFDS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..946a667115f460e2371f9d8972db0b7628d360c0 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a9b6bb4f7d6cdbb4417836e7d6c053149ef19cb8709da9e9e2af184ee4e398 +size 438697 diff --git a/vlm/train/HJeYSxHFDS/19.png b/vlm/train/HJeYSxHFDS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..dba991590b4366d673610c40a8c816454ffe1a45 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ec42f9bdfd7ef00438f69d967c71c96ca61d358e44bf930e21c85edd31ff26 +size 169098 diff --git a/vlm/train/HJeYSxHFDS/2.png b/vlm/train/HJeYSxHFDS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..73c4848b7e38d97abc880fa590813ef6de9b95b6 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ecdf888f668af634c9392141cb5870020606b5216df349615bac7e40ee850c +size 604519 diff --git a/vlm/train/HJeYSxHFDS/3.png b/vlm/train/HJeYSxHFDS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ec56bb2594906d0925228f8e9d1cc5f8975610d1 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2224d487b6716688e5eb4444b1150aeb18c02b55628eadd563984ce86caf53a +size 552024 diff --git a/vlm/train/HJeYSxHFDS/4.png b/vlm/train/HJeYSxHFDS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7b430bef0a7adc2205e33ff29348bb0f0d727143 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed07f685dfe8ea5f07e8e716271d114f62d0460f9f03f42abdff89fc64296316 +size 655869 diff --git a/vlm/train/HJeYSxHFDS/5.png b/vlm/train/HJeYSxHFDS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b2a981a9cdd2ca953a74fb4553318171d2a146b8 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e9f5f9f5bd13d32fe23c048f210fd7410f05eb4ba938da653bd167a34329a4 +size 574216 diff --git a/vlm/train/HJeYSxHFDS/6.png b/vlm/train/HJeYSxHFDS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2858fe2ab866088041a5d26a3b81b31bc470c777 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09f9a69efb72b9a84d43b2d55c52b164ad2c93a9164b78dfd08b41e39368e47 +size 460007 diff --git a/vlm/train/HJeYSxHFDS/7.png b/vlm/train/HJeYSxHFDS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2025dd90ae3faf9500eb657a5fa24c616bdacba4 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b9f28219be2727502883d297491efb12468464660075cd850c03fc0a9c4fac +size 506545 diff --git a/vlm/train/HJeYSxHFDS/8.png b/vlm/train/HJeYSxHFDS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..25fefcc0f4ec6874a3dabdd004b57cf6f44c12e1 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847cb9d600f5bc7e10ced9b06538cbf7fb613bf3f1346bc8c14cf1432a3c1b09 +size 568836 diff --git a/vlm/train/HJeYSxHFDS/9.png b/vlm/train/HJeYSxHFDS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..66e39d931f85a0aa0205964e0877c21ff0b8b462 --- /dev/null +++ b/vlm/train/HJeYSxHFDS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c34a76f8df932ae98cefb2a1befe520e6f582ece82e0f067a252b808581d8e +size 503551 diff --git a/vlm/train/HkSZyinVG/0.png b/vlm/train/HkSZyinVG/0.png new file mode 100644 index 0000000000000000000000000000000000000000..03a3301c2bfda3c88a2ba8409c3c52d5091c2999 --- /dev/null +++ b/vlm/train/HkSZyinVG/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ef0d448a0876576912ff6d1bd251f50a76b940ad3a1ce7b311877612f6ed0a +size 482075 diff --git a/vlm/train/HkSZyinVG/1.png b/vlm/train/HkSZyinVG/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4c7d0a2c9aff51b7f6daa96f6cca424233912a9c --- /dev/null +++ b/vlm/train/HkSZyinVG/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdaa6a58c3f2c14082b3a918e0478934dbd58c5f5080877054f931f8c467417a +size 494050 diff --git a/vlm/train/HkSZyinVG/2.png b/vlm/train/HkSZyinVG/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6dea76b49f4abc015fec83ef900d5011c31403d2 --- /dev/null +++ b/vlm/train/HkSZyinVG/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555eb38e17a556c6660b3c50293625e70ab157a2ad839bc081f755b9cd9cbcae +size 402726 diff --git a/vlm/train/HkSZyinVG/3.png b/vlm/train/HkSZyinVG/3.png new file mode 100644 index 0000000000000000000000000000000000000000..81c1118fe65634dae090192648915510590531f9 --- /dev/null +++ b/vlm/train/HkSZyinVG/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f387db17a2e5fa988dcb460a4d99abd94debba4e0f5039596d2ebe79c762885 +size 391507 diff --git a/vlm/train/HkSZyinVG/4.png b/vlm/train/HkSZyinVG/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d585546e99ab2c82cd3258810c5eb441fe931bd5 --- /dev/null +++ b/vlm/train/HkSZyinVG/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37c308188624a2b9b784ffa5d39f686feadac827ab3d20fc7219a8ff570bf48 +size 441282 diff --git a/vlm/train/HkSZyinVG/5.png b/vlm/train/HkSZyinVG/5.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf8cbe7bbde17180bb35445c3652b22502302e2 --- /dev/null +++ b/vlm/train/HkSZyinVG/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db2da0d132358498930c1faa5fe31e824ee39efe0f3b82e73013d084b676691 +size 477272 diff --git a/vlm/train/HkSZyinVG/6.png b/vlm/train/HkSZyinVG/6.png new file mode 100644 index 0000000000000000000000000000000000000000..16248ce179ff8648f2e7d12bef4ff58ad2d88beb --- /dev/null +++ b/vlm/train/HkSZyinVG/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f408c956fb6ce5ce7c11bc0be82aa61e89e51441935217051139a5f497255236 +size 420815 diff --git a/vlm/train/HkSZyinVG/7.png b/vlm/train/HkSZyinVG/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a4332d7ecbecf2aa4b4fe907485e8788adbdf943 --- /dev/null +++ b/vlm/train/HkSZyinVG/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c055123a99554acf9325cdeb9a76e679678bb1cb22a279025d0c51fdc60d072 +size 504245 diff --git a/vlm/train/HkSZyinVG/8.png b/vlm/train/HkSZyinVG/8.png new file mode 100644 index 0000000000000000000000000000000000000000..baeb30df197fa9c15993e53e183f610cda528b00 --- /dev/null +++ b/vlm/train/HkSZyinVG/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73550332b3af26d52e5326fa87ad11b2591af1918d084ce038fdd564117103fd +size 523046 diff --git a/vlm/train/HkSZyinVG/9.png b/vlm/train/HkSZyinVG/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e0dc619161f73f3de3a4ab588ed17263b15a0702 --- /dev/null +++ b/vlm/train/HkSZyinVG/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11bce05614e7d7272e6e2933e2eb71952a453f5f28ca39cf09e33b9b333f233 +size 206127 diff --git a/vlm/train/HkeuD34KPH/0.png b/vlm/train/HkeuD34KPH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a07f6a6c1f8aa2df797891371cb05970b9b0ba3b --- /dev/null +++ b/vlm/train/HkeuD34KPH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9245864fc6ee64309f196aceab55c7b472ac7e5ede7bb21f6d83c040c369a3 +size 519395 diff --git a/vlm/train/HkeuD34KPH/1.png b/vlm/train/HkeuD34KPH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0b72976165fc6dfd9ea27fc3ed3b05030b0aaa --- /dev/null +++ b/vlm/train/HkeuD34KPH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9b90928a96a752455684f32c50f5a41a31829c58250a7bc415ca12310d83e7 +size 570026 diff --git a/vlm/train/HkeuD34KPH/10.png b/vlm/train/HkeuD34KPH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9fdb5032a5b1a5cca15098d19a4ab99db488b8bc --- /dev/null +++ b/vlm/train/HkeuD34KPH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac25cdb143486087a684f6fff402a595c9fe6e073c96b3b616fc832a473271c +size 422297 diff --git a/vlm/train/HkeuD34KPH/11.png b/vlm/train/HkeuD34KPH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fcfc0a3e3ebc38f03f51be058c0b673d3238d94d --- /dev/null +++ b/vlm/train/HkeuD34KPH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b09f5056278a3148538588bded98afad8cf61c9ed538f839ea2cc1e9ec9405 +size 441350 diff --git a/vlm/train/HkeuD34KPH/12.png b/vlm/train/HkeuD34KPH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..826a3bb8efe5721e7046b5742b8da6d38666daa0 --- /dev/null +++ b/vlm/train/HkeuD34KPH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8f25912c23461b09b83f7270c4da35dbbcc8e7a4596d2485086ec022e962d7 +size 399139 diff --git a/vlm/train/HkeuD34KPH/13.png b/vlm/train/HkeuD34KPH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..809b35bc54973fe25210693a57ea5d45d174e92a --- /dev/null +++ b/vlm/train/HkeuD34KPH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb983f2ea8c18259384f1783516149e7d6852fd4bc07326a6a438091244da89c +size 172185 diff --git a/vlm/train/HkeuD34KPH/2.png b/vlm/train/HkeuD34KPH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e12cd3e6d1e049172f2271c75c77ef8a62649d65 --- /dev/null +++ b/vlm/train/HkeuD34KPH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcbcf7625cf90f477df2cd1520fe3322d08008cabf5e178e4712ef8cc192e3a +size 411365 diff --git a/vlm/train/HkeuD34KPH/3.png b/vlm/train/HkeuD34KPH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3f8c932214d9e5bc72379280341396b6b59e60ca --- /dev/null +++ b/vlm/train/HkeuD34KPH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575607265591889f6c8feb669a1eccd45874b0fb0958b680bc59523375757148 +size 614617 diff --git a/vlm/train/HkeuD34KPH/4.png b/vlm/train/HkeuD34KPH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e506172286f804dfeaad93af1c44a0d4482860b5 --- /dev/null +++ b/vlm/train/HkeuD34KPH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9363b45bed534cbd13dc9b0456d75d243526c0575ff964f6c490bb4e70005b0 +size 543924 diff --git a/vlm/train/HkeuD34KPH/5.png b/vlm/train/HkeuD34KPH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..26448a510edbea44cc2694dfe5cf5d0f55bd1b1e --- /dev/null +++ b/vlm/train/HkeuD34KPH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e80bd4ad2a6b4da332f09549842adc259cce52159d3be12c3d672a27ed3bf3 +size 512622 diff --git a/vlm/train/HkeuD34KPH/6.png b/vlm/train/HkeuD34KPH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..428532c65edaa3e5ceb79ed4ef413027240cea12 --- /dev/null +++ b/vlm/train/HkeuD34KPH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8bdb120cdf3da63d529e219bf9010552575a3d9c8ffaf63a7b8467faf595052 +size 685695 diff --git a/vlm/train/HkeuD34KPH/7.png b/vlm/train/HkeuD34KPH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..009c870358ede81708b9b51fb2e1aa606d14cc66 --- /dev/null +++ b/vlm/train/HkeuD34KPH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2166e3d323245e328a6d4c8aea2e875f723c3dc0d01698bfd39ce0c7c29022f0 +size 519704 diff --git a/vlm/train/HkeuD34KPH/8.png b/vlm/train/HkeuD34KPH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0a9409209bcd28bed4066fe8c070a447ab1be93d --- /dev/null +++ b/vlm/train/HkeuD34KPH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e27a5fda9b9dd285d1522da2bda07f19e74e79b569803d6aa932318bcc09e5b +size 538282 diff --git a/vlm/train/HkeuD34KPH/9.png b/vlm/train/HkeuD34KPH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..08d53e86239315e98c733143ebb370e7acfbf64a --- /dev/null +++ b/vlm/train/HkeuD34KPH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277cb2d3a690136d18a4c2574a7d2ecb9f781795896b93d0019801bd9d595754 +size 343092 diff --git a/vlm/train/HksioDcxl/0.png b/vlm/train/HksioDcxl/0.png new file mode 100644 index 0000000000000000000000000000000000000000..039d1c49f9ac41ce484c85020918375e0dfdee4f --- /dev/null +++ b/vlm/train/HksioDcxl/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5b3d5bbb2a7bbf22bc0bb982b0e60c9a2509e2d9df202a5c7a29f2a85382f7 +size 473691 diff --git a/vlm/train/HksioDcxl/1.png b/vlm/train/HksioDcxl/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f03691bac9ce49a43505d93097e9c7cd6148e66e --- /dev/null +++ b/vlm/train/HksioDcxl/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8990dd953adad9fdaa1fa1fc12be008fe7377f7a36918fc2c13ce897ae8763a3 +size 597772 diff --git a/vlm/train/HksioDcxl/10.png b/vlm/train/HksioDcxl/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2fa18803724f96d00079975767afd3cb700b47ca --- /dev/null +++ b/vlm/train/HksioDcxl/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05671f09a017a9f3cabda2612d1272a186b24160f2098089828c461eb3172338 +size 172608 diff --git a/vlm/train/HksioDcxl/2.png b/vlm/train/HksioDcxl/2.png new file mode 100644 index 0000000000000000000000000000000000000000..99ac53eafd349b179daa7cb53dde5d187aff5474 --- /dev/null +++ b/vlm/train/HksioDcxl/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bde46e17b55792f50ae654fd722db0a307de289e3f054c7d2e05f6679533afc +size 421631 diff --git a/vlm/train/HksioDcxl/3.png b/vlm/train/HksioDcxl/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c88d257bee9378523808c086abdf458674327fd --- /dev/null +++ b/vlm/train/HksioDcxl/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7e3fd77548b57944f9ada2237dc832fb56ca1ea1fc6f641cd20901b8bf36f9 +size 382514 diff --git a/vlm/train/HksioDcxl/4.png b/vlm/train/HksioDcxl/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ac295f922144547554aac6ef7322546af1c365b7 --- /dev/null +++ b/vlm/train/HksioDcxl/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba66215abe67a95472165181a4e06b69950cd67d8f0e789146dec6318fb1207b +size 428227 diff --git a/vlm/train/HksioDcxl/5.png b/vlm/train/HksioDcxl/5.png new file mode 100644 index 0000000000000000000000000000000000000000..197e8fe70c7503263a38115309ba349249dc366d --- /dev/null +++ b/vlm/train/HksioDcxl/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6989e1e69adf463da782fee28ef956401f0548f4b236d5c058205d1b0a496f72 +size 424524 diff --git a/vlm/train/HksioDcxl/6.png b/vlm/train/HksioDcxl/6.png new file mode 100644 index 0000000000000000000000000000000000000000..eeed7f5ccce1d4f2e9f18e0a43e1d09c99fc1424 --- /dev/null +++ b/vlm/train/HksioDcxl/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002923d676c2f8aa4ba2b573a9609ee60753e40c8c410be2858f4f50c8a31e0a +size 509159 diff --git a/vlm/train/HksioDcxl/7.png b/vlm/train/HksioDcxl/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dc063543e4742e4938626cdcc4a8ec871e07d3ad --- /dev/null +++ b/vlm/train/HksioDcxl/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb591a238812cda4fe3f7ecbb6df323787b2c1de1ab5419582ddf8a5777121d1 +size 426815 diff --git a/vlm/train/HksioDcxl/8.png b/vlm/train/HksioDcxl/8.png new file mode 100644 index 0000000000000000000000000000000000000000..fc84f8fd55a46210b4f4b31a93452e6e896f3d80 --- /dev/null +++ b/vlm/train/HksioDcxl/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2ea69647d20bbabb42843eb8e767fd3971894a9909b22b913d1e2d5659ab93 +size 96804 diff --git a/vlm/train/HksioDcxl/9.png b/vlm/train/HksioDcxl/9.png new file mode 100644 index 0000000000000000000000000000000000000000..59e0e056a3a02d69a1713b9f3a3d0744abc0563b --- /dev/null +++ b/vlm/train/HksioDcxl/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf7cc54c1994d1e7e406110a6e5880ff06e6df950c4b351171c0de3b364e66b +size 478570 diff --git a/vlm/train/HkxjYoCqKX/0.png b/vlm/train/HkxjYoCqKX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..81a6f47dd701f999b5a3a1207a495bf6e1be7e91 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a45a656610e0b8a6cc2623d207d06bb9be350b37c6644220b16ff1648165f7 +size 474857 diff --git a/vlm/train/HkxjYoCqKX/1.png b/vlm/train/HkxjYoCqKX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..389879e85a8bea417046c07fe8fa8efe871a2a38 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543316bc05d66c4941a090708252d5fbf43983deaa4ba539fc0112f497fc712c +size 421693 diff --git a/vlm/train/HkxjYoCqKX/10.png b/vlm/train/HkxjYoCqKX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..40abb073e4ec20897d243e77f8286d4bddae218d --- /dev/null +++ b/vlm/train/HkxjYoCqKX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96510db32b760c44e177e296195b8c89c6085f5cff2149fa9941392691c7b1ee +size 541090 diff --git a/vlm/train/HkxjYoCqKX/11.png b/vlm/train/HkxjYoCqKX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c8b93d73489a7af9a09589e67e6073e119df43 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899f6f3957190b710fad39fba929d595a4dea40b3037d78e6b710a884b6c3111 +size 542038 diff --git a/vlm/train/HkxjYoCqKX/12.png b/vlm/train/HkxjYoCqKX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..79f88957d1e210a336815300659bcef7835c1ad4 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a867b1ff3edabfa76c2d7654dbe96e873fa97a04855ef0e573610cbba315217 +size 479707 diff --git a/vlm/train/HkxjYoCqKX/13.png b/vlm/train/HkxjYoCqKX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5798736e54962327b77e78e6e8e8af2bf78709b4 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7035b6ae3888c82f78628a8aabc226bc624dd635131350b65afdb8800954371 +size 370179 diff --git a/vlm/train/HkxjYoCqKX/14.png b/vlm/train/HkxjYoCqKX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..bfd10fc0aecf73b28433e06415b1c414e448e3da --- /dev/null +++ b/vlm/train/HkxjYoCqKX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e07ee32c459f033e1da15c5abdeb6f60c224c396f3d67aa6f833e1767d9ab9e +size 312030 diff --git a/vlm/train/HkxjYoCqKX/2.png b/vlm/train/HkxjYoCqKX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d351bbd5dce79ae77ef68e7d1b25d114b0ae55be --- /dev/null +++ b/vlm/train/HkxjYoCqKX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d289da0a8d88ee8dcfbdde09b1555c01e33d0c41be2c3800432458ad07d4a744 +size 592572 diff --git a/vlm/train/HkxjYoCqKX/3.png b/vlm/train/HkxjYoCqKX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..00924ce7b8335b7c9ca8f9ef43aa938f3d1bc160 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c604d76bec96c924c7956864d0a6c88a4fba82d4a21a3e41daaa493b826306 +size 513480 diff --git a/vlm/train/HkxjYoCqKX/4.png b/vlm/train/HkxjYoCqKX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..63fb4fd2416e23d6aaced57906a22c08c30fb62e --- /dev/null +++ b/vlm/train/HkxjYoCqKX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec964c900c3a400be7d19581cea34b4ef10956e0c5603d4f3157143c5b8caff1 +size 465057 diff --git a/vlm/train/HkxjYoCqKX/5.png b/vlm/train/HkxjYoCqKX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..12ffe242c332c54c85ea6e334f46538a7ba90e57 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5044ccc5e24003274ee1a87921c6ae2e73f0dc291c93167c36584fcc33943ba +size 629969 diff --git a/vlm/train/HkxjYoCqKX/6.png b/vlm/train/HkxjYoCqKX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b362af9191f50e5a3aa6a3b722861b8ba810de3b --- /dev/null +++ b/vlm/train/HkxjYoCqKX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed24624e6548fb565d51203355a5cd5bca6375185213a430d9678f2914b85a8 +size 562918 diff --git a/vlm/train/HkxjYoCqKX/7.png b/vlm/train/HkxjYoCqKX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..065dca9b2f59abd0a2315615e37a274880a543db --- /dev/null +++ b/vlm/train/HkxjYoCqKX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec0db7e214ad08549af97dd41be3cad84b47d4b033191f4c083cb88d8e40f22 +size 456786 diff --git a/vlm/train/HkxjYoCqKX/8.png b/vlm/train/HkxjYoCqKX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4608bbb62ac5aaa879dad0e429a66e21ecfd9165 --- /dev/null +++ b/vlm/train/HkxjYoCqKX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772a284698b70aa1749d142fccca523dea817d91f27da3fa389df8220ca81f0b +size 550711 diff --git a/vlm/train/HkxjYoCqKX/9.png b/vlm/train/HkxjYoCqKX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9d0ecedabb71be49453320c3db28feecf8d39ecd --- /dev/null +++ b/vlm/train/HkxjYoCqKX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b31e225ed5d52a47a5aded3cbff8273b919cc4b5697e890fee6546096250d4 +size 534704 diff --git a/vlm/train/HyAddcLge/0.png b/vlm/train/HyAddcLge/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5c870eded1077799c00a56d1bbc0a8c3ed628ef6 --- /dev/null +++ b/vlm/train/HyAddcLge/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6e8f43d8966e084d20143f795db92dc3414d08142221e22c33bb4722006141 +size 472962 diff --git a/vlm/train/HyAddcLge/1.png b/vlm/train/HyAddcLge/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ca74e26ab6f45c8c581f93cddbd04ee6629f9635 --- /dev/null +++ b/vlm/train/HyAddcLge/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa80baff855480c569526b8f7b24c25ae4f0d6d27cd252b029037f0a3aadb2df +size 544891 diff --git a/vlm/train/HyAddcLge/10.png b/vlm/train/HyAddcLge/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d048cc9ea15d713e46174d7046fb1ae434eb5bbc --- /dev/null +++ b/vlm/train/HyAddcLge/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8777bbe6c364ded5dc527cf8c333f6ca886f98cd53e1fd9f670a7b98c9f405c +size 476548 diff --git a/vlm/train/HyAddcLge/2.png b/vlm/train/HyAddcLge/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c5d7124754af86d6e8558ef876838dc5a5603f4a --- /dev/null +++ b/vlm/train/HyAddcLge/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5205f37af9ab9d2e336517307e2cc454c5fde24fd457d266e0b723c42ec3d9a0 +size 530364 diff --git a/vlm/train/HyAddcLge/3.png b/vlm/train/HyAddcLge/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0e48c18cfe417f5457e66c145b6bd6d33af74253 --- /dev/null +++ b/vlm/train/HyAddcLge/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eaaec1ae01ad97b08f240a5cd369c36b8f4a8ef581658ec3ebe8e3714c0a903 +size 484916 diff --git a/vlm/train/HyAddcLge/4.png b/vlm/train/HyAddcLge/4.png new file mode 100644 index 0000000000000000000000000000000000000000..abe8318d0a1e70120206a83fffbf2bf6baaa47ea --- /dev/null +++ b/vlm/train/HyAddcLge/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18781870e02ce69b4a2d15fc50cf20fc84e6227a577400462d757fe49ed9718d +size 490539 diff --git a/vlm/train/HyAddcLge/5.png b/vlm/train/HyAddcLge/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bd23d2bff31ec4f1de972538d4fc7a10f33b8f1e --- /dev/null +++ b/vlm/train/HyAddcLge/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6aa82af2c76a01fa4a4f9adbe5ec8003fec3972f0b6b3486e484d251198bed +size 548989 diff --git a/vlm/train/HyAddcLge/6.png b/vlm/train/HyAddcLge/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bde2bb5ee801906400d885f9afdd58ce5fe60ff7 --- /dev/null +++ b/vlm/train/HyAddcLge/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee5abc9b9f071af2d4758235b70ac3800fe93af81c0668d2e00961dc07102dd +size 571922 diff --git a/vlm/train/HyAddcLge/7.png b/vlm/train/HyAddcLge/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e3d584bee6976e82e666c3a7ff058c0e6d43997a --- /dev/null +++ b/vlm/train/HyAddcLge/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d4b114374c3acf8244384e768dacedbb00846543c144bb4aaed0b92b3be351 +size 562203 diff --git a/vlm/train/HyAddcLge/8.png b/vlm/train/HyAddcLge/8.png new file mode 100644 index 0000000000000000000000000000000000000000..79cac38ca2da776957e9de07f3d0122d3caa0510 --- /dev/null +++ b/vlm/train/HyAddcLge/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c072f4419f18c3d9a0b5208eb7b04cd8dd08d16844114d147d56321fc67f02 +size 566364 diff --git a/vlm/train/HyAddcLge/9.png b/vlm/train/HyAddcLge/9.png new file mode 100644 index 0000000000000000000000000000000000000000..01ca56d519babc121dc8e4520127c47b3d53ba10 --- /dev/null +++ b/vlm/train/HyAddcLge/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74256de847bff8246d3a0620b014dbdab37daae4d5ef1c49b16ef26ee1c1f785 +size 226538 diff --git a/vlm/train/HylsTT4FvB/0.png b/vlm/train/HylsTT4FvB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f7da076289e8ed528e83f7133060e8336642adbc --- /dev/null +++ b/vlm/train/HylsTT4FvB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca549db9cf41ec69e366c321c1ba5d293d23ad22d232190b8c19170d72688e66 +size 483395 diff --git a/vlm/train/HylsTT4FvB/1.png b/vlm/train/HylsTT4FvB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3debd13206d0595b89e405092d582b76af6c3300 --- /dev/null +++ b/vlm/train/HylsTT4FvB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b5db364e4f287a71317a3ce71dd69aecf6dea2787720a1b0a780aac4f5f463 +size 890047 diff --git a/vlm/train/HylsTT4FvB/10.png b/vlm/train/HylsTT4FvB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..59d4c9f846869e49bfdb90dfefe79e611226b012 --- /dev/null +++ b/vlm/train/HylsTT4FvB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b718588da848a4e3bdd1f206338d11d299253afe5c766d29f67d119f234afd +size 562984 diff --git a/vlm/train/HylsTT4FvB/11.png b/vlm/train/HylsTT4FvB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..915ed95fdfdcfb7cae5a4b142dc5656e44bf1d48 --- /dev/null +++ b/vlm/train/HylsTT4FvB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d9fa854b6783cd9dffaad4bb1653fc3c9ce7f12c868f229657b66a1b6673a8 +size 516491 diff --git a/vlm/train/HylsTT4FvB/12.png b/vlm/train/HylsTT4FvB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e341d08cd306f0db7a7297bcc34c29b3124ca4d7 --- /dev/null +++ b/vlm/train/HylsTT4FvB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d73cd38b36dbee8a073788df80fe29ba76e6f15431a70c1f4e74b8b38424e2 +size 452997 diff --git a/vlm/train/HylsTT4FvB/13.png b/vlm/train/HylsTT4FvB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2955eb00043811731e111e8c5ff9138b8f94f9e6 --- /dev/null +++ b/vlm/train/HylsTT4FvB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a032eb7525bf3ca5f0ef3f5efed6361b7218c600dffbef1de0460dc255f4ba6 +size 483350 diff --git a/vlm/train/HylsTT4FvB/14.png b/vlm/train/HylsTT4FvB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..36d87fb7efcccb1fb67fe0195ccde84886f41c7d --- /dev/null +++ b/vlm/train/HylsTT4FvB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d346f69d220299560a46d4a8d680fcb895702b0eaeae9aee07df94bd9acb7797 +size 483883 diff --git a/vlm/train/HylsTT4FvB/15.png b/vlm/train/HylsTT4FvB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..4589a0ae8a3f43bd17804ef1f9e4ac2ddc69d69e --- /dev/null +++ b/vlm/train/HylsTT4FvB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ddbd395e681825cf3006bc11637196703289390906baa28feac8ada2a155e2 +size 1521445 diff --git a/vlm/train/HylsTT4FvB/16.png b/vlm/train/HylsTT4FvB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..af4a24261c419d7d71c8880fe2f118329455f302 --- /dev/null +++ b/vlm/train/HylsTT4FvB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b5c390445f7ad393c96a5ceec5b9b37b0320ad1d0257d92fd1812fed2e214a +size 2249092 diff --git a/vlm/train/HylsTT4FvB/17.png b/vlm/train/HylsTT4FvB/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7c42e9e821e8ecde29ea68fd95ef97a6968375b7 --- /dev/null +++ b/vlm/train/HylsTT4FvB/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf443797b34d9e51e48eecbe0d40e6dc7d7c8a6a67e62eec848da83cb0c57f77 +size 322502 diff --git a/vlm/train/HylsTT4FvB/18.png b/vlm/train/HylsTT4FvB/18.png new file mode 100644 index 0000000000000000000000000000000000000000..69f5a17d228a0bf586604e50578a23ecbd8b6e3e --- /dev/null +++ b/vlm/train/HylsTT4FvB/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db88c7f495c8ab68e4e5b3ef1c06f6927b776da4718cf1ecd97bdc9c4b766582 +size 1852914 diff --git a/vlm/train/HylsTT4FvB/19.png b/vlm/train/HylsTT4FvB/19.png new file mode 100644 index 0000000000000000000000000000000000000000..3d537008d36a3717d5bf50884920d048a0041bdf --- /dev/null +++ b/vlm/train/HylsTT4FvB/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ef6dde56be8ffac7791f94f44428ad03437a013a5d5cbf944f56f1c97bf83e +size 1776059 diff --git a/vlm/train/HylsTT4FvB/2.png b/vlm/train/HylsTT4FvB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..134220956b149b648def93d0f03fb441324b5b2b --- /dev/null +++ b/vlm/train/HylsTT4FvB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778c6ac29c81c520a4c322dfa07cea4c899c9a102673578df04449d40327b5c4 +size 572474 diff --git a/vlm/train/HylsTT4FvB/20.png b/vlm/train/HylsTT4FvB/20.png new file mode 100644 index 0000000000000000000000000000000000000000..94227d612260de67939595aa55a58c5cfc81e059 --- /dev/null +++ b/vlm/train/HylsTT4FvB/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ae20564dbfda8c72fccee210a4fdb25dd0a8a729d009b31850b00ac6b2b947 +size 1656449 diff --git a/vlm/train/HylsTT4FvB/21.png b/vlm/train/HylsTT4FvB/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3a55191d124183bcbc0d713c77cd43213b9304d7 --- /dev/null +++ b/vlm/train/HylsTT4FvB/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16105205d3c311a4ba1f4976fab110628e05f5d724a17d0a285ee5e7fedf817 +size 1466741 diff --git a/vlm/train/HylsTT4FvB/22.png b/vlm/train/HylsTT4FvB/22.png new file mode 100644 index 0000000000000000000000000000000000000000..27e26efc49ecb776ce57978ceebe100fb68d41cf --- /dev/null +++ b/vlm/train/HylsTT4FvB/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be5cc518878e2df332a797a98f48a3104f9fe1980bd630e16db1f793510024e +size 277000 diff --git a/vlm/train/HylsTT4FvB/23.png b/vlm/train/HylsTT4FvB/23.png new file mode 100644 index 0000000000000000000000000000000000000000..f357bce2e0f80b1326f6cc0da5bff5682978991d --- /dev/null +++ b/vlm/train/HylsTT4FvB/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94ec9dd0befb02ffcfb96b1dac966b36218f6373941340e58b682dd511235f8 +size 1691139 diff --git a/vlm/train/HylsTT4FvB/24.png b/vlm/train/HylsTT4FvB/24.png new file mode 100644 index 0000000000000000000000000000000000000000..75d52f6061f33e980975c9ac9d95f9dcf279146f --- /dev/null +++ b/vlm/train/HylsTT4FvB/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4451540e379393f633ba3440dac0495ef56626de7ac89a0ba31c94e5e8ad36 +size 263038 diff --git a/vlm/train/HylsTT4FvB/25.png b/vlm/train/HylsTT4FvB/25.png new file mode 100644 index 0000000000000000000000000000000000000000..4f5a319f4be72850c9faedea5a84e47de7d7865f --- /dev/null +++ b/vlm/train/HylsTT4FvB/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aadacb1399158c640e7f7a2a785f3a8d61d1950aab23e6a683af532776c93396 +size 1651131 diff --git a/vlm/train/HylsTT4FvB/26.png b/vlm/train/HylsTT4FvB/26.png new file mode 100644 index 0000000000000000000000000000000000000000..cb330b8f48c26b6685ca3275ddf0870fa6297162 --- /dev/null +++ b/vlm/train/HylsTT4FvB/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2e706c61075a9f4772e26ac388288fb8b6755ad1d0c1be218dbf27d2248019 +size 263466 diff --git a/vlm/train/HylsTT4FvB/27.png b/vlm/train/HylsTT4FvB/27.png new file mode 100644 index 0000000000000000000000000000000000000000..967679049c96bc9c20aa01cfe47f2120cd8f2b3a --- /dev/null +++ b/vlm/train/HylsTT4FvB/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d881735debce369ec4790434b4af71620b769a8050a7b99ea41b77b331424f +size 1287623 diff --git a/vlm/train/HylsTT4FvB/28.png b/vlm/train/HylsTT4FvB/28.png new file mode 100644 index 0000000000000000000000000000000000000000..bbcc51ba8cd4d8d04669c1d56db7d8e2ff60d5e3 --- /dev/null +++ b/vlm/train/HylsTT4FvB/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44630d200709accec9bc81e134085619c2cac343cf92375a83a93271c38446dc +size 1490983 diff --git a/vlm/train/HylsTT4FvB/29.png b/vlm/train/HylsTT4FvB/29.png new file mode 100644 index 0000000000000000000000000000000000000000..133875ea9acbbd84e8833a204684a7c27e0b62db --- /dev/null +++ b/vlm/train/HylsTT4FvB/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac38c754976cfac9802b122f022fa6b1eda0de75babb89cd2e860e385cf0c60 +size 1388093 diff --git a/vlm/train/HylsTT4FvB/3.png b/vlm/train/HylsTT4FvB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..40359081e107ead72a8bc26f2bd96dc282137fb1 --- /dev/null +++ b/vlm/train/HylsTT4FvB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b80d91a958f150415af4122e7beccd0f42210208f5534f2a480beadae910e7c +size 593860 diff --git a/vlm/train/HylsTT4FvB/30.png b/vlm/train/HylsTT4FvB/30.png new file mode 100644 index 0000000000000000000000000000000000000000..04520b87f3634434f2fac02323c97d73a704926f --- /dev/null +++ b/vlm/train/HylsTT4FvB/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de43899a0e3b7c97b05ce23afed7525793a24ab7b3f932541c8246899cc5c8bc +size 771583 diff --git a/vlm/train/HylsTT4FvB/4.png b/vlm/train/HylsTT4FvB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f638636119738b4d2eb486e73a22ee2fe84a6eb2 --- /dev/null +++ b/vlm/train/HylsTT4FvB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33fc2782ab8456ae7758dd3ac60a3e1b83bbd9163f20ede52d2c6ee25b8dc02e +size 882798 diff --git a/vlm/train/HylsTT4FvB/5.png b/vlm/train/HylsTT4FvB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..97c8833420f96e9356ee4dd0386b3d74bfc08e59 --- /dev/null +++ b/vlm/train/HylsTT4FvB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b153728f4987209b6916602caa180f72c2ef6823666c5d99c98df6c50be58993 +size 805480 diff --git a/vlm/train/HylsTT4FvB/6.png b/vlm/train/HylsTT4FvB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e1e59ac305dfc078a701219ef9a7b511f5fc7acf --- /dev/null +++ b/vlm/train/HylsTT4FvB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96ecba6e73a7f84d47d2b2d385bb2ac678307f4e6617d3e72910c7e693da1cf +size 532879 diff --git a/vlm/train/HylsTT4FvB/7.png b/vlm/train/HylsTT4FvB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..578bb8d37d2c516123c0750f3b0decd3e16c80fe --- /dev/null +++ b/vlm/train/HylsTT4FvB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2803f17e52f19809d8230a5a3c4b02a4c142c07d5d4bd59b0aca94d0a26649c9 +size 721358 diff --git a/vlm/train/HylsTT4FvB/8.png b/vlm/train/HylsTT4FvB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e400cce74f085f5d46bee1e7e189ce1880ce2181 --- /dev/null +++ b/vlm/train/HylsTT4FvB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a8de235d40aa68d77e2166e430d6472643283beb0a08f1fc12a8d5d08dd51f +size 948423 diff --git a/vlm/train/HylsTT4FvB/9.png b/vlm/train/HylsTT4FvB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2f8ff7c930ad6d34c763be7c804792bd4ef07925 --- /dev/null +++ b/vlm/train/HylsTT4FvB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6937abb037d85389e87e3db1c4866b97dee2764d17fcc3f17912d8060fdbd53e +size 578993 diff --git a/vlm/train/HyxfGCVYDr/0.png b/vlm/train/HyxfGCVYDr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9946ba9af8200502c6d4b5e8a6271153d63f4d9f --- /dev/null +++ b/vlm/train/HyxfGCVYDr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c0174b79aac0007bb40d14776fe8208f822cfd444db7ffd1e00bf53a0251c3 +size 487241 diff --git a/vlm/train/HyxfGCVYDr/1.png b/vlm/train/HyxfGCVYDr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d968a9b6f4910bcd746d6bd787959e0a255d883 --- /dev/null +++ b/vlm/train/HyxfGCVYDr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9971ac2af0ea0c450aae3e193a74114eae83a5cb3e26a71640b0487ca8d6f85 +size 526819 diff --git a/vlm/train/HyxfGCVYDr/2.png b/vlm/train/HyxfGCVYDr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..aad14c99cc69db5ba92029ad2f74d1cc58f0bc38 --- /dev/null +++ b/vlm/train/HyxfGCVYDr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17fc913e7af71971df0d0e8a7c45397d62a18c22670c328a0f70a4c347b2bdf +size 568291 diff --git a/vlm/train/HyxfGCVYDr/3.png b/vlm/train/HyxfGCVYDr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cb051889d33094775eb9821f0fe5487e173c9c8e --- /dev/null +++ b/vlm/train/HyxfGCVYDr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13aa44a74c308d2448bf61d8dfc0be9cd9884f4259b770a00bf035ec18b9c87a +size 403483 diff --git a/vlm/train/HyxfGCVYDr/4.png b/vlm/train/HyxfGCVYDr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..37739274e276a3019f7dc9765b1cf45918f41c34 --- /dev/null +++ b/vlm/train/HyxfGCVYDr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bfb494ba565d6ff9612738da9c905b975b88416683df5891a5f7e61e320217 +size 496234 diff --git a/vlm/train/HyxfGCVYDr/5.png b/vlm/train/HyxfGCVYDr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f4afd35dd38c5511e81de77b58ce4000eb6d7230 --- /dev/null +++ b/vlm/train/HyxfGCVYDr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f1cbb727b5666f89495c6f5368a3f66f1398aeaa1a78f4ed38853a510243ad +size 548732 diff --git a/vlm/train/HyxfGCVYDr/6.png b/vlm/train/HyxfGCVYDr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2624ab39ee9aadc456afa60a46a25654a5ee2bba --- /dev/null +++ b/vlm/train/HyxfGCVYDr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e51d53605d38e712836df03dcc4864ddf733405bac67ae2b199435d7209c0a +size 524865 diff --git a/vlm/train/HyxfGCVYDr/7.png b/vlm/train/HyxfGCVYDr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a7bdb04bf4e82f4f0d20f969693d2b629619a7fd --- /dev/null +++ b/vlm/train/HyxfGCVYDr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f8c6e40113998e07a53607177bc0ae25a8c5cf314bd70f7138a981a2a3e7f7 +size 459198 diff --git a/vlm/train/HyxfGCVYDr/8.png b/vlm/train/HyxfGCVYDr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..01e63ad6395edf3eba890e5f0701d12b45557240 --- /dev/null +++ b/vlm/train/HyxfGCVYDr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1feec53c569cc2c0bb7ef3f8cef1006dc9a9b32c9522ab8c3b22d07f2695305b +size 450682 diff --git a/vlm/train/HyxfGCVYDr/9.png b/vlm/train/HyxfGCVYDr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4507186cb7dce35d0a0dd378db3e1eac340e9ef5 --- /dev/null +++ b/vlm/train/HyxfGCVYDr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c91ec114d29726975461daf61c387ebad00956d464db102d04d716838789d0 +size 465207 diff --git a/vlm/train/Hyxu6oAqYX/0.png b/vlm/train/Hyxu6oAqYX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3b365c8aa97ddcc5ac3ae4f09a6752dbe5bedc04 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944ed1d7e1fc2f90e38b9e75e2e291ce250feed905572925d68c2969d9448099 +size 505430 diff --git a/vlm/train/Hyxu6oAqYX/1.png b/vlm/train/Hyxu6oAqYX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e7ea4c9b3a11ff9d1b2553a861bb271a19e66f46 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df0df8e47c73964fa67fa8aef52fde199d35f7353b4f2ff22910b86a62010f4 +size 511584 diff --git a/vlm/train/Hyxu6oAqYX/10.png b/vlm/train/Hyxu6oAqYX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa0f454102bcd7e0eb56bd73d1a9dcf2c0d8a7f --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92404b6291e340c1f48ae62a60c6e492220c3b2fd6bcbbe76c0f931329fc7a08 +size 558052 diff --git a/vlm/train/Hyxu6oAqYX/11.png b/vlm/train/Hyxu6oAqYX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..02538237bee9410334df1903ece0183b6bb395d7 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88a3c573e9fe92ab47b39a3a171c418217260c700f85e657fe91a3457ab5579 +size 288777 diff --git a/vlm/train/Hyxu6oAqYX/12.png b/vlm/train/Hyxu6oAqYX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d0caa03cf6a7a1533b75e847f0d592739008a29f --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d3ab0b47bd7caea713e5b94f0a64c215c52b556b70a6487ea983685dbd95c44 +size 286990 diff --git a/vlm/train/Hyxu6oAqYX/13.png b/vlm/train/Hyxu6oAqYX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..83be05fee06d90b5d5a5b7ebd6e6a0213ce097cc --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33a04c84ca7ccd256724a9e126d7bf5e97c6646109154c0ef8cf46243775f1f +size 273587 diff --git a/vlm/train/Hyxu6oAqYX/14.png b/vlm/train/Hyxu6oAqYX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..bbdd5b5cc8650472ce5bf5575544acec54534c29 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f5e3db4786e143947451cf4363f71c426082d6494c21c854be7f2e33374fef +size 190115 diff --git a/vlm/train/Hyxu6oAqYX/15.png b/vlm/train/Hyxu6oAqYX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..4a9239c9359f38b582127d71d756cdba7159d7dd --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afea54344b99e60a0fb44b3b9e811ec5245376f97f38e10a3d02261abb9506a +size 360525 diff --git a/vlm/train/Hyxu6oAqYX/2.png b/vlm/train/Hyxu6oAqYX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a8a074a1de7d4c327f9091d3029a33f80a4c7980 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc10b9b283f42a4d81fcd8a79b12dfed35d50060e24cf877565cd843a64da18 +size 493426 diff --git a/vlm/train/Hyxu6oAqYX/3.png b/vlm/train/Hyxu6oAqYX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d7683f20a6b9bfebfb123d907f962481f18c2e51 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78fe30c5ab087b9123cb5f7d3fcb41944009b1e71be76091664ed983781e3208 +size 491282 diff --git a/vlm/train/Hyxu6oAqYX/4.png b/vlm/train/Hyxu6oAqYX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a400abf9155158017541a103114f1dc84d4df1a3 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9cfe1dff0d80b8363158aa9e92f8dcb39ef6f30e8b39ee35131a38b1fbf105 +size 569356 diff --git a/vlm/train/Hyxu6oAqYX/5.png b/vlm/train/Hyxu6oAqYX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b90574362ec5ad27c3cc53161277dd9528ff37c9 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0eae91cba9c5d5290567f7fc9d20950833133c471be2d31d26afca4a4680612 +size 501242 diff --git a/vlm/train/Hyxu6oAqYX/6.png b/vlm/train/Hyxu6oAqYX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f4519bf399a44ab605a6543b65594b6d943b77d1 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a849dcce2dea8c50c876c16d75f31dfbce93cd315767236403869fb8b1d160 +size 594306 diff --git a/vlm/train/Hyxu6oAqYX/7.png b/vlm/train/Hyxu6oAqYX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2464116e3f5f65acffa7dad8c8c7018742560326 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee82f5d278a68ad6d5de2a5ca646023c60569665e15c186cb4878c159bda9bc5 +size 416266 diff --git a/vlm/train/Hyxu6oAqYX/8.png b/vlm/train/Hyxu6oAqYX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f2eb9b724826be39e7fa5b27872691cf369620c7 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad795dec62e2950d4e9a1fd47ffb01816e7aef6e750671a3b7ac6921758b40e8 +size 575327 diff --git a/vlm/train/Hyxu6oAqYX/9.png b/vlm/train/Hyxu6oAqYX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cbb57d2b52d4eda960278c8321bcdf8755a03233 --- /dev/null +++ b/vlm/train/Hyxu6oAqYX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c1fec7d0a3012bbd4c0fa1ea2aa1b506d4ee2b64a4b69b1d31bdb4ccacadd0 +size 563685 diff --git a/vlm/train/LKUfuWxajHc/0.png b/vlm/train/LKUfuWxajHc/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b73ff9d460f976394e172d27a4ec8c2ac95aeb53 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa34f282ca2252f4184f29f62467642ef27436d977be932a1a8b81c7ad7201c6 +size 424136 diff --git a/vlm/train/LKUfuWxajHc/1.png b/vlm/train/LKUfuWxajHc/1.png new file mode 100644 index 0000000000000000000000000000000000000000..579f6694f82c33d60e3efcbe01a09a14a0746b72 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72d785c24da944be8d8223e67068e26c0666f49485222775972a0daabad6abae +size 466831 diff --git a/vlm/train/LKUfuWxajHc/10.png b/vlm/train/LKUfuWxajHc/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e932e38bcfd232783e89596e63ff280e82b8e3f0 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb835fc6ba1609a0a7aec92d3429168f8d223c0386cfc6588226a48b3103d27 +size 620386 diff --git a/vlm/train/LKUfuWxajHc/11.png b/vlm/train/LKUfuWxajHc/11.png new file mode 100644 index 0000000000000000000000000000000000000000..28501219b0cb518f2717b37564f716daf8425671 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2d61ada217cbad0dec9db52f971d4efbf917e5c805e5844350788c78b19294 +size 619848 diff --git a/vlm/train/LKUfuWxajHc/2.png b/vlm/train/LKUfuWxajHc/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ab0e024be9d9731e7810023c31104cdae67dd2a --- /dev/null +++ b/vlm/train/LKUfuWxajHc/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1346296fb7a32929b1c2acdc385e727787e83bfe219e3493d6ae0c32d0120c78 +size 434341 diff --git a/vlm/train/LKUfuWxajHc/3.png b/vlm/train/LKUfuWxajHc/3.png new file mode 100644 index 0000000000000000000000000000000000000000..72efe1f5b5f99f966e017cb8c3753509958424b7 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f58d792a7e26b9dea3d5184103e510a1f1aad4472ca1aa30c932556706df877 +size 485179 diff --git a/vlm/train/LKUfuWxajHc/4.png b/vlm/train/LKUfuWxajHc/4.png new file mode 100644 index 0000000000000000000000000000000000000000..21183769eff9d3de64118c1fa6a33ae5d4705d82 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6289dc029466c86b2a26b7ce8a17675309798e76c62bb99b9fd6b261ba95afc8 +size 548090 diff --git a/vlm/train/LKUfuWxajHc/5.png b/vlm/train/LKUfuWxajHc/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cdb171b1465e88238bd92262b6ae5e92ba537137 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebebb522554466e7578641d7efd09d8d6eccdc7d0c7d6b8860eca52bde462503 +size 462995 diff --git a/vlm/train/LKUfuWxajHc/6.png b/vlm/train/LKUfuWxajHc/6.png new file mode 100644 index 0000000000000000000000000000000000000000..23cfc9e0af443a1163a1f4703c6451437dfa54e8 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958e8ed05936a9f7c36d19cbb99207b866a4b8625b93ed3f5c6e485f27804b1b +size 594626 diff --git a/vlm/train/LKUfuWxajHc/7.png b/vlm/train/LKUfuWxajHc/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d29f7537ac2afdc99957f4542f3cb438d2072940 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606b4648d663c4649b0bf76ed365c8b46c4466d379374fc15931faabb4fcb4c2 +size 486743 diff --git a/vlm/train/LKUfuWxajHc/8.png b/vlm/train/LKUfuWxajHc/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3f5f825e399436ab1f5736c8a464c4d715040bc5 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa3631c8d866987719a4c673dbe52eb701a8c68bd13cd467ec2dcd847141689 +size 851318 diff --git a/vlm/train/LKUfuWxajHc/9.png b/vlm/train/LKUfuWxajHc/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0eb65ddfbeba168d41eeafeec3d77c3b3daf2d61 --- /dev/null +++ b/vlm/train/LKUfuWxajHc/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0656fd21d6e848766cc22c5a04f84a84474a747b6a161769a7ddca286dbf1b +size 579923 diff --git a/vlm/train/LKoMTwTuQnC/0.png b/vlm/train/LKoMTwTuQnC/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b869b5b2e1c6d9f8d7bd4ccc1121dcea03b5042f --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993c14e6f20b255cb1b8b2e81b664900143c528c683882a0ebbede704879fe96 +size 467173 diff --git a/vlm/train/LKoMTwTuQnC/1.png b/vlm/train/LKoMTwTuQnC/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9aaf5db6f8fe51e8f51b30f09b3b5430e3ea3cb5 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a84dbbed62defdfc9da20de8cc47b846b67ac3281abc4af6e9e88334fd35773 +size 613171 diff --git a/vlm/train/LKoMTwTuQnC/10.png b/vlm/train/LKoMTwTuQnC/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d781078edb7dad6e1fb2af51b800b335564a2054 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a356292aae7dd29c9bf28f1b659d38145418187c64d05938ae405bdd9f061e6 +size 578618 diff --git a/vlm/train/LKoMTwTuQnC/11.png b/vlm/train/LKoMTwTuQnC/11.png new file mode 100644 index 0000000000000000000000000000000000000000..61276f4f38aad9169feba0045ab233bce2c47ba8 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e357365e30d17b12acec23301c82d124712335ac7cf98ee9c19712670930be30 +size 542910 diff --git a/vlm/train/LKoMTwTuQnC/12.png b/vlm/train/LKoMTwTuQnC/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a521ae4c4f46b6cf2effe84e21798a4478514529 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab3fae30353d672331cc591082974f78ecb8521ceda3572330c21e196a3fa3d +size 554442 diff --git a/vlm/train/LKoMTwTuQnC/13.png b/vlm/train/LKoMTwTuQnC/13.png new file mode 100644 index 0000000000000000000000000000000000000000..92dbe4d476130d88fc3724d953ceacc3a2ea99fc --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d2b69118cbc70047799631c58887d449d228d4498d497d8eb5ab95230f61577 +size 548377 diff --git a/vlm/train/LKoMTwTuQnC/14.png b/vlm/train/LKoMTwTuQnC/14.png new file mode 100644 index 0000000000000000000000000000000000000000..20a48cf18fc2c5e07d0dd3dd6aa83880e140f121 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22c96c0e23c73770664f72b6dc9721abe8271696ed0eae2d2f7525aa8deced4 +size 546863 diff --git a/vlm/train/LKoMTwTuQnC/2.png b/vlm/train/LKoMTwTuQnC/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f2210df164a23e90e36d965f55a42d03c8ae147 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57439a1536f3158fc30233c7f0ee3cb0b419fd3be51b35bcc94c8adb2b9fad8d +size 579566 diff --git a/vlm/train/LKoMTwTuQnC/3.png b/vlm/train/LKoMTwTuQnC/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a3abb0f4d31f0d99010debdda28da0b322d5e4fd --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:034d5a18103784d139606412055a47b7a43824030b0aabd80aeccd3e03bc2ebb +size 634929 diff --git a/vlm/train/LKoMTwTuQnC/4.png b/vlm/train/LKoMTwTuQnC/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ee568e884358de9774c439aec238cb54d095f65f --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50cb3bc5054f426d263d05ca0989bfce30ec697aa35491df8779732c6d720dc +size 623447 diff --git a/vlm/train/LKoMTwTuQnC/5.png b/vlm/train/LKoMTwTuQnC/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3239f26aeb9a09c8af43fdb7757c42daf6041cdd --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10eaafe9e3056abc8400e5af5e3b92afa297a7eddb23843a0e70ddef5b223baf +size 641640 diff --git a/vlm/train/LKoMTwTuQnC/6.png b/vlm/train/LKoMTwTuQnC/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2bca3c5402e3334b3b24a6bfb7822c7b6bcd21f0 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d86a531260c02f687bb68b2605a89d81396c5d7f5d1a1a5b3fe19cb0745fe7a +size 647838 diff --git a/vlm/train/LKoMTwTuQnC/7.png b/vlm/train/LKoMTwTuQnC/7.png new file mode 100644 index 0000000000000000000000000000000000000000..76701d20706a1623d62230604d72b3539006897d --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f64442643b7562a24a69f453c15ed6137728d901d9aa7da4cb464220e62f4fc +size 595392 diff --git a/vlm/train/LKoMTwTuQnC/8.png b/vlm/train/LKoMTwTuQnC/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a4d7c4fc9338c5c656f71dac81f210a2a68783f4 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f49701457a7abc3ce64bbe3b17bc430a73758a74fd7e7cf4578f5fdf8281535 +size 1220741 diff --git a/vlm/train/LKoMTwTuQnC/9.png b/vlm/train/LKoMTwTuQnC/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2f0d1e29d0dca1b93ca553626af5ab71bcaad6 --- /dev/null +++ b/vlm/train/LKoMTwTuQnC/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dac7ed7c24707420b0ed74be508a83a4b4f0f50b626ebdbbb6dd9fd101cc0fc +size 519270 diff --git a/vlm/train/MBH29cOeohr/0.png b/vlm/train/MBH29cOeohr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d8b03883b0a58ded1876c06b53abbcf706377c13 --- /dev/null +++ b/vlm/train/MBH29cOeohr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:517ce85a3061898ce41d6ca6d9e49e28cfa3cda821a4f0e9c6d81f7daa9435bc +size 443334 diff --git a/vlm/train/MBH29cOeohr/1.png b/vlm/train/MBH29cOeohr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8b44cdd96f5cfa194f3d5d32ca74c2bf227f7158 --- /dev/null +++ b/vlm/train/MBH29cOeohr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0e5fba10d6494ffce5cd38cd023c04a591049a6d938ed357b70ce0ad412b91 +size 631674 diff --git a/vlm/train/MBH29cOeohr/10.png b/vlm/train/MBH29cOeohr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..cc48137cf875d4d2e52293b2f8eddb99acb6491a --- /dev/null +++ b/vlm/train/MBH29cOeohr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f24b3dd358027465a6ae683519ce3f021f4da8fc13dddd82b197156ca1d93d +size 643631 diff --git a/vlm/train/MBH29cOeohr/11.png b/vlm/train/MBH29cOeohr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..56d459ef22b262629d1e48041200457f4fbac91b --- /dev/null +++ b/vlm/train/MBH29cOeohr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf6045a1774abae3e689074584a3669193d411b840a4aee850855c58e1c7d94 +size 649606 diff --git a/vlm/train/MBH29cOeohr/12.png b/vlm/train/MBH29cOeohr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e46ad8679968aa2b8d2460aa2d5b3e4e4a62a5ab --- /dev/null +++ b/vlm/train/MBH29cOeohr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25cb5d3d25ae35271c33e2388cb2120c30e82c7ac3ec9edaf6afe8a06bef0e11 +size 477890 diff --git a/vlm/train/MBH29cOeohr/2.png b/vlm/train/MBH29cOeohr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bc557a82206ee00e02de7c8c4d6e5afb7895ad52 --- /dev/null +++ b/vlm/train/MBH29cOeohr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910e4e3e2b935eeabce5bc812b1fc2e58ae187a4fdd577308c539879223add28 +size 595076 diff --git a/vlm/train/MBH29cOeohr/3.png b/vlm/train/MBH29cOeohr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..096df92f3f8bede4ee498c666204a6898a9c5ba1 --- /dev/null +++ b/vlm/train/MBH29cOeohr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c794a91ac434f60ec429d1744b8f617760c96908b46e19ad378347f4a9ada09 +size 465788 diff --git a/vlm/train/MBH29cOeohr/4.png b/vlm/train/MBH29cOeohr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c6762fd57a6f9c9f6a1a5e41fd933b5cb72ef9b5 --- /dev/null +++ b/vlm/train/MBH29cOeohr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eeeacce16cc7d4bde7cb0839bef69a3b59f565060af69231477bd68be24d1c6 +size 449594 diff --git a/vlm/train/MBH29cOeohr/5.png b/vlm/train/MBH29cOeohr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4e6f27439e39fdbf4f438ee79bd85d6d661ab2c7 --- /dev/null +++ b/vlm/train/MBH29cOeohr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f1993943b9bc2a141bb872a3e3754d6e4be938affdab4fd9f25128eaf3b189c +size 444073 diff --git a/vlm/train/MBH29cOeohr/6.png b/vlm/train/MBH29cOeohr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..23ff9018117dced39aecdfe92626a261bea94ec9 --- /dev/null +++ b/vlm/train/MBH29cOeohr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9fdd7f2369a8ecd73d9d0a893ed9a852222aca8b645078edb5a9f2d120a94e +size 470245 diff --git a/vlm/train/MBH29cOeohr/7.png b/vlm/train/MBH29cOeohr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0d1273a8b38ef34a735cfcacc70a0ed9940e0eb2 --- /dev/null +++ b/vlm/train/MBH29cOeohr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d8dc6dfeb54237e38004ac6d64579d69d23760a280614be46e929d605abc4a +size 537085 diff --git a/vlm/train/MBH29cOeohr/8.png b/vlm/train/MBH29cOeohr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bbf799918d3e487dbe285aa4964d32168aa47416 --- /dev/null +++ b/vlm/train/MBH29cOeohr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a325c77090e4eae52cc7bf1212afc4302ae442622103f76fd8fd1147d161f0 +size 549477 diff --git a/vlm/train/MBH29cOeohr/9.png b/vlm/train/MBH29cOeohr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7bfee4ba6f242875d9c483239d562d4fe6018ac4 --- /dev/null +++ b/vlm/train/MBH29cOeohr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b9ebcd24b48ee0479f5ee7fab78d1c9cfd6278787705064a7b9935530ab44e +size 620624 diff --git a/vlm/train/Mh1Abj33qI/0.png b/vlm/train/Mh1Abj33qI/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f31c499fcaaf234bbc06e7368917e02e4e6691c5 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f397f1290b4be341eeddc7fcbeb9e06d2078a392740b897722366c36c98020 +size 497861 diff --git a/vlm/train/Mh1Abj33qI/1.png b/vlm/train/Mh1Abj33qI/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a9cd24fbd1f2df840a7f7b8587d092fe58899046 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20fa679e89010aea22bf46a876bd9de714208764ba740300cb8d359b7f95c6f +size 602271 diff --git a/vlm/train/Mh1Abj33qI/10.png b/vlm/train/Mh1Abj33qI/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8e1feeed89fe25b316d3f5b3dba22d0615614623 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4d5ad1246e46a0a8e8cec162978dff79331ab540e700d91ac866dd7aa08209 +size 588442 diff --git a/vlm/train/Mh1Abj33qI/11.png b/vlm/train/Mh1Abj33qI/11.png new file mode 100644 index 0000000000000000000000000000000000000000..59e4ff26304b1fa44272003eae880d707c02bfac --- /dev/null +++ b/vlm/train/Mh1Abj33qI/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7332311d4b769f95d70551acaedfcaea3c18d66bd7107e8a03ce8d9e43eaf09 +size 123532 diff --git a/vlm/train/Mh1Abj33qI/12.png b/vlm/train/Mh1Abj33qI/12.png new file mode 100644 index 0000000000000000000000000000000000000000..209149a435dd07f3a3c05ce98ada869290a9b6a2 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f399c10280389227353b27f5e637f40f20782c7fe9d1f41e192c7ac9e4d24d +size 352089 diff --git a/vlm/train/Mh1Abj33qI/13.png b/vlm/train/Mh1Abj33qI/13.png new file mode 100644 index 0000000000000000000000000000000000000000..21a2659791e6121f41a3e52438b202efc5f35024 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fe0a85a99062fd9ccf226ff2c8858b2882e82def7a2f9390f7d80db33cf163 +size 388986 diff --git a/vlm/train/Mh1Abj33qI/14.png b/vlm/train/Mh1Abj33qI/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5ee493439c466825e61bfe67e8e30f6aef51b3f3 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d87e1fb0f393706aa4e9288a2abae788457baef71f3d77ed79d5d9a3ad69a28 +size 527510 diff --git a/vlm/train/Mh1Abj33qI/15.png b/vlm/train/Mh1Abj33qI/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b444089c5718aab468d73b7774327b41afc7dbc4 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b4cd49613f637138df1f3b420114d861cebb1c7f016966177eb211071f7e40 +size 506469 diff --git a/vlm/train/Mh1Abj33qI/16.png b/vlm/train/Mh1Abj33qI/16.png new file mode 100644 index 0000000000000000000000000000000000000000..3003060b61ff43465f9be650637a294eb12a4b32 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79d0256a23cf2eb4dc40bf8ed7c7e23eb3a8d2b94cbb3757d13ff5c038efb2b +size 481879 diff --git a/vlm/train/Mh1Abj33qI/17.png b/vlm/train/Mh1Abj33qI/17.png new file mode 100644 index 0000000000000000000000000000000000000000..6172ec19d99cd4a53ed6b569e31c0fc540cd6026 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0661b43d5528cfecb2eba2738734f7e2edd1f44e452897585fc26b32e450ee93 +size 361775 diff --git a/vlm/train/Mh1Abj33qI/2.png b/vlm/train/Mh1Abj33qI/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7860869143520d4b3dc785415e3352ccd0f3cd12 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c1233e19f2eb2bd5112c4332a275dc34b5388d5b8d958aab03a3583322a14b +size 527895 diff --git a/vlm/train/Mh1Abj33qI/3.png b/vlm/train/Mh1Abj33qI/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0713b64c60a96e8377f7069b74d6b8e9f1404127 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ffdd6b9310bead1522e740583ac42b5e7ab7e152b5920004e81ca8f06d0295 +size 522442 diff --git a/vlm/train/Mh1Abj33qI/4.png b/vlm/train/Mh1Abj33qI/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b1fabe8018259a37a8800a16121f451ad1027c7c --- /dev/null +++ b/vlm/train/Mh1Abj33qI/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e18ef5e079a0bacac5506ce000297382b69c4846d88f2ab7038fd7d36c7bfd9 +size 480234 diff --git a/vlm/train/Mh1Abj33qI/5.png b/vlm/train/Mh1Abj33qI/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2bab9a5ffd5303f632bd8a401af3e237962cdbb2 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97871a5da4bf10ace046a9fe1d23b4c582572e90f98c26102b350e4161eaab73 +size 527755 diff --git a/vlm/train/Mh1Abj33qI/6.png b/vlm/train/Mh1Abj33qI/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7cf2b2b95c79d62197486ddfd765fd71b539de20 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1f5899d96dcf1abdeb157264bcd941b16628f8a1e502660bd3e3089e44dae3 +size 635283 diff --git a/vlm/train/Mh1Abj33qI/7.png b/vlm/train/Mh1Abj33qI/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bc549760e010805289142fc1ac920f58ed1c4ffd --- /dev/null +++ b/vlm/train/Mh1Abj33qI/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13b65726a57be463cb8c3faaeed244f38ccd20a6722d4afd54d9cb98548cd7a +size 797879 diff --git a/vlm/train/Mh1Abj33qI/8.png b/vlm/train/Mh1Abj33qI/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6bb46321a683a18a93afbea0a7090757de0ad980 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7034bbe5e9c938d0d72a7242ab0a634549f9dd037152c9231fed22c4feb890ef +size 588448 diff --git a/vlm/train/Mh1Abj33qI/9.png b/vlm/train/Mh1Abj33qI/9.png new file mode 100644 index 0000000000000000000000000000000000000000..74b7c0cd7c00946e40d31ce1721725e619b8eb89 --- /dev/null +++ b/vlm/train/Mh1Abj33qI/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44593c7ca075fd0be622429b243a699d676b0d223e92b1b444f298d237232e89 +size 565254 diff --git a/vlm/train/S1Bb3D5gg/0.png b/vlm/train/S1Bb3D5gg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8921510791b499961b77af1951ee6bec1c8cbf0c --- /dev/null +++ b/vlm/train/S1Bb3D5gg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638f8bdb6903d0772a3318c3218e9529093660ef515498c5d2b84737f13db19d +size 512252 diff --git a/vlm/train/S1Bb3D5gg/1.png b/vlm/train/S1Bb3D5gg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..459149cbc7ccba52b3f45c2a80a57b75ac3e4f4c --- /dev/null +++ b/vlm/train/S1Bb3D5gg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6eca33ae80b2b93f27d1333cd14c7ba5bf358f450d9ccdb1e6482a344b67d56 +size 593016 diff --git a/vlm/train/S1Bb3D5gg/10.png b/vlm/train/S1Bb3D5gg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e859dc3c1096296d90f8ea1260e3da499dda65ee --- /dev/null +++ b/vlm/train/S1Bb3D5gg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ff530de127fe9f0447154af06dd5d25ccfbf3a24b1acc1c2f668317ae00e14 +size 501300 diff --git a/vlm/train/S1Bb3D5gg/11.png b/vlm/train/S1Bb3D5gg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..eba94ba433af79daad769df2d4250ebff14b04c8 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c60fd8cb9115b988119032a8a25a340945df1dcfa0a0c402f69f0d2e2bd5fd +size 359115 diff --git a/vlm/train/S1Bb3D5gg/12.png b/vlm/train/S1Bb3D5gg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2a64012775e84bf647d496abdf3f36a01b102ca9 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d8ff8e2c8540526fadf976ad923e80a783eb8e8683293984739cf5d5526042 +size 496532 diff --git a/vlm/train/S1Bb3D5gg/13.png b/vlm/train/S1Bb3D5gg/13.png new file mode 100644 index 0000000000000000000000000000000000000000..eccf4873883551ab419b2a1b7a0cac976f6a8699 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f40014b485c9e764a33ecd4221a513f25633155ae2bd57297e06b35301139c +size 364619 diff --git a/vlm/train/S1Bb3D5gg/14.png b/vlm/train/S1Bb3D5gg/14.png new file mode 100644 index 0000000000000000000000000000000000000000..727b2f175de69607714918e597cb18ce4a64de80 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d075402436d5fd64f82c2d233b59684960aa6d3c78d18b3ede1fb8c6b5759ea +size 228365 diff --git a/vlm/train/S1Bb3D5gg/2.png b/vlm/train/S1Bb3D5gg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8d7d1973070bc458adb266f73c3463c9f7d0d5b1 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b9624f30a017a871014bc0a05ef4d7d755b50c15f3fd300a08c3a2cc96d3ed +size 538120 diff --git a/vlm/train/S1Bb3D5gg/3.png b/vlm/train/S1Bb3D5gg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..50fc82d2f66d76bddb57158cb24eda383a6c078b --- /dev/null +++ b/vlm/train/S1Bb3D5gg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ada09e80ff808630efd9a20c4d0744ed974a40b488995a9bb0bf26c8a24154 +size 567366 diff --git a/vlm/train/S1Bb3D5gg/4.png b/vlm/train/S1Bb3D5gg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..48b747baa19c09106ba30d455a665bdc2e5fc19b --- /dev/null +++ b/vlm/train/S1Bb3D5gg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a479baf57bb53eea1c7f381da2074c13acd347b4cd5bdadb6bce1d38818224 +size 567715 diff --git a/vlm/train/S1Bb3D5gg/5.png b/vlm/train/S1Bb3D5gg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8c19c3a2e7174c282b5be0133a91b87065881629 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b960b1d06626e1a0a321b2f22a4d5c0db448c47293fad550456298ee5466f916 +size 546141 diff --git a/vlm/train/S1Bb3D5gg/6.png b/vlm/train/S1Bb3D5gg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a566c526a2bd0e6dea48772b19629a087fdc51e0 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978095212af99ed9061b1ba6b9fdf5bd888040bbc5e837aa728a0f79ae33aa36 +size 571464 diff --git a/vlm/train/S1Bb3D5gg/7.png b/vlm/train/S1Bb3D5gg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9beaa8521d391212ecc75d02c11768cf0488f08a --- /dev/null +++ b/vlm/train/S1Bb3D5gg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63d53d3664e5a4d687c9ce94c0dc7fbb1eb6067b04cd79950c67cf475936f90 +size 646828 diff --git a/vlm/train/S1Bb3D5gg/8.png b/vlm/train/S1Bb3D5gg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..64141bbf330890140842033106b7082d63dea101 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb5700bbbf9a3cd7d37cd9fa2014a992fef9133146c08deab93f697f813590c +size 544434 diff --git a/vlm/train/S1Bb3D5gg/9.png b/vlm/train/S1Bb3D5gg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0304fda7d0d2489eac229be381eedafe73f153 --- /dev/null +++ b/vlm/train/S1Bb3D5gg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f523d071ffb0f5abaef95a7acc27b1aae3fea9e12c308c4b8db8828949823af3 +size 578832 diff --git a/vlm/train/S1jE5L5gl/0.png b/vlm/train/S1jE5L5gl/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9e3c6da62af1e84f84a3df84bed15f6d3c3c7809 --- /dev/null +++ b/vlm/train/S1jE5L5gl/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49839dcf4de11239706acbb918bad5ad32fd36a5bdf73444a0df05a48968d4e +size 473373 diff --git a/vlm/train/S1jE5L5gl/1.png b/vlm/train/S1jE5L5gl/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cf770dd9ebe7326b02437a6e37b48e030b30e738 --- /dev/null +++ b/vlm/train/S1jE5L5gl/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0069df553346aa1b38403ed6d308372d0fb7a1ae6f8daf811127ebe76d96d1 +size 550457 diff --git a/vlm/train/S1jE5L5gl/10.png b/vlm/train/S1jE5L5gl/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bd334c41faa65224f127c218936e3800593f0335 --- /dev/null +++ b/vlm/train/S1jE5L5gl/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071ae8a75bab073871be87cbeac80fdff5f131d0278eaf67c3acc58fbfabf7d1 +size 565727 diff --git a/vlm/train/S1jE5L5gl/11.png b/vlm/train/S1jE5L5gl/11.png new file mode 100644 index 0000000000000000000000000000000000000000..080cbf5c3b381c19c0d6da9820ab7767f41b3089 --- /dev/null +++ b/vlm/train/S1jE5L5gl/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d678a1baa87fcb92a5f16ff0f45fc7b9f02beea6062d98853c4cac43bf3a1a34 +size 224496 diff --git a/vlm/train/S1jE5L5gl/12.png b/vlm/train/S1jE5L5gl/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ee064ae710fa648b23d21aeb242944877e241847 --- /dev/null +++ b/vlm/train/S1jE5L5gl/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7cfd37dc52131e6420aee8bd28bb45e13257e79ca4035b889ca25353920b4f +size 328346 diff --git a/vlm/train/S1jE5L5gl/13.png b/vlm/train/S1jE5L5gl/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0ac2baca1c3a660bd2d86426d8316feacf74ff1e --- /dev/null +++ b/vlm/train/S1jE5L5gl/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67fca9470901d80680808bb8e5ca6dd5715e34257837cfd5467b8efed6d1555 +size 376269 diff --git a/vlm/train/S1jE5L5gl/14.png b/vlm/train/S1jE5L5gl/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0b8cc37b5897d16fd1a037558003fab11e8492b7 --- /dev/null +++ b/vlm/train/S1jE5L5gl/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15bd707b3b19de4580f030e1bb3329b2949a32dd70fc8eea605c02f64b62660 +size 504793 diff --git a/vlm/train/S1jE5L5gl/15.png b/vlm/train/S1jE5L5gl/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8e56ec13516897fdfe0112f133f87a0627d745ba --- /dev/null +++ b/vlm/train/S1jE5L5gl/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f34c5590627ee759e3d8586ee5b97a47d34c7d526521f469ea3459d47f5a40 +size 479285 diff --git a/vlm/train/S1jE5L5gl/16.png b/vlm/train/S1jE5L5gl/16.png new file mode 100644 index 0000000000000000000000000000000000000000..32182cacb0905d33d8e4bcd387be3ee251ee0280 --- /dev/null +++ b/vlm/train/S1jE5L5gl/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f7685ff5e3b92c6c0e259b724a611fddeba61f974ead512852698d42a6a2f8 +size 496661 diff --git a/vlm/train/S1jE5L5gl/17.png b/vlm/train/S1jE5L5gl/17.png new file mode 100644 index 0000000000000000000000000000000000000000..2c46f70fcf73f242bdd743d10816b00f9e71424d --- /dev/null +++ b/vlm/train/S1jE5L5gl/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e44e0b045c25d9575b7309da578cf672247ceee9f76ebb8cd6018e6b60fa28 +size 429601 diff --git a/vlm/train/S1jE5L5gl/18.png b/vlm/train/S1jE5L5gl/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b646e134a11d3a9a49ca952dedd7afbcf3fe131d --- /dev/null +++ b/vlm/train/S1jE5L5gl/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3092dab7de3d6af69b28653b19cf896bb56d86f4d8f62c4d783898965a5c06b0 +size 325920 diff --git a/vlm/train/S1jE5L5gl/2.png b/vlm/train/S1jE5L5gl/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3442014c98e4362de08a0ef535ef93ddfc8e09bf --- /dev/null +++ b/vlm/train/S1jE5L5gl/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12bb9ef70a231704d62f67077c151d38ac528f13505220a17874f5f396663238 +size 530838 diff --git a/vlm/train/S1jE5L5gl/3.png b/vlm/train/S1jE5L5gl/3.png new file mode 100644 index 0000000000000000000000000000000000000000..17a0771cf18fe431ce2bb7ba2dfedf2140448063 --- /dev/null +++ b/vlm/train/S1jE5L5gl/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb49d210671e5c9b12edaf583870756361738dfa31e4c3b4510028a34ac3b30 +size 522433 diff --git a/vlm/train/S1jE5L5gl/4.png b/vlm/train/S1jE5L5gl/4.png new file mode 100644 index 0000000000000000000000000000000000000000..59ffce458cc57c2d7462c7934833663ac31208a9 --- /dev/null +++ b/vlm/train/S1jE5L5gl/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137bbda00c20dc7561460a599f2dc23138b1bbd13a06663e003b31e4e378d1cb +size 545152 diff --git a/vlm/train/S1jE5L5gl/5.png b/vlm/train/S1jE5L5gl/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8b8ff80eca8eef999e869ff38c9ccbc5fc04728e --- /dev/null +++ b/vlm/train/S1jE5L5gl/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bfbb5cba0df4a7b27a024a836127a028b52205feb3f294f97553d55c72be85 +size 531151 diff --git a/vlm/train/S1jE5L5gl/6.png b/vlm/train/S1jE5L5gl/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bae2e51311f06e6fdde21fbb57121e080b04852b --- /dev/null +++ b/vlm/train/S1jE5L5gl/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e230993937a6dd6161106987cad543cfa45f850826f03f137792eb8f74350f +size 603884 diff --git a/vlm/train/S1jE5L5gl/7.png b/vlm/train/S1jE5L5gl/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e39cbed44b331e4b41f665ea5d3fdb93a0ba24dc --- /dev/null +++ b/vlm/train/S1jE5L5gl/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a269be54c82179b1a6b21992a6e4c1609e4ec7b4f32bc043f3aad0dcec57fe2 +size 534445 diff --git a/vlm/train/S1jE5L5gl/8.png b/vlm/train/S1jE5L5gl/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e2754dfdd5bab00cdd05893d754886506b2337d3 --- /dev/null +++ b/vlm/train/S1jE5L5gl/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64da6452c518f939b784f69e38adfd140bd26934231bb474226df0b85e5d90d9 +size 502678 diff --git a/vlm/train/S1jE5L5gl/9.png b/vlm/train/S1jE5L5gl/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ca295944242a1c812d8e181dd8147815a9318fea --- /dev/null +++ b/vlm/train/S1jE5L5gl/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3964ddfca4ec21532928d56ab8857c168d2eab2d6c8146cc033ba0557a53ff21 +size 591951 diff --git a/vlm/train/S1lN69AT-/4.png b/vlm/train/S1lN69AT-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ff28e0e90c809aafaae795ccc38a9c45da7fac02 --- /dev/null +++ b/vlm/train/S1lN69AT-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fa0d30d69abcfda32b4fb10d03272b4af9d36e6b5b9234c1cdeaee0325af39 +size 536891 diff --git a/vlm/train/S1sRrN-CW/0.png b/vlm/train/S1sRrN-CW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1ed02035280127c622204640e0671b8b04494ef1 --- /dev/null +++ b/vlm/train/S1sRrN-CW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2a8711e731f48b7c5be7fc60e9bdfc3863ff0b85e5a61b56f2e0b63a57928c +size 528518 diff --git a/vlm/train/S1sRrN-CW/1.png b/vlm/train/S1sRrN-CW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cd854cee7e6d59c19db39bbf31a25c266d0521be --- /dev/null +++ b/vlm/train/S1sRrN-CW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f63b39fdcae7ffbaf1afe11783477477005c51363932aadc3802e3f862e06b6 +size 579755 diff --git a/vlm/train/S1sRrN-CW/2.png b/vlm/train/S1sRrN-CW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..eb2f2b2b69305705ae20fd6d90ce880eadbf4f58 --- /dev/null +++ b/vlm/train/S1sRrN-CW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf7865a0d4ea23e759490cda4064ba51dfb79f225928d674845a51ad08648e8 +size 582566 diff --git a/vlm/train/S1sRrN-CW/3.png b/vlm/train/S1sRrN-CW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fd09f43ff856a13584cea1b8ecba004e087db88d --- /dev/null +++ b/vlm/train/S1sRrN-CW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681e5883a5bcf6706ce0789d46a7b7c77e358f6d3ad705dfd84c0c6f857e176c +size 402394 diff --git a/vlm/train/S1sRrN-CW/4.png b/vlm/train/S1sRrN-CW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..57d70e714cb6a2b0e3d5f35b3e8fa82304ba200f --- /dev/null +++ b/vlm/train/S1sRrN-CW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99bb4407e7210b7cfb1464f897f85cba8d9624615811d6cb4969fdc1a1e2ebb +size 448937 diff --git a/vlm/train/S1sRrN-CW/5.png b/vlm/train/S1sRrN-CW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..acb19f1c5dc3b790a77175a35a9440b99e48c9ca --- /dev/null +++ b/vlm/train/S1sRrN-CW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0517a259adb99da8a671c741985ee5493ddea9ed64132e70418e8cebf33af3a +size 503838 diff --git a/vlm/train/S1sRrN-CW/6.png b/vlm/train/S1sRrN-CW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2102ee0d10c04be356bdc00421ab4bdc1c0754d5 --- /dev/null +++ b/vlm/train/S1sRrN-CW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178ef9abfbf81c6248c5838d284f8f883a1e43161fa65831041706b96f94c86d +size 551498 diff --git a/vlm/train/S1sRrN-CW/7.png b/vlm/train/S1sRrN-CW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4f06f9f9241ef7617bbfd96f2d36515c095f8e0d --- /dev/null +++ b/vlm/train/S1sRrN-CW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a8d5bb124d3d1e2ed53de5cb5bc7930b2b8695efe9529e32464d17d342cc1d +size 513959 diff --git a/vlm/train/S1sRrN-CW/8.png b/vlm/train/S1sRrN-CW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d445373830fc347721c9fe6a565162050d6c733a --- /dev/null +++ b/vlm/train/S1sRrN-CW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614d3c614a99bb87a5e8ece64c0f37062db92414038825da4403f2d273270869 +size 536380 diff --git a/vlm/train/S1sRrN-CW/9.png b/vlm/train/S1sRrN-CW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..475cce5045f8e6221a1bfa5661455a35ee5c768e --- /dev/null +++ b/vlm/train/S1sRrN-CW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c688f9096aaad49c374ea0a02551db3a21cf9623efefe252680c2d6ea10b4b +size 170866 diff --git a/vlm/train/SJSVuReCZ/0.png b/vlm/train/SJSVuReCZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..51ad4546d87e6fc311fbc049862863899865e2d4 --- /dev/null +++ b/vlm/train/SJSVuReCZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c74248722b15b8ea5277d36aa53d2442e8598543d6365669941789435164c6 +size 496410 diff --git a/vlm/train/SJSVuReCZ/1.png b/vlm/train/SJSVuReCZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6f907c5c73f3cbb5cb4bbc92ff3394373225ec5c --- /dev/null +++ b/vlm/train/SJSVuReCZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94ecace3259de4b92b33eb30171ac060ba6868dd12f9ea82bc82bd32e2f5367 +size 527784 diff --git a/vlm/train/SJSVuReCZ/10.png b/vlm/train/SJSVuReCZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a9793e34ca1d5163314224371e6abf9d7c246183 --- /dev/null +++ b/vlm/train/SJSVuReCZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774a5a3d99e5e5d733171e8970cdac44d86002a5c45dcd4bf6f36e14e2e48b66 +size 314729 diff --git a/vlm/train/SJSVuReCZ/11.png b/vlm/train/SJSVuReCZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d044784cfb16c11776453bb8ac9c88d3c0f3ee4e --- /dev/null +++ b/vlm/train/SJSVuReCZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a78f03df9a4060ffbc89bc2ff7d596520d7012867f244f07e7ec8d443b55d6 +size 299208 diff --git a/vlm/train/SJSVuReCZ/2.png b/vlm/train/SJSVuReCZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b81d64f02ea80656475692b194b8faf9cafd151f --- /dev/null +++ b/vlm/train/SJSVuReCZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340554238935a8f8276f4136cc06397bec2843f4e55ec9e053c7df7c5882aec6 +size 530481 diff --git a/vlm/train/SJSVuReCZ/3.png b/vlm/train/SJSVuReCZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b05d090d1360408aa5480b4d8efd759467e6488d --- /dev/null +++ b/vlm/train/SJSVuReCZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f4c08f2fed5384e6e5aa30979170a92d6739b66acd78713636648c3f7d24cb +size 374814 diff --git a/vlm/train/SJSVuReCZ/4.png b/vlm/train/SJSVuReCZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2515804984fb3db3c07c9ab653ba4b79281694e0 --- /dev/null +++ b/vlm/train/SJSVuReCZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd756bef9f034768d1891dc993670d30c256d6a2a8589cc39c80f3c6e7304d40 +size 542140 diff --git a/vlm/train/SJSVuReCZ/5.png b/vlm/train/SJSVuReCZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b14846e0fcf2fc9cf4b4caddcfe6edfd88ef8013 --- /dev/null +++ b/vlm/train/SJSVuReCZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8964b136fb7900b2f7311c98d43dab5a42765860846c0aebf6d2f3086e77069 +size 536866 diff --git a/vlm/train/SJSVuReCZ/6.png b/vlm/train/SJSVuReCZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0f39fe2d0bde05a4cf5e9edbb27cdf12e6329d4c --- /dev/null +++ b/vlm/train/SJSVuReCZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53d6920bd2a5b4162df0992e1f28d333d90963e1726c57526226fcd67798e17 +size 570749 diff --git a/vlm/train/SJSVuReCZ/7.png b/vlm/train/SJSVuReCZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..836d3212d8a371e1a4dfbb51dc0ad78961586db3 --- /dev/null +++ b/vlm/train/SJSVuReCZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce18a811a5e0f191417e45aee10ae67c7e933d697c1e675b3eed0ac004c1ac4c +size 466873 diff --git a/vlm/train/SJSVuReCZ/8.png b/vlm/train/SJSVuReCZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..18e4d1c584bb36e3578d025e30e630d7348e2e20 --- /dev/null +++ b/vlm/train/SJSVuReCZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bff75266fe7e8dceafd0f3aaca6965fb3c17495accb14468ebe597eefe49811 +size 474226 diff --git a/vlm/train/SJSVuReCZ/9.png b/vlm/train/SJSVuReCZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..31a224543c665a19934d5953bffedc78dd5aa728 --- /dev/null +++ b/vlm/train/SJSVuReCZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3195c2b7754d4066553fff65c7b3543ae7f36ba1ff3c36babd683c103f54732 +size 363486 diff --git a/vlm/train/SJiHXGWAZ/0.png b/vlm/train/SJiHXGWAZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7c0da194f7167e3bf224c036c05497eab0d45e03 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd002242ca35ef0671afe476738dd400f8db1555da1df9aaf771f2268d6dc80 +size 606715 diff --git a/vlm/train/SJiHXGWAZ/1.png b/vlm/train/SJiHXGWAZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..29ff87f2ac0a95b9b2b55cad761f78aa0c40a6e7 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6788d53b392ae7040ba9c1145a056ba972aa8199de2e4c1524ecf4159702e4 +size 568740 diff --git a/vlm/train/SJiHXGWAZ/10.png b/vlm/train/SJiHXGWAZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ec80afa13278c4f56d128994925ea1824fdb50 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bc304a760df13bbd9fb5844d91be6d072a2c9e01091487d071d32b8b4e9b79 +size 396402 diff --git a/vlm/train/SJiHXGWAZ/11.png b/vlm/train/SJiHXGWAZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..e306845ecfb4de695a7636d3606cad83b56b8a35 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5076f4dad212e1481cead43431fc1ed2206461611ab7af2a8c47d1fa5e47801 +size 922469 diff --git a/vlm/train/SJiHXGWAZ/12.png b/vlm/train/SJiHXGWAZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..14cfe56d30b98af413b772b301967c6f3bb1e24e --- /dev/null +++ b/vlm/train/SJiHXGWAZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f05d523ccd59b8c1dbad539dbe2ed8b528767ddc6b1d7958c3ed6d4650262bf +size 468107 diff --git a/vlm/train/SJiHXGWAZ/13.png b/vlm/train/SJiHXGWAZ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7adb2bf8104bf472f67ce2b666c898f89bdabe --- /dev/null +++ b/vlm/train/SJiHXGWAZ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1f3d408d85001a963bcc404464ad406260c10ddcd0f30acd992d50a7e32bc7 +size 423059 diff --git a/vlm/train/SJiHXGWAZ/14.png b/vlm/train/SJiHXGWAZ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..23b7c91b918bb38882563456963bf340b9c4e91b --- /dev/null +++ b/vlm/train/SJiHXGWAZ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06a2de4a7b19de2e338d027f7b4c09205144b0485792f2a9238a1536a55e994 +size 428367 diff --git a/vlm/train/SJiHXGWAZ/15.png b/vlm/train/SJiHXGWAZ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..79cb98ec82cc5d58703bc70ddabf039a16142c64 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2368e05c1c4d9d2e3ecf1192a27044b25d496db06dc590d1dfadb083fc2980b +size 424053 diff --git a/vlm/train/SJiHXGWAZ/2.png b/vlm/train/SJiHXGWAZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e6936f8f138d901c640c16e9b6e3c3ec3f4a9908 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fff1496f0049b68fac5606b899676ec5772f7aedd5c373c0ce8688869029f71 +size 519793 diff --git a/vlm/train/SJiHXGWAZ/3.png b/vlm/train/SJiHXGWAZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a86106ad6c479ef2089baf7b79989911c91af60 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6432dd9540f1244ece6102b34e6de49c97e66392457c03e29e90dfe04e5f8c22 +size 564699 diff --git a/vlm/train/SJiHXGWAZ/4.png b/vlm/train/SJiHXGWAZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..46f8fdaa5b81bce84976b20132dd4e29a2b2571f --- /dev/null +++ b/vlm/train/SJiHXGWAZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1eb4c074ef0026188258e9e69163a8e85b9f8cf0e9721fad9a6219e8b957dff +size 544503 diff --git a/vlm/train/SJiHXGWAZ/5.png b/vlm/train/SJiHXGWAZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..99e84b40580fb5c2ff3224a87a51a6d3ac3855bf --- /dev/null +++ b/vlm/train/SJiHXGWAZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9069359e1bd9131d2965a6005d9bd6c4978e81f27aaad14bcf72a811596802 +size 533704 diff --git a/vlm/train/SJiHXGWAZ/6.png b/vlm/train/SJiHXGWAZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4e314d5295bba36d4d413d78dda68e55904c4ba7 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1f4311fd8d69b5657665ecc4d20287e07b6c5c4944580458084ba14b019dbe +size 565461 diff --git a/vlm/train/SJiHXGWAZ/7.png b/vlm/train/SJiHXGWAZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..57166a633684582fe0bbb99325f49090b53d018f --- /dev/null +++ b/vlm/train/SJiHXGWAZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8659a39e7ca3a2cdbb9ff77714bfaea38a29f2cba9fd635247c27be65d26fa7 +size 577106 diff --git a/vlm/train/SJiHXGWAZ/8.png b/vlm/train/SJiHXGWAZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0679c7447aa80d7dc92a529273171d00ffa83f7a --- /dev/null +++ b/vlm/train/SJiHXGWAZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fcd0b41470c226a20651c9e1a0133c9a371fa8db73849b7ef8cdcf57024594 +size 530351 diff --git a/vlm/train/SJiHXGWAZ/9.png b/vlm/train/SJiHXGWAZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ff4332f9919979ec696fb3040d182814a5730853 --- /dev/null +++ b/vlm/train/SJiHXGWAZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:180a73015866c342d12cab6a96e38d0caad8f677119561c489a4a247a0ff7990 +size 555495 diff --git a/vlm/train/SJxSOJStPr/0.png b/vlm/train/SJxSOJStPr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..876713445d2f99aaf022cc2dfc718b92dcbfa812 --- /dev/null +++ b/vlm/train/SJxSOJStPr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af09f07193219f8543e71628fadccc89e831abd55596e41b2db617efe10cbefb +size 507888 diff --git a/vlm/train/SJxSOJStPr/1.png b/vlm/train/SJxSOJStPr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e183f32a8432d9181b4fb4f147d1319ec204920d --- /dev/null +++ b/vlm/train/SJxSOJStPr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03dec342c7f9b3f0639244d9ba46f963f1ab6be31267668081b17b22834acfb1 +size 533052 diff --git a/vlm/train/SJxSOJStPr/10.png b/vlm/train/SJxSOJStPr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d337563a8dba2772ba1e11df8da092d4de1ec4e1 --- /dev/null +++ b/vlm/train/SJxSOJStPr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60cace3692d3e527a3a1db30d8f61b64132b36f4025a7cfa17327dc62f4d235 +size 341754 diff --git a/vlm/train/SJxSOJStPr/11.png b/vlm/train/SJxSOJStPr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..35453ee5ce721ee6bc291a50fbbe78884e7bac3e --- /dev/null +++ b/vlm/train/SJxSOJStPr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c0ba2a8f03fd0a1f27b7e7a7e20e3ffdb1387a17a01e883df8b3423eb973f8 +size 499452 diff --git a/vlm/train/SJxSOJStPr/12.png b/vlm/train/SJxSOJStPr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5f1c473706b14002e7a09373b4ce638f2e876062 --- /dev/null +++ b/vlm/train/SJxSOJStPr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975a66664f34c4b57827fc92d64fdb2cc38296841f72f05b1ba127d4f544a4e3 +size 482540 diff --git a/vlm/train/SJxSOJStPr/13.png b/vlm/train/SJxSOJStPr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..36db3a6928de17637c3a00e1cdad8fc7bc119e5f --- /dev/null +++ b/vlm/train/SJxSOJStPr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69881e19130749ea4da2d76e61e7fc8473cc51c8e464e143ca4cd8cf04ff14a +size 443713 diff --git a/vlm/train/SJxSOJStPr/14.png b/vlm/train/SJxSOJStPr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..fa06f3538fb6999a03a16f4c90c6464d65a72138 --- /dev/null +++ b/vlm/train/SJxSOJStPr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3978a6c9506d783f808536a46e869578887d34b1f82b778f8e415cfe6f0b5af2 +size 477164 diff --git a/vlm/train/SJxSOJStPr/15.png b/vlm/train/SJxSOJStPr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8890e47953cac203befe57aaf81fcd364d3536d8 --- /dev/null +++ b/vlm/train/SJxSOJStPr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26816e5df76c9b2f0496e37f047cbbebbca1c398d2e703ff7e59ebc478952a13 +size 394277 diff --git a/vlm/train/SJxSOJStPr/16.png b/vlm/train/SJxSOJStPr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..674205f47b04cc3cfea2b7fcea10741c68b37ecb --- /dev/null +++ b/vlm/train/SJxSOJStPr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9d7945c25d529b88561b85de3c3e0ddc197a65d011aaf641c654907c2ab73e +size 510844 diff --git a/vlm/train/SJxSOJStPr/17.png b/vlm/train/SJxSOJStPr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ebfaff0dfcaf8027f2f1483b824b11128b093c3d --- /dev/null +++ b/vlm/train/SJxSOJStPr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a670857db31a0bbde9e0ceaf1c583525556b832551fbaee7461606f0b090bf +size 464607 diff --git a/vlm/train/SJxSOJStPr/18.png b/vlm/train/SJxSOJStPr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..7536b353615cbffd07efe37f189f9ece839dadc0 --- /dev/null +++ b/vlm/train/SJxSOJStPr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7428ce847837ba91c7d3e166dccadf119bb8b8f46c191bd4a686db3c3fbcb33 +size 377535 diff --git a/vlm/train/SJxSOJStPr/19.png b/vlm/train/SJxSOJStPr/19.png new file mode 100644 index 0000000000000000000000000000000000000000..17cdefcf2c53c169fb107deb6e6da9967ea2c603 --- /dev/null +++ b/vlm/train/SJxSOJStPr/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8c79fafa26e7ac193db53f21258c887287a05099d60cb900bee9018f8d0825 +size 502812 diff --git a/vlm/train/SJxSOJStPr/2.png b/vlm/train/SJxSOJStPr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..10f496fc9dc010ca9b7357968bba27f8a7270a00 --- /dev/null +++ b/vlm/train/SJxSOJStPr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a5ea66ac04abe2aded31e19a22ebe163cb5387854934a8a2bbbc15bf7a1d5c +size 566711 diff --git a/vlm/train/SJxSOJStPr/20.png b/vlm/train/SJxSOJStPr/20.png new file mode 100644 index 0000000000000000000000000000000000000000..9b4d82c3da8f1a18dc77dced15bb4135d823d840 --- /dev/null +++ b/vlm/train/SJxSOJStPr/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f16b390ef780c14e81429a822f934ae7d77cf354b36aeaa14e0c1f3c321df94 +size 301076 diff --git a/vlm/train/SJxSOJStPr/21.png b/vlm/train/SJxSOJStPr/21.png new file mode 100644 index 0000000000000000000000000000000000000000..62afdfbd2d41e78c96f5b809b1617bb3b6551a71 --- /dev/null +++ b/vlm/train/SJxSOJStPr/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec51a89cf402659559feab9ab335745ea229f4e96d6e8f57004c716e38da65e +size 490067 diff --git a/vlm/train/SJxSOJStPr/3.png b/vlm/train/SJxSOJStPr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3b77dbfbb5cd3417a1659851b49098b39c3a9d60 --- /dev/null +++ b/vlm/train/SJxSOJStPr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e3cff932c4c53461fddc8fbde13a37703d6ae011bfc36d43c94afa2ece9313 +size 553966 diff --git a/vlm/train/SJxSOJStPr/4.png b/vlm/train/SJxSOJStPr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..024d39dd0ade5b2025c5602ec30c20c5b0534e0e --- /dev/null +++ b/vlm/train/SJxSOJStPr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3eeace8a58de60d1b0eb75776725e09aca89c13bda8b3ff5f95f9a4b7711fc5 +size 574504 diff --git a/vlm/train/SJxSOJStPr/5.png b/vlm/train/SJxSOJStPr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6144ea2ecde9a5ed69913551deb559093ad3d05d --- /dev/null +++ b/vlm/train/SJxSOJStPr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e451493d6dfaaf13a9f3843d1e9d6dc70f3897f24f968d20d9aef361a142bcf +size 556697 diff --git a/vlm/train/SJxSOJStPr/6.png b/vlm/train/SJxSOJStPr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8c280af27cd116ad941d92ae8303e8d4f83bc7df --- /dev/null +++ b/vlm/train/SJxSOJStPr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:670eab53ec29f6cd040983e8ae40939f5dd886a6c1a60c7de9f12c2abbcd14ec +size 578922 diff --git a/vlm/train/SJxSOJStPr/7.png b/vlm/train/SJxSOJStPr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..820972acff4a10369ceef498ce4c3c70e0031458 --- /dev/null +++ b/vlm/train/SJxSOJStPr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6436f02169a4ee14945af753d18a2761e1a014f76068d2e5d19a53f9bedb01 +size 608349 diff --git a/vlm/train/SJxSOJStPr/8.png b/vlm/train/SJxSOJStPr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1827d9059c4ccc571937da388c7777336d797369 --- /dev/null +++ b/vlm/train/SJxSOJStPr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb5dc7a63f46848b83ce0b09457b1097ff8c1aa0ea883a43fd2410c1d03bfd3 +size 474666 diff --git a/vlm/train/SJxSOJStPr/9.png b/vlm/train/SJxSOJStPr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1e13da3036023a03f10b8217c09080405c741f --- /dev/null +++ b/vlm/train/SJxSOJStPr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7ecaf8792d89229efa20cc14e6a6c401094055bc7b5c28498b237ca277a072 +size 483089 diff --git a/vlm/train/SklD9yrFPS/0.png b/vlm/train/SklD9yrFPS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1fce6abe115b0ee3aa7364278c93d45e7444ab --- /dev/null +++ b/vlm/train/SklD9yrFPS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f593416659025c49cc6e791937dbb80907ba9b18468206ed195038e9232621d +size 486241 diff --git a/vlm/train/SklD9yrFPS/1.png b/vlm/train/SklD9yrFPS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fc8240c5c5c091323553e43351a5f0db564ba306 --- /dev/null +++ b/vlm/train/SklD9yrFPS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd148713528c574bde2eb27bfee5b2872b52edeed39cae5632e2af0a9105ce2b +size 572464 diff --git a/vlm/train/SklD9yrFPS/10.png b/vlm/train/SklD9yrFPS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0944305ce412d340258169a97d47ae6cb9dabeaa --- /dev/null +++ b/vlm/train/SklD9yrFPS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f2d1fa704976776bfc059cdb0b9677fbe3058c56bc09d1032d6c6d09989146 +size 529818 diff --git a/vlm/train/SklD9yrFPS/11.png b/vlm/train/SklD9yrFPS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d5d781b92c17b93d9824d1440c0f2ec06934d81c --- /dev/null +++ b/vlm/train/SklD9yrFPS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db730f48a17975e43caf913a72f5b8ae2e7d16d6cf456ec568c43d9e835339a3 +size 516997 diff --git a/vlm/train/SklD9yrFPS/12.png b/vlm/train/SklD9yrFPS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..59452e936f74200e27ef1daad82cbcf491c00114 --- /dev/null +++ b/vlm/train/SklD9yrFPS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52d89ea50e8ff734e7dc4957212bd1aebcc8374be83c5c52a615c2ba6ece390 +size 468778 diff --git a/vlm/train/SklD9yrFPS/13.png b/vlm/train/SklD9yrFPS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bf587b1eb3ab3da4270f136498a235e205f4f7ca --- /dev/null +++ b/vlm/train/SklD9yrFPS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be377c2fff1f7f65ff4fee34a919934c62f35b65a4690043a8b6eeab73005e7 +size 444403 diff --git a/vlm/train/SklD9yrFPS/14.png b/vlm/train/SklD9yrFPS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..ccf10353171bf2f4114b593e9cd4091a3f809238 --- /dev/null +++ b/vlm/train/SklD9yrFPS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:110bd0b21d3da88299f813e17c1394545252c4c9f376203fff4482c84508f135 +size 398857 diff --git a/vlm/train/SklD9yrFPS/15.png b/vlm/train/SklD9yrFPS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..9b5619d24cd5e673a9e0c58d196ed8c8ec184f39 --- /dev/null +++ b/vlm/train/SklD9yrFPS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c927e595b0ec013bee535ec63b71378b059aff3fd7f50260e13332aada9e97 +size 326238 diff --git a/vlm/train/SklD9yrFPS/16.png b/vlm/train/SklD9yrFPS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a10a3de80ee794c68fc84bd452859bc97c661815 --- /dev/null +++ b/vlm/train/SklD9yrFPS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4acb9dcd48775eaa7b3b03d3397d38c48c08ebfb32b803840efa2e698eae15c0 +size 248152 diff --git a/vlm/train/SklD9yrFPS/17.png b/vlm/train/SklD9yrFPS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..cb553107013e959872dbc612033fe95140d3c774 --- /dev/null +++ b/vlm/train/SklD9yrFPS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79188917b0762571300e0a2015ec95199a9d3077fe7480efcd4bf362f519513 +size 427027 diff --git a/vlm/train/SklD9yrFPS/18.png b/vlm/train/SklD9yrFPS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..fae983705cb052240c003e538d58fb6c245b5704 --- /dev/null +++ b/vlm/train/SklD9yrFPS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626968ce7a3595164165f00d3c2863e8b345481d06de0ceba9073aaa593d8131 +size 313990 diff --git a/vlm/train/SklD9yrFPS/2.png b/vlm/train/SklD9yrFPS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f327ad75d2fafa35c6d6cc1f61e8759373abc3c --- /dev/null +++ b/vlm/train/SklD9yrFPS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38848942b7476e4cd2a1e583a6fe5d29feb0d4708ad75e3c4409f5f96987c26c +size 493961 diff --git a/vlm/train/SklD9yrFPS/3.png b/vlm/train/SklD9yrFPS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..388848a081f0b8a65cbde2dba23cda0406dd7095 --- /dev/null +++ b/vlm/train/SklD9yrFPS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ad12d5098c0418ae9235a8765bda05e2df2bd50a5bc73b2fbf23c0c68b4607 +size 512188 diff --git a/vlm/train/SklD9yrFPS/4.png b/vlm/train/SklD9yrFPS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3a4656e0bf50314df7efd27a05cd4d7ab69f2976 --- /dev/null +++ b/vlm/train/SklD9yrFPS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5215dbdeae099e20b0de2b0b8d1adfa168c736d9414ec049e6c9ce5ee177036 +size 414910 diff --git a/vlm/train/SklD9yrFPS/5.png b/vlm/train/SklD9yrFPS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8300bfa33f6b51b1040d3bbff3085b0d0f433297 --- /dev/null +++ b/vlm/train/SklD9yrFPS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00302dc7e724cdcd42d5b7e6e6dc3bd5eb7d39cb1e739d2874447bbb1aecf1ab +size 546853 diff --git a/vlm/train/SklD9yrFPS/6.png b/vlm/train/SklD9yrFPS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3aa96e12af54686de3adcb58c0baa034ec7eb1c2 --- /dev/null +++ b/vlm/train/SklD9yrFPS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98fb19e7ea69bc02b3107914813f9f8075a493a0269f95f05e7bba1e6802d89e +size 535091 diff --git a/vlm/train/SklD9yrFPS/7.png b/vlm/train/SklD9yrFPS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..da59d14448e534bb8745ae93589dfc112d0610db --- /dev/null +++ b/vlm/train/SklD9yrFPS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed7d8af15bb9bb8b0357ef7a8a6dab048cd0d0e62767017c51475f07db13d8c +size 562857 diff --git a/vlm/train/SklD9yrFPS/8.png b/vlm/train/SklD9yrFPS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..66897920fa103d4e610f59f7888502f5eb81c1ff --- /dev/null +++ b/vlm/train/SklD9yrFPS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778ba28849f37dba489efc7b69e42157fdb304f3966ad8895d3dcdfdd2d7c180 +size 483538 diff --git a/vlm/train/SklD9yrFPS/9.png b/vlm/train/SklD9yrFPS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c173a218d9601d8f96345b2f0047d8e4b4d636f8 --- /dev/null +++ b/vlm/train/SklD9yrFPS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2aa91b95a360e4a0cacd86f26fbe95b7dce6a1b6585bcf30cd0372bc400bec +size 575183 diff --git a/vlm/train/SyProzZAW/0.png b/vlm/train/SyProzZAW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..48fca024dfb94170b800a1d7a5b4b5412598746c --- /dev/null +++ b/vlm/train/SyProzZAW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952591b6c6060a57d719221f6e64914e536db6872332845bcb7a766c838cdde3 +size 449692 diff --git a/vlm/train/SyProzZAW/1.png b/vlm/train/SyProzZAW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..76eb8610499fcb5c5e1fbc8f6d70bdb78b4822e5 --- /dev/null +++ b/vlm/train/SyProzZAW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060e26d91985d658099992ae2b307a0d1ecab66e9ce79ef4cf1ae41ff5b8a65f +size 587203 diff --git a/vlm/train/SyProzZAW/10.png b/vlm/train/SyProzZAW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a4bb5bc22793063084bafcbb199d9dcc6ce7833b --- /dev/null +++ b/vlm/train/SyProzZAW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4e36f4fc2d361d871bba0678ed9c3602fd7bb785441500f9d4d3ad758ca5ea +size 411046 diff --git a/vlm/train/SyProzZAW/11.png b/vlm/train/SyProzZAW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9292f1f1e8f17355c9c29e8836745d982f5a899c --- /dev/null +++ b/vlm/train/SyProzZAW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4d95e09b698027511f82ec062cafabe2c6847832ac5eb78a895afc01f5c336 +size 442873 diff --git a/vlm/train/SyProzZAW/12.png b/vlm/train/SyProzZAW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d54f24082fdad1546cbb343c64247bf6a1c2c9ac --- /dev/null +++ b/vlm/train/SyProzZAW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718dd73f9a1624e2c5999c76db047baefa78630783b456469dd5a1cfeed4d1e7 +size 404542 diff --git a/vlm/train/SyProzZAW/13.png b/vlm/train/SyProzZAW/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a8f3cec629fd70a2d09de2ab5c227ef3013df4ba --- /dev/null +++ b/vlm/train/SyProzZAW/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf3188f78546b5a726aa28eb4d49653c013637a29658a384e3b66e6f17c50f4 +size 283463 diff --git a/vlm/train/SyProzZAW/2.png b/vlm/train/SyProzZAW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..70076f841076cf5d39c7ad6767428f159d7c2c3e --- /dev/null +++ b/vlm/train/SyProzZAW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6b1b43d997ae8e78baa22c95ba4056ddf33438c9ab7deb8f3af60040e169a2 +size 491443 diff --git a/vlm/train/SyProzZAW/3.png b/vlm/train/SyProzZAW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5d87b4b5b3f04e04af8682a61c5ac0ff411d0b9a --- /dev/null +++ b/vlm/train/SyProzZAW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d303a3c3af89951f05a6e621210dc1103252d70c35ddcc94e196c070c39185d9 +size 438096 diff --git a/vlm/train/SyProzZAW/4.png b/vlm/train/SyProzZAW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6eab5a414b76e7b8a5b68bbb544a31f09677042f --- /dev/null +++ b/vlm/train/SyProzZAW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3907f3cd37041df84166042f547d1872da4f600bca7dbfe0ee9d2d4b5baf8017 +size 511827 diff --git a/vlm/train/SyProzZAW/5.png b/vlm/train/SyProzZAW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c8965873ef0baf03982b8a5112187370f2fdca3c --- /dev/null +++ b/vlm/train/SyProzZAW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7bdf03a10da834820e1e5ecec4c94b666675cec707fad773f93747983561f3 +size 452426 diff --git a/vlm/train/SyProzZAW/6.png b/vlm/train/SyProzZAW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..51a960dba6a4d6c226ed5e648a9b036c0ecf6fe6 --- /dev/null +++ b/vlm/train/SyProzZAW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b50d723393008e26ec38ae04b62afd579b51a6198722c0e405f87ac5384175 +size 373582 diff --git a/vlm/train/SyProzZAW/7.png b/vlm/train/SyProzZAW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..03738ce44d440ffb5b98020f3217762dcf931a0b --- /dev/null +++ b/vlm/train/SyProzZAW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13ca3e6419f53024653913ccaf6f64f76ef377f53f67b3e18fb5018147470cc +size 598995 diff --git a/vlm/train/SyProzZAW/8.png b/vlm/train/SyProzZAW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ce18c4ea8c1aa64d0007b704c7701902d273ccf9 --- /dev/null +++ b/vlm/train/SyProzZAW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2d5d13b9beb615d4b749dc46d5f303bc1bcde1dfa94521240437c55d02e1f8 +size 510544 diff --git a/vlm/train/SyProzZAW/9.png b/vlm/train/SyProzZAW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4a905589d24affed81e877c15250a620bbbbe166 --- /dev/null +++ b/vlm/train/SyProzZAW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9cb56b1c19d6d06dfdd43bfc114ccea656800824476c3adb0410917adce4d0 +size 515529 diff --git a/vlm/train/SyevYxHtDB/0.png b/vlm/train/SyevYxHtDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..87302c8cf781b3d63a14421a5c9ed2a6ce42a30d --- /dev/null +++ b/vlm/train/SyevYxHtDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf10b047a4260c8c85dd1dc0bdd6842b6d4cea46136b41ec61effcd0dd1e83e +size 526518 diff --git a/vlm/train/SyevYxHtDB/1.png b/vlm/train/SyevYxHtDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b6270108617996e4ff39a656c2cc328250dd7982 --- /dev/null +++ b/vlm/train/SyevYxHtDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757eef99158327ff18b3c7c7143439c663c7fb3ffef328eb351497dc2d8adab0 +size 634428 diff --git a/vlm/train/SyevYxHtDB/10.png b/vlm/train/SyevYxHtDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea5278ac699dc15907e52eeee2cec1f2cecab81 --- /dev/null +++ b/vlm/train/SyevYxHtDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c27503a52ad083d827a50f4714772ca355f51382216f6eac6f578ac1ce31607 +size 348066 diff --git a/vlm/train/SyevYxHtDB/11.png b/vlm/train/SyevYxHtDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..66bc33508f2f48344b528f6102d3aa9b9cafb2c8 --- /dev/null +++ b/vlm/train/SyevYxHtDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd3ba077e8bcc3d720b526a87e3dcf5ec8e69043caa4e917d70dd943cc7e737 +size 446224 diff --git a/vlm/train/SyevYxHtDB/12.png b/vlm/train/SyevYxHtDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..aaa403da53fb74f1150ca3379991f4a1ef49fea0 --- /dev/null +++ b/vlm/train/SyevYxHtDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106fcd08ed38bae73d49ae1ad50c5b938d3897750bdfeb7392b7585af5fac2df +size 542304 diff --git a/vlm/train/SyevYxHtDB/13.png b/vlm/train/SyevYxHtDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5d6a37ab3d0f8cdb8e22bed2babdde0adb4975b5 --- /dev/null +++ b/vlm/train/SyevYxHtDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8964a277706de19ed5f72268ee50d7abbf2a5071627d1a8dc097bc1f34f3a5f4 +size 414465 diff --git a/vlm/train/SyevYxHtDB/14.png b/vlm/train/SyevYxHtDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..581040eb8d73a7742c871ce3cfcdd56dee8592ff --- /dev/null +++ b/vlm/train/SyevYxHtDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da51db2a22b9e6e740897e0968b3e1fe226ddc4592c50713ff3d3c77d2a89f82 +size 307924 diff --git a/vlm/train/SyevYxHtDB/15.png b/vlm/train/SyevYxHtDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..916b89c59a34cfd54e74e803b835f51ff07eddd0 --- /dev/null +++ b/vlm/train/SyevYxHtDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4d5384fc3f649882bca6cc97484363e596fae79dbd4d71cdce616c0aa1f52e +size 561692 diff --git a/vlm/train/SyevYxHtDB/16.png b/vlm/train/SyevYxHtDB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..cb4b1648c3ccefc935eb48f60a8cbca51cc0cbe3 --- /dev/null +++ b/vlm/train/SyevYxHtDB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345f8e25b0901408c4f12f58927decec6b5caf05a3011d89f2a88c1d2eeb46e0 +size 163092 diff --git a/vlm/train/SyevYxHtDB/2.png b/vlm/train/SyevYxHtDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f08ffc67d3f373b32ccfe4b177078181f3ec6285 --- /dev/null +++ b/vlm/train/SyevYxHtDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afe93ed224def4a9ef99c09bc6dafa42cb08ada2328980d15089f4895084ce0 +size 620139 diff --git a/vlm/train/SyevYxHtDB/3.png b/vlm/train/SyevYxHtDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b75be55f9af5659c85c9131dfa7160f9b221eed2 --- /dev/null +++ b/vlm/train/SyevYxHtDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8866e74236864a95fbd3bfcb6c43bf0cecc67460187c5bc6f24876ebf3889eb +size 552303 diff --git a/vlm/train/SyevYxHtDB/4.png b/vlm/train/SyevYxHtDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..989c7e558dbae1e70656cd97b8decd097026dcd0 --- /dev/null +++ b/vlm/train/SyevYxHtDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b933657c49e74b9a4b99809dcec647d9b0d26af7db14085a290d7fe75c8dbce +size 658876 diff --git a/vlm/train/SyevYxHtDB/5.png b/vlm/train/SyevYxHtDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..786872482740757208d4af2b0420890802e1e61e --- /dev/null +++ b/vlm/train/SyevYxHtDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e336ce647995f4ec9858faf4df562f976281d4468240d54715f8ae19457310c3 +size 564603 diff --git a/vlm/train/SyevYxHtDB/6.png b/vlm/train/SyevYxHtDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d3d3108b95d2764bf33ada8bcfa8b96c21d3c61b --- /dev/null +++ b/vlm/train/SyevYxHtDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d7c0552740c64e1a5b8e13ea0c10d8f9ae8b2c8605ac7a36a5f33dabd4116c +size 707205 diff --git a/vlm/train/SyevYxHtDB/7.png b/vlm/train/SyevYxHtDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..92687d821cc2b0eacfce69c7a43341544e29aeed --- /dev/null +++ b/vlm/train/SyevYxHtDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694a45073cc787170e763345405ea05f83126bfda410d9461fefede6a9e2ba58 +size 595408 diff --git a/vlm/train/SyevYxHtDB/8.png b/vlm/train/SyevYxHtDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ca6ac03d2a37dacb4cd0d212f4ab2dfcf307ccc7 --- /dev/null +++ b/vlm/train/SyevYxHtDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd3b84f29b291a86fa3a45280dcb5b1ec57981aa84691ef40a0c090ac291beb +size 483256 diff --git a/vlm/train/SyevYxHtDB/9.png b/vlm/train/SyevYxHtDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..91f31fcc230a66497fda6e9f283c20ed9a31ca67 --- /dev/null +++ b/vlm/train/SyevYxHtDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d965a15cbecbe2b152d8a88a191629ff245985721a4142268dbb4f2829d097 +size 421240 diff --git a/vlm/train/T6AxtOaWydQ/0.png b/vlm/train/T6AxtOaWydQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c52252edfbbc1dfb0fedb9be6ce18f861ed2d5f3 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99bb6e16fcf36cea55d466afa89c6a108a9476c42673a8db23ff3aa621ce735 +size 544182 diff --git a/vlm/train/T6AxtOaWydQ/1.png b/vlm/train/T6AxtOaWydQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a778d99360749d1673cc3c90d5af2c9ee4ef290e --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e683c48e5cf501d0ea9fdd6d31b945f7e4c7b4d220972a8130912ce80dd80c +size 662982 diff --git a/vlm/train/T6AxtOaWydQ/10.png b/vlm/train/T6AxtOaWydQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7546c678459df27fce2f37f2f91ab34e481150bf --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d716d776e07022cd07ac01fc341298ae567ee751a0d1f40c5086b2e82a27894 +size 500674 diff --git a/vlm/train/T6AxtOaWydQ/11.png b/vlm/train/T6AxtOaWydQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..dac9dd3b4aba06fb4329ef07c027f067df4a458c --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e337906dc577544015dc3993c5bd962839f160b4bd66cd0917607d30978ce049 +size 483768 diff --git a/vlm/train/T6AxtOaWydQ/12.png b/vlm/train/T6AxtOaWydQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d3bf41e1900b6049e0e5f22c3d3637353ac04d61 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdaf08eda77623872544280c828301ef247d772a6747c5d5b6f1d6f9f2057d32 +size 501619 diff --git a/vlm/train/T6AxtOaWydQ/13.png b/vlm/train/T6AxtOaWydQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..516e316c44f7c69bcfb11ba38dcf3de5b7bc6a49 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32bc234728e1ad642a684bc2f0513fe8862a1fd04d25741683699442dba61f8d +size 278554 diff --git a/vlm/train/T6AxtOaWydQ/14.png b/vlm/train/T6AxtOaWydQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..fae5b28e62efcef7407d3513da7a752ae8a2ca54 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a15619aad39b138bfac68f40b196e28ad6f14236ddd07fa739370640f6b184 +size 522979 diff --git a/vlm/train/T6AxtOaWydQ/15.png b/vlm/train/T6AxtOaWydQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..78863fac0a681299a7051754d05b084e0548a881 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b91976a26e5c783bb2f1fc1fbc9e4578df9716f1a862aa9baa022a6bc94506 +size 492788 diff --git a/vlm/train/T6AxtOaWydQ/16.png b/vlm/train/T6AxtOaWydQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f4f01c19ea39d3c6cf6dd266d3ac84ad87c246cd --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993da746f19de3852ddee2542760c0606eddbd2ec29cdadee6e40e7369feae7f +size 666520 diff --git a/vlm/train/T6AxtOaWydQ/17.png b/vlm/train/T6AxtOaWydQ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..477e44c52bb768b1ca0bb638ad9d91d20beb284c --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2d1d2aefb13ebb66c95578586ea03b8590077d51ddd89e6aa1fa4d210f7a6b +size 578506 diff --git a/vlm/train/T6AxtOaWydQ/18.png b/vlm/train/T6AxtOaWydQ/18.png new file mode 100644 index 0000000000000000000000000000000000000000..c8324ec53fae8800f6172cf25cd079fd7f0f9c9f --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960daa42c66e22738f3fb287bc34da70b2fe8e8d99a61f73c1b40685e0b9779c +size 665993 diff --git a/vlm/train/T6AxtOaWydQ/2.png b/vlm/train/T6AxtOaWydQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..92fc485e1fe3652745db01b4d979193f5dcaa6c9 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7624235c7c82e4fe4e6b150c22fbacf38035669adfe9303b9d4487df313888dc +size 601712 diff --git a/vlm/train/T6AxtOaWydQ/3.png b/vlm/train/T6AxtOaWydQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..28e72aaa62eec72c215c5935dd8bbf026dd0f18c --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113254690c44847d7c93cff9f5f5af28f1a0ed954a9c9d4892731df797721f62 +size 599340 diff --git a/vlm/train/T6AxtOaWydQ/4.png b/vlm/train/T6AxtOaWydQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e1fd7d9cf085cd94b58505adefa7ace8af9196a4 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8f4d40e31fb6d68f2c070c1ef4e74459aa5757423eec130c145260f56700aa +size 544062 diff --git a/vlm/train/T6AxtOaWydQ/5.png b/vlm/train/T6AxtOaWydQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0bc87495d37b35f1f15fdf6ebdee5320ed3f4a8c --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d0bd7a3f2af8a99abafb25270e41689094661c3e15258153c46a155e71af74 +size 549473 diff --git a/vlm/train/T6AxtOaWydQ/6.png b/vlm/train/T6AxtOaWydQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5cbe1e43b9a2e61433d6cd82e9e2c64148373196 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6bbd8468914c11110d47e00647b0cf3dcfd7cfa7a160bb3037fa118dcc939c +size 556799 diff --git a/vlm/train/T6AxtOaWydQ/7.png b/vlm/train/T6AxtOaWydQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..22af93322214ecfbef0b50a435a4f5c7324514f6 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881ee6fe5be1ba63aaefd979944071f5fb339508eddf0d42b4a6a049ec2ce1b9 +size 548084 diff --git a/vlm/train/T6AxtOaWydQ/8.png b/vlm/train/T6AxtOaWydQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ed506a1b7670fd215de13d17a326e627fabd80bd --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c832c867b65ada1900ecd9acbf77112aef3de75a2add9ac0657bca27df6fa2 +size 536667 diff --git a/vlm/train/T6AxtOaWydQ/9.png b/vlm/train/T6AxtOaWydQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2b324a125cbdf2ac69660d354bc33b681504a775 --- /dev/null +++ b/vlm/train/T6AxtOaWydQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4939ccb5fc0445f4e99252c9e01d9e3d5759182eedb2d2a781cb9835c1722c4 +size 490832 diff --git a/vlm/train/X2K8KVEaAXG/0.png b/vlm/train/X2K8KVEaAXG/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c392e2de5740892081678289f63fcd9971de44e5 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d353748558af5d763288008367a11ae7ba6b3effbe1cbef1a9c5625bec803bd6 +size 438429 diff --git a/vlm/train/X2K8KVEaAXG/1.png b/vlm/train/X2K8KVEaAXG/1.png new file mode 100644 index 0000000000000000000000000000000000000000..49e54d626bd072318d24ab95bf43f39112462ebb --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:823a3170e352675216f152c8f9b3cc859100e9847a97164674033d811bfe949e +size 824073 diff --git a/vlm/train/X2K8KVEaAXG/10.png b/vlm/train/X2K8KVEaAXG/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a7faabf8d8218f24feed07382a6287a9f592c5 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4677891b8edb244c123e84f5a4cb325dc0b4e12f172f1773b01dbdcc55e5894 +size 654732 diff --git a/vlm/train/X2K8KVEaAXG/11.png b/vlm/train/X2K8KVEaAXG/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5809552d69678431dd218f272b231ed00bcc9a3a --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3731d5ca87fb64ce58ab96d549f14150d60fb22dd9e5553f90e67237d26d872 +size 627038 diff --git a/vlm/train/X2K8KVEaAXG/12.png b/vlm/train/X2K8KVEaAXG/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c4d8f2ab6547d4e32b45938eaecc091ce4d5f5aa --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086791cba8822cb63c0b4d353c0eb64e3b8e0e37620a1a5933dd30e2c43663aa +size 360898 diff --git a/vlm/train/X2K8KVEaAXG/2.png b/vlm/train/X2K8KVEaAXG/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5730e14bb432d4bc5a8fd2188d7326ad6f6cee22 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a3bb539de0be5f8b903e297803f0af051387bcca7ec6d4271d92a6184a2cc6 +size 588241 diff --git a/vlm/train/X2K8KVEaAXG/3.png b/vlm/train/X2K8KVEaAXG/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5ae36a1e40b61e216e8297ab33ca32d1b304e2b5 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b6feb7e8bad8e1c9a0ca3c389263e04f0b61500faafe2bd2f9de597315f19f +size 620793 diff --git a/vlm/train/X2K8KVEaAXG/4.png b/vlm/train/X2K8KVEaAXG/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f3ea61688c874220ee031c5fb3650755947e476 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2182c79c81bb1c2341652427f61ad678cb02576b7e0dc21de34327cd22806d8 +size 591786 diff --git a/vlm/train/X2K8KVEaAXG/5.png b/vlm/train/X2K8KVEaAXG/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7992d694d5f0cff40cd1a8ed1060afeb8fe577c1 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e5b64667e8f7a11e3fb94529bfb98719c28845107db40cb22b4e1545fedaff +size 577290 diff --git a/vlm/train/X2K8KVEaAXG/6.png b/vlm/train/X2K8KVEaAXG/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6e58d6ce396aa0ce10890b7d17a5415c6a92a485 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66377b34d12442b44ea3352f78e7e4fd9a58f9a78b872327bdb74bd5a10cfc3 +size 664713 diff --git a/vlm/train/X2K8KVEaAXG/7.png b/vlm/train/X2K8KVEaAXG/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2f58c202cd1c6ea090188b631136c58cc2f37d27 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8834d61e27503c1066d2439619e30def686f9ee7b08db3781020481d1eecf9fd +size 545499 diff --git a/vlm/train/X2K8KVEaAXG/8.png b/vlm/train/X2K8KVEaAXG/8.png new file mode 100644 index 0000000000000000000000000000000000000000..212c2e2909ab94e7a9fcaefb89c9c087c3ff2143 --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7f7a5f848994e98da90479a21932f579321d49beccc4705db7745330164e20 +size 1555237 diff --git a/vlm/train/X2K8KVEaAXG/9.png b/vlm/train/X2K8KVEaAXG/9.png new file mode 100644 index 0000000000000000000000000000000000000000..21918eba4c6c0d52e3544dd12bd5a7b8b68a45bb --- /dev/null +++ b/vlm/train/X2K8KVEaAXG/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549ed37cd42cc7681f8443b5c4bdc844170399c6c1f2a7ba761c2c2c2503c248 +size 524803 diff --git a/vlm/train/Xb8xvrtB8Ce/0.png b/vlm/train/Xb8xvrtB8Ce/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b42f98b69e6b997f81a7a3a2441f47693293585b --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab4dd83a9d70e4d546120928b8b65cf1043d34ee310f60c63657535671a4e59c +size 584670 diff --git a/vlm/train/Xb8xvrtB8Ce/1.png b/vlm/train/Xb8xvrtB8Ce/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cfeb591ac7417d7d4bf1a79be5fe95b2a6adc046 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29c77de4b4815a2e9ee4ffaacab345b26b677e377194bc430b257bb2db98523 +size 648313 diff --git a/vlm/train/Xb8xvrtB8Ce/10.png b/vlm/train/Xb8xvrtB8Ce/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d5291f009f4d7895a3269fc9182b8d1638509019 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ed38b92de6bb7b777bd5d0ffe4697e2e26eabc5445aa522eae1ea4d44cb2b5 +size 537098 diff --git a/vlm/train/Xb8xvrtB8Ce/11.png b/vlm/train/Xb8xvrtB8Ce/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ab9fe9ebb1c67724601bf4552980fa65beb26716 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b069aa6445c8aa4870d251c727a557a21590b48dcedd473fffba69ebde4d3ef6 +size 547985 diff --git a/vlm/train/Xb8xvrtB8Ce/12.png b/vlm/train/Xb8xvrtB8Ce/12.png new file mode 100644 index 0000000000000000000000000000000000000000..638c5db1a4f2cab83e5380df246441db26ddaa46 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d3c6fa92180ecd799b055c47fbe1878fbd61cbb31b311c413d652c5d61ed7c +size 565781 diff --git a/vlm/train/Xb8xvrtB8Ce/13.png b/vlm/train/Xb8xvrtB8Ce/13.png new file mode 100644 index 0000000000000000000000000000000000000000..30c4a56de9537f5d644fb590abe41e8fd02a8268 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571f4d72a61b0dbd8f336017e3770b13a17e2b4b0a8604410f1018212d1aad20 +size 562046 diff --git a/vlm/train/Xb8xvrtB8Ce/14.png b/vlm/train/Xb8xvrtB8Ce/14.png new file mode 100644 index 0000000000000000000000000000000000000000..bdc060c16a5a24eb48eeaee962434f8a8550b365 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d0e064f45b1749c342b0166914ba87e2a7b24128bc2033e4f7b8f4ba7f8d470 +size 543663 diff --git a/vlm/train/Xb8xvrtB8Ce/15.png b/vlm/train/Xb8xvrtB8Ce/15.png new file mode 100644 index 0000000000000000000000000000000000000000..fe59ea64d588b7e74180fdf7fd37ee74ce3ed410 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf7bc2c2eed857ffdc21bba5a5f71ae76bfbb4316eb56e547555d5bb132c76c +size 297737 diff --git a/vlm/train/Xb8xvrtB8Ce/16.png b/vlm/train/Xb8xvrtB8Ce/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d4d43b1d0fc400281d3851b5f6262250a5079c36 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56485e90dbf9dde45fbe05453ffaf125cf540e69f2623bbb309d43a7317cd76 +size 610780 diff --git a/vlm/train/Xb8xvrtB8Ce/17.png b/vlm/train/Xb8xvrtB8Ce/17.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa32c153c66d57e1a90d58ddfe406d31ae90db5 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c54918aeb4225b26f0eac1ead7401e8d0447bfade55c9841b2fc964849edd65 +size 369648 diff --git a/vlm/train/Xb8xvrtB8Ce/18.png b/vlm/train/Xb8xvrtB8Ce/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0f6fbd93e40e580429c48a94af333692e6cdc164 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b0b80a5360ce12def770cdfad33b01f753ae71b5c06a1b16ee3918a9483d36 +size 426482 diff --git a/vlm/train/Xb8xvrtB8Ce/19.png b/vlm/train/Xb8xvrtB8Ce/19.png new file mode 100644 index 0000000000000000000000000000000000000000..0de1a37a6b7f50e07f78b07c450b072313224b85 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19de4f5a932eb97078c3e2432398bd22cc8dd01860b2a9f142645770d87a957a +size 464226 diff --git a/vlm/train/Xb8xvrtB8Ce/2.png b/vlm/train/Xb8xvrtB8Ce/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7d6d9ca1f78617a6822433ab89f3fb7b26d48cbb --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae89fe50509dc738c3d882cce9b3afb3e9318a146c1646c5aa9eb1279ce9314 +size 620505 diff --git a/vlm/train/Xb8xvrtB8Ce/20.png b/vlm/train/Xb8xvrtB8Ce/20.png new file mode 100644 index 0000000000000000000000000000000000000000..7bca1985339af5f4b6342e38da71329688f3ddae --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6591ac205766402644ac844f08045523e8ab32881ba092e7f75ad8ddaa0646d3 +size 206720 diff --git a/vlm/train/Xb8xvrtB8Ce/3.png b/vlm/train/Xb8xvrtB8Ce/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c88e3a19aa1d124e3e888f6b098a7156428ac868 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001990fa529ba88120a1c2a911a30214ad15f38e8f9f707773fc7355c299627c +size 573611 diff --git a/vlm/train/Xb8xvrtB8Ce/4.png b/vlm/train/Xb8xvrtB8Ce/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8bb09ed7cbf18e6a42cab1551628412b5dd0aea9 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c458d0de52dbe4a850f5093b3c9f98cc477d7426b525b6fa7b6c408f1630d912 +size 503998 diff --git a/vlm/train/Xb8xvrtB8Ce/5.png b/vlm/train/Xb8xvrtB8Ce/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6304b65c9a3a75276208375ae0dd5dc13a69b92e --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02515f91c2976ce4d6a14858d0c57ce93fa6afd55d78816c73bb701f86684fc4 +size 559107 diff --git a/vlm/train/Xb8xvrtB8Ce/6.png b/vlm/train/Xb8xvrtB8Ce/6.png new file mode 100644 index 0000000000000000000000000000000000000000..02bdd4aedd6218e606bc489e1a16e37aa9e6b76d --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8108ae33081caf5c01d908e89d6968942fcae2aa622f3636298e7aaf3b15b1c +size 547486 diff --git a/vlm/train/Xb8xvrtB8Ce/7.png b/vlm/train/Xb8xvrtB8Ce/7.png new file mode 100644 index 0000000000000000000000000000000000000000..17fdc0dcb2ddfc28f6978718cfb763223223dcc8 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc13234f5f9ee2d9504fd12bfd46a4d0eaa5572aa24b201579f0d47ea8146b6 +size 579480 diff --git a/vlm/train/Xb8xvrtB8Ce/8.png b/vlm/train/Xb8xvrtB8Ce/8.png new file mode 100644 index 0000000000000000000000000000000000000000..86b503d30b9420d025c08d1b650e5818aa094187 --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:015e482e4c7885769f4ffaa80d39bbc59e553f15711287a1e87b22645e13629f +size 525513 diff --git a/vlm/train/Xb8xvrtB8Ce/9.png b/vlm/train/Xb8xvrtB8Ce/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c202cac83c23d16e97efab802357c85f6c16e67d --- /dev/null +++ b/vlm/train/Xb8xvrtB8Ce/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9e4c6039109dc3f77cb4ab5d0c07cba5415545a40506c8a134e6569fa24681 +size 547298 diff --git a/vlm/train/dx11_7vm5_r/0.png b/vlm/train/dx11_7vm5_r/0.png new file mode 100644 index 0000000000000000000000000000000000000000..63acffb3fbac53f5dd8ff5906d11f1e2fdda44d5 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0c1f9f98131f9b75967ccfa16f6cd28368f32f485231da90274c552811467b +size 552846 diff --git a/vlm/train/dx11_7vm5_r/1.png b/vlm/train/dx11_7vm5_r/1.png new file mode 100644 index 0000000000000000000000000000000000000000..88bd30ddb06f0cc9ee3f2fbc31422ae4bf930bfa --- /dev/null +++ b/vlm/train/dx11_7vm5_r/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d12e61ef33e3b271311f015238b260195888cd19fac50ee650f6285e822ad03 +size 630858 diff --git a/vlm/train/dx11_7vm5_r/10.png b/vlm/train/dx11_7vm5_r/10.png new file mode 100644 index 0000000000000000000000000000000000000000..289898c164b8ec539e271ac0fe07f8feafabb27e --- /dev/null +++ b/vlm/train/dx11_7vm5_r/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0471623f9c37bb6691d17ebfb378540289fcf86f5f037ba14a27e690273e78f9 +size 524277 diff --git a/vlm/train/dx11_7vm5_r/11.png b/vlm/train/dx11_7vm5_r/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9cd22b21bf97ffcb446995a08f621a8f2f1010f2 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2237177a2048c16ffc8dbff0fb875040948757e32ed07e2297151b70066fe9ba +size 442460 diff --git a/vlm/train/dx11_7vm5_r/12.png b/vlm/train/dx11_7vm5_r/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7e2fb54fd1ccbc85ef21819dda00c3ee73878c --- /dev/null +++ b/vlm/train/dx11_7vm5_r/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d95c4e81e651b794edd67c6caf96bcdea1b85515a0a52fdeca48784481be8f0 +size 531248 diff --git a/vlm/train/dx11_7vm5_r/13.png b/vlm/train/dx11_7vm5_r/13.png new file mode 100644 index 0000000000000000000000000000000000000000..eb176801b207cebde1a6fd10d68ccd38d991caff --- /dev/null +++ b/vlm/train/dx11_7vm5_r/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b696229c2e97dd6400732b171fb9fd2aa7c6d0b7093f32719d1901f703d4c3 +size 213802 diff --git a/vlm/train/dx11_7vm5_r/14.png b/vlm/train/dx11_7vm5_r/14.png new file mode 100644 index 0000000000000000000000000000000000000000..87a94750dd98dfe52ae47ad8c91ed4c68e5fc620 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3147bd99b8b75da397835775e4c8f17db0791c6049049dc657edb2411e87fa +size 306403 diff --git a/vlm/train/dx11_7vm5_r/15.png b/vlm/train/dx11_7vm5_r/15.png new file mode 100644 index 0000000000000000000000000000000000000000..967031441e53d9591f3b3d90bcabfe5be7e481ad --- /dev/null +++ b/vlm/train/dx11_7vm5_r/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d29ba854a2bb7e05de7e3d916791dc37b6bd0a2e07c006708af3f6f2ab53106 +size 280736 diff --git a/vlm/train/dx11_7vm5_r/16.png b/vlm/train/dx11_7vm5_r/16.png new file mode 100644 index 0000000000000000000000000000000000000000..513e4ffef521d925e28d83d287119a8499c34bb6 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cacc32266c052057052e9106e606c6e69a7f2490a47a6d170326c64a7359a317 +size 340788 diff --git a/vlm/train/dx11_7vm5_r/17.png b/vlm/train/dx11_7vm5_r/17.png new file mode 100644 index 0000000000000000000000000000000000000000..aa6aa3d2ef2b1a431682e3bfa800292912c73a11 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f1a06cb9f5416e19fa7081d0c32b65726de6aa599084d188ae73c9e9748aa0 +size 328689 diff --git a/vlm/train/dx11_7vm5_r/18.png b/vlm/train/dx11_7vm5_r/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b1a7ea582dd799744b83fbd7d43ca6c6b873a052 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c6f08eadbd5a2706e017ceed0b3312d860024c6e7055bec0e271c3c0295517 +size 369867 diff --git a/vlm/train/dx11_7vm5_r/19.png b/vlm/train/dx11_7vm5_r/19.png new file mode 100644 index 0000000000000000000000000000000000000000..6a793e71cba45f2fa772c0de18f920fd63c1afa7 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7948f485f46420e08cad575b821c3423514e1bc3f8275e2ff26d60cb5ace8e50 +size 338924 diff --git a/vlm/train/dx11_7vm5_r/2.png b/vlm/train/dx11_7vm5_r/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ab82406fc7d5d0d0357fcf294f43707db088835c --- /dev/null +++ b/vlm/train/dx11_7vm5_r/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75219ceff2e2233893e4719db9f80fbeaaa0a4e4f82c5b65e590f2362c5a749 +size 664014 diff --git a/vlm/train/dx11_7vm5_r/20.png b/vlm/train/dx11_7vm5_r/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ccbe58d9d5208d487b267d5b7d77a117f6f87c45 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25d8dce988e18422b5be9ea86de73e4fb22a00ee2df67351abb7161e142c5c9 +size 331075 diff --git a/vlm/train/dx11_7vm5_r/21.png b/vlm/train/dx11_7vm5_r/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9205084398046bdd85445c761d5b035fdcfa2104 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0575da9b8e8ee1a215d8a2d1284248a033c882880e86465455898685a6c39ca +size 353371 diff --git a/vlm/train/dx11_7vm5_r/22.png b/vlm/train/dx11_7vm5_r/22.png new file mode 100644 index 0000000000000000000000000000000000000000..50fccfa9ab10bcc43ffce90e97b73419e4bee350 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfcad99f4c8f0318fb7208592ce7b8ef8fb2fe506bd4cccbf69f6084a46e2494 +size 293756 diff --git a/vlm/train/dx11_7vm5_r/23.png b/vlm/train/dx11_7vm5_r/23.png new file mode 100644 index 0000000000000000000000000000000000000000..93e909f40f5b747cd0fadf0582772a42e2fdd76e --- /dev/null +++ b/vlm/train/dx11_7vm5_r/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d547b920445f5227489e882977e8dc84e77f943c418188466b115f461892a8d +size 281538 diff --git a/vlm/train/dx11_7vm5_r/24.png b/vlm/train/dx11_7vm5_r/24.png new file mode 100644 index 0000000000000000000000000000000000000000..2031fee514af1dc4a6becaa1fa7589d773568033 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd61bd8b57ad686ba6fec37adea9d5a628c9639c69fd17e405310422ef67afbc +size 306363 diff --git a/vlm/train/dx11_7vm5_r/25.png b/vlm/train/dx11_7vm5_r/25.png new file mode 100644 index 0000000000000000000000000000000000000000..8aac7314a982c646e28f1a84b7e981e7c81c6a26 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d82305d83a0e7f98185cf1430ea87237043980ecf37b89d2ac0d25df2e90477 +size 324562 diff --git a/vlm/train/dx11_7vm5_r/26.png b/vlm/train/dx11_7vm5_r/26.png new file mode 100644 index 0000000000000000000000000000000000000000..71f4c6d24de79fecb5f7f3879a2e57ad52b90fcf --- /dev/null +++ b/vlm/train/dx11_7vm5_r/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217f9f6c592a227e6439a6834130f1533cc2acea1ecc4f635e5e2ac50d06e2d6 +size 304329 diff --git a/vlm/train/dx11_7vm5_r/27.png b/vlm/train/dx11_7vm5_r/27.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb973e75e16c02f95e7cd289d7bfbe11b9f435c --- /dev/null +++ b/vlm/train/dx11_7vm5_r/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362e69db3b5885c64a8447f61093de5629f62d9c0d331d4d558a400446a1ecbd +size 289298 diff --git a/vlm/train/dx11_7vm5_r/28.png b/vlm/train/dx11_7vm5_r/28.png new file mode 100644 index 0000000000000000000000000000000000000000..bb1635a8066f2391e7ebbcb419c2ab2e8ac170ed --- /dev/null +++ b/vlm/train/dx11_7vm5_r/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c9f37e1c066044534509803c79d2bd90f02f0654bdb8043b4429fe9c1a57df +size 450416 diff --git a/vlm/train/dx11_7vm5_r/29.png b/vlm/train/dx11_7vm5_r/29.png new file mode 100644 index 0000000000000000000000000000000000000000..44647e62e42b698056885e02b653249a8465b2d3 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49beeddb3f617e1355ea298496a0a74626b11c27bf54dfcbccb9fb7f319d523 +size 387339 diff --git a/vlm/train/dx11_7vm5_r/3.png b/vlm/train/dx11_7vm5_r/3.png new file mode 100644 index 0000000000000000000000000000000000000000..81b81fad14bcf09842769470bc2da62744c71788 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62e21c94f3c5f70a4ed8fcbe1e62892b87097fee46f245b14d47ef7b5429f6c +size 599094 diff --git a/vlm/train/dx11_7vm5_r/30.png b/vlm/train/dx11_7vm5_r/30.png new file mode 100644 index 0000000000000000000000000000000000000000..180ba9062c8a67aed42cda8cb43276683c3af94a --- /dev/null +++ b/vlm/train/dx11_7vm5_r/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5fe61a33f9ee007254d7024ec622a429c6958e84eeda8bf9c73fb90c51cdd1e +size 430235 diff --git a/vlm/train/dx11_7vm5_r/31.png b/vlm/train/dx11_7vm5_r/31.png new file mode 100644 index 0000000000000000000000000000000000000000..88a65d4c2f56039652569b10ec44ef24af0b4cb2 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6bf9870bc40a1b01782ef3406cffcb701ccd5a3bca9af205d7ed01fd436dbc +size 366001 diff --git a/vlm/train/dx11_7vm5_r/32.png b/vlm/train/dx11_7vm5_r/32.png new file mode 100644 index 0000000000000000000000000000000000000000..d166bafea9d72ec2926cc76c5181d05f8a49512f --- /dev/null +++ b/vlm/train/dx11_7vm5_r/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa8a1e2459ee6374bddcf741cb2792f7a6f5f7d01d44a0d4c2d7eec4f393d67c +size 329411 diff --git a/vlm/train/dx11_7vm5_r/33.png b/vlm/train/dx11_7vm5_r/33.png new file mode 100644 index 0000000000000000000000000000000000000000..0510a836428d5fa25772cb59e060127e2ebcfb4c --- /dev/null +++ b/vlm/train/dx11_7vm5_r/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253a2873192befc3bc9acebecd2f2742d000b272ea5dde47ea691dbd658b3a91 +size 367865 diff --git a/vlm/train/dx11_7vm5_r/34.png b/vlm/train/dx11_7vm5_r/34.png new file mode 100644 index 0000000000000000000000000000000000000000..09319429c3973fd09568e64d73025e5a98963984 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a89ede6a667badf3e2c48c35cb0379a478c53f5e28b9a192e9c2434953b508 +size 383344 diff --git a/vlm/train/dx11_7vm5_r/35.png b/vlm/train/dx11_7vm5_r/35.png new file mode 100644 index 0000000000000000000000000000000000000000..b01c416cf4e2d80b9265d5ce339c8f26a807ad87 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1350461ad3e49b5efa7b040a725352040588006aebaa425c7404b0014122454 +size 359062 diff --git a/vlm/train/dx11_7vm5_r/36.png b/vlm/train/dx11_7vm5_r/36.png new file mode 100644 index 0000000000000000000000000000000000000000..b715e8dbafb6ae6d4e67f8eec522e4faeb67d706 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3265cabeae79263b1c5b298e7059740cc444f9e2ce275d981afad3c8b0e3ce3b +size 309636 diff --git a/vlm/train/dx11_7vm5_r/37.png b/vlm/train/dx11_7vm5_r/37.png new file mode 100644 index 0000000000000000000000000000000000000000..e309621a41bea4a34f6ce308d61b8f5774717d9a --- /dev/null +++ b/vlm/train/dx11_7vm5_r/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d275e291e8ee362a7e26553b64ce6275d56d64b07059d1d3492588884195e475 +size 306043 diff --git a/vlm/train/dx11_7vm5_r/38.png b/vlm/train/dx11_7vm5_r/38.png new file mode 100644 index 0000000000000000000000000000000000000000..c1e404ad87c2aab3572fe1c7cbdb7a0c9c64a7e6 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90189690427a5ee59f7e94c0f8518b7031b944ee2f32cd50ce1285c03019343d +size 30884 diff --git a/vlm/train/dx11_7vm5_r/4.png b/vlm/train/dx11_7vm5_r/4.png new file mode 100644 index 0000000000000000000000000000000000000000..80347357c86031e5dbc348bc7938a16a2b306e4c --- /dev/null +++ b/vlm/train/dx11_7vm5_r/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f83801b9420cbf27d078d49b937c79e950a6427f6b23aa35c20d7787374da36 +size 557270 diff --git a/vlm/train/dx11_7vm5_r/5.png b/vlm/train/dx11_7vm5_r/5.png new file mode 100644 index 0000000000000000000000000000000000000000..64962041b9f4afd68057679288022cf645b5b5ae --- /dev/null +++ b/vlm/train/dx11_7vm5_r/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f359fb95b9dab6e6df4b3f477af7e3fca8995ae537aeb63d3fef980f7b82430 +size 546310 diff --git a/vlm/train/dx11_7vm5_r/6.png b/vlm/train/dx11_7vm5_r/6.png new file mode 100644 index 0000000000000000000000000000000000000000..932712a4396eb9eeb5112f59a061180a300bdc12 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df13b944c05f26910b01029f0fb79ee288d22a9c6b7610ac13d9278eb07cbd98 +size 448671 diff --git a/vlm/train/dx11_7vm5_r/7.png b/vlm/train/dx11_7vm5_r/7.png new file mode 100644 index 0000000000000000000000000000000000000000..adab2ae3b93143db9d9a4205f07629bf3f66d3d3 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1b53a615475db8989b549fa565a28c90a159cfa44274cfe349fd71777dde5f +size 566633 diff --git a/vlm/train/dx11_7vm5_r/8.png b/vlm/train/dx11_7vm5_r/8.png new file mode 100644 index 0000000000000000000000000000000000000000..51a4355d745dcc4df0dc0b0df592c276aa2a6a91 --- /dev/null +++ b/vlm/train/dx11_7vm5_r/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cbe513a2bd3e5d723af0f10d06467d6ac5a60c606f88ef8dc98faa6c735edbb +size 530543 diff --git a/vlm/train/dx11_7vm5_r/9.png b/vlm/train/dx11_7vm5_r/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1768a05fb7e6a10eb82c3acdbfcc98ef82aa8aee --- /dev/null +++ b/vlm/train/dx11_7vm5_r/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0cb6cd6b91421f7edd09463c2f56f230e55affe4b2d4bd50163f9d21bd08612 +size 501599 diff --git a/vlm/train/fSTD6NFIW_b/0.png b/vlm/train/fSTD6NFIW_b/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba46635ddbc65cd6d56abbc1ed62e5a5e1c8138 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1629724352979f2ff83cec659cbfc940c2b5fb026e87bc353fca669d749daf7 +size 472677 diff --git a/vlm/train/fSTD6NFIW_b/1.png b/vlm/train/fSTD6NFIW_b/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9e4838433083ed299b47f224096a6f6747a68a --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615758b398ab576b776fba3cdbcc46b4d3a1532bd0b7bcd2a45aee9ba5cb2871 +size 664710 diff --git a/vlm/train/fSTD6NFIW_b/10.png b/vlm/train/fSTD6NFIW_b/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f647c8b50d1c738629e6ab83f5f1b6dfba66c914 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ba945947b6098baab4ee95a9209e2c37fd5afeaf4f9f7c56bb41c76a9d405b +size 536270 diff --git a/vlm/train/fSTD6NFIW_b/11.png b/vlm/train/fSTD6NFIW_b/11.png new file mode 100644 index 0000000000000000000000000000000000000000..841939a152660f07b1edd13ad0f20db9373c43fb --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2fea51c6acd357c7622aac744cadf7b95c9dc9aa676a712f4e85e5e95f847e +size 534282 diff --git a/vlm/train/fSTD6NFIW_b/12.png b/vlm/train/fSTD6NFIW_b/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9f45a64d064bda228c8a737b018369e3597a3a10 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54f3265f6316e128605ba2fae8db75fb8b4a590e9e532c7c197cde32a1206022 +size 582386 diff --git a/vlm/train/fSTD6NFIW_b/13.png b/vlm/train/fSTD6NFIW_b/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e1d75846934c0e9f8cb4895bb24a659a597cecb8 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71834ff57effaba5562465caf378b30bd3a0d2d2de7bb6e80cf598841e3297dd +size 487878 diff --git a/vlm/train/fSTD6NFIW_b/14.png b/vlm/train/fSTD6NFIW_b/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1e8c70f5bb2c23a338d84dffcc352abf3c852022 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0326cee873766fe2e3af474844701cc3ca7ab064f97bcaf784154789d6896cd +size 465628 diff --git a/vlm/train/fSTD6NFIW_b/15.png b/vlm/train/fSTD6NFIW_b/15.png new file mode 100644 index 0000000000000000000000000000000000000000..dab893690df7c2dd5fdf4c1144fc27c2374b2492 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6106dc9d65a7207cba1b6c1dacf2f5be496dcaa1b87f122fcc46359be1b2af30 +size 538143 diff --git a/vlm/train/fSTD6NFIW_b/16.png b/vlm/train/fSTD6NFIW_b/16.png new file mode 100644 index 0000000000000000000000000000000000000000..bcb823a99910bad83d5f458b921a623bc7274cec --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de3e55482c1468ee2d4132458071924ee795980b3018942b6bb49e859410c9b +size 474206 diff --git a/vlm/train/fSTD6NFIW_b/17.png b/vlm/train/fSTD6NFIW_b/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e9db6b5e2d8dfeea77100db66209a1cd8fbe3744 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c442976abfd04c425df3500ed89fc14db55229de108a1f91950a1326da18b8 +size 350082 diff --git a/vlm/train/fSTD6NFIW_b/18.png b/vlm/train/fSTD6NFIW_b/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a4398f129c39b4c80005808b778f146826f497b0 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e698d7f530751b6e26431e9d75b479daeee6e9002423242028c56ff322ec3c37 +size 309675 diff --git a/vlm/train/fSTD6NFIW_b/19.png b/vlm/train/fSTD6NFIW_b/19.png new file mode 100644 index 0000000000000000000000000000000000000000..8e53d390ddf523abf95a16bd6da43b09ea6a59ac --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a88bfe0e2039557b5578dd458267bde4a4cbfeead83d6597314a0bf393f96c9 +size 254053 diff --git a/vlm/train/fSTD6NFIW_b/2.png b/vlm/train/fSTD6NFIW_b/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7a93c89a8171991ed682562d6703b59ec6461aae --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa4dbc8ff2761359275a7b9fbd348d193dde21012a3195cf6d0848534264c8b +size 633424 diff --git a/vlm/train/fSTD6NFIW_b/20.png b/vlm/train/fSTD6NFIW_b/20.png new file mode 100644 index 0000000000000000000000000000000000000000..61ba508d3d8e7b5d22434110c8c2a9536f174f1c --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac14707a41963345afbb0c01fbcce080557b498d02aab9a7333fc63edbdb51f +size 290550 diff --git a/vlm/train/fSTD6NFIW_b/21.png b/vlm/train/fSTD6NFIW_b/21.png new file mode 100644 index 0000000000000000000000000000000000000000..4ffbc4bc30c3f83dc853b6b1fa16caf414f3977b --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b82aa5b9d15f494192df04c5f1c5577fe529708371fcaa882f490f330891cc +size 258814 diff --git a/vlm/train/fSTD6NFIW_b/22.png b/vlm/train/fSTD6NFIW_b/22.png new file mode 100644 index 0000000000000000000000000000000000000000..f59e2483c42edbf9bbbfb4648cd3af5a798014a2 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e77084764f06a210e35e15c07cf1a40b9b4c96de758ccbee89789b6357715ca +size 272968 diff --git a/vlm/train/fSTD6NFIW_b/23.png b/vlm/train/fSTD6NFIW_b/23.png new file mode 100644 index 0000000000000000000000000000000000000000..b9556f1de6592886642b74bd879ebc8189bf9094 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1ad71bc2b1e0eeff03d6010bed599b87ed7d0d5e6f6e7fac66f21adf12e1d5 +size 553538 diff --git a/vlm/train/fSTD6NFIW_b/24.png b/vlm/train/fSTD6NFIW_b/24.png new file mode 100644 index 0000000000000000000000000000000000000000..e078d8278016aaf834c2a4465b192d98c2851b7f --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2838826e01e657be406bce67720a1f16ca66c26748ed8ef15fbb0f4e64b0c4d +size 534931 diff --git a/vlm/train/fSTD6NFIW_b/25.png b/vlm/train/fSTD6NFIW_b/25.png new file mode 100644 index 0000000000000000000000000000000000000000..64b1130c5ff7fa57dbac3ac6f9d66c09ea3becbc --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c2a16a9d1b9368910862a498df7b3b524b0d5dd23eeb6bb9d3dfdcbf42cc22 +size 416343 diff --git a/vlm/train/fSTD6NFIW_b/26.png b/vlm/train/fSTD6NFIW_b/26.png new file mode 100644 index 0000000000000000000000000000000000000000..a45ddb9b1139f11ae8e042527f646982bdf8fe9c --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc3ae1ca11e4428a5200ae8cff1545fa47a7c48147d99ebb060d524dcd41c9b +size 560995 diff --git a/vlm/train/fSTD6NFIW_b/27.png b/vlm/train/fSTD6NFIW_b/27.png new file mode 100644 index 0000000000000000000000000000000000000000..afac236ee516052e110566cbb13160a29bbad3cf --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1556d13cfa64fcdf4cb15ddf23c7804d709d1ca941c59127c54961d72f886de6 +size 560800 diff --git a/vlm/train/fSTD6NFIW_b/28.png b/vlm/train/fSTD6NFIW_b/28.png new file mode 100644 index 0000000000000000000000000000000000000000..7d63b620c30f21be7d51164ed30bede9fb77fff9 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c65e5d275f598dd16b19a42339980b8468459f72f02e7bfbd6302e493f33a2 +size 605624 diff --git a/vlm/train/fSTD6NFIW_b/29.png b/vlm/train/fSTD6NFIW_b/29.png new file mode 100644 index 0000000000000000000000000000000000000000..6413a31f354ea4f37cc332e503a552f49b9d2032 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54adab6b8625e29c2ef1141cfbf6bf80af5640a0ed38048cdfe95d9bb190d7a2 +size 356619 diff --git a/vlm/train/fSTD6NFIW_b/3.png b/vlm/train/fSTD6NFIW_b/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c3513320ac61c06640c95f536cd23084a9c6a173 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7808b7be8572efdc5e8ac9f84882bb7e49524e4e030cec89f31347de8abb989 +size 665380 diff --git a/vlm/train/fSTD6NFIW_b/30.png b/vlm/train/fSTD6NFIW_b/30.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8c256574a44620314abed12b0f556b54298793 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0a84fe38b8829820e8fb9ee6d6c2f253a0dcfe989bdafc6c756337b82dd7df +size 523752 diff --git a/vlm/train/fSTD6NFIW_b/31.png b/vlm/train/fSTD6NFIW_b/31.png new file mode 100644 index 0000000000000000000000000000000000000000..bde22bc2c34b84fb9945d8c43799168c8d511238 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49ffa614df9fa4410a5ead3e7ff0b30c86f45d6887bca0c3bbe52f6594d3429 +size 489656 diff --git a/vlm/train/fSTD6NFIW_b/32.png b/vlm/train/fSTD6NFIW_b/32.png new file mode 100644 index 0000000000000000000000000000000000000000..c200d62ff9ea5d7b034cc870ba4e2b3869730707 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a4fa1aa1d34727d8191ccff8b488263a153bb2c20bea8cc77b18fbe732f763 +size 489587 diff --git a/vlm/train/fSTD6NFIW_b/33.png b/vlm/train/fSTD6NFIW_b/33.png new file mode 100644 index 0000000000000000000000000000000000000000..b2169639869470349e6160f59a9449610ded64d5 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef92d7e470db970d94e40c250c3020fe11129f82338b2790ed1ec9eabb6c3a6c +size 473192 diff --git a/vlm/train/fSTD6NFIW_b/4.png b/vlm/train/fSTD6NFIW_b/4.png new file mode 100644 index 0000000000000000000000000000000000000000..aedcbc926233732fad0f6d5f3a0532cd2e5f6693 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a0d1ef8eda8f6678401fcf4d1918aed4cce8add8774ed3ecaff6e3b3a654fa +size 626744 diff --git a/vlm/train/fSTD6NFIW_b/5.png b/vlm/train/fSTD6NFIW_b/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b54baf341d834093a7c5b8415be16962ad7ae604 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88f9561bc4d9e0ae1c5297e589c91a5bd95f23bcc4ac1801bc338672dc22647 +size 614487 diff --git a/vlm/train/fSTD6NFIW_b/6.png b/vlm/train/fSTD6NFIW_b/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2a72c1251105abdee24887defbb87e15d879e35a --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abfabd984bb8f096df0eaa23e541db1a2cd1e55117b5ff3e4e4cc85f11084c6 +size 567285 diff --git a/vlm/train/fSTD6NFIW_b/7.png b/vlm/train/fSTD6NFIW_b/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8377e7d22efbc12c118bc85dd5f328f65bef31cb --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753cbfeb74fbfba2cf07208cd6ede634a791e8b0c728fa215acdf93ad4aca1c7 +size 632112 diff --git a/vlm/train/fSTD6NFIW_b/8.png b/vlm/train/fSTD6NFIW_b/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dbb422a695e77307863ec81771baadf75ec8d676 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fb9e6e321e73091d9c661a94319f2171ffd391edaf26dba63544c6acc47f20 +size 571653 diff --git a/vlm/train/fSTD6NFIW_b/9.png b/vlm/train/fSTD6NFIW_b/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3c7e9520691aaf3ff4f0c881994567d7f6e753e0 --- /dev/null +++ b/vlm/train/fSTD6NFIW_b/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2aa11f920264142a1776c9fdf6b57305b8ad73fe80904dd86bd37435deb19f6 +size 572928 diff --git a/vlm/train/hl3v8io3ZYt/0.png b/vlm/train/hl3v8io3ZYt/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4c343584cdbc667d333516b6572c789d8551137c --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd756f0d89c210e91f0c6d4b944b5e7539a99350fb3b902eae95e09056ea1c7 +size 463606 diff --git a/vlm/train/hl3v8io3ZYt/1.png b/vlm/train/hl3v8io3ZYt/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4ecfc511dd4d8c819ed9ccbb3be8bb07b28337d1 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112594dbd573b3852a3e5ffb1e689c4c7a137dac00e36b483c48fb41fbff5ab6 +size 619113 diff --git a/vlm/train/hl3v8io3ZYt/10.png b/vlm/train/hl3v8io3ZYt/10.png new file mode 100644 index 0000000000000000000000000000000000000000..28c903ec8003ddb886eb66988aac234d941bb846 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c21ebd1eab24329cdfcd6ee0d018be7c8e32a18961d7cf6f1b9f98205d1bfc +size 564762 diff --git a/vlm/train/hl3v8io3ZYt/11.png b/vlm/train/hl3v8io3ZYt/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fe920a3e0844aaca371443759f0af6029a81761b --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6dab3e443cefcc85ac60492348b4ddff70a67e7623f88589568436ff20a79e +size 81806 diff --git a/vlm/train/hl3v8io3ZYt/2.png b/vlm/train/hl3v8io3ZYt/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9852987e77551ee26f3b387bd1c92e4edd70d50c --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc6e26e8bf958b41e422cf880dfd4d9aa695fcc40ab48029a120cf251de72c90 +size 608237 diff --git a/vlm/train/hl3v8io3ZYt/3.png b/vlm/train/hl3v8io3ZYt/3.png new file mode 100644 index 0000000000000000000000000000000000000000..11acd644a93d05e8a42503f93396bdce5d0fbd45 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3801eaf91f1d520b87dde91890964ffe1561aa9dccc6e59495da79c16ecc58ce +size 531650 diff --git a/vlm/train/hl3v8io3ZYt/4.png b/vlm/train/hl3v8io3ZYt/4.png new file mode 100644 index 0000000000000000000000000000000000000000..59af9bfe9ad48da085c08a10e82b3c01a86372f8 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4085d3d48edac49c2a379f365c82988a552cd43ede6d7976b864a23a3792af01 +size 551904 diff --git a/vlm/train/hl3v8io3ZYt/5.png b/vlm/train/hl3v8io3ZYt/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4a6ddde73c0d84c3d43bcc2a2e0c6b5387339fe3 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0534e08c63681cb5bcb8050029c86c35b318dfe51e76bd45d3efbeedbbdc2d3c +size 588391 diff --git a/vlm/train/hl3v8io3ZYt/6.png b/vlm/train/hl3v8io3ZYt/6.png new file mode 100644 index 0000000000000000000000000000000000000000..72b3bc4e3649b4ee1587e0e57b38ad21cefbcb31 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe336bd64c5fd41342b358eee5185729c6e67ad98cd8770847a5344d2ede4971 +size 561833 diff --git a/vlm/train/hl3v8io3ZYt/7.png b/vlm/train/hl3v8io3ZYt/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1375ba193e60682c9b20fd40773d47c213ef0785 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10c6ace4cbac3cbf8658ad82b4b6c560f1ea92ce84f8ba25babffb56eba318b +size 1096946 diff --git a/vlm/train/hl3v8io3ZYt/8.png b/vlm/train/hl3v8io3ZYt/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c1e491b2b43a49906c55747b1c5ca3ca896ee812 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1c91b2128830b3d195e3717dfedd61001a0f9453f3048f8ac09132e95a682c +size 501218 diff --git a/vlm/train/hl3v8io3ZYt/9.png b/vlm/train/hl3v8io3ZYt/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa23dcc91d0eedf777735253665e81aa702aa90 --- /dev/null +++ b/vlm/train/hl3v8io3ZYt/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa4794415cda1be5bd89e4c68521ba40d13d1ddeb71f5f756075a8d0b9b8495 +size 531922 diff --git a/vlm/train/hw2VfWAr6t6/0.png b/vlm/train/hw2VfWAr6t6/0.png new file mode 100644 index 0000000000000000000000000000000000000000..918d80f4d45b91c45c8db2c278a2c813f02b72f5 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475d7b35d198d28494a33b36db566dc02c79ea96db7e39885f81b28382e8d106 +size 402575 diff --git a/vlm/train/hw2VfWAr6t6/1.png b/vlm/train/hw2VfWAr6t6/1.png new file mode 100644 index 0000000000000000000000000000000000000000..aff11cc896072e9662c3e80e79f6caa8f2720c7a --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ee5a6b4d5f5db119b9fcabc105943b867c371e4161b63c18d7fe87cdde0b4b +size 572050 diff --git a/vlm/train/hw2VfWAr6t6/10.png b/vlm/train/hw2VfWAr6t6/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ac42bb5cf4d17e2c2196f6ab168f0eb68cc328fa --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37178bddda8f4382a6d125b848b814194e6cffa433d979a21de7b5850cd4a8e9 +size 540580 diff --git a/vlm/train/hw2VfWAr6t6/11.png b/vlm/train/hw2VfWAr6t6/11.png new file mode 100644 index 0000000000000000000000000000000000000000..91a1ac047844f3f2d81542ccfb899549bc58ade6 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7727ada2fa24455b0e18e55f638563a604ad790a86a03caacb0d5b17955741f7 +size 551017 diff --git a/vlm/train/hw2VfWAr6t6/12.png b/vlm/train/hw2VfWAr6t6/12.png new file mode 100644 index 0000000000000000000000000000000000000000..50553d3a914ae45dc5002b28c8c40df6d70a1940 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bc362a0a434c3de9e0a569588b5a180034df82454b0a1e46225aa83cbf8bbf4 +size 387635 diff --git a/vlm/train/hw2VfWAr6t6/2.png b/vlm/train/hw2VfWAr6t6/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7fd95b263c6ddc03599ed7119c6c747b1a67e418 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6a99ef6e2a52bd5f85e5b9f526992986a165d1cf1cf2146c1439e4d2fef259 +size 505900 diff --git a/vlm/train/hw2VfWAr6t6/3.png b/vlm/train/hw2VfWAr6t6/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf4f242af455154b9bfa8ddb1755d17ae493c7f --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5525a4c2885d06d082ee9fa623ad0c810934739bcde4c80d42c33b2278ff8fd3 +size 505391 diff --git a/vlm/train/hw2VfWAr6t6/4.png b/vlm/train/hw2VfWAr6t6/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab2f118e4202c8570a6c1ffa2836e9c237bc562 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b94a27eb3018581a12ca0ae0d1c1ee8eb6a318d98d1d18ae65c44a5623401f5 +size 573723 diff --git a/vlm/train/hw2VfWAr6t6/5.png b/vlm/train/hw2VfWAr6t6/5.png new file mode 100644 index 0000000000000000000000000000000000000000..412c0583b98b9e9610310bba8a424e42e2b998e6 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7587fdebb1377766fa42db65e07bdd8d8a92a9ecbab6ed8d1ba5c49d3f3a5d10 +size 461952 diff --git a/vlm/train/hw2VfWAr6t6/6.png b/vlm/train/hw2VfWAr6t6/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea5e44ba9548e47b495c3476cb7db6ea9181e10 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ab4436e259401cc3d5c57fc1c8a26f8876724be07249fd1977c8cab2e9f289 +size 530235 diff --git a/vlm/train/hw2VfWAr6t6/7.png b/vlm/train/hw2VfWAr6t6/7.png new file mode 100644 index 0000000000000000000000000000000000000000..81f704e45f6444a2d5bcedf2948dc0c4d2b95c1b --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b8e96993534314cc7b36471b5c6aeb5e90c351e034fbac7df190196286fc44 +size 480722 diff --git a/vlm/train/hw2VfWAr6t6/8.png b/vlm/train/hw2VfWAr6t6/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e10b5c9913c17f70bd40cc6a3cc01d2699af6e83 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f8a7dd13fc79bc3b6713214b4adb7b5c46abe5bc6fe5e3026fd9208e6d1869 +size 566989 diff --git a/vlm/train/hw2VfWAr6t6/9.png b/vlm/train/hw2VfWAr6t6/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b4389c364aaa9b769a32b6d9cee893d065f66b22 --- /dev/null +++ b/vlm/train/hw2VfWAr6t6/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad2bd27ebe976f336f8c91d634527d9a0bc27cab8bda27f46ad4c25ebfbfee4 +size 516866 diff --git a/vlm/train/ioyq7NsR1KJ/0.png b/vlm/train/ioyq7NsR1KJ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0a0787765a60c813183ce07f8dabc746f89c4123 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bddd4787444aa955b14dcd45e555ca047f0af533886ca29eece4e9ccbd974ff +size 462433 diff --git a/vlm/train/ioyq7NsR1KJ/1.png b/vlm/train/ioyq7NsR1KJ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b322222891f65bba6b5e667ae2137b4a54a98260 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c464521dfc0ff901e91a3ece76c42ffd06d0a2a828cf9ea94c2a43125d663650 +size 626556 diff --git a/vlm/train/ioyq7NsR1KJ/10.png b/vlm/train/ioyq7NsR1KJ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a2102f57ac02add29f06cd0f780d2e9baad84836 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933bc371ff04f091a78f7013ef1d64131912706074c646e4ccc75a58cdf4c924 +size 576231 diff --git a/vlm/train/ioyq7NsR1KJ/11.png b/vlm/train/ioyq7NsR1KJ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c5e30888ff6849495ed3441de53fb9f57147530c --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f49ba2943486c2cb1649848edb443ba58f0a78dc3d96955d988cfdf16aba41 +size 594055 diff --git a/vlm/train/ioyq7NsR1KJ/12.png b/vlm/train/ioyq7NsR1KJ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..49b79913d22ca368a5b42b173843320e76fd9130 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9dd562b3554097ad0ab833d77dec85025ae45d336160e5f35c0cfcae441d4b5 +size 593208 diff --git a/vlm/train/ioyq7NsR1KJ/13.png b/vlm/train/ioyq7NsR1KJ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..879a038802ae1e4136bb1677c21f63a3578932ca --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32eecc7840939e503020f0f9f4096487e3c8029a6718b68e476034711b3f525e +size 634142 diff --git a/vlm/train/ioyq7NsR1KJ/2.png b/vlm/train/ioyq7NsR1KJ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..28c4340021d3e0f6db9f8486377c8498ad4a4246 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ae8ef3ad8f733f8ae7adf2d6281d9901c35108765d5f7ccf37cace23624603 +size 544347 diff --git a/vlm/train/ioyq7NsR1KJ/3.png b/vlm/train/ioyq7NsR1KJ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f2a6161b9adfe72df351678d3aef569ebdeec0c1 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7148f569f783d0d1a8ecff195e5fba31fa2e5b533021f10ef3acd2ee27c56d07 +size 651433 diff --git a/vlm/train/ioyq7NsR1KJ/4.png b/vlm/train/ioyq7NsR1KJ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c78ac6fa3f39ad5a2d07a3dbc15c050d32211ab3 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc0d2ddc01a9d1fee8bbec3a2a94e2b0459fed5ca644274d73383c06e485f78 +size 633121 diff --git a/vlm/train/ioyq7NsR1KJ/5.png b/vlm/train/ioyq7NsR1KJ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e77fc0ef27f431b67fa19ccf5ac084941f2dcb78 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaec154cd92f069d05e5b8c65c7b8f0d14cd65c7adfcca77c79a8aa8c474c0df +size 588120 diff --git a/vlm/train/ioyq7NsR1KJ/6.png b/vlm/train/ioyq7NsR1KJ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bcc6566be0cf37ed917fcc3e98f984f61688a55e --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9b919305e5de77f6c26a25e8f6b0cb6fdea1bf1bb2f5f1cec66dac5b92662d +size 672092 diff --git a/vlm/train/ioyq7NsR1KJ/7.png b/vlm/train/ioyq7NsR1KJ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ca5d2b69b2dc2c3169312553c5924c65c5740a35 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e6ad011a8ad94800eb838566ff55c30819917d88dd1cf5b2590ce5d3764b1e +size 621277 diff --git a/vlm/train/ioyq7NsR1KJ/8.png b/vlm/train/ioyq7NsR1KJ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..84084380bc01faf04514d0e86cf4516cd1be33d4 --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8057c5e9f4bdef3633b2fe1b44689daea2a27f1fcdf43afd94f33c424b01bbc9 +size 661744 diff --git a/vlm/train/ioyq7NsR1KJ/9.png b/vlm/train/ioyq7NsR1KJ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5af0a20b753238ae2675e5c29c94af1363e72ecc --- /dev/null +++ b/vlm/train/ioyq7NsR1KJ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941e2b8731934f5fe09daed174ca05f0e44d24f941e40b2a9823943e12e77dd9 +size 547029 diff --git a/vlm/train/jnRqf0CzBK/0.png b/vlm/train/jnRqf0CzBK/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bc40aad5e428eed1b7e8c2e27e7d93fedb00d334 --- /dev/null +++ b/vlm/train/jnRqf0CzBK/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae73e6c0ba5a2886edeb422322e6bb104274d11b34ae6a1c5a2a740471ab1a1 +size 507328 diff --git a/vlm/train/jnRqf0CzBK/1.png b/vlm/train/jnRqf0CzBK/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b45dc4b0c4b181e1a96f88128c555fd7fc5ab53d --- /dev/null +++ b/vlm/train/jnRqf0CzBK/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e679ded524e75b96a19b13e4a971e86a4f2df92fb589e4e0cfff809bb142428d +size 581893 diff --git a/vlm/train/jnRqf0CzBK/10.png b/vlm/train/jnRqf0CzBK/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5cd4a7870f28bd35c72bf87a181c6ab3a8e7ce56 --- /dev/null +++ b/vlm/train/jnRqf0CzBK/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f15a3a18ce61465c411a6b49d20e92afc4cdd54cb796e7aeeabd8a1fdd6ee2e +size 519594 diff --git a/vlm/train/jnRqf0CzBK/11.png b/vlm/train/jnRqf0CzBK/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ce5c96c942e2807384bd14cdf20e0ccca038dd09 --- /dev/null +++ b/vlm/train/jnRqf0CzBK/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f243d002e05e871762b6d5010dfe0e18e4875aa95599387516931febcc56e2e +size 199891 diff --git a/vlm/train/jnRqf0CzBK/12.png b/vlm/train/jnRqf0CzBK/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6d4e48a003f3fc7dbe2d7ed6e27274d609e6d7c9 --- /dev/null +++ b/vlm/train/jnRqf0CzBK/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e011ebc7466a00f56aadcd018607c518426abf737a8f877de3601ae09d1f157 +size 318766 diff --git a/vlm/train/jnRqf0CzBK/2.png b/vlm/train/jnRqf0CzBK/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f6be33764782f3b0148618659f150e227d64d056 --- /dev/null +++ b/vlm/train/jnRqf0CzBK/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17acea511a3064161922789cd8b87550e10d237a13bea77ab5a61ac29fa1bcf +size 613844 diff --git a/vlm/train/jnRqf0CzBK/3.png b/vlm/train/jnRqf0CzBK/3.png new file mode 100644 index 0000000000000000000000000000000000000000..31257e24ac88999c8d416c058c31c066d5c699dc --- /dev/null +++ b/vlm/train/jnRqf0CzBK/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079e7d9b7f666291e95ef246aa4468dddd194877adfef664f73a41740bad1fc8 +size 542318 diff --git a/vlm/train/jnRqf0CzBK/4.png b/vlm/train/jnRqf0CzBK/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7740538de227ea0b960e0a5a56064438dcf5e975 --- /dev/null +++ b/vlm/train/jnRqf0CzBK/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d974caf8348dbec1f9490d3d05366517df43d87e075e300f758075dc49d9b6d9 +size 484328 diff --git a/vlm/train/jnRqf0CzBK/5.png b/vlm/train/jnRqf0CzBK/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c5a9e29ae10e405c2ed3349ef2a2c1bf7c646a2e --- /dev/null +++ b/vlm/train/jnRqf0CzBK/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd9279c4bc199a90935810d3f40e79221b46fd991dd084af42c5926879f48f1 +size 564194 diff --git a/vlm/train/jnRqf0CzBK/6.png b/vlm/train/jnRqf0CzBK/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3df53aa0a5f9cb0e308db19354f64a332d3120dc --- /dev/null +++ b/vlm/train/jnRqf0CzBK/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b3d50de30f6c9a185a8a17c7df3f2c2697d5814d0a7585aa815397651827ab +size 670222 diff --git a/vlm/train/jnRqf0CzBK/7.png b/vlm/train/jnRqf0CzBK/7.png new file mode 100644 index 0000000000000000000000000000000000000000..99aa2463488832c3cfea043d989aa4f22fe550da --- /dev/null +++ b/vlm/train/jnRqf0CzBK/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e242c9ec1d3411bf1db0043ad12badd2079c7caad26566fad34f01f1c4c26976 +size 574085 diff --git a/vlm/train/jnRqf0CzBK/8.png b/vlm/train/jnRqf0CzBK/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3710afd0a8f6062c63be402d4fa637edddab1234 --- /dev/null +++ b/vlm/train/jnRqf0CzBK/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23055e71bcfba47aa0f7693e1322d06adf8626f8c78fbba003f8a97318e241a8 +size 538047 diff --git a/vlm/train/jnRqf0CzBK/9.png b/vlm/train/jnRqf0CzBK/9.png new file mode 100644 index 0000000000000000000000000000000000000000..40dcdfaee191b9d26ccba00b8cd16b6f148c92cb --- /dev/null +++ b/vlm/train/jnRqf0CzBK/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d4a60f1b36eaa66cd4d12300519458c46e6c7de2d5d8fcfeb5071358fd5dfc +size 434718 diff --git a/vlm/train/lE1AB4stmX/0.png b/vlm/train/lE1AB4stmX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..772e0779b7f16e75f9ace2df2a6cc3a0f1d1af1e --- /dev/null +++ b/vlm/train/lE1AB4stmX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ea9ad7577fc3c742cbc4fc8a6c1ab4a2ee5d00b6d67b112bc7ffd0bd117d07 +size 495981 diff --git a/vlm/train/lE1AB4stmX/1.png b/vlm/train/lE1AB4stmX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1048991431380e8d033ea51c8df7bc9963372119 --- /dev/null +++ b/vlm/train/lE1AB4stmX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e7609cd2ea626d489b21c3f5072228b59999681a743563c628eb225142d950 +size 589773 diff --git a/vlm/train/lE1AB4stmX/10.png b/vlm/train/lE1AB4stmX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6b77decc7ec366d57cfcc71e2899e2b726d607a0 --- /dev/null +++ b/vlm/train/lE1AB4stmX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c9fff398695668b04a24250c3b64e0ede70f13a4c34b3024d847fca06a7a2f1 +size 522965 diff --git a/vlm/train/lE1AB4stmX/11.png b/vlm/train/lE1AB4stmX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ceba3ce850a95daae9963940779998673be14bfb --- /dev/null +++ b/vlm/train/lE1AB4stmX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a8c6e4de4951cf84fc6439f6bdcd8d8681b3623a2cc92120fb26d232a1c75c +size 470068 diff --git a/vlm/train/lE1AB4stmX/12.png b/vlm/train/lE1AB4stmX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2c427afd1c8eb8ff24db0227fb62c16f6c46554a --- /dev/null +++ b/vlm/train/lE1AB4stmX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:454b0ab63e318a091207d84aa05fa10c834a8df12575fa2d747061621a5dabc3 +size 467675 diff --git a/vlm/train/lE1AB4stmX/13.png b/vlm/train/lE1AB4stmX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c716e9c0da2d1cdc052301a290a8458321eb3eb7 --- /dev/null +++ b/vlm/train/lE1AB4stmX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495a70c73a6102516ef52fcc45d9e01043c0402af5ef27fc0c896499930c9abd +size 395041 diff --git a/vlm/train/lE1AB4stmX/14.png b/vlm/train/lE1AB4stmX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..ca65613681c001b2130472602c0f390bf1513192 --- /dev/null +++ b/vlm/train/lE1AB4stmX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7e6d7fc7907b6d42e1a74bd58bf33ac587bff931d10e8ecbf90705a7554298 +size 445853 diff --git a/vlm/train/lE1AB4stmX/15.png b/vlm/train/lE1AB4stmX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ade5622532f9dac187af18f3ee0f53bdd42af71b --- /dev/null +++ b/vlm/train/lE1AB4stmX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7d28e39e68657167a9cf8cc1ee83883a2f9a81a880762d71d5c02d835b6166 +size 325453 diff --git a/vlm/train/lE1AB4stmX/16.png b/vlm/train/lE1AB4stmX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9d1a887cd8f71bae4e6a5fd93cb27019d0ff0e90 --- /dev/null +++ b/vlm/train/lE1AB4stmX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d447506f320cb1aaa6b146b209151ae84d84f48e3abd2ba940c85ebd9df685b +size 487856 diff --git a/vlm/train/lE1AB4stmX/17.png b/vlm/train/lE1AB4stmX/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d0a743f7535e83d0b385165b049ce45d436e72a8 --- /dev/null +++ b/vlm/train/lE1AB4stmX/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9ff6596be875432e853ca52e1d5a0b4f572dcaf4ac3ae399819f21b1e52dbb +size 303288 diff --git a/vlm/train/lE1AB4stmX/18.png b/vlm/train/lE1AB4stmX/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5e0a8841a3c085a572fe2a8c7e2160a80b969818 --- /dev/null +++ b/vlm/train/lE1AB4stmX/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56cb5656d5fa3772ef4ddbc545ed9479148b9f90eebe006047bd18c7a69dec06 +size 355109 diff --git a/vlm/train/lE1AB4stmX/2.png b/vlm/train/lE1AB4stmX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e5cfd2ca4febd91a59ec401c83031539eaac4c2a --- /dev/null +++ b/vlm/train/lE1AB4stmX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b3351b50dfce8a2f25a76ca8ea97022e5a0a3f655febf2ff7b66f450ee6363 +size 508159 diff --git a/vlm/train/lE1AB4stmX/3.png b/vlm/train/lE1AB4stmX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4c219f6ded67beb595d3bbf23a0d9fec3fedda03 --- /dev/null +++ b/vlm/train/lE1AB4stmX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a15727178e760b3d8f2da7144808d3203dc9820f081d40009ddac2b03fe2b9c +size 461563 diff --git a/vlm/train/lE1AB4stmX/4.png b/vlm/train/lE1AB4stmX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a03ee81c14bc95b99f4aeb2d08aa97b120a47ca --- /dev/null +++ b/vlm/train/lE1AB4stmX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53725c208486727090a2bd1a3ed4efdbb9c7cef0a10d16786a168faa5cc2b91 +size 568360 diff --git a/vlm/train/lE1AB4stmX/5.png b/vlm/train/lE1AB4stmX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..98cf7f573bd825d24e73ca12695009f346e72d0e --- /dev/null +++ b/vlm/train/lE1AB4stmX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e165fe5dc05b53025c18206ad22e1e56b7ffcbad98237c8b281ea472beb290 +size 517939 diff --git a/vlm/train/lE1AB4stmX/6.png b/vlm/train/lE1AB4stmX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..db70ba15490f8d77f7e70715c23e33c4299ce746 --- /dev/null +++ b/vlm/train/lE1AB4stmX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e166eb0487f8cd2b07b87334ed0b5e77338b8d54a3b51c2f172171842220358 +size 592909 diff --git a/vlm/train/lE1AB4stmX/7.png b/vlm/train/lE1AB4stmX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e2d3bbd4ad223bb99e90c38f63528463ff44baa8 --- /dev/null +++ b/vlm/train/lE1AB4stmX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff13db9ef34b12b3edcd80effd405aa5748c459156a86d1643d8a19cd40f332e +size 514234 diff --git a/vlm/train/lE1AB4stmX/8.png b/vlm/train/lE1AB4stmX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..858c1b0fcd63fc4f5b5361e68bbdbb344b5cc953 --- /dev/null +++ b/vlm/train/lE1AB4stmX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0d5afc2c593a6fad09112405c63ea2c52c97c0ffe4a393ca738cdff6325d9f +size 489133 diff --git a/vlm/train/lE1AB4stmX/9.png b/vlm/train/lE1AB4stmX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7f2435c014427a9f9648b0b1c0b0b626042da735 --- /dev/null +++ b/vlm/train/lE1AB4stmX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02aae589d28b66f4a3ea05a4f7086bb9ede3331725730a050b776776be4dff7f +size 582430 diff --git a/vlm/train/luGQiBeRMxd/0.png b/vlm/train/luGQiBeRMxd/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8f9cbb6ac4b0178fb5703874a0d6033d76a2a0a6 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb6eeba8cfa61dc26ce88f3368f4eb10c24756e5cc848bae35996304d747ccf +size 490634 diff --git a/vlm/train/luGQiBeRMxd/1.png b/vlm/train/luGQiBeRMxd/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d4709977beba1bb7c11e6bfe31d8b94f8c008f3d --- /dev/null +++ b/vlm/train/luGQiBeRMxd/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34590e00ac079ec6f818f4217a1dff0689ee96d7012fe7d94769787f56a5aa2d +size 580662 diff --git a/vlm/train/luGQiBeRMxd/10.png b/vlm/train/luGQiBeRMxd/10.png new file mode 100644 index 0000000000000000000000000000000000000000..51da1c79dd5a96765825ae9af4a25525f1e61f25 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e76474f869253b03e22d36d75245ec589809d685a0e15dc137bf00c7b89135 +size 157831 diff --git a/vlm/train/luGQiBeRMxd/11.png b/vlm/train/luGQiBeRMxd/11.png new file mode 100644 index 0000000000000000000000000000000000000000..dff2ded16b2a5c47e64dc5004c62814929cf6fa6 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f9017724ec674ab306cfc35d093c88aa7a4c4d8e00c091f1a38e1ee2c6d53c +size 311216 diff --git a/vlm/train/luGQiBeRMxd/12.png b/vlm/train/luGQiBeRMxd/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5dcfab6cd80a4b424266e43fb38d8d5ae4c633 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ed3d18debb5a1a0eca1ec057d13646f27ecd671e226615af11b7ebaefefefc +size 498126 diff --git a/vlm/train/luGQiBeRMxd/13.png b/vlm/train/luGQiBeRMxd/13.png new file mode 100644 index 0000000000000000000000000000000000000000..eb0cf69e2885c7a97d1f0826f80a9c8204de6cfe --- /dev/null +++ b/vlm/train/luGQiBeRMxd/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506161600e334fc9abedd5b90af482d6086e7c4b8c65f998b1c8d81accb36cd6 +size 393734 diff --git a/vlm/train/luGQiBeRMxd/14.png b/vlm/train/luGQiBeRMxd/14.png new file mode 100644 index 0000000000000000000000000000000000000000..086e86c1b9a9bcedf66f217fc6a2f112b2bca3cb --- /dev/null +++ b/vlm/train/luGQiBeRMxd/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdcffc912137f3ce99bced9ced44774c67f74f869bae07ecc4bba690ca44d70 +size 464956 diff --git a/vlm/train/luGQiBeRMxd/15.png b/vlm/train/luGQiBeRMxd/15.png new file mode 100644 index 0000000000000000000000000000000000000000..52ba9c34fbc2d26c690cde5aca3d3dc6e9198a91 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0909faf46bd23b912cbeb080cf8abf1d91e59c872e51a037871e9de0563961a0 +size 505107 diff --git a/vlm/train/luGQiBeRMxd/16.png b/vlm/train/luGQiBeRMxd/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d434a07c6db6e72fccf1e36ac12a0c74b25d1350 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d132ba0ecffcbe6c0f04210077808c462bba9e263320da46057b157466e31e +size 447507 diff --git a/vlm/train/luGQiBeRMxd/17.png b/vlm/train/luGQiBeRMxd/17.png new file mode 100644 index 0000000000000000000000000000000000000000..8c7c9216980cdc63839ed48b4e223965eb0bfef1 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67633ddbfe5b521a4c99c6e0d84d8723b7f9ff3a2b19531c1c74ba9cbfd4cc8 +size 428046 diff --git a/vlm/train/luGQiBeRMxd/18.png b/vlm/train/luGQiBeRMxd/18.png new file mode 100644 index 0000000000000000000000000000000000000000..12210420628ee77ad3059e7b90feb02aab27aff0 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07fc2d8fd795f946bcb211c490d15f38de7a52a44e8faf29d9b6f3c6276feb54 +size 277753 diff --git a/vlm/train/luGQiBeRMxd/19.png b/vlm/train/luGQiBeRMxd/19.png new file mode 100644 index 0000000000000000000000000000000000000000..8f59105e0575b9579ada71325b37db6411b033a4 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946892f8411857e80cfcea313c1532818643bb403181c204b43126d1d9c63617 +size 392684 diff --git a/vlm/train/luGQiBeRMxd/2.png b/vlm/train/luGQiBeRMxd/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b254ae5702a27b227986154c5e4bcea6ed688c75 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69825b9ff9cdefdf9e01a998a27cea6c8d3fb419fbd3720e976209d0885b0ecf +size 476326 diff --git a/vlm/train/luGQiBeRMxd/20.png b/vlm/train/luGQiBeRMxd/20.png new file mode 100644 index 0000000000000000000000000000000000000000..0282bae87fea514f5a8f50bd14c0d06977578155 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5752534813c9afa7c5d19f1eebe99c9b21cf36df04a6f35994c11d065e68fe86 +size 1984466 diff --git a/vlm/train/luGQiBeRMxd/3.png b/vlm/train/luGQiBeRMxd/3.png new file mode 100644 index 0000000000000000000000000000000000000000..22af7dc21d68ad3b0794d5382e39a8dbe8defdba --- /dev/null +++ b/vlm/train/luGQiBeRMxd/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf7052aa71b2b310756f331f29cedaed2d1fb01b97a712324e431dec146a27f +size 499258 diff --git a/vlm/train/luGQiBeRMxd/4.png b/vlm/train/luGQiBeRMxd/4.png new file mode 100644 index 0000000000000000000000000000000000000000..dfc152d55557ce287e61ff58e2ef00b23bbbe8c3 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:795a299ab5b1f47ab5ae13e1291c9d2fe6db84b77a39800334ae9653a103f5fd +size 498144 diff --git a/vlm/train/luGQiBeRMxd/5.png b/vlm/train/luGQiBeRMxd/5.png new file mode 100644 index 0000000000000000000000000000000000000000..28a54689f71a916392ac450c5be8685f88c3759d --- /dev/null +++ b/vlm/train/luGQiBeRMxd/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d7449ba8d4c8dd94277fde2ae90a9b8b7ae3c012b6f82856add82c7d6a6759 +size 496546 diff --git a/vlm/train/luGQiBeRMxd/6.png b/vlm/train/luGQiBeRMxd/6.png new file mode 100644 index 0000000000000000000000000000000000000000..80697d4723ea441520ccd1702e3da43948a03f4a --- /dev/null +++ b/vlm/train/luGQiBeRMxd/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941e559d9bd0c2afb892de3d3202b9c7a21424a3f0e24e2efd23da1d72e2ffea +size 525287 diff --git a/vlm/train/luGQiBeRMxd/7.png b/vlm/train/luGQiBeRMxd/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8e3350048b191a629524a7529b7a9ef3ee2c85f3 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8916b48a8e5d59aed816dd5692db56704500af623535e2dc4d9ea50ab1597ef +size 492957 diff --git a/vlm/train/luGQiBeRMxd/8.png b/vlm/train/luGQiBeRMxd/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e527770f5d37e60a04f0dd6132a27c3df7934666 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710c545ad64ef60e36faf22b8230e10d144631cd48e765747341ba01054906b4 +size 541085 diff --git a/vlm/train/luGQiBeRMxd/9.png b/vlm/train/luGQiBeRMxd/9.png new file mode 100644 index 0000000000000000000000000000000000000000..eab77028a9b14ae418a6133af5bcdce8941a2201 --- /dev/null +++ b/vlm/train/luGQiBeRMxd/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b995b4802e8a3652bc147e093e4be9eb5de2aabe0a867cd0fab033f905c16df +size 557430 diff --git a/vlm/train/r1CE9GWR-/0.png b/vlm/train/r1CE9GWR-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..636fc0659375fe6dd21494f76b50a301ae4b0c5d --- /dev/null +++ b/vlm/train/r1CE9GWR-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22fc19e6a019e3cf6929e67aba1586583b510d127e5eb91026dbf5bfcf92a48e +size 521841 diff --git a/vlm/train/r1CE9GWR-/1.png b/vlm/train/r1CE9GWR-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..af8e1c4b2f56ee3801af374ddf7672bd0e5313f3 --- /dev/null +++ b/vlm/train/r1CE9GWR-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae416cae90598648bd535003d750e76fb9a55d4bfdc84b6fb2c1687cf5cfdc11 +size 491278 diff --git a/vlm/train/r1CE9GWR-/10.png b/vlm/train/r1CE9GWR-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3fa606699fa5b4070150d7262b14a01bb370bc77 --- /dev/null +++ b/vlm/train/r1CE9GWR-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ba6de98187620f667a29780b878325e5551db0dd6214dbd13fcb42e7b5a1cf +size 237751 diff --git a/vlm/train/r1CE9GWR-/11.png b/vlm/train/r1CE9GWR-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d3fe3fe53ba7955481a1f26273ce97dfe53a8787 --- /dev/null +++ b/vlm/train/r1CE9GWR-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9928daf3601ef3c4a551f8532348823a7818ba1961da2b5141ac263609e752 +size 428004 diff --git a/vlm/train/r1CE9GWR-/12.png b/vlm/train/r1CE9GWR-/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d649acd5ffb0cd76091a9e9308b3f8222ad6ac --- /dev/null +++ b/vlm/train/r1CE9GWR-/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1542a1e4e0ba719fc08c95f8dde93430f51ed381a8ff60f47a564ee8d135d196 +size 280627 diff --git a/vlm/train/r1CE9GWR-/2.png b/vlm/train/r1CE9GWR-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..89ea0f3f32e38c01480eac8c5d5cd0cb7b5e5d29 --- /dev/null +++ b/vlm/train/r1CE9GWR-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b331eec35ee0a846a130b733afe00477b532e7e963aca6ea703b6a714f90a4 +size 526747 diff --git a/vlm/train/r1CE9GWR-/3.png b/vlm/train/r1CE9GWR-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8beaf5b551b90e46d40bf409cedae3298f8efea1 --- /dev/null +++ b/vlm/train/r1CE9GWR-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4d573738088be544cfa9204f951a1707e6c583de21be5699de9a139fbc5919 +size 487017 diff --git a/vlm/train/r1CE9GWR-/4.png b/vlm/train/r1CE9GWR-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..66d9da0d0b1a3cb9433ef9f4c4fe64f95c438f99 --- /dev/null +++ b/vlm/train/r1CE9GWR-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b125d2a2ec63b2e9c17bbba6fc51fd5ff96df28151619cdc1a68380cfd52161 +size 398135 diff --git a/vlm/train/r1CE9GWR-/5.png b/vlm/train/r1CE9GWR-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..34a77d4d4324f213cb4c60857d8b606bfdf873b9 --- /dev/null +++ b/vlm/train/r1CE9GWR-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dc84330ba5d4caac97dba1d96edec4160a48e471948a6ae634f1bccbf42d1d +size 513442 diff --git a/vlm/train/r1CE9GWR-/6.png b/vlm/train/r1CE9GWR-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3e71ed0afd6bb0647fee55f76b283ff1eb298f40 --- /dev/null +++ b/vlm/train/r1CE9GWR-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94fc8398e8cbc93474446269179a848750e40419d09acde0468af3c29ea3b93 +size 465292 diff --git a/vlm/train/r1CE9GWR-/7.png b/vlm/train/r1CE9GWR-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4308b5d9ecd00d2226437d366a6a257d295e60d9 --- /dev/null +++ b/vlm/train/r1CE9GWR-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0edc6e7173ed6c658d0d8313df13f7792353329a561ca0f8a6549e2cc2d16d9a +size 429789 diff --git a/vlm/train/r1CE9GWR-/8.png b/vlm/train/r1CE9GWR-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bdcb33331ae857633193f33da0f8fb7fb08a1318 --- /dev/null +++ b/vlm/train/r1CE9GWR-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de59e75cdfc95d5dd6f132a9692d413d2dd51a7d9b76cd57445096a42059769e +size 456578 diff --git a/vlm/train/r1CE9GWR-/9.png b/vlm/train/r1CE9GWR-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7416544c1dab7b336257e00663483297be692d30 --- /dev/null +++ b/vlm/train/r1CE9GWR-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad49344c3906100035ae7dfc38e9357621953122b542fcd97ae0a884ee1a17cc +size 445910 diff --git a/vlm/train/r1GbfhRqF7/0.png b/vlm/train/r1GbfhRqF7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..eb7db2235f977b33d6c57f51deac3cae9d317c80 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff4e02448444bd1413dbcb2521fb78e57714edb648249d051d1545e19be0556 +size 527141 diff --git a/vlm/train/r1GbfhRqF7/1.png b/vlm/train/r1GbfhRqF7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2a6a4e10cb19bc0fff8b7f820d9ca815d8b812e2 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f6d80877fdd69f23d6c9b7dbbbff978597dc1a705a260fffe19ca2dcf13630 +size 545924 diff --git a/vlm/train/r1GbfhRqF7/10.png b/vlm/train/r1GbfhRqF7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2379e82803d968abc002b118359a2aa74e092823 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81fede070175141648bcaef9ea6a194bab942ba98fcb4ef43c2506961a07657d +size 410072 diff --git a/vlm/train/r1GbfhRqF7/11.png b/vlm/train/r1GbfhRqF7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7d9e1acb4050c9462020001f60544aa9b4e073ab --- /dev/null +++ b/vlm/train/r1GbfhRqF7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7249171fc7669eab0bfb26e24e2eddfea4e3353645e599beec22adcd0be6bfd5 +size 514831 diff --git a/vlm/train/r1GbfhRqF7/12.png b/vlm/train/r1GbfhRqF7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8178bfe06b8c7fab51cce1d97238dfab31fe82d4 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ea4218384cdab05b0e69c147989efe24d68a99c69eef6a4d920ffc13e403ed +size 492117 diff --git a/vlm/train/r1GbfhRqF7/13.png b/vlm/train/r1GbfhRqF7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5d3271ff2bc2cf91abf982f4e2d84291fe450176 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb9e92018cb207729ec78d03014eeb4310aefb7e5fe993af5f4e56f5c3b0a09 +size 370728 diff --git a/vlm/train/r1GbfhRqF7/2.png b/vlm/train/r1GbfhRqF7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f139b0a3258db6c3b2079a84a95992cfcfde4018 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb2dc6a96bdbb9868a5a8e49b76fc5e1eaff81fa71b72319cef4a4a5544fead +size 566229 diff --git a/vlm/train/r1GbfhRqF7/3.png b/vlm/train/r1GbfhRqF7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0930756939d25d920c32fdfbba2024f37c9182cf --- /dev/null +++ b/vlm/train/r1GbfhRqF7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc805585088b1d23b1b42f3f79ade6abf0cf89463316a22a0a9b91472670798 +size 615603 diff --git a/vlm/train/r1GbfhRqF7/4.png b/vlm/train/r1GbfhRqF7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb93e6296d11ee612ad05a6e9aa8d2e4df04679 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe08a3c4634f9b43a4f76974c9f0b718058d170540f48d8c1dc7bf59080c70f8 +size 539722 diff --git a/vlm/train/r1GbfhRqF7/5.png b/vlm/train/r1GbfhRqF7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1ffbcd915c78bffbcacecb3e2c55e5d56a93c23d --- /dev/null +++ b/vlm/train/r1GbfhRqF7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb40d538e1b543704e3bea47c56d8346b36f32997f3bc4b32eafd6f6a9ed957 +size 497569 diff --git a/vlm/train/r1GbfhRqF7/6.png b/vlm/train/r1GbfhRqF7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..fc1112a75d0586ccf0ee9731106085262160c2f4 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa9b481d709de0e7744538f1c95839c66b7339fef49180e04146477b966decb +size 600643 diff --git a/vlm/train/r1GbfhRqF7/7.png b/vlm/train/r1GbfhRqF7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dced9816a71c9592f365dca3a2fbb0e4af4528aa --- /dev/null +++ b/vlm/train/r1GbfhRqF7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d51a1085f6944ead1e72853d389c5ef793bf960eae19ef78bed4459acb5196 +size 555969 diff --git a/vlm/train/r1GbfhRqF7/8.png b/vlm/train/r1GbfhRqF7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..99a33fd38d0628f9815f535d31c41ce53b8af83c --- /dev/null +++ b/vlm/train/r1GbfhRqF7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c68bdf4c768d061024da89284aba046b279df52b34f51ab2ab2bd601bf6730b3 +size 527551 diff --git a/vlm/train/r1GbfhRqF7/9.png b/vlm/train/r1GbfhRqF7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..882d0d32ce8503b9cc7051cd59182282b525a084 --- /dev/null +++ b/vlm/train/r1GbfhRqF7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e51906bdeaef3cfbcc41a29e3467d7e3bacc6ad57b92c03bcd41829462f6a92 +size 500213 diff --git a/vlm/train/r1fYuytex/0.png b/vlm/train/r1fYuytex/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a057f28df1aa030748057e2cf40659ec926ec3bf --- /dev/null +++ b/vlm/train/r1fYuytex/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9123613523bc62cf98b101bbb877603ed93a86a8b2cfd66be92e336ef2b9af44 +size 513864 diff --git a/vlm/train/r1fYuytex/1.png b/vlm/train/r1fYuytex/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ab90a956a240b0909c44212aae6ede021e60ccdb --- /dev/null +++ b/vlm/train/r1fYuytex/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b746a40af92538c479bd60cb3771ebe987f95dba2f6f126144b16cbe1301195 +size 530117 diff --git a/vlm/train/r1fYuytex/10.png b/vlm/train/r1fYuytex/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5dd53a190313618cc89cde6d509d21b0942b0dad --- /dev/null +++ b/vlm/train/r1fYuytex/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16f1ff7af869f26d8ddd4977bbfa480b30d16aa17d08852a58b9959acba08d5 +size 493161 diff --git a/vlm/train/r1fYuytex/11.png b/vlm/train/r1fYuytex/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f56635f9f499923fd5e904802cf3f590149cd53d --- /dev/null +++ b/vlm/train/r1fYuytex/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76524b0003afd855c5f7de30a4c0acf7177457911c09e195a27478032335d32 +size 581884 diff --git a/vlm/train/r1fYuytex/12.png b/vlm/train/r1fYuytex/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f344706225e708d473f46ca6a03c5415fbba83c5 --- /dev/null +++ b/vlm/train/r1fYuytex/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344301b36fdfa6bde20e6c790747343d00c2259bb13bfb238cee93e066801e99 +size 576245 diff --git a/vlm/train/r1fYuytex/13.png b/vlm/train/r1fYuytex/13.png new file mode 100644 index 0000000000000000000000000000000000000000..62f52f138f45f187ba8cc0b0bff066c0ad0a7d3f --- /dev/null +++ b/vlm/train/r1fYuytex/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76735fa88ca2fbff90858a09016520276d1d5c511ee2a2a630ffa6a376a4adb +size 165376 diff --git a/vlm/train/r1fYuytex/2.png b/vlm/train/r1fYuytex/2.png new file mode 100644 index 0000000000000000000000000000000000000000..999185741bc663d2710028818e7c3a5864f2a605 --- /dev/null +++ b/vlm/train/r1fYuytex/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0660e8602b4bcded24b76a72b0ca7a93e2d2faeac80bf3b6c3c4e633421a38 +size 578504 diff --git a/vlm/train/r1fYuytex/3.png b/vlm/train/r1fYuytex/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fc0e16b116a0dd3cfecfe7510e56183c117aa234 --- /dev/null +++ b/vlm/train/r1fYuytex/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d10ed17e35b7b39083b8d4ee971810dd03df35707ee0bbd0b330bbc7065abb1 +size 357010 diff --git a/vlm/train/r1fYuytex/4.png b/vlm/train/r1fYuytex/4.png new file mode 100644 index 0000000000000000000000000000000000000000..45c7baaf8548b28ae231c16c16b86d7a365e911c --- /dev/null +++ b/vlm/train/r1fYuytex/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9741e070c8fd93525fe27f8dec030ee9d07b86d279cc0afd8b8d1a3efca829c +size 378292 diff --git a/vlm/train/r1fYuytex/5.png b/vlm/train/r1fYuytex/5.png new file mode 100644 index 0000000000000000000000000000000000000000..66c4f8c49c23f7dd101fc0a0f7b437508652e6cb --- /dev/null +++ b/vlm/train/r1fYuytex/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4eeaca220f8ba2f0fb3d7af4c3ac96c780864fc78909bbe65393c8f3bb2a72 +size 562947 diff --git a/vlm/train/r1fYuytex/6.png b/vlm/train/r1fYuytex/6.png new file mode 100644 index 0000000000000000000000000000000000000000..22dc0a123ca43a8c8d1e1ef5766389abc7e37d53 --- /dev/null +++ b/vlm/train/r1fYuytex/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3c40bd821e2ed764ffda246b64b98720d48c9a8c350e40862a382f1e0a705c +size 484430 diff --git a/vlm/train/r1fYuytex/7.png b/vlm/train/r1fYuytex/7.png new file mode 100644 index 0000000000000000000000000000000000000000..76a5f56e4a9ca395c87acd49a4a371e1a7531440 --- /dev/null +++ b/vlm/train/r1fYuytex/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e609f45cfa841d7dabd8e3029424635bb788ccfa307e09929631e79128e933 +size 416188 diff --git a/vlm/train/r1fYuytex/8.png b/vlm/train/r1fYuytex/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f714f6cd1254058e3f3a11ec6776bc355eee793d --- /dev/null +++ b/vlm/train/r1fYuytex/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e4f66a2d50f2c9052c27509fc2a0dc65023fc18e2ef0a8bac72ebf52a5b89d +size 498131 diff --git a/vlm/train/r1fYuytex/9.png b/vlm/train/r1fYuytex/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f4fb54256128bef45ec4d00f3b4bf3c71eee838e --- /dev/null +++ b/vlm/train/r1fYuytex/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2556175c8667fc9003d04142e35d3b782bd3398291b47043035aadbc647127d8 +size 140097 diff --git a/vlm/train/r1te3Fqel/6.png b/vlm/train/r1te3Fqel/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b5ffad14bf21b1ea240e14f9321f36c169712eac --- /dev/null +++ b/vlm/train/r1te3Fqel/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10c14fd25d13e9abe9a380faf856ef25a04bf5de954b3656ec060875d080eab +size 570913 diff --git a/vlm/train/rkRwGg-0Z/0.png b/vlm/train/rkRwGg-0Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..30ec703cc6b83d85f68a26d29a1651db355df820 --- /dev/null +++ b/vlm/train/rkRwGg-0Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c2728251092a357e983b91eacf28eed2d05b9a862ca06779a0ac99f2139537 +size 459985 diff --git a/vlm/train/rkRwGg-0Z/1.png b/vlm/train/rkRwGg-0Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f1bc84116bcc5d97b04f9b051c648c1ca3074938 --- /dev/null +++ b/vlm/train/rkRwGg-0Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98879c767c25fdc084563dc65cd8c878447df0f8c5858dc8731f0c6f0acbb67 +size 501232 diff --git a/vlm/train/rkRwGg-0Z/10.png b/vlm/train/rkRwGg-0Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2ecf15da8ac2e1f9b7b3a7e2ea90236085b73b28 --- /dev/null +++ b/vlm/train/rkRwGg-0Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7a31a56bbf5c47bac74f282e5a389878c1141cdbd22529365fefe078b812f8 +size 318151 diff --git a/vlm/train/rkRwGg-0Z/11.png b/vlm/train/rkRwGg-0Z/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8f58979c363baea69dd75af58c5d7ead27fdea1f --- /dev/null +++ b/vlm/train/rkRwGg-0Z/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09a266c67a9778215b0c2c76087ab330d399ded55665878c80a5380d764f6d3 +size 236975 diff --git a/vlm/train/rkRwGg-0Z/12.png b/vlm/train/rkRwGg-0Z/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d7c5891694ec52eb71f3bed5e0584cedf642b9ea --- /dev/null +++ b/vlm/train/rkRwGg-0Z/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35d8f230ad021022de0c96a6f10667f04c58cef72d3b91650e27525bb93d433 +size 254979 diff --git a/vlm/train/rkRwGg-0Z/13.png b/vlm/train/rkRwGg-0Z/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b45507fa98077d5e0009583c7246307bb1c8c168 --- /dev/null +++ b/vlm/train/rkRwGg-0Z/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310b31500e1c9fb8726626c6bc6a38d9e9e910c1f8dac50eb88373108db158e6 +size 532510 diff --git a/vlm/train/rkRwGg-0Z/14.png b/vlm/train/rkRwGg-0Z/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b24889ca2b396e8d84050f4f4fe7b38699e393cd --- /dev/null +++ b/vlm/train/rkRwGg-0Z/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f29e4f3ba446c8ff26fad3c82969a6f1524baecee291c6dd31948749659183 +size 50418 diff --git a/vlm/train/rkRwGg-0Z/2.png b/vlm/train/rkRwGg-0Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..668d129b619105e1128192d72a5a045456882efa --- /dev/null +++ b/vlm/train/rkRwGg-0Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7785ac9bf2d7db4119fe189b551f0cc4a1aa3e62919df4661fe7cf12b38f4a65 +size 441795 diff --git a/vlm/train/rkRwGg-0Z/3.png b/vlm/train/rkRwGg-0Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a447bcee543f3bb91fe7887b82cb9af8e1926e9b --- /dev/null +++ b/vlm/train/rkRwGg-0Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c04b854478923c66417181bf38753952b3189e9ecf660c4c5aa06723616594c8 +size 317053 diff --git a/vlm/train/rkRwGg-0Z/4.png b/vlm/train/rkRwGg-0Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..64fb1441e665cb4b3cf8b09765387c94d916146a --- /dev/null +++ b/vlm/train/rkRwGg-0Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df236fed4d14ad93d6d96735fb7cf76242ff5524abe655b1328831b5f252ceb2 +size 444170 diff --git a/vlm/train/rkRwGg-0Z/5.png b/vlm/train/rkRwGg-0Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9cfc7bb93c8b222a8bc6a5fbe69999e5cfe0e019 --- /dev/null +++ b/vlm/train/rkRwGg-0Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c0415c8bf0a1f81354a42e4576aeb19596ac3575c4b05f798f483c9bcecc94 +size 545865 diff --git a/vlm/train/rkRwGg-0Z/6.png b/vlm/train/rkRwGg-0Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5c568c513ee8d5f1e4b023dfb3db1f3c4bc64526 --- /dev/null +++ b/vlm/train/rkRwGg-0Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6f4424ceff9817a5580c655afab379b1fa8ad7685e7b19adaebe99aca07907 +size 505848 diff --git a/vlm/train/rkRwGg-0Z/7.png b/vlm/train/rkRwGg-0Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..06294b49b2e38ee29e95d2eccc976605787df446 --- /dev/null +++ b/vlm/train/rkRwGg-0Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c699554b89fccf9982cfc4b4b2461d449bd380e0c62dbe4738d39ce4f3715313 +size 468359 diff --git a/vlm/train/rkRwGg-0Z/8.png b/vlm/train/rkRwGg-0Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b2b3b3d1715044f8e420d87056235406946cd78f --- /dev/null +++ b/vlm/train/rkRwGg-0Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a8d79dd01a0216b7dce743384d8a300b34115d914c5ace5ae841fe91a7b65d2 +size 369544 diff --git a/vlm/train/rkRwGg-0Z/9.png b/vlm/train/rkRwGg-0Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4eb6a40b8491ac003f0f58be04538a81c0daa06b --- /dev/null +++ b/vlm/train/rkRwGg-0Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f282ca58e4bd74d5192a657e4909f5fc4957ca30594759e1ba2e7c46a1d02994 +size 515644 diff --git a/vlm/train/rkeMHjR9Ym/0.png b/vlm/train/rkeMHjR9Ym/0.png new file mode 100644 index 0000000000000000000000000000000000000000..06a84034ba3cb4328930bf0b984ce223bf35a81a --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1142d0e3f056118db96aa56805b72929cada1aa4219e787332c3b6b472e2a4ea +size 493383 diff --git a/vlm/train/rkeMHjR9Ym/1.png b/vlm/train/rkeMHjR9Ym/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b8da13cb93281c355db1831683a370005483d7ef --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31d3b88dbb0b123120c62a27e95f25bb63b217263ffb464afdde338fc3733b3 +size 601897 diff --git a/vlm/train/rkeMHjR9Ym/10.png b/vlm/train/rkeMHjR9Ym/10.png new file mode 100644 index 0000000000000000000000000000000000000000..232020164b13c445db10d27426ad2a78f91e71cf --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f1ccc0687257bbec777c6f697961c5861dcf0fe220956ee3b11819afe4d54b +size 535149 diff --git a/vlm/train/rkeMHjR9Ym/11.png b/vlm/train/rkeMHjR9Ym/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b29be99b2411e4b34e2a6e70e5134dfaeb3ee1bb --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d421638ff4e1ecc8c4b95facdf7bc0231ba6ae59d7de2e2b21132f771b372627 +size 337532 diff --git a/vlm/train/rkeMHjR9Ym/12.png b/vlm/train/rkeMHjR9Ym/12.png new file mode 100644 index 0000000000000000000000000000000000000000..06165f79fb5952b283aa30dbb1cc3151df3a527f --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f0987fbdac37d5431fe8b49744367fc520ede5358e179d46a471bdc39a076f +size 417826 diff --git a/vlm/train/rkeMHjR9Ym/13.png b/vlm/train/rkeMHjR9Ym/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ec2a839a6cad91e9c8e47ca4eaaedf2ef56007 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d3520fd914483c5582a98348294d6d1f82c7ccd8d13b55486449104718cf069 +size 411690 diff --git a/vlm/train/rkeMHjR9Ym/14.png b/vlm/train/rkeMHjR9Ym/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d4095b5503435332416cfada9845bb4fc0c66993 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3b1083dc7a7b1ead116295d1f8fb626890f4e15262f3ab1f56bbcc66b7b1ee +size 426989 diff --git a/vlm/train/rkeMHjR9Ym/15.png b/vlm/train/rkeMHjR9Ym/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7ccc0a1c72393d8fc5963bd338f6384104d62d28 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fc42aa9ab3cfa69f31455ff7e1f54f490faa5fccf9fa007b01a2029f90bd60 +size 394015 diff --git a/vlm/train/rkeMHjR9Ym/16.png b/vlm/train/rkeMHjR9Ym/16.png new file mode 100644 index 0000000000000000000000000000000000000000..404e4e56d5e9f2bfa655cf60e4dda51db69faf7d --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d17c48a04d39e229cd6ed48880dd97422ce0327cc33baebc4dc04884474df1f +size 452114 diff --git a/vlm/train/rkeMHjR9Ym/17.png b/vlm/train/rkeMHjR9Ym/17.png new file mode 100644 index 0000000000000000000000000000000000000000..37b771cb2de01d775fabcfb2e91714d5649a27dc --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8624a57fcc81db553df4fa269ca33e6d54bb2d059b72ba3eb9e58d0c7d9b1081 +size 436204 diff --git a/vlm/train/rkeMHjR9Ym/18.png b/vlm/train/rkeMHjR9Ym/18.png new file mode 100644 index 0000000000000000000000000000000000000000..3c2b2251d7ecfda80e772767afcf944e546f471a --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77574e6c59b621cfbb16a858abf13492181d17ab373d7050c60ddc43b2bd4143 +size 500503 diff --git a/vlm/train/rkeMHjR9Ym/19.png b/vlm/train/rkeMHjR9Ym/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c9650977a0b9da8d24eac03697d1e72a7a38aae6 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84067267f111c4b381336db5cf7666df48d031eb0dadaf41e1d65f1b6e4b6ed8 +size 458449 diff --git a/vlm/train/rkeMHjR9Ym/2.png b/vlm/train/rkeMHjR9Ym/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c32d927aac9382a5e09017c9dca92057435e7f13 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e987426b0059e50359d6241269789169cd71f9e453d0c764354ac10b8be86043 +size 417657 diff --git a/vlm/train/rkeMHjR9Ym/20.png b/vlm/train/rkeMHjR9Ym/20.png new file mode 100644 index 0000000000000000000000000000000000000000..7d36ef1e740c0153fd0587d8ec5178cc5b5fe525 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41833665030d0efbcc63ab507fd16abbc65a3c57ead58f2fb01ef8b17dcda543 +size 428695 diff --git a/vlm/train/rkeMHjR9Ym/21.png b/vlm/train/rkeMHjR9Ym/21.png new file mode 100644 index 0000000000000000000000000000000000000000..65d2d5df9bb3959ed16b188db387265099b2eb9e --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1189eae1fb542a38d2e4bae8a86849b5b57c982199d30cd6e4f5df2da6c23cf4 +size 420042 diff --git a/vlm/train/rkeMHjR9Ym/3.png b/vlm/train/rkeMHjR9Ym/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6402e47225f886aa9764434eb3408b7982ef5c81 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f38814bfa8d744ccd9deccb931ab1454268babe9b89e8423759e47bfd589e72 +size 557163 diff --git a/vlm/train/rkeMHjR9Ym/4.png b/vlm/train/rkeMHjR9Ym/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5de027496357ffb9516928cb7240cc4ba095ef43 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367fd82372541b3cf14d879a37e915cc16d688611d00fd2e3a4a4a5afe0e6c9c +size 473045 diff --git a/vlm/train/rkeMHjR9Ym/5.png b/vlm/train/rkeMHjR9Ym/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9d1189d6e325b4338efc59469e8f1d109579236a --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde931340e08e7cfa1c539cd55215d305a319e18f4bd0cfa47a9744029318174 +size 511959 diff --git a/vlm/train/rkeMHjR9Ym/6.png b/vlm/train/rkeMHjR9Ym/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6ae2d3cf98c2949c090427c35da54ecf7012bb71 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd024c5fa883db59a55c35f62bc79e203a77de562892e5186377b225b4d65e15 +size 521902 diff --git a/vlm/train/rkeMHjR9Ym/7.png b/vlm/train/rkeMHjR9Ym/7.png new file mode 100644 index 0000000000000000000000000000000000000000..71ed6830663cb34cd33dc50f05233eb8a08878c6 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c90d29b3c070781696c741249c69d1d62767c84cde5b643a8ce7e008150a46c +size 505793 diff --git a/vlm/train/rkeMHjR9Ym/8.png b/vlm/train/rkeMHjR9Ym/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0cee4dce132f2c8766a61ada4e5912dd8f23950d --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66191822c04db0d691b0ba0d5369e02f2deafde6cab3c88a6729139ebdaa1f60 +size 372739 diff --git a/vlm/train/rkeMHjR9Ym/9.png b/vlm/train/rkeMHjR9Ym/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b5afe8587c1b69e42ac2e2e9b926079a4080ea58 --- /dev/null +++ b/vlm/train/rkeMHjR9Ym/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21aa3fa2987f9f1d9321daba47c597f9436f0f4d8696b58960707932b48ac552 +size 509508 diff --git a/vlm/train/rkmtTJZCb/0.png b/vlm/train/rkmtTJZCb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8c7f239c6cba32b0789eb68e6f875c0209050051 --- /dev/null +++ b/vlm/train/rkmtTJZCb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0bfd9049a8567e50e1e7e6da85975ea1ee60fad869aad53c301f6cf796e0d5 +size 436040 diff --git a/vlm/train/rkmtTJZCb/1.png b/vlm/train/rkmtTJZCb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bff4940c53c3a1bc053389f98a047db01c77d237 --- /dev/null +++ b/vlm/train/rkmtTJZCb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d48101e0f0a2320392355d26d77ff4add7d15d92317c42f3e0a9e8e7e0cfdbd3 +size 466135 diff --git a/vlm/train/rkmtTJZCb/10.png b/vlm/train/rkmtTJZCb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8fbf1753c72566bb91ca9dab00cf4064d531f0e8 --- /dev/null +++ b/vlm/train/rkmtTJZCb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dab93412bcdaa0a61d14d6e94b2c04b581ecaa90aec5a97ff779dc0e9d38c92 +size 591935 diff --git a/vlm/train/rkmtTJZCb/11.png b/vlm/train/rkmtTJZCb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..560d38f3744b5dfccd87fa5366872f67206dd182 --- /dev/null +++ b/vlm/train/rkmtTJZCb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f34e25a6aa410e8097c01c19eadd42eeb45700614ce806fc7bd11a82f0d035 +size 405950 diff --git a/vlm/train/rkmtTJZCb/12.png b/vlm/train/rkmtTJZCb/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8f2ec72679c9cf9ca631666328c2dfaf2f8ec83b --- /dev/null +++ b/vlm/train/rkmtTJZCb/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c88680dbc083cc6d7b15302be4b09c940cb33a7f5c1c1d01915551a1b39cf26 +size 524620 diff --git a/vlm/train/rkmtTJZCb/13.png b/vlm/train/rkmtTJZCb/13.png new file mode 100644 index 0000000000000000000000000000000000000000..56013af927e2e9d3c7e1d322d95f03a62b597d0f --- /dev/null +++ b/vlm/train/rkmtTJZCb/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6976945148b49c7c0f4c963b5208f4f32adcc5c35dbc3c0b182080f95b0421a +size 1104699 diff --git a/vlm/train/rkmtTJZCb/14.png b/vlm/train/rkmtTJZCb/14.png new file mode 100644 index 0000000000000000000000000000000000000000..35b40953fa60a46dc6e29e3a22c01e1cffd8cb35 --- /dev/null +++ b/vlm/train/rkmtTJZCb/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b79fa4fef0207f675951ddc374b93957abb2bda49d6529debf3a6a40132297 +size 1053956 diff --git a/vlm/train/rkmtTJZCb/15.png b/vlm/train/rkmtTJZCb/15.png new file mode 100644 index 0000000000000000000000000000000000000000..271ec5575b3c73e4c017865b2d5ad08463e4aae0 --- /dev/null +++ b/vlm/train/rkmtTJZCb/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46684c1c6d7d60731a6d2f6e45549a4e9721a76832ccc69a939b0c6f06077752 +size 1030599 diff --git a/vlm/train/rkmtTJZCb/16.png b/vlm/train/rkmtTJZCb/16.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1c6e66defffeb4fffc5901c52fab609f7d0e1b --- /dev/null +++ b/vlm/train/rkmtTJZCb/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae30eddb73af0c93879871db1da9e7c5ee9558b94f90fd6edf75d290e9fa2f22 +size 994832 diff --git a/vlm/train/rkmtTJZCb/17.png b/vlm/train/rkmtTJZCb/17.png new file mode 100644 index 0000000000000000000000000000000000000000..b2dbd022bd3a34cf7b89b9ecb7eea30ad9f30246 --- /dev/null +++ b/vlm/train/rkmtTJZCb/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e78ac4004700afb959004dd8ac811891b4286138e21d97a9e67fd2b4b8355ea0 +size 1009601 diff --git a/vlm/train/rkmtTJZCb/18.png b/vlm/train/rkmtTJZCb/18.png new file mode 100644 index 0000000000000000000000000000000000000000..c791f23fe4d8b63b0dfee3c18a57baff6f910200 --- /dev/null +++ b/vlm/train/rkmtTJZCb/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043f6b647a4ab804ea96836681bfd02b9c4fa18b97b5b5144a8f4ac68534f0c0 +size 907443 diff --git a/vlm/train/rkmtTJZCb/19.png b/vlm/train/rkmtTJZCb/19.png new file mode 100644 index 0000000000000000000000000000000000000000..24819abba76e234cc21fdfc1aebac52d50be033e --- /dev/null +++ b/vlm/train/rkmtTJZCb/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c23ebe3d75a7343ca974f2a8f12d1f701a35a4dc69d984916501f780bacfcd3 +size 1054882 diff --git a/vlm/train/rkmtTJZCb/2.png b/vlm/train/rkmtTJZCb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..fb78fe31b5131288db4f130c7bab0b4733644557 --- /dev/null +++ b/vlm/train/rkmtTJZCb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2a8ef32b4486cbc7a17bcb01cfe0686491798f0ed53cd6c08da192807d9c82 +size 361224 diff --git a/vlm/train/rkmtTJZCb/20.png b/vlm/train/rkmtTJZCb/20.png new file mode 100644 index 0000000000000000000000000000000000000000..58c6e10c36cccdc8fc6d85a1e0f29ecb6282bd80 --- /dev/null +++ b/vlm/train/rkmtTJZCb/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0532e92b194b5bc3e9834f7b70376d1d429a1f65e1cfea5c569227448076f23b +size 970813 diff --git a/vlm/train/rkmtTJZCb/21.png b/vlm/train/rkmtTJZCb/21.png new file mode 100644 index 0000000000000000000000000000000000000000..7d21e01f3c3651afd843a05548813e915a71a201 --- /dev/null +++ b/vlm/train/rkmtTJZCb/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1fa8b34804232a73ad73de012997857d5357bc3f3990e36527bbd4ecda82175 +size 1038384 diff --git a/vlm/train/rkmtTJZCb/22.png b/vlm/train/rkmtTJZCb/22.png new file mode 100644 index 0000000000000000000000000000000000000000..27aa87dbd35c26143710fef298d8a665eb76dd96 --- /dev/null +++ b/vlm/train/rkmtTJZCb/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc6063cc2fc06ddc6dadd799c80a397163e0d4fe029d0f29b0baa61aaa910c20 +size 1039859 diff --git a/vlm/train/rkmtTJZCb/23.png b/vlm/train/rkmtTJZCb/23.png new file mode 100644 index 0000000000000000000000000000000000000000..9b5f529acb8041cb16021e2f1abd665295b16f11 --- /dev/null +++ b/vlm/train/rkmtTJZCb/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75215f5634f7d8e3451eef1dbed3d73eda0310d1ad7117d3bbaeaba89b05ac26 +size 1026452 diff --git a/vlm/train/rkmtTJZCb/24.png b/vlm/train/rkmtTJZCb/24.png new file mode 100644 index 0000000000000000000000000000000000000000..bdfb22b5b5327f6dfd83a90d90933348b47731b5 --- /dev/null +++ b/vlm/train/rkmtTJZCb/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12dcf18d86b1fe46263fa327b0e82a371b9ecc3d33bbfcc4f713ef02e224975 +size 924050 diff --git a/vlm/train/rkmtTJZCb/25.png b/vlm/train/rkmtTJZCb/25.png new file mode 100644 index 0000000000000000000000000000000000000000..9620d92b7eedfde60c1166c0cc78df23af445bed --- /dev/null +++ b/vlm/train/rkmtTJZCb/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4623ac6073c160180f489c7021118f19a9b530e8bd736a891017ecf4733fcdbf +size 1092874 diff --git a/vlm/train/rkmtTJZCb/26.png b/vlm/train/rkmtTJZCb/26.png new file mode 100644 index 0000000000000000000000000000000000000000..bbbc12e0a3cd09cd5409fb9e322b7450cff1e13a --- /dev/null +++ b/vlm/train/rkmtTJZCb/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106d565ed486f2f9538026ba083a889dd71c6708d79ec01b1ede40ff95aa13d9 +size 1031569 diff --git a/vlm/train/rkmtTJZCb/27.png b/vlm/train/rkmtTJZCb/27.png new file mode 100644 index 0000000000000000000000000000000000000000..df43a93201c44bf9bec9ec27ba5813469a25a4fb --- /dev/null +++ b/vlm/train/rkmtTJZCb/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3578c0afb165e41741367f8a121a15f70c8b07f3dd492652c98ff366e086aab +size 1043022 diff --git a/vlm/train/rkmtTJZCb/28.png b/vlm/train/rkmtTJZCb/28.png new file mode 100644 index 0000000000000000000000000000000000000000..2635cb97a58ce7443134f481073f20dff8375ce2 --- /dev/null +++ b/vlm/train/rkmtTJZCb/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d603ca27fabb67da8e3cf1555ed2fab8a775bfebc952321dedc2a05ad48cf9a4 +size 1058251 diff --git a/vlm/train/rkmtTJZCb/29.png b/vlm/train/rkmtTJZCb/29.png new file mode 100644 index 0000000000000000000000000000000000000000..71532060f408272b2e13218924a2488809753c02 --- /dev/null +++ b/vlm/train/rkmtTJZCb/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdde61830b59b637b31662b6a96fa533f9b78cd0fb9ed28ec52fd32ece6cc366 +size 1057684 diff --git a/vlm/train/rkmtTJZCb/3.png b/vlm/train/rkmtTJZCb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..562967f60b46c9f2404d4747753701979a8da14e --- /dev/null +++ b/vlm/train/rkmtTJZCb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7357fd78ef059c35553236a85fc8c9887fddcf7304892d4af1de54a5f7d3ecb +size 447565 diff --git a/vlm/train/rkmtTJZCb/30.png b/vlm/train/rkmtTJZCb/30.png new file mode 100644 index 0000000000000000000000000000000000000000..335c20eb641cc2621379331b7bba5a6179dbaaff --- /dev/null +++ b/vlm/train/rkmtTJZCb/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ef2da4886e2ae4bc4d098b764475bacd3335485711bf5b448fa85174bb065c +size 1018530 diff --git a/vlm/train/rkmtTJZCb/31.png b/vlm/train/rkmtTJZCb/31.png new file mode 100644 index 0000000000000000000000000000000000000000..d178fe17da302a37b8291019156acd6c4e800ef3 --- /dev/null +++ b/vlm/train/rkmtTJZCb/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2393f7aa6137042d7bee54499e7a09e0cdda1b728b4e7c2ca4c0d46bd1bc4b +size 1075602 diff --git a/vlm/train/rkmtTJZCb/32.png b/vlm/train/rkmtTJZCb/32.png new file mode 100644 index 0000000000000000000000000000000000000000..627c6f88319e6a4dd442d8642112d9062acb6764 --- /dev/null +++ b/vlm/train/rkmtTJZCb/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86471ca6afd34486611b592278a86a3797647b64421b81b04d85297edd64b4ee +size 1073529 diff --git a/vlm/train/rkmtTJZCb/33.png b/vlm/train/rkmtTJZCb/33.png new file mode 100644 index 0000000000000000000000000000000000000000..61bee403f2b89f14de169cb6675ebac11ed6cb55 --- /dev/null +++ b/vlm/train/rkmtTJZCb/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7800627eddf6edcfdeb596d4a0fa3cde97967844f07973895e18f9f8fd8da108 +size 1019297 diff --git a/vlm/train/rkmtTJZCb/34.png b/vlm/train/rkmtTJZCb/34.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ec91c28c7738e5497aade1a7a51ed8a6780725 --- /dev/null +++ b/vlm/train/rkmtTJZCb/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554ec10b4a8866fc87e89da1abe12165284ed60ec1293a258b17c8718bddac00 +size 1038785 diff --git a/vlm/train/rkmtTJZCb/4.png b/vlm/train/rkmtTJZCb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bbafb400e65b3a290022f11303ebcc78afee2506 --- /dev/null +++ b/vlm/train/rkmtTJZCb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3fe8cd29dcb1e37a5789aeb946ad5bf795a2eb46d2e3c2faa80fcf8cca9d5f +size 458768 diff --git a/vlm/train/rkmtTJZCb/5.png b/vlm/train/rkmtTJZCb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8a1ff4dadf894a027c5d8c7ac5cefbbc9d98e0ff --- /dev/null +++ b/vlm/train/rkmtTJZCb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88d4dbbd02588cbb838b66a25bb96e29b93dfd7b520a2a469e6ac22f7341b4e +size 869443 diff --git a/vlm/train/rkmtTJZCb/6.png b/vlm/train/rkmtTJZCb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ee55dd78d5dc5e9ff334af38a34f3a846cc45ce7 --- /dev/null +++ b/vlm/train/rkmtTJZCb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4281f0fe4bda759ccee7dbb747dfb571c98b6b65a86f2cd7e1edaa4a7357a17a +size 549895 diff --git a/vlm/train/rkmtTJZCb/7.png b/vlm/train/rkmtTJZCb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..563f141438cfa6ad3423d06445d8c30c4b28e5c4 --- /dev/null +++ b/vlm/train/rkmtTJZCb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c364c80abc7f4c660c0936fe7d4e9dfaa3810853a04f78f85364745dc01e4c +size 540358 diff --git a/vlm/train/rkmtTJZCb/8.png b/vlm/train/rkmtTJZCb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9caa1f43339e043063c7f54143c80bdc1c2e8ea2 --- /dev/null +++ b/vlm/train/rkmtTJZCb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb26f2fc920225aae32e2e0308db6a57f80fb3bb25831cc4b09886e1f8d76f94 +size 478353 diff --git a/vlm/train/rkmtTJZCb/9.png b/vlm/train/rkmtTJZCb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..96c93bae4cbabf43cec804dc33ebc71822ae27cc --- /dev/null +++ b/vlm/train/rkmtTJZCb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45dcb5f67b38f3f6c59c74b81445dcd31fd7e3354ed3c8b0c6129c6d80675e55 +size 446094 diff --git a/vlm/train/rylnK6VtDH/0.png b/vlm/train/rylnK6VtDH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..03030e97e4319c2b5525a93866126549c1066925 --- /dev/null +++ b/vlm/train/rylnK6VtDH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd50e2106de2056a292bd230aa1a801b8bdb6acf38820eee5b740db7fcb5c3bb +size 475443 diff --git a/vlm/train/rylnK6VtDH/1.png b/vlm/train/rylnK6VtDH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..40633993200420b2299263cdaabaab6163e75c6a --- /dev/null +++ b/vlm/train/rylnK6VtDH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a236b35227cf34ec3448f826d4e0bfe231b2565f943286ee03c496b02a49e0 +size 522680 diff --git a/vlm/train/rylnK6VtDH/10.png b/vlm/train/rylnK6VtDH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ae36ea7aae3ebe34afe4f25d67fecb3458eb8af9 --- /dev/null +++ b/vlm/train/rylnK6VtDH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5dec14da105bbe2bcc7f78325b4d01346a1a9e57000854dc27cfcc2f3de844 +size 564200 diff --git a/vlm/train/rylnK6VtDH/11.png b/vlm/train/rylnK6VtDH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..af50e07b6c745dd26b7c14661d436825451df922 --- /dev/null +++ b/vlm/train/rylnK6VtDH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0397bdcb1b396b0bcd8f50a74bdc05d4841471e8e2fb5bb51ceafd79fa393610 +size 182978 diff --git a/vlm/train/rylnK6VtDH/12.png b/vlm/train/rylnK6VtDH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0de847c0f2ef7d89dd8a3ef5a7c363e9fbb77a3d --- /dev/null +++ b/vlm/train/rylnK6VtDH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d458c8f096595db92049850a87633c7ba0c9a898b3573e6ac4cc153009bc234c +size 469636 diff --git a/vlm/train/rylnK6VtDH/13.png b/vlm/train/rylnK6VtDH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f537c391035a2d346e8f3f5ed3dafb2928ec54b2 --- /dev/null +++ b/vlm/train/rylnK6VtDH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:187f9004a9a48f277faaa890c8a304e071846a66c08ef3cd99a4b77bb70ccc8e +size 420214 diff --git a/vlm/train/rylnK6VtDH/14.png b/vlm/train/rylnK6VtDH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..44c3d088361bf2d0d5564724eb5aef023e082684 --- /dev/null +++ b/vlm/train/rylnK6VtDH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7efd9b4427962c269c23adf55e1396643c9a15398ba83d343bf17101ea0e2314 +size 404103 diff --git a/vlm/train/rylnK6VtDH/15.png b/vlm/train/rylnK6VtDH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8cfa7936c4d9781c3918e3a50cbb27136f4ecb8a --- /dev/null +++ b/vlm/train/rylnK6VtDH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fbbb408d4ff8783d212fdca2d9e185868ec7a3fd8193204e9687e0a447bb1d4 +size 95065 diff --git a/vlm/train/rylnK6VtDH/2.png b/vlm/train/rylnK6VtDH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a7b0cdc19440ee9d65dfb1d0ec116624f52bdc37 --- /dev/null +++ b/vlm/train/rylnK6VtDH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ecb36478032f4e1fad532ca798c262ed9500de32e546f405146ab57e540887 +size 616035 diff --git a/vlm/train/rylnK6VtDH/3.png b/vlm/train/rylnK6VtDH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9df85cd1ab6a85138852310c1af170107e4fa6d6 --- /dev/null +++ b/vlm/train/rylnK6VtDH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f378a9f2f0c451121a5188996a0b4ed560ad6a71db9cc7adc93c235b47f0d7 +size 550646 diff --git a/vlm/train/rylnK6VtDH/4.png b/vlm/train/rylnK6VtDH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a1360dcfb5f23f52693b20882cfd470cad4d8c7e --- /dev/null +++ b/vlm/train/rylnK6VtDH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc9e3e8da54aa2274e98852702030d5c866d9844c087e5da5fcb70e7f50e197 +size 594564 diff --git a/vlm/train/rylnK6VtDH/5.png b/vlm/train/rylnK6VtDH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..98f2e94e64eb82f1610f27885da84f92db91a0e5 --- /dev/null +++ b/vlm/train/rylnK6VtDH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e83645cd7374ec7ee611266ae47a6dbb467165c2a29dd145edfc25e23e6b016 +size 559888 diff --git a/vlm/train/rylnK6VtDH/6.png b/vlm/train/rylnK6VtDH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb80b25f1d4d75f028d8297712a17ea2159e352 --- /dev/null +++ b/vlm/train/rylnK6VtDH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4759f34ceb4b267c7cf5662e19530983bf5659499e20625188013c8ad399ab8d +size 608395 diff --git a/vlm/train/rylnK6VtDH/7.png b/vlm/train/rylnK6VtDH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2bf18eb0cba793d313c9780eb2187e4960b48b --- /dev/null +++ b/vlm/train/rylnK6VtDH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908d70dd1ca9c7f9d1a7205596ecdb005e53cb65172f68f9fc6bab0fd246a9ec +size 522612 diff --git a/vlm/train/rylnK6VtDH/8.png b/vlm/train/rylnK6VtDH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8bfa13a4b40e2960d454149fd8d5a2e00e8fc98d --- /dev/null +++ b/vlm/train/rylnK6VtDH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ecebdb95d1812b8a9b11f5b5a23324bf6c1ba3eeb8c9391ac8256e3b020e1ac +size 506718 diff --git a/vlm/train/rylnK6VtDH/9.png b/vlm/train/rylnK6VtDH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3896e6c12889284b236d357cf79c1973e1d6e7a0 --- /dev/null +++ b/vlm/train/rylnK6VtDH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b299cb2853f78f49031dae9bfa432625fc6d339fa78aefdac5772e49c9db7ed +size 538178 diff --git a/vlm/train/tHgJoMfy6nI/0.png b/vlm/train/tHgJoMfy6nI/0.png new file mode 100644 index 0000000000000000000000000000000000000000..370876269bfd0892cebea67378d34a2545da7eb9 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ded471bdda7990913e4625f87116e31918158ec9d4ba0be097cc637bed77d1 +size 471055 diff --git a/vlm/train/tHgJoMfy6nI/1.png b/vlm/train/tHgJoMfy6nI/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b504e1b2c84daad86c162af024fc540162b4b84f --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875b7f34bf921862ad3f91b5ed2a77548eca9c67f687b8513d1725852bce23d7 +size 665972 diff --git a/vlm/train/tHgJoMfy6nI/10.png b/vlm/train/tHgJoMfy6nI/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf8c98da135b5539d1b7744a07d71d46ab9b372 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9f8beeb4df03ef4ede34a4b6c0fb4df8f1b13c18b7004314edd89641fbf18d +size 552936 diff --git a/vlm/train/tHgJoMfy6nI/11.png b/vlm/train/tHgJoMfy6nI/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a21ce540a4843e617d3ce413f04aecc059fb98b3 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95614b672694aa725656199cd198c67d5d13c79e7441a7b68c940b3861eb1b38 +size 374068 diff --git a/vlm/train/tHgJoMfy6nI/12.png b/vlm/train/tHgJoMfy6nI/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d1bda58b3391b1103b12a578bc6fda2f7fe68eed --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6976dfbc10ab74228bd7b857f9ce6b9b835605886659aba29869577b8461cdb +size 438266 diff --git a/vlm/train/tHgJoMfy6nI/13.png b/vlm/train/tHgJoMfy6nI/13.png new file mode 100644 index 0000000000000000000000000000000000000000..91eef77d8eb29a41413c004792d160eec0db0cd7 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52a5e9afc73d428df91695783c12e39f3906f325ead7fcf6861d5082479458f +size 478508 diff --git a/vlm/train/tHgJoMfy6nI/14.png b/vlm/train/tHgJoMfy6nI/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e126c37dfa1d0bcb5cd15c6dc3094363b54b06d9 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae2e86f941382fa48fadb579099ffdbb05421a4d3f5e334c454fc12a1df5749 +size 301570 diff --git a/vlm/train/tHgJoMfy6nI/2.png b/vlm/train/tHgJoMfy6nI/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5c9bfd1a72f430256b4e793ca2243c2efca80c99 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd2c3280e0c104c51950f9f71c09df84096b8f28e3e9ada802c0fbcfcb1cc14 +size 596166 diff --git a/vlm/train/tHgJoMfy6nI/3.png b/vlm/train/tHgJoMfy6nI/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0112b96bf91beb09f2a2242c7ba6939e11f6e295 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfba4b039bc14a843756481b7dbb3e9fa6f404b397c94bd344f2d45e9ef67c4 +size 551367 diff --git a/vlm/train/tHgJoMfy6nI/4.png b/vlm/train/tHgJoMfy6nI/4.png new file mode 100644 index 0000000000000000000000000000000000000000..269a008966335bed455baea86a7511bedd9c0f43 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d8e5da178a21ace3fd1fa1a62c1c4698dba1a476a805adf8935c3ee58086e13 +size 622635 diff --git a/vlm/train/tHgJoMfy6nI/5.png b/vlm/train/tHgJoMfy6nI/5.png new file mode 100644 index 0000000000000000000000000000000000000000..33d02f20c39ab31b3f209b3c419dee8a4b438dcf --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746df14d519fd38d510eff0eacf9ad8c9716cfc27d3b3d794f945cf9a87bdb65 +size 634505 diff --git a/vlm/train/tHgJoMfy6nI/6.png b/vlm/train/tHgJoMfy6nI/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b089d9485c115b6d934efc93a38a31e4bc76949a --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c8b375f7ef89f54fd184371ae6bbc558e52c59bedf6a4c0879a7a1e87e955e +size 594930 diff --git a/vlm/train/tHgJoMfy6nI/7.png b/vlm/train/tHgJoMfy6nI/7.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0c5d3c9b93a1483e54db086cb2b953d92d9e34 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ef967e47516f54a36d8a09b1ec74862188cfec5558a2c8cf677fde704d2d92 +size 776366 diff --git a/vlm/train/tHgJoMfy6nI/8.png b/vlm/train/tHgJoMfy6nI/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7bcb5b603b8dd23173131adfdf5cfb6297f1b444 --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c65ea1e16f5fffaa1cf65aac5e4b34eba7de31427c2d60fa3f86bda9550185 +size 559573 diff --git a/vlm/train/tHgJoMfy6nI/9.png b/vlm/train/tHgJoMfy6nI/9.png new file mode 100644 index 0000000000000000000000000000000000000000..99b9802d6fc9adb70cd1276714b8a8e9aef6c07a --- /dev/null +++ b/vlm/train/tHgJoMfy6nI/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d177ef16d27be09582babd6bc1907661ccd13f367043c48f51f1b0e6c4fde7 +size 541824 diff --git a/vlm/train/wCrH0JBCFNm/0.png b/vlm/train/wCrH0JBCFNm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8a61b4327ee482d75c8e47264371403e49e1abfe --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1819356645add94884cacaf03035d9c220cb820020e1eb0429f12456cdc550fd +size 443771 diff --git a/vlm/train/wCrH0JBCFNm/1.png b/vlm/train/wCrH0JBCFNm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac1e057b701a7197686a250ba3164b160471b86 --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07928def8a5908fffc0b1f41fc101f20f05cdfa0292d5be07842dd49770b467 +size 546425 diff --git a/vlm/train/wCrH0JBCFNm/10.png b/vlm/train/wCrH0JBCFNm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..840e0d69d106ae59a39e6f0108b397385dc31a5d --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:461ea4c818eb8258d64d7b3acbe07ffdfc3cd30ab09d2778b849088dda810054 +size 701808 diff --git a/vlm/train/wCrH0JBCFNm/11.png b/vlm/train/wCrH0JBCFNm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bbbd841f283d373eb33b80adc98d3fb705c4bb9e --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99cf2fb5d3b677b2c9fdfd74ee52caa71eff0dbddec10b72da67b3efb1963679 +size 197330 diff --git a/vlm/train/wCrH0JBCFNm/2.png b/vlm/train/wCrH0JBCFNm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cc0e149f740c6a8b33e30be7af600c9b6a0841e4 --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1abbbfd6d0c66572c5eb08856dc5bc955c818c06182c038155ad2f98427232d6 +size 509779 diff --git a/vlm/train/wCrH0JBCFNm/3.png b/vlm/train/wCrH0JBCFNm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..210e9b57f835acd8f70cf868ce27e45816057d5a --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c456aed232e5354e67d7150e2b9b809c90a978f4b8bd6c5a3bcfb52fc7b96af2 +size 527241 diff --git a/vlm/train/wCrH0JBCFNm/4.png b/vlm/train/wCrH0JBCFNm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..71e68ad91ac8ade55cb7eaacf4bd6da008ef4be3 --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4da4a64359cfc7995e42d6a7c9c88b09d3cbd0a336526989789036df477fa91 +size 471633 diff --git a/vlm/train/wCrH0JBCFNm/5.png b/vlm/train/wCrH0JBCFNm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1aec1512cae6a6ce540d1263e8c481f332fbeeba --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec86f7da5ac7d4b8ad27ffb6187a8b3749962a4adbb81b00346c1b53e0e822c2 +size 451873 diff --git a/vlm/train/wCrH0JBCFNm/6.png b/vlm/train/wCrH0JBCFNm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e5b5302d536397ca45cd6a7ba8619dc9f4b35ad7 --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899cdd5eda72bf087b716fc219e473005e1f019a17134b1e7ff9632683a3d28e +size 615680 diff --git a/vlm/train/wCrH0JBCFNm/7.png b/vlm/train/wCrH0JBCFNm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..280854c7fc84a8b0e27b6b13a451bdc0615f0dd6 --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8811eb43d32fcb45087797766fc226b5fc15b5ee74cb765ab1467c54b129f02 +size 372359 diff --git a/vlm/train/wCrH0JBCFNm/8.png b/vlm/train/wCrH0JBCFNm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..86398e6aa7570191df367a5f909803ca304619cb --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d542437130110fa2c61a54fb381cb72f3b3d41582b143f4f5c0e67aa5504b68 +size 425742 diff --git a/vlm/train/wCrH0JBCFNm/9.png b/vlm/train/wCrH0JBCFNm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7e2b0111ab1647906aa5e976f8baf4ad1f0eeb4e --- /dev/null +++ b/vlm/train/wCrH0JBCFNm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b313e0e53dd5f5533d2661c3add9e0304bcb47f0fefcbdde40f7da62bc9f17 +size 552084